]> git.wh0rd.org - tt-rss.git/blame - functions.php
add article forwarding by email (closes #271)
[tt-rss.git] / functions.php
CommitLineData
1d3a17c7 1<?php
f1a80dae 2
e656b9f7 3 if ($_REQUEST["debug"]) {
cce28758 4 define('DEFAULT_ERROR_LEVEL', E_ALL);
e656b9f7 5 }
cce28758 6
40d13c28 7 require_once 'config.php';
cc17c205 8
fc2b26a6
AD
9 if (DB_TYPE == "pgsql") {
10 define('SUBSTRING_FOR_DATE', 'SUBSTRING_FOR_DATE');
11 } else {
12 define('SUBSTRING_FOR_DATE', 'SUBSTRING');
13 }
14
9632f884
AD
15 /**
16 * Return available translations names.
17 *
18 * @access public
19 * @return array A array of available translations.
20 */
f8c612d4 21 function get_translations() {
6a214f92 22 $tr = array(
a927fe7b 23 "auto" => "Detect automatically",
a3162add 24 "ca_CA" => "Català",
6a214f92 25 "en_US" => "English",
36d0510c 26 "es_ES" => "Español",
a927fe7b 27 "de_DE" => "Deutsch",
6a214f92 28 "fr_FR" => "Français",
e78fd196 29 "hu_HU" => "Magyar (Hungarian)",
bb5d3960 30 "it_IT" => "Italiano",
1d004f12 31 "ja_JP" => "日本語 (Japanese)",
592535d7 32 "nb_NO" => "Norwegian bokmål",
6a214f92 33 "ru_RU" => "Русский",
9a063469 34 "pt_BR" => "Portuguese/Brazil",
6a214f92 35 "zh_CN" => "Simplified Chinese");
f8c612d4
AD
36
37 return $tr;
38 }
39
9632f884 40 if (ENABLE_TRANSLATIONS == true) { // If translations are enabled.
5de668ed 41 require_once "lib/accept-to-gettext.php";
0ba3a127 42 require_once "lib/gettext/gettext.inc";
aba609e0 43
8d039718
AD
44 function startup_gettext() {
45
46 # Get locale from Accept-Language header
6a214f92 47 $lang = al2gt(array_keys(get_translations()), "text/html");
89cb787e
AD
48
49 if (defined('_TRANSLATION_OVERRIDE_DEFAULT')) {
50 $lang = _TRANSLATION_OVERRIDE_DEFAULT;
51 }
52
672f3f3c 53 if ($_COOKIE["ttrss_lang"] && $_COOKIE["ttrss_lang"] != "auto") {
68659d98
AD
54 $lang = $_COOKIE["ttrss_lang"];
55 }
56
7c33dbd4
AD
57 /* In login action of mobile version */
58 if ($_POST["language"] && defined('MOBILE_VERSION')) {
59 $lang = $_POST["language"];
60 $_COOKIE["ttrss_lang"] = $lang;
61 }
62
8d039718 63 if ($lang) {
86e2e1b9
AD
64 if (defined('LC_MESSAGES')) {
65 _setlocale(LC_MESSAGES, $lang);
66 } else if (defined('LC_ALL')) {
67 _setlocale(LC_ALL, $lang);
68 } else {
69 die("can't setlocale(): please set ENABLE_TRANSLATIONS to false in config.php");
70 }
7c33dbd4
AD
71
72 if (defined('MOBILE_VERSION')) {
73 _bindtextdomain("messages", "../locale");
74 } else {
75 _bindtextdomain("messages", "locale");
76 }
77
8d039718
AD
78 _textdomain("messages");
79 _bind_textdomain_codeset("messages", "UTF-8");
80 }
aba609e0 81 }
aba609e0 82
cc17c205 83 startup_gettext();
865220a4 84
9632f884 85 } else { // If translations are enabled.
865220a4
AD
86 function __($msg) {
87 return $msg;
88 }
89 function startup_gettext() {
90 // no-op
91 return true;
92 }
9632f884 93 } // If translations are enabled.
cc17c205 94
be35798b
AD
95 if (defined('MEMCACHE_SERVER')) {
96 $memcache = new Memcache;
97 $memcache->connect(MEMCACHE_SERVER, 11211);
98 }
99
b619ff15 100 require_once 'db-prefs.php';
5bc0bd27 101 require_once 'compat.php';
af106b0e 102 require_once 'errors.php';
8911ac8b 103 require_once 'version.php';
40d13c28 104
d134e3a3 105 require_once 'lib/phpmailer/class.phpmailer.php';
a8931123 106
49f9c923 107 define('MAGPIE_USER_AGENT_EXT', ' (Tiny Tiny RSS/' . VERSION . ')');
a3ee2a38 108 define('MAGPIE_OUTPUT_ENCODING', 'UTF-8');
ba0f7628 109 define('MAGPIE_CACHE_AGE', 60*15); // 15 minutes
a3ee2a38 110
5ef03f15 111 require_once "lib/simplepie/simplepie.inc";
816cdfb7
AD
112 require_once "lib/magpierss/rss_fetch.inc";
113 require_once 'lib/magpierss/rss_utils.inc';
f45a286b 114 require_once 'lib/htmlpurifier/library/HTMLPurifier.auto.php';
49f9c923 115
45004d43
AD
116 /**
117 * Print a timestamped debug message.
118 *
119 * @param string $msg The debug message.
120 * @return void
121 */
6f9e33e4
AD
122 function _debug($msg) {
123 $ts = strftime("%H:%M:%S", time());
2a6a9395
AD
124 if (function_exists('posix_getpid')) {
125 $ts = "$ts/" . posix_getpid();
126 }
6f9e33e4 127 print "[$ts] $msg\n";
45004d43 128 } // function _debug
6f9e33e4 129
9632f884
AD
130 /**
131 * Purge a feed old posts.
132 *
133 * @param mixed $link A database connection.
134 * @param mixed $feed_id The id of the purged feed.
135 * @param mixed $purge_interval Olderness of purged posts.
136 * @param boolean $debug Set to True to enable the debug. False by default.
137 * @access public
138 * @return void
139 */
ad507f85
AD
140 function purge_feed($link, $feed_id, $purge_interval, $debug = false) {
141
07d0efe9 142 if (!$purge_interval) $purge_interval = feed_purge_interval($link, $feed_id);
01299231 143
ad507f85 144 $rows = -1;
4c193675 145
07d0efe9
AD
146 $result = db_query($link,
147 "SELECT owner_uid FROM ttrss_feeds WHERE id = '$feed_id'");
148
149 $owner_uid = false;
150
151 if (db_num_rows($result) == 1) {
152 $owner_uid = db_fetch_result($result, 0, "owner_uid");
153 }
154
ab954dff
AD
155 if ($purge_interval == -1 || !$purge_interval) {
156 if ($owner_uid) {
157 ccache_update($link, $feed_id, $owner_uid);
158 }
159 return;
160 }
161
07d0efe9
AD
162 if (!$owner_uid) return;
163
3907ef71
AD
164 if (FORCE_ARTICLE_PURGE == 0) {
165 $purge_unread = get_pref($link, "PURGE_UNREAD_ARTICLES",
166 $owner_uid, false);
167 } else {
168 $purge_unread = true;
169 $purge_interval = FORCE_ARTICLE_PURGE;
170 }
07d0efe9
AD
171
172 if (!$purge_unread) $query_limit = " unread = false AND ";
173
fefa6ca3 174 if (DB_TYPE == "pgsql") {
44e241cb 175/* $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
fefa6ca3 176 marked = false AND feed_id = '$feed_id' AND
25ea2805 177 (SELECT date_updated FROM ttrss_entries WHERE
44e241cb
AD
178 id = ref_id) < NOW() - INTERVAL '$purge_interval days'"); */
179
6e7f8d26
AD
180 $pg_version = get_pgsql_version($link);
181
182 if (preg_match("/^7\./", $pg_version) || preg_match("/^8\.0/", $pg_version)) {
1e59ae35
AD
183
184 $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
185 ttrss_entries.id = ref_id AND
186 marked = false AND
187 feed_id = '$feed_id' AND
07d0efe9 188 $query_limit
25ea2805 189 ttrss_entries.date_updated < NOW() - INTERVAL '$purge_interval days'");
1e59ae35
AD
190
191 } else {
192
193 $result = db_query($link, "DELETE FROM ttrss_user_entries
194 USING ttrss_entries
195 WHERE ttrss_entries.id = ref_id AND
196 marked = false AND
197 feed_id = '$feed_id' AND
07d0efe9 198 $query_limit
25ea2805 199 ttrss_entries.date_updated < NOW() - INTERVAL '$purge_interval days'");
1e59ae35 200 }
ad507f85
AD
201
202 $rows = pg_affected_rows($result);
203
fefa6ca3 204 } else {
1e59ae35 205
30f1746f 206/* $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
fefa6ca3 207 marked = false AND feed_id = '$feed_id' AND
25ea2805 208 (SELECT date_updated FROM ttrss_entries WHERE
30f1746f
AD
209 id = ref_id) < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)"); */
210
211 $result = db_query($link, "DELETE FROM ttrss_user_entries
212 USING ttrss_user_entries, ttrss_entries
213 WHERE ttrss_entries.id = ref_id AND
214 marked = false AND
215 feed_id = '$feed_id' AND
07d0efe9 216 $query_limit
25ea2805 217 ttrss_entries.date_updated < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)");
30f1746f 218
ad507f85
AD
219 $rows = mysql_affected_rows($link);
220
221 }
222
ced46404
AD
223 ccache_update($link, $feed_id, $owner_uid);
224
ad507f85 225 if ($debug) {
6f9e33e4 226 _debug("Purged feed $feed_id ($purge_interval): deleted $rows articles");
fefa6ca3 227 }
9632f884 228 } // function purge_feed
fefa6ca3 229
9632f884 230 /**
a2d79981 231 * Purge old posts from old feeds. Not used anymore, purging is done after feed update.
9632f884
AD
232 *
233 * @param mixed $link A database connection
234 * @param boolean $do_output Set to true to enable printed output, false by default.
235 * @param integer $limit The maximal number of removed posts.
236 * @access public
237 * @return void
238 */
a2d79981 239 /* function global_purge_old_posts($link, $do_output = false, $limit = false) {
44e241cb 240
894ebcf5 241 $random_qpart = sql_random_function();
fefa6ca3 242
44e241cb
AD
243 if ($limit) {
244 $limit_qpart = "LIMIT $limit";
245 } else {
246 $limit_qpart = "";
247 }
248
fefa6ca3 249 $result = db_query($link,
44e241cb
AD
250 "SELECT id,purge_interval,owner_uid FROM ttrss_feeds
251 ORDER BY $random_qpart $limit_qpart");
fefa6ca3
AD
252
253 while ($line = db_fetch_assoc($result)) {
254
255 $feed_id = $line["id"];
256 $purge_interval = $line["purge_interval"];
257 $owner_uid = $line["owner_uid"];
258
259 if ($purge_interval == 0) {
260
261 $tmp_result = db_query($link,
262 "SELECT value FROM ttrss_user_prefs WHERE
263 pref_name = 'PURGE_OLD_DAYS' AND owner_uid = '$owner_uid'");
264
265 if (db_num_rows($tmp_result) != 0) {
266 $purge_interval = db_fetch_result($tmp_result, 0, "value");
267 }
268 }
269
270 if ($do_output) {
ad507f85 271// print "Feed $feed_id: purge interval = $purge_interval\n";
fefa6ca3
AD
272 }
273
3907ef71 274 if ($purge_interval > 0 || FORCE_ARTICLE_PURGE) {
ad507f85 275 purge_feed($link, $feed_id, $purge_interval, $do_output);
fefa6ca3
AD
276 }
277 }
278
a2d79981 279 purge_orphans($link, $do_output);
dab52d7b 280
a2d79981 281 } // function global_purge_old_posts */
fefa6ca3 282
07d0efe9
AD
283 function feed_purge_interval($link, $feed_id) {
284
285 $result = db_query($link, "SELECT purge_interval, owner_uid FROM ttrss_feeds
286 WHERE id = '$feed_id'");
287
288 if (db_num_rows($result) == 1) {
289 $purge_interval = db_fetch_result($result, 0, "purge_interval");
290 $owner_uid = db_fetch_result($result, 0, "owner_uid");
291
292 if ($purge_interval == 0) $purge_interval = get_pref($link,
863be6ca 293 'PURGE_OLD_DAYS', $owner_uid);
07d0efe9
AD
294
295 return $purge_interval;
296
297 } else {
298 return -1;
299 }
300 }
301
b6eefba5 302 function purge_old_posts($link) {
5d73494a 303
f1a80dae
AD
304 $user_id = $_SESSION["uid"];
305
306 $result = db_query($link, "SELECT id,purge_interval FROM ttrss_feeds
307 WHERE owner_uid = '$user_id'");
5d73494a
AD
308
309 while ($line = db_fetch_assoc($result)) {
310
311 $feed_id = $line["id"];
312 $purge_interval = $line["purge_interval"];
313
b619ff15 314 if ($purge_interval == 0) $purge_interval = get_pref($link, 'PURGE_OLD_DAYS');
5d73494a 315
140aae81 316 if ($purge_interval > 0) {
fefa6ca3 317 purge_feed($link, $feed_id, $purge_interval);
5d73494a
AD
318 }
319 }
71604ca4 320
0e0dd486
AD
321 purge_orphans($link);
322 }
323
a2d79981
AD
324 function purge_orphans($link, $do_output = false) {
325
71604ca4 326 // purge orphaned posts in main content table
a2d79981 327 $result = db_query($link, "DELETE FROM ttrss_entries WHERE
71604ca4 328 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
a2d79981
AD
329
330 if ($do_output) {
331 $rows = db_affected_rows($link, $result);
332 _debug("Purged $rows orphaned posts.");
333 }
c3a8d71a
AD
334 }
335
c7d57b66
AD
336 function get_feed_update_interval($link, $feed_id) {
337 $result = db_query($link, "SELECT owner_uid, update_interval FROM
338 ttrss_feeds WHERE id = '$feed_id'");
339
340 if (db_num_rows($result) == 1) {
341 $update_interval = db_fetch_result($result, 0, "update_interval");
342 $owner_uid = db_fetch_result($result, 0, "owner_uid");
343
344 if ($update_interval != 0) {
345 return $update_interval;
346 } else {
347 return get_pref($link, 'DEFAULT_UPDATE_INTERVAL', $owner_uid, false);
348 }
349
350 } else {
351 return -1;
352 }
353 }
354
a1af1574 355 function fetch_file_contents($url, $type) {
4065b60b 356 if (USE_CURL_FOR_ICONS) {
4065b60b 357 $ch = curl_init($url);
a1af1574
AD
358
359 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 15);
360 curl_setopt($ch, CURLOPT_TIMEOUT, 45);
361 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
362 curl_setopt($ch, CURLOPT_MAXREDIRS, 20);
363 curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
364 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
365
366 $contents = curl_exec($ch);
367 if ($contents === false) {
368 curl_close($ch);
369 return false;
4065b60b
AD
370 }
371
a1af1574
AD
372 $content_type = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
373 curl_close($ch);
4065b60b 374
a1af1574
AD
375 if ($type && strpos($content_type, "$type") === false) {
376 return false;
377 }
4065b60b 378
a1af1574 379 return $contents;
4065b60b
AD
380 } else {
381 return file_get_contents($url);
382 }
383
384 }
78800912 385
9632f884
AD
386 /**
387 * Try to determine the favicon URL for a feed.
388 * adapted from wordpress favicon plugin by Jeff Minard (http://thecodepro.com/)
389 * http://dev.wp-plugins.org/file/favatars/trunk/favatars.php
390 *
391 * @param string $url A feed or page URL
392 * @access public
393 * @return mixed The favicon URL, or false if none was found.
394 */
4065b60b 395 function get_favicon_url($url) {
99331724 396
4065b60b 397 if ($html = @fetch_file_contents($url)) {
78800912 398
4065b60b
AD
399 if ( preg_match('/<link[^>]+rel="(?:shortcut )?icon"[^>]+?href="([^"]+?)"/si', $html, $matches)) {
400 // Attempt to grab a favicon link from their webpage url
401 $linkUrl = html_entity_decode($matches[1]);
c798704b 402
4065b60b
AD
403 if (substr($linkUrl, 0, 1) == '/') {
404 $urlParts = parse_url($url);
405 $faviconURL = $urlParts['scheme'].'://'.$urlParts['host'].$linkUrl;
406 } else if (substr($linkUrl, 0, 7) == 'http://') {
407 $faviconURL = $linkUrl;
4065b60b 408 } else {
c7e51de1
AD
409 $pos = strrpos($url, "/");
410 // no "/" in url or "/" is part of "://"
411 if ($pos === false || $pos == (strpos($url, "://")+2)) {
412 $faviconURL = $url.'/'.$linkUrl;
413 } else {
414 $faviconURL = substr($url, 0, $pos+1).$linkUrl;
415 }
e695fdc8 416 }
717f5e64 417
c798704b 418 } else {
4065b60b
AD
419 // If unsuccessful, attempt to "guess" the favicon location
420 $urlParts = parse_url($url);
421 $faviconURL = $urlParts['scheme'].'://'.$urlParts['host'].'/favicon.ico';
422 }
423 }
c798704b 424
4065b60b
AD
425 // Run a test to see if what we have attempted to get actually exists.
426 if(USE_CURL_FOR_ICONS || url_validate($faviconURL)) {
427 return $faviconURL;
428 } else {
429 return false;
430 }
9632f884 431 } // function get_favicon_url
4065b60b 432
9632f884
AD
433 /**
434 * Check if a link is a valid and working URL.
435 *
436 * @param mixed $link A URL to check
437 * @access public
438 * @return boolean True if the URL is valid, false otherwise.
439 */
4065b60b
AD
440 function url_validate($link) {
441
442 $url_parts = @parse_url($link);
443
444 if ( empty( $url_parts["host"] ) )
445 return false;
446
447 if ( !empty( $url_parts["path"] ) ) {
448 $documentpath = $url_parts["path"];
449 } else {
450 $documentpath = "/";
451 }
452
453 if ( !empty( $url_parts["query"] ) )
454 $documentpath .= "?" . $url_parts["query"];
455
456 $host = $url_parts["host"];
457 $port = $url_parts["port"];
458
459 if ( empty($port) )
460 $port = "80";
461
462 $socket = @fsockopen( $host, $port, $errno, $errstr, 30 );
463
464 if ( !$socket )
465 return false;
c798704b 466
4065b60b
AD
467 fwrite ($socket, "HEAD ".$documentpath." HTTP/1.0\r\nHost: $host\r\n\r\n");
468
469 $http_response = fgets( $socket, 22 );
470
c7e51de1 471 $responses = "/(200 OK)|(30[123])/";
4065b60b
AD
472 if ( preg_match($responses, $http_response) ) {
473 fclose($socket);
474 return true;
475 } else {
476 return false;
477 }
478
9632f884 479 } // function url_validate
4065b60b
AD
480
481 function check_feed_favicon($site_url, $feed, $link) {
482 $favicon_url = get_favicon_url($site_url);
483
484# print "FAVICON [$site_url]: $favicon_url\n";
485
486 error_reporting(0);
487
488 $icon_file = ICONS_DIR . "/$feed.ico";
489
490 if ($favicon_url && !file_exists($icon_file)) {
a1af1574 491 $contents = fetch_file_contents($favicon_url, "image");
4065b60b 492
a1af1574
AD
493 if ($contents) {
494 $fp = fopen($icon_file, "w");
78800912 495
a1af1574
AD
496 if ($fp) {
497 fwrite($fp, $contents);
498 fclose($fp);
499 chmod($icon_file, 0644);
500 }
4065b60b 501 }
78800912 502 }
4065b60b
AD
503
504 error_reporting(DEFAULT_ERROR_LEVEL);
505
78800912
AD
506 }
507
c633e370
AD
508 function update_rss_feed($link, $feed, $ignore_daemon = false) {
509
510 global $memcache;
511
512 /* Update all feeds with the same URL to utilize memcache */
513
514 if ($memcache) {
515 $result = db_query($link, "SELECT f1.id
516 FROM ttrss_feeds AS f1, ttrss_feeds AS f2
517 WHERE f2.feed_url = f1.feed_url AND f2.id = '$feed'");
518
519 while ($line = db_fetch_assoc($result)) {
520 update_rss_feed_real($link, $line["id"], $ignore_daemon);
521 }
522 } else {
523 update_rss_feed_real($link, $feed, $ignore_daemon);
524 }
525 }
526
527 function update_rss_feed_real($link, $feed, $ignore_daemon = false) {
40d13c28 528
602690e5
AD
529 global $memcache;
530
b4e75b2a 531 if (!$_REQUEST["daemon"] && !$ignore_daemon) {
45004d43 532 return false;
21cfcdf2
AD
533 }
534
b4e75b2a 535 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
34e420fb 536 _debug("update_rss_feed: start");
219bd8fc
AD
537 }
538
39a52499
AD
539 if (!$ignore_daemon) {
540
541 if (DB_TYPE == "pgsql") {
542 $updstart_thresh_qpart = "(ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < NOW() - INTERVAL '120 seconds')";
543 } else {
544 $updstart_thresh_qpart = "(ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 120 SECOND))";
545 }
546
547 $result = db_query($link, "SELECT id,update_interval,auth_login,
16211ddb 548 auth_pass,cache_images,update_method
39a52499 549 FROM ttrss_feeds WHERE id = '$feed' AND $updstart_thresh_qpart");
02008cb1 550
39a52499
AD
551 } else {
552
553 $result = db_query($link, "SELECT id,update_interval,auth_login,
c633e370 554 feed_url,auth_pass,cache_images,update_method,last_updated
39a52499
AD
555 FROM ttrss_feeds WHERE id = '$feed'");
556
557 }
a88c1f36 558
5370d37f 559 if (db_num_rows($result) == 0) {
b4e75b2a 560 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
c633e370 561 _debug("update_rss_feed: feed $feed NOT FOUND/SKIPPED");
5370d37f 562 }
45004d43 563 return false;
5370d37f
AD
564 }
565
16211ddb 566 $update_method = db_fetch_result($result, 0, "update_method");
50b2db96 567 $last_updated = db_fetch_result($result, 0, "last_updated");
16211ddb 568
3c50da83
AD
569 db_query($link, "UPDATE ttrss_feeds SET last_update_started = NOW()
570 WHERE id = '$feed'");
571
464bd61e
AD
572 $auth_login = db_fetch_result($result, 0, "auth_login");
573 $auth_pass = db_fetch_result($result, 0, "auth_pass");
574
78a5c296
AD
575 if (DEFAULT_UPDATE_METHOD == "1") {
576 $use_simplepie = $update_method != 1;
16211ddb 577 } else {
78a5c296 578 $use_simplepie = $update_method == 2;
16211ddb
AD
579 }
580
b4e75b2a 581 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
16211ddb
AD
582 _debug("use simplepie: $use_simplepie (feed setting: $update_method)\n");
583 }
584
585 if (!$use_simplepie) {
464bd61e
AD
586 $auth_login = urlencode($auth_login);
587 $auth_pass = urlencode($auth_pass);
588 }
47c6c988 589
a88c1f36 590 $update_interval = db_fetch_result($result, 0, "update_interval");
bc0f0785 591 $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
c633e370 592 $fetch_url = db_fetch_result($result, 0, "feed_url");
a88c1f36
AD
593
594 if ($update_interval < 0) { return; }
595
ab3d0b99
AD
596 $feed = db_escape_string($feed);
597
47c6c988
AD
598 if ($auth_login && $auth_pass) {
599 $url_parts = array();
600 preg_match("/(^[^:]*):\/\/(.*)/", $fetch_url, $url_parts);
601
602 if ($url_parts[1] && $url_parts[2]) {
603 $fetch_url = $url_parts[1] . "://$auth_login:$auth_pass@" . $url_parts[2];
604 }
605
606 }
ab3d0b99 607
b4e75b2a 608 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
ca872b9d 609 _debug("update_rss_feed: fetching [$fetch_url]...");
219bd8fc
AD
610 }
611
b4e75b2a 612 if (!defined('DAEMON_EXTENDED_DEBUG') && !$_REQUEST['xdebug']) {
219bd8fc
AD
613 error_reporting(0);
614 }
615
e656b9f7 616 $obj_id = md5("FDATA:$use_simplepie:$fetch_url");
6e4f0519 617
c633e370 618 if ($memcache && $obj = $memcache->get($obj_id)) {
6e4f0519
AD
619
620 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
c633e370 621 _debug("update_rss_feed: data found in memcache.");
6e4f0519
AD
622 }
623
c633e370
AD
624 $rss = $obj;
625
626 } else {
627
628 if (!$use_simplepie) {
629 $rss = fetch_rss($fetch_url);
630 } else {
631 if (!is_dir(SIMPLEPIE_CACHE_DIR)) {
632 mkdir(SIMPLEPIE_CACHE_DIR);
633 }
634
635 $rss = new SimplePie();
636 $rss->set_useragent(SIMPLEPIE_USERAGENT . MAGPIE_USER_AGENT_EXT);
637 # $rss->set_timeout(10);
638 $rss->set_feed_url($fetch_url);
639 $rss->set_output_encoding('UTF-8');
640
641 if (SIMPLEPIE_CACHE_IMAGES && $cache_images) {
642 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
643 _debug("enabling image cache");
644 }
645
646 $rss->set_image_handler('./image.php', 'i');
647 }
648
649 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
650 _debug("feed update interval (sec): " .
651 get_feed_update_interval($link, $feed)*60);
652 }
653
654 if (is_dir(SIMPLEPIE_CACHE_DIR)) {
655 $rss->set_cache_location(SIMPLEPIE_CACHE_DIR);
656 $rss->set_cache_duration(get_feed_update_interval($link, $feed) * 60);
657 }
658
659 $rss->init();
6e4f0519
AD
660 }
661
c633e370 662 if ($memcache && $rss) $memcache->add($obj_id, $rss, 0, 300);
9fdf7824
AD
663 }
664
665// print_r($rss);
219bd8fc 666
b4e75b2a 667 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
34e420fb 668 _debug("update_rss_feed: fetch done, parsing...");
219bd8fc
AD
669 } else {
670 error_reporting (DEFAULT_ERROR_LEVEL);
671 }
672
b6eefba5 673 $feed = db_escape_string($feed);
dcee8f61 674
16211ddb 675 if ($use_simplepie) {
ca872b9d
AD
676 $fetch_ok = !$rss->error();
677 } else {
678 $fetch_ok = !!$rss;
679 }
680
681 if ($fetch_ok) {
50b62214 682
b4e75b2a 683 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
50b62214
AD
684 _debug("update_rss_feed: processing feed data...");
685 }
686
44e241cb 687// db_query($link, "BEGIN");
dd8c76a9 688
a88c1f36 689 $result = db_query($link, "SELECT title,icon_url,site_url,owner_uid
f324892e 690 FROM ttrss_feeds WHERE id = '$feed'");
331900c6 691
b6eefba5
AD
692 $registered_title = db_fetch_result($result, 0, "title");
693 $orig_icon_url = db_fetch_result($result, 0, "icon_url");
f324892e 694 $orig_site_url = db_fetch_result($result, 0, "site_url");
331900c6 695
7fed1940
AD
696 $owner_uid = db_fetch_result($result, 0, "owner_uid");
697
16211ddb 698 if ($use_simplepie) {
9fdf7824
AD
699 $site_url = $rss->get_link();
700 } else {
701 $site_url = $rss->channel["link"];
702 }
703
85a92289
AD
704 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
705 _debug("update_rss_feed: checking favicon...");
a2770077
AD
706 }
707
85a92289
AD
708 check_feed_favicon($site_url, $feed, $link);
709
746b249f 710 if (!$registered_title || $registered_title == "[Unknown]") {
4bc64807 711
16211ddb 712 if ($use_simplepie) {
c2f8aac4 713 $feed_title = db_escape_string($rss->get_title());
fb486a33
AD
714 } else {
715 $feed_title = db_escape_string($rss->channel["title"]);
716 }
4bc64807 717
b4e75b2a 718 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
4bc64807
AD
719 _debug("update_rss_feed: registering title: $feed_title");
720 }
7c5a308d 721
f324892e
AD
722 db_query($link, "UPDATE ttrss_feeds SET
723 title = '$feed_title' WHERE id = '$feed'");
724 }
725
49f9c923 726 // weird, weird Magpie
16211ddb 727 if (!$use_simplepie) {
9fdf7824
AD
728 if (!$site_url) $site_url = db_escape_string($rss->channel["link_"]);
729 }
147f7691
AD
730
731 if ($site_url && $orig_site_url != db_escape_string($site_url)) {
f324892e
AD
732 db_query($link, "UPDATE ttrss_feeds SET
733 site_url = '$site_url' WHERE id = '$feed'");
331900c6 734 }
40d13c28 735
b7f4bda2
AD
736// print "I: " . $rss->channel["image"]["url"];
737
16211ddb 738 if (!$use_simplepie) {
9fdf7824
AD
739 $icon_url = $rss->image["url"];
740 } else {
741 $icon_url = $rss->get_image_url();
742 }
b7f4bda2 743
147f7691 744 if ($icon_url && !$orig_icon_url != db_escape_string($icon_url)) {
b6eefba5
AD
745 $icon_url = db_escape_string($icon_url);
746 db_query($link, "UPDATE ttrss_feeds SET icon_url = '$icon_url' WHERE id = '$feed'");
b7f4bda2
AD
747 }
748
b4e75b2a 749 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
50b62214
AD
750 _debug("update_rss_feed: loading filters...");
751 }
e6155a06 752
5daa24f2 753 $filters = load_filters($link, $feed, $owner_uid);
e6155a06 754
16211ddb 755 if ($use_simplepie) {
9fdf7824
AD
756 $iterator = $rss->get_items();
757 } else {
758 $iterator = $rss->items;
759 if (!$iterator || !is_array($iterator)) $iterator = $rss->entries;
760 if (!$iterator || !is_array($iterator)) $iterator = $rss;
761 }
c22789da
AD
762
763 if (!is_array($iterator)) {
39541e74 764 /* db_query($link, "UPDATE ttrss_feeds
75bd0669 765 SET last_error = 'Parse error: can\'t find any articles.'
77f0a2a7
AD
766 WHERE id = '$feed'"); */
767
768 // clear any errors and mark feed as updated if fetched okay
769 // even if it's blank
770
b4e75b2a 771 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
844012bc
AD
772 _debug("update_rss_feed: entry iterator is not an array, no articles?");
773 }
774
77f0a2a7
AD
775 db_query($link, "UPDATE ttrss_feeds
776 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
777
778 return; // no articles
c22789da 779 }
ddb68b81 780
b4e75b2a 781 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
50b62214
AD
782 _debug("update_rss_feed: processing articles...");
783 }
784
ddb68b81 785 foreach ($iterator as $item) {
7c5a308d 786
b4e75b2a 787 if ($_REQUEST['xdebug'] == 2) {
40ce98f4
AD
788 print_r($item);
789 }
71bd29f6 790
16211ddb 791 if ($use_simplepie) {
9fdf7824
AD
792 $entry_guid = $item->get_id();
793 if (!$entry_guid) $entry_guid = $item->get_link();
794 if (!$entry_guid) $entry_guid = make_guid_from_title($item->get_title());
795
796 } else {
797
798 $entry_guid = $item["id"];
34e420fb 799
9fdf7824
AD
800 if (!$entry_guid) $entry_guid = $item["guid"];
801 if (!$entry_guid) $entry_guid = $item["link"];
802 if (!$entry_guid) $entry_guid = make_guid_from_title($item["title"]);
803 }
be832a1a 804
b4e75b2a 805 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
34e420fb
AD
806 _debug("update_rss_feed: guid $entry_guid");
807 }
808
be832a1a
AD
809 if (!$entry_guid) continue;
810
811 $entry_timestamp = "";
812
16211ddb 813 if ($use_simplepie) {
9fdf7824
AD
814 $entry_timestamp = strtotime($item->get_date());
815 } else {
816 $rss_2_date = $item['pubdate'];
817 $rss_1_date = $item['dc']['date'];
818 $atom_date = $item['issued'];
819 if (!$atom_date) $atom_date = $item['updated'];
e9558345 820
9fdf7824
AD
821 if ($atom_date != "") $entry_timestamp = parse_w3cdtf($atom_date);
822 if ($rss_1_date != "") $entry_timestamp = parse_w3cdtf($rss_1_date);
823 if ($rss_2_date != "") $entry_timestamp = strtotime($rss_2_date);
e9558345 824
9fdf7824 825 }
9bb36aa0 826
2e930846 827 if ($entry_timestamp == "" || $entry_timestamp == -1 || !$entry_timestamp) {
be832a1a
AD
828 $entry_timestamp = time();
829 $no_orig_date = 'true';
830 } else {
831 $no_orig_date = 'false';
832 }
833
834 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
835
b4e75b2a 836 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
44d0e774
AD
837 _debug("update_rss_feed: date $entry_timestamp [$entry_timestamp_fmt]");
838 }
839
16211ddb 840 if ($use_simplepie) {
9fdf7824
AD
841 $entry_title = $item->get_title();
842 } else {
843 $entry_title = trim(strip_tags($item["title"]));
844 }
be832a1a 845
16211ddb 846 if ($use_simplepie) {
9fdf7824
AD
847 $entry_link = $item->get_link();
848 } else {
849 // strange Magpie workaround
850 $entry_link = $item["link_"];
851 if (!$entry_link) $entry_link = $item["link"];
852 }
be832a1a 853
b4e75b2a 854 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
9bb36aa0
AD
855 _debug("update_rss_feed: title $entry_title");
856 }
857
858 if (!$entry_title) $entry_title = date("Y-m-d H:i:s", $entry_timestamp);;
7d3ab0dd 859
be832a1a 860 $entry_link = strip_tags($entry_link);
7d3ab0dd 861
16211ddb 862 if ($use_simplepie) {
4af7a36a
AD
863 $entry_content = $item->get_content();
864 if (!$entry_content) $entry_content = $item->get_description();
9fdf7824
AD
865 } else {
866 $entry_content = $item["content:escaped"];
867
868 if (!$entry_content) $entry_content = $item["content:encoded"];
e91ab107 869 if (!$entry_content) $entry_content = $item["content"]["encoded"];
9fdf7824 870 if (!$entry_content) $entry_content = $item["content"];
ea322415
AD
871
872 // Magpie bugs are getting ridiculous
873 if (trim($entry_content) == "Array") $entry_content = false;
874
9fdf7824
AD
875 if (!$entry_content) $entry_content = $item["atom_content"];
876 if (!$entry_content) $entry_content = $item["summary"];
e91ab107
AD
877
878 if (!$entry_content ||
879 strlen($entry_content) < strlen($item["description"])) {
880 $entry_content = $item["description"];
881 };
9fdf7824
AD
882
883 // WTF
884 if (is_array($entry_content)) {
885 $entry_content = $entry_content["encoded"];
886 if (!$entry_content) $entry_content = $entry_content["escaped"];
ea322415 887 }
be832a1a
AD
888 }
889
b4e75b2a 890 if ($_REQUEST["xdebug"] == 2) {
ea322415
AD
891 print "update_rss_feed: content: ";
892 print_r(htmlspecialchars($entry_content));
893 }
be832a1a
AD
894
895 $entry_content_unescaped = $entry_content;
be832a1a 896
16211ddb 897 if ($use_simplepie) {
9fdf7824 898 $entry_comments = strip_tags($item->data["comments"]);
30cf38dd 899 if ($item->get_author()) {
e1d600f0 900 $entry_author_item = $item->get_author();
a0c6eafb
AD
901 $entry_author = $entry_author_item->get_name();
902 if (!$entry_author) $entry_author = $entry_author_item->get_email();
d1ee9106
AD
903
904 $entry_author = db_escape_string($entry_author);
30cf38dd 905 }
9fdf7824
AD
906 } else {
907 $entry_comments = strip_tags($item["comments"]);
908
909 $entry_author = db_escape_string(strip_tags($item['dc']['creator']));
4d6e9157 910
9fdf7824
AD
911 if ($item['author']) {
912
913 if (is_array($item['author'])) {
914
915 if (!$entry_author) {
916 $entry_author = db_escape_string(strip_tags($item['author']['name']));
917 }
918
919 if (!$entry_author) {
920 $entry_author = db_escape_string(strip_tags($item['author']['email']));
921 }
4d6e9157 922 }
9fdf7824 923
4d6e9157 924 if (!$entry_author) {
9fdf7824 925 $entry_author = db_escape_string(strip_tags($item['author']));
4d6e9157 926 }
83f114c8 927 }
be832a1a
AD
928 }
929
83f114c8
AD
930 if (preg_match('/^[\t\n\r ]*$/', $entry_author)) $entry_author = '';
931
be832a1a 932 $entry_guid = db_escape_string(strip_tags($entry_guid));
2ad9ee56 933 $entry_guid = mb_substr($entry_guid, 0, 250);
be832a1a
AD
934
935 $result = db_query($link, "SELECT id FROM ttrss_entries
936 WHERE guid = '$entry_guid'");
937
938 $entry_content = db_escape_string($entry_content);
7e43ad58
AD
939
940 $content_hash = "SHA1:" . sha1(strip_tags($entry_content));
941
be832a1a
AD
942 $entry_title = db_escape_string($entry_title);
943 $entry_link = db_escape_string($entry_link);
2544f36b
AD
944 $entry_comments = mb_substr(db_escape_string($entry_comments), 0, 250);
945 $entry_author = mb_substr($entry_author, 0, 250);
be832a1a 946
16211ddb 947 if ($use_simplepie) {
9fdf7824
AD
948 $num_comments = 0; #FIXME#
949 } else {
950 $num_comments = db_escape_string($item["slash"]["comments"]);
951 }
be832a1a
AD
952
953 if (!$num_comments) $num_comments = 0;
954
fefef828 955 // parse <category> entries into tags
be832a1a 956
16211ddb 957 if ($use_simplepie) {
be832a1a 958
fefef828 959 $additional_tags = array();
9fdf7824 960 $additional_tags_src = $item->get_categories();
3b9e5af4 961
a702e931
AD
962 if (is_array($additional_tags_src)) {
963 foreach ($additional_tags_src as $tobj) {
964 array_push($additional_tags, $tobj->get_term());
965 }
fefef828 966 }
fefef828 967
b4e75b2a 968 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
6af621c7
AD
969 _debug("update_rss_feed: category tags:");
970 print_r($additional_tags);
971 }
972
9fdf7824 973 } else {
fefef828 974
9fdf7824 975 $t_ctr = $item['category#'];
fefef828 976
9fdf7824
AD
977 $additional_tags = false;
978
979 if ($t_ctr == 0) {
980 $additional_tags = false;
71bd29f6 981 } else if ($t_ctr > 0) {
9fdf7824 982 $additional_tags = array($item['category']);
71bd29f6
AD
983
984 if ($item['category@term']) {
985 array_push($additional_tags, $item['category@term']);
986 }
987
9fdf7824
AD
988 for ($i = 0; $i <= $t_ctr; $i++ ) {
989 if ($item["category#$i"]) {
990 array_push($additional_tags, $item["category#$i"]);
991 }
71bd29f6
AD
992
993 if ($item["category#$i@term"]) {
994 array_push($additional_tags, $item["category#$i@term"]);
995 }
9fdf7824
AD
996 }
997 }
998
999 // parse <dc:subject> elements
1000
1001 $t_ctr = $item['dc']['subject#'];
1002
71bd29f6 1003 if ($t_ctr > 0) {
9fdf7824 1004 $additional_tags = array($item['dc']['subject']);
71bd29f6 1005
9fdf7824
AD
1006 for ($i = 0; $i <= $t_ctr; $i++ ) {
1007 if ($item['dc']["subject#$i"]) {
1008 array_push($additional_tags, $item['dc']["subject#$i"]);
1009 }
fefef828
AD
1010 }
1011 }
1012 }
8add756a 1013
ce53e200
AD
1014 // enclosures
1015
1016 $enclosures = array();
1017
16211ddb 1018 if ($use_simplepie) {
ce53e200
AD
1019 $encs = $item->get_enclosures();
1020
3b9e5af4
AD
1021 if (is_array($encs)) {
1022 foreach ($encs as $e) {
1023 $e_item = array(
1024 $e->link, $e->type, $e->length);
1025
1026 array_push($enclosures, $e_item);
1027 }
ce53e200
AD
1028 }
1029
1030 } else {
e91ab107
AD
1031 // <enclosure>
1032
ce53e200
AD
1033 $e_ctr = $item['enclosure#'];
1034
1035 if ($e_ctr > 0) {
1036 $e_item = array($item['enclosure@url'],
1037 $item['enclosure@type'],
1038 $item['enclosure@length']);
1039
1040 array_push($enclosures, $e_item);
1041
71bd29f6
AD
1042 for ($i = 0; $i <= $e_ctr; $i++ ) {
1043
1044 if ($item["enclosure#$i@url"]) {
1045 $e_item = array($item["enclosure#$i@url"],
1046 $item["enclosure#$i@type"],
1047 $item["enclosure#$i@length"]);
1048 array_push($enclosures, $e_item);
1049 }
ce53e200
AD
1050 }
1051 }
1052
e91ab107 1053 // <media:content>
b652fdae 1054 // can there be many of those? yes -fox
e91ab107
AD
1055
1056 $m_ctr = $item['media']['content#'];
1057
1058 if ($m_ctr > 0) {
1059 $e_item = array($item['media']['content@url'],
1060 $item['media']['content@medium'],
1061 $item['media']['content@length']);
1062
1063 array_push($enclosures, $e_item);
e91ab107 1064
b652fdae
AD
1065 for ($i = 0; $i <= $m_ctr; $i++ ) {
1066
1067 if ($item["media"]["content#$i@url"]) {
1068 $e_item = array($item["media"]["content#$i@url"],
1069 $item["media"]["content#$i@medium"],
1070 $item["media"]["content#$i@length"]);
1071 array_push($enclosures, $e_item);
1072 }
1073 }
1074
1075 }
ce53e200
AD
1076 }
1077
d48d160c 1078 # sanitize content
183ad07b 1079
621ffb00
AD
1080 $entry_content = sanitize_article_content($entry_content);
1081 $entry_title = sanitize_article_content($entry_title);
d48d160c 1082
b4e75b2a 1083 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
34e420fb
AD
1084 _debug("update_rss_feed: done collecting data [TITLE:$entry_title]");
1085 }
1086
44e241cb
AD
1087 db_query($link, "BEGIN");
1088
4c193675
AD
1089 if (db_num_rows($result) == 0) {
1090
b4e75b2a 1091 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
34e420fb
AD
1092 _debug("update_rss_feed: base guid not found");
1093 }
1094
4c193675
AD
1095 // base post entry does not exist, create it
1096
4c193675
AD
1097 $result = db_query($link,
1098 "INSERT INTO ttrss_entries
1099 (title,
1100 guid,
1101 link,
1102 updated,
1103 content,
1104 content_hash,
1105 no_orig_date,
25ea2805 1106 date_updated,
4c193675 1107 date_entered,
11b0dce2 1108 comments,
b6104dee
AD
1109 num_comments,
1110 author)
4c193675
AD
1111 VALUES
1112 ('$entry_title',
1113 '$entry_guid',
1114 '$entry_link',
1115 '$entry_timestamp_fmt',
1116 '$entry_content',
1117 '$content_hash',
1118 $no_orig_date,
25ea2805
AD
1119 NOW(),
1120 NOW(),
11b0dce2 1121 '$entry_comments',
b6104dee
AD
1122 '$num_comments',
1123 '$entry_author')");
8926aab8
AD
1124 } else {
1125 // we keep encountering the entry in feeds, so we need to
25ea2805 1126 // update date_updated column so that we don't get horrible
8926aab8
AD
1127 // dupes when the entry gets purged and reinserted again e.g.
1128 // in the case of SLOW SLOW OMG SLOW updating feeds
1129
1130 $base_entry_id = db_fetch_result($result, 0, "id");
1131
25ea2805 1132 db_query($link, "UPDATE ttrss_entries SET date_updated = NOW()
8926aab8 1133 WHERE id = '$base_entry_id'");
4c193675
AD
1134 }
1135
1136 // now it should exist, if not - bad luck then
1137
6385315d
AD
1138 $result = db_query($link, "SELECT
1139 id,content_hash,no_orig_date,title,
25ea2805 1140 ".SUBSTRING_FOR_DATE."(date_updated,1,19) as date_updated,
2ac6b765 1141 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated,
11b0dce2 1142 num_comments
6385315d
AD
1143 FROM
1144 ttrss_entries
1145 WHERE guid = '$entry_guid'");
4c193675 1146
ce53e200
AD
1147 $entry_ref_id = 0;
1148 $entry_int_id = 0;
1149
4c193675
AD
1150 if (db_num_rows($result) == 1) {
1151
b4e75b2a 1152 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
7ca91eb3 1153 _debug("update_rss_feed: base guid found, checking for user record");
34e420fb
AD
1154 }
1155
11b0dce2
AD
1156 // this will be used below in update handler
1157 $orig_content_hash = db_fetch_result($result, 0, "content_hash");
1158 $orig_title = db_fetch_result($result, 0, "title");
1159 $orig_num_comments = db_fetch_result($result, 0, "num_comments");
25ea2805
AD
1160 $orig_date_updated = strtotime(db_fetch_result($result,
1161 0, "date_updated"));
6385315d 1162
11b0dce2 1163 $ref_id = db_fetch_result($result, 0, "id");
ce53e200 1164 $entry_ref_id = $ref_id;
4c193675 1165
11b0dce2 1166 // check for user post link to main table
4c193675 1167
11b0dce2 1168 // do we allow duplicate posts with same GUID in different feeds?
8d0ec6fd 1169 if (get_pref($link, "ALLOW_DUPLICATE_POSTS", $owner_uid, false)) {
e04c18a2 1170 $dupcheck_qpart = "AND (feed_id = '$feed' OR feed_id IS NULL)";
11b0dce2
AD
1171 } else {
1172 $dupcheck_qpart = "";
1173 }
71604ca4 1174
11b0dce2 1175// error_reporting(0);
19c9cb11 1176
f8382011 1177 $article_filters = get_article_filters($filters, $entry_title,
fa3317be 1178 $entry_content, $entry_link, $entry_timestamp, $entry_author);
19c9cb11 1179
b4e75b2a 1180 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
7ca91eb3
AD
1181 _debug("update_rss_feed: article filters: ");
1182 if (count($article_filters) != 0) {
1183 print_r($article_filters);
1184 }
1185 }
1186
f8382011 1187 if (find_article_filter($article_filters, "filter")) {
ee4a9812 1188 db_query($link, "COMMIT"); // close transaction in progress
11b0dce2
AD
1189 continue;
1190 }
19c9cb11 1191
11b0dce2 1192// error_reporting (DEFAULT_ERROR_LEVEL);
3a933f22 1193
ff6e357a
AD
1194 $score = calculate_article_score($article_filters);
1195
b4e75b2a 1196 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
ff6e357a
AD
1197 _debug("update_rss_feed: initial score: $score");
1198 }
1199
ef83538d 1200 $query = "SELECT ref_id, int_id FROM ttrss_user_entries WHERE
11b0dce2 1201 ref_id = '$ref_id' AND owner_uid = '$owner_uid'
ef83538d
AD
1202 $dupcheck_qpart";
1203
b4e75b2a 1204// if ($_REQUEST["xdebug"]) print "$query\n";
ef83538d
AD
1205
1206 $result = db_query($link, $query);
7ca91eb3 1207
11b0dce2
AD
1208 // okay it doesn't exist - create user entry
1209 if (db_num_rows($result) == 0) {
1210
b4e75b2a 1211 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
7ca91eb3
AD
1212 _debug("update_rss_feed: user record not found, creating...");
1213 }
1214
24605713 1215 if ($score >= -500 && !find_article_filter($article_filters, 'catchup')) {
11b0dce2
AD
1216 $unread = 'true';
1217 $last_read_qpart = 'NULL';
1218 } else {
1219 $unread = 'false';
1220 $last_read_qpart = 'NOW()';
1221 }
dd7d3187 1222
32d59314 1223 if (find_article_filter($article_filters, 'mark') || $score > 1000) {
dd7d3187
AD
1224 $marked = 'true';
1225 } else {
1226 $marked = 'false';
1227 }
a36c0dfe
AD
1228
1229 if (find_article_filter($article_filters, 'publish')) {
1230 $published = 'true';
1231 } else {
1232 $published = 'false';
1233 }
1234
11b0dce2
AD
1235 $result = db_query($link,
1236 "INSERT INTO ttrss_user_entries
ff6e357a
AD
1237 (ref_id, owner_uid, feed_id, unread, last_read, marked,
1238 published, score)
11b0dce2 1239 VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
ff6e357a 1240 $last_read_qpart, $marked, $published, '$score')");
ce53e200
AD
1241
1242 $result = db_query($link,
1243 "SELECT int_id FROM ttrss_user_entries WHERE
1244 ref_id = '$ref_id' AND owner_uid = '$owner_uid' AND
1245 feed_id = '$feed' LIMIT 1");
1246
1247 if (db_num_rows($result) == 1) {
1248 $entry_int_id = db_fetch_result($result, 0, "int_id");
1249 }
1250 } else {
b4e75b2a 1251 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
e04c18a2
AD
1252 _debug("update_rss_feed: user record FOUND");
1253 }
1254
ce53e200
AD
1255 $entry_ref_id = db_fetch_result($result, 0, "ref_id");
1256 $entry_int_id = db_fetch_result($result, 0, "int_id");
11b0dce2 1257 }
ce53e200 1258
b4e75b2a 1259 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
ce53e200
AD
1260 _debug("update_rss_feed: RID: $entry_ref_id, IID: $entry_int_id");
1261 }
1262
6385315d
AD
1263 $post_needs_update = false;
1264
8d0ec6fd 1265 if (get_pref($link, "UPDATE_POST_ON_CHECKSUM_CHANGE", $owner_uid, false) &&
6385315d 1266 ($content_hash != $orig_content_hash)) {
7e43ad58 1267// print "<!-- [$entry_title] $content_hash vs $orig_content_hash -->";
6385315d
AD
1268 $post_needs_update = true;
1269 }
1270
7e43ad58 1271 if (db_escape_string($orig_title) != $entry_title) {
6385315d
AD
1272 $post_needs_update = true;
1273 }
1274
11b0dce2
AD
1275 if ($orig_num_comments != $num_comments) {
1276 $post_needs_update = true;
1277 }
1278
6385315d
AD
1279// this doesn't seem to be very reliable
1280//
1281// if ($orig_timestamp != $entry_timestamp && !$orig_no_orig_date) {
1282// $post_needs_update = true;
1283// }
1284
1285 // if post needs update, update it and mark all user entries
1c73bc0c 1286 // linking to this post as updated
6385315d
AD
1287 if ($post_needs_update) {
1288
7ca91eb3
AD
1289 if (defined('DAEMON_EXTENDED_DEBUG')) {
1290 _debug("update_rss_feed: post $entry_guid needs update...");
1291 }
1292
6385315d
AD
1293// print "<!-- post $orig_title needs update : $post_needs_update -->";
1294
6385315d 1295 db_query($link, "UPDATE ttrss_entries
11b0dce2 1296 SET title = '$entry_title', content = '$entry_content',
7e43ad58 1297 content_hash = '$content_hash',
11b0dce2 1298 num_comments = '$num_comments'
6385315d
AD
1299 WHERE id = '$ref_id'");
1300
8d0ec6fd 1301 if (get_pref($link, "MARK_UNREAD_ON_UPDATE", $owner_uid, false)) {
4919fb42
AD
1302 db_query($link, "UPDATE ttrss_user_entries
1303 SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
1304 } else {
1305 db_query($link, "UPDATE ttrss_user_entries
1306 SET last_read = null WHERE ref_id = '$ref_id' AND unread = false");
1307 }
6385315d
AD
1308
1309 }
4c193675
AD
1310 }
1311
44e241cb
AD
1312 db_query($link, "COMMIT");
1313
b4e75b2a 1314 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
ceb30ba4
AD
1315 _debug("update_rss_feed: assigning labels...");
1316 }
1317
1318 assign_article_to_labels($link, $entry_ref_id, $article_filters,
1319 $owner_uid);
1320
b4e75b2a 1321 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
ce53e200
AD
1322 _debug("update_rss_feed: looking for enclosures...");
1323 }
1324
b4e75b2a 1325 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
ce53e200
AD
1326 print_r($enclosures);
1327 }
1328
1329 db_query($link, "BEGIN");
1330
1331 foreach ($enclosures as $enc) {
1332 $enc_url = db_escape_string($enc[0]);
1333 $enc_type = db_escape_string($enc[1]);
1334 $enc_dur = db_escape_string($enc[2]);
1335
1336 $result = db_query($link, "SELECT id FROM ttrss_enclosures
1337 WHERE content_url = '$enc_url' AND post_id = '$entry_ref_id'");
1338
1339 if (db_num_rows($result) == 0) {
1340 db_query($link, "INSERT INTO ttrss_enclosures
1341 (content_url, content_type, title, duration, post_id) VALUES
1342 ('$enc_url', '$enc_type', '', '$enc_dur', '$entry_ref_id')");
1343 }
1344 }
1345
1346 db_query($link, "COMMIT");
1347
b4e75b2a 1348 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
34e420fb
AD
1349 _debug("update_rss_feed: looking for tags...");
1350 }
1351
eb36b4eb 1352 /* taaaags */
40e1a95b 1353 // <a href="..." rel="tag">Xorg</a>, //
eb36b4eb 1354
05732aa0 1355 $entry_tags = null;
eb36b4eb 1356
40e1a95b 1357 preg_match_all("/<a.*?rel=['\"]tag['\"].*?>([^<]+)<\/a>/i",
ee2c3050
AD
1358 $entry_content_unescaped, $entry_tags);
1359
fefef828
AD
1360/* print "<p><br/>$entry_title : $entry_content_unescaped<br>";
1361 print_r($entry_tags);
1362 print "<br/></p>"; */
eb36b4eb
AD
1363
1364 $entry_tags = $entry_tags[1];
1365
073ca0e6
AD
1366 # check for manual tags
1367
4d50f419
AD
1368 foreach ($article_filters as $f) {
1369 if ($f[0] == "tag") {
f8382011 1370
4d50f419 1371 $manual_tags = trim_array(split(",", $f[1]));
073ca0e6 1372
4d50f419
AD
1373 foreach ($manual_tags as $tag) {
1374 if (tag_is_valid($tag)) {
1375 array_push($entry_tags, $tag);
1376 }
be832a1a
AD
1377 }
1378 }
1379 }
1380
11c9ea1f
AD
1381 $boring_tags = trim_array(split(",", mb_strtolower(get_pref($link,
1382 'BLACKLISTED_TAGS', $owner_uid, ''), 'utf-8')));
8fc70781 1383
fefef828
AD
1384 if ($additional_tags && is_array($additional_tags)) {
1385 foreach ($additional_tags as $tag) {
156a785d
AD
1386 if (tag_is_valid($tag) &&
1387 array_search($tag, $boring_tags) === FALSE) {
073ca0e6
AD
1388 array_push($entry_tags, $tag);
1389 }
1390 }
fefef828
AD
1391 }
1392
fcc95e24 1393// print "<p>TAGS: "; print_r($entry_tags); print "</p>";
073ca0e6 1394
b4e75b2a 1395 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
9fdf7824
AD
1396 print_r($entry_tags);
1397 }
1398
eb36b4eb
AD
1399 if (count($entry_tags) > 0) {
1400
44e241cb
AD
1401 db_query($link, "BEGIN");
1402
fe99ab12 1403 foreach ($entry_tags as $tag) {
fefef828 1404
14b6c54b 1405 $tag = sanitize_tag($tag);
fefef828 1406 $tag = db_escape_string($tag);
31483fc1 1407
ef063748
AD
1408 if (!tag_is_valid($tag)) continue;
1409
fe99ab12
AD
1410 $result = db_query($link, "SELECT id FROM ttrss_tags
1411 WHERE tag_name = '$tag' AND post_int_id = '$entry_int_id' AND
1412 owner_uid = '$owner_uid' LIMIT 1");
1413
1414 // print db_fetch_result($result, 0, "id");
1415
1416 if ($result && db_num_rows($result) == 0) {
1417
fe99ab12
AD
1418 db_query($link, "INSERT INTO ttrss_tags
1419 (owner_uid,tag_name,post_int_id)
1420 VALUES ('$owner_uid','$tag', '$entry_int_id')");
1421 }
1422 }
ce53e200 1423
44e241cb 1424 db_query($link, "COMMIT");
05732aa0 1425 }
9fdf7824 1426
b4e75b2a 1427 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
9fdf7824
AD
1428 _debug("update_rss_feed: article processed");
1429 }
4c193675 1430 }
40d13c28 1431
50b2db96 1432 if (!$last_updated) {
b4e75b2a 1433 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
50b2db96
AD
1434 _debug("update_rss_feed: new feed, catching it up...");
1435 }
c7e51de1 1436 catchup_feed($link, $feed, false, $owner_uid);
50b2db96
AD
1437 }
1438
0e70ed51 1439 purge_feed($link, $feed, 0);
3907ef71 1440
ab3d0b99
AD
1441 db_query($link, "UPDATE ttrss_feeds
1442 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
eb36b4eb 1443
44e241cb 1444// db_query($link, "COMMIT");
dd8c76a9 1445
ab3d0b99 1446 } else {
ca872b9d 1447
16211ddb 1448 if ($use_simplepie) {
ca872b9d 1449 $error_msg = mb_substr($rss->error(), 0, 250);
9fdf7824 1450 } else {
ca872b9d 1451 $error_msg = mb_substr(magpie_error(), 0, 250);
9fdf7824 1452 }
ca872b9d 1453
b4e75b2a 1454 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
ca872b9d
AD
1455 _debug("update_rss_feed: error fetching feed: $error_msg");
1456 }
1457
1458 $error_msg = db_escape_string($error_msg);
1459
ab3d0b99 1460 db_query($link,
aa5f9f5f
AD
1461 "UPDATE ttrss_feeds SET last_error = '$error_msg',
1462 last_updated = NOW() WHERE id = '$feed'");
40d13c28
AD
1463 }
1464
16211ddb 1465 if ($use_simplepie) {
ac6ebdb3
AD
1466 unset($rss);
1467 }
1468
b4e75b2a 1469 if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
34e420fb 1470 _debug("update_rss_feed: done");
219bd8fc
AD
1471 }
1472
40d13c28
AD
1473 }
1474
f175937c 1475 function print_select($id, $default, $values, $attributes = "") {
79f3553b 1476 print "<select name=\"$id\" id=\"$id\" $attributes>";
a0d53889
AD
1477 foreach ($values as $v) {
1478 if ($v == $default)
1479 $sel = " selected";
1480 else
1481 $sel = "";
1482
1483 print "<option$sel>$v</option>";
1484 }
1485 print "</select>";
1486 }
40d13c28 1487
79f3553b
AD
1488 function print_select_hash($id, $default, $values, $attributes = "") {
1489 print "<select name=\"$id\" id='$id' $attributes>";
673d54ca
AD
1490 foreach (array_keys($values) as $v) {
1491 if ($v == $default)
74d5c8fa 1492 $sel = 'selected="selected"';
673d54ca
AD
1493 else
1494 $sel = "";
1495
1496 print "<option $sel value=\"$v\">".$values[$v]."</option>";
1497 }
1498
1499 print "</select>";
1500 }
1501
fa3317be 1502 function get_article_filters($filters, $title, $content, $link, $timestamp, $author) {
240054f1 1503 $matches = array();
c2d9322b 1504
240054f1
AD
1505 if ($filters["title"]) {
1506 foreach ($filters["title"] as $filter) {
c2d9322b
AD
1507 $reg_exp = $filter["reg_exp"];
1508 $inverse = $filter["inverse"];
1509 if ((!$inverse && preg_match("/$reg_exp/i", $title)) ||
1510 ($inverse && !preg_match("/$reg_exp/i", $title))) {
1511
240054f1
AD
1512 array_push($matches, array($filter["action"], $filter["action_param"]));
1513 }
1514 }
1515 }
1516
1517 if ($filters["content"]) {
1518 foreach ($filters["content"] as $filter) {
c2d9322b
AD
1519 $reg_exp = $filter["reg_exp"];
1520 $inverse = $filter["inverse"];
1521
1522 if ((!$inverse && preg_match("/$reg_exp/i", $content)) ||
1523 ($inverse && !preg_match("/$reg_exp/i", $content))) {
1524
240054f1
AD
1525 array_push($matches, array($filter["action"], $filter["action_param"]));
1526 }
1527 }
1528 }
1529
1530 if ($filters["both"]) {
1531 foreach ($filters["both"] as $filter) {
1532 $reg_exp = $filter["reg_exp"];
c2d9322b
AD
1533 $inverse = $filter["inverse"];
1534
1535 if ($inverse) {
d404ae81 1536 if (!preg_match("/$reg_exp/i", $title) && !preg_match("/$reg_exp/i", $content)) {
c2d9322b
AD
1537 array_push($matches, array($filter["action"], $filter["action_param"]));
1538 }
1539 } else {
1540 if (preg_match("/$reg_exp/i", $title) || preg_match("/$reg_exp/i", $content)) {
1541 array_push($matches, array($filter["action"], $filter["action_param"]));
1542 }
240054f1
AD
1543 }
1544 }
1545 }
1546
1547 if ($filters["link"]) {
1548 $reg_exp = $filter["reg_exp"];
1549 foreach ($filters["link"] as $filter) {
1550 $reg_exp = $filter["reg_exp"];
c2d9322b
AD
1551 $inverse = $filter["inverse"];
1552
1553 if ((!$inverse && preg_match("/$reg_exp/i", $link)) ||
1554 ($inverse && !preg_match("/$reg_exp/i", $link))) {
1555
240054f1
AD
1556 array_push($matches, array($filter["action"], $filter["action_param"]));
1557 }
1558 }
1559 }
1560
44d0e774
AD
1561 if ($filters["date"]) {
1562 $reg_exp = $filter["reg_exp"];
1563 foreach ($filters["date"] as $filter) {
1564 $date_modifier = $filter["filter_param"];
1565 $inverse = $filter["inverse"];
1566 $check_timestamp = strtotime($filter["reg_exp"]);
1567
1568 # no-op when timestamp doesn't parse to prevent misfires
1569
1570 if ($check_timestamp) {
1571 $match_ok = false;
1572
1573 if ($date_modifier == "before" && $timestamp < $check_timestamp ||
1574 $date_modifier == "after" && $timestamp > $check_timestamp) {
1575 $match_ok = true;
1576 }
1577
1578 if ($inverse) $match_ok = !$match_ok;
1579
1580 if ($match_ok) {
1581 array_push($matches, array($filter["action"], $filter["action_param"]));
1582 }
1583 }
1584 }
1585 }
1586
fa3317be
AD
1587 if ($filters["author"]) {
1588 foreach ($filters["author"] as $filter) {
1589 $reg_exp = $filter["reg_exp"];
1590 $inverse = $filter["inverse"];
1591 if ((!$inverse && preg_match("/$reg_exp/i", $author)) ||
1592 ($inverse && !preg_match("/$reg_exp/i", $author))) {
1593
1594 array_push($matches, array($filter["action"], $filter["action_param"]));
1595 }
1596 }
1597 }
1598
240054f1
AD
1599 return $matches;
1600 }
1601
f8382011
AD
1602 function find_article_filter($filters, $filter_name) {
1603 foreach ($filters as $f) {
1604 if ($f[0] == $filter_name) {
1605 return $f;
1606 };
1607 }
1608 return false;
1609 }
1610
ff6e357a
AD
1611 function calculate_article_score($filters) {
1612 $score = 0;
1613
1614 foreach ($filters as $f) {
1615 if ($f[0] == "score") {
1616 $score += $f[1];
1617 };
1618 }
1619 return $score;
1620 }
1621
ceb30ba4
AD
1622 function assign_article_to_labels($link, $id, $filters, $owner_uid) {
1623 foreach ($filters as $f) {
1624 if ($f[0] == "label") {
1625 label_add_article($link, $id, $f[1], $owner_uid);
1626 };
1627 }
1628 }
ff6e357a 1629
9323147e 1630 function printFeedEntry($feed_id, $class, $feed_title, $unread, $icon_file, $link,
2eb9c95c
AD
1631 $rtl_content = false, $last_updated = false, $last_error = false,
1632 $fg_content = false, $bg_content = false) {
254e0e4b 1633
e04c18a2 1634 if (!$feed_title) $feed_title = getFeedTitle($link, $feed_id, false);
4bee8b5f
AD
1635 if (!$unread) $unread = getFeedUnread($link, $feed_id);
1636
1637 if ($unread > 0) $class .= "Unread";
1638
1639 if (!$icon_file) $icon_file = getFeedIcon($feed_id);
e04c18a2 1640
e9823609
AD
1641 if (strpos($icon_file, "images") !== false) {
1642 $icon_file = theme_image($link, $icon_file);
b97e6e02
AD
1643 }
1644
254e0e4b 1645 if (file_exists($icon_file) && filesize($icon_file) > 0) {
023fe037 1646 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"$icon_file\">";
254e0e4b 1647 } else {
023fe037 1648 $feed_icon = "<img id=\"FIMG-$feed_id\" src=\"images/blank_icon.gif\">";
254e0e4b
AD
1649 }
1650
9323147e
AD
1651 if ($rtl_content) {
1652 $rtl_tag = "dir=\"rtl\"";
1653 } else {
1654 $rtl_tag = "dir=\"ltr\"";
1655 }
1656
78d5212c
AD
1657 $error_notify_msg = "";
1658
fb1fb4ab
AD
1659 if ($last_error) {
1660 $link_title = "Error: $last_error ($last_updated)";
78d5212c 1661 $error_notify_msg = "(Error)";
ad780e9c 1662 } else if ($last_updated) {
fb1fb4ab
AD
1663 $link_title = "Updated: $last_updated";
1664 }
1665
02b289d6
AD
1666 $feed = "<span class='feedlink' title=\"$link_title\" id=\"FEEDL-$feed_id\" href=\"#\"
1667 onclick=\"viewfeed('$feed_id');\">$feed_title</span>";
254e0e4b 1668
2eb9c95c
AD
1669/* if ($feed_id < -10) {
1670 $bg_color = "#00ccff";
1671 $fg_color = "white";
1672 }
1673
1674 if ($fg_color || $bg_color) {
1675 $color_str = "<div class='labelColorIndicator'
1676 style='color : $fg_color; background-color : $bg_color'>l</div>";
1677 }
1678
1679 print $color_str; */
1680
8836613c 1681 print "<li id=\"FEEDR-$feed_id\" class=\"$class\">";
85a92289 1682 print "$feed_icon";
9323147e 1683 print "<span $rtl_tag id=\"FEEDN-$feed_id\">$feed</span>";
254e0e4b
AD
1684
1685 if ($unread != 0) {
d7e83df7 1686 $fctr_class = "class=\"feedCtrHasUnread\"";
254e0e4b 1687 } else {
d7e83df7 1688 $fctr_class = "class=\"feedCtrNoUnread\"";
254e0e4b
AD
1689 }
1690
9323147e 1691 print " <span $rtl_tag $fctr_class id=\"FEEDCTR-$feed_id\">
254e0e4b 1692 (<span id=\"FEEDU-$feed_id\">$unread</span>)</span>";
78d5212c
AD
1693
1694 if (get_pref($link, "EXTENDED_FEEDLIST")) {
bdb7369b 1695 $total = getFeedArticles($link, $feed_id);
78d5212c 1696 print "<div class=\"feedExtInfo\">
bdb7369b 1697 <span id=\"FLUPD-$feed_id\">$last_updated ($total total) $error_notify_msg</span></div>";
78d5212c 1698 }
2eb9c95c 1699
254e0e4b
AD
1700 print "</li>";
1701
1702 }
1703
406d9489
AD
1704 function getmicrotime() {
1705 list($usec, $sec) = explode(" ",microtime());
1706 return ((float)$usec + (float)$sec);
1707 }
1708
f541eb78 1709 function print_radio($id, $default, $true_is, $values, $attributes = "") {
77e96719
AD
1710 foreach ($values as $v) {
1711
1712 if ($v == $default)
5da169d9 1713 $sel = "checked";
77e96719 1714 else
5da169d9
AD
1715 $sel = "";
1716
f541eb78 1717 if ($v == $true_is) {
5da169d9
AD
1718 $sel .= " value=\"1\"";
1719 } else {
1720 $sel .= " value=\"0\"";
1721 }
77e96719 1722
69654950
AD
1723 print "<input class=\"noborder\"
1724 type=\"radio\" $sel $attributes name=\"$id\">&nbsp;$v&nbsp;";
77e96719
AD
1725
1726 }
1727 }
1728
d9084cf2 1729 function initialize_user_prefs($link, $uid, $profile = false) {
ff485f1d
AD
1730
1731 $uid = db_escape_string($uid);
1732
d9084cf2
AD
1733 if (!$profile) {
1734 $profile = "NULL";
f9aa6a89 1735 $profile_qpart = "AND profile IS NULL";
d9084cf2 1736 } else {
f9aa6a89 1737 $profile_qpart = "AND profile = '$profile'";
d9084cf2
AD
1738 }
1739
f9aa6a89
AD
1740 if (get_schema_version($link) < 63) $profile_qpart = "";
1741
ff485f1d
AD
1742 db_query($link, "BEGIN");
1743
1744 $result = db_query($link, "SELECT pref_name,def_value FROM ttrss_prefs");
1745
1746 $u_result = db_query($link, "SELECT pref_name
f9aa6a89 1747 FROM ttrss_user_prefs WHERE owner_uid = '$uid' $profile_qpart");
ff485f1d
AD
1748
1749 $active_prefs = array();
1750
1751 while ($line = db_fetch_assoc($u_result)) {
1752 array_push($active_prefs, $line["pref_name"]);
1753 }
1754
1755 while ($line = db_fetch_assoc($result)) {
1756 if (array_search($line["pref_name"], $active_prefs) === FALSE) {
1757// print "adding " . $line["pref_name"] . "<br>";
1758
f9aa6a89
AD
1759 if (get_schema_version($link) < 63) {
1760 db_query($link, "INSERT INTO ttrss_user_prefs
1761 (owner_uid,pref_name,value) VALUES
1762 ('$uid', '".$line["pref_name"]."','".$line["def_value"]."')");
1763
1764 } else {
1765 db_query($link, "INSERT INTO ttrss_user_prefs
1766 (owner_uid,pref_name,value, profile) VALUES
1767 ('$uid', '".$line["pref_name"]."','".$line["def_value"]."', $profile)");
1768 }
ff485f1d
AD
1769
1770 }
1771 }
1772
1773 db_query($link, "COMMIT");
1774
1775 }
956c7629
AD
1776
1777 function lookup_user_id($link, $user) {
1778
1779 $result = db_query($link, "SELECT id FROM ttrss_users WHERE
1780 login = '$login'");
1781
1782 if (db_num_rows($result) == 1) {
1783 return db_fetch_result($result, 0, "id");
1784 } else {
1785 return false;
1786 }
1787 }
1788
18664970
AD
1789 function http_authenticate_user($link) {
1790
99ea1043 1791// error_log("http_authenticate_user: ".$_SERVER["PHP_AUTH_USER"]."\n", 3, '/tmp/tt-rss.log');
4bc64807 1792
18664970
AD
1793 if (!$_SERVER["PHP_AUTH_USER"]) {
1794
1795 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS RSSGen"');
1796 header('HTTP/1.0 401 Unauthorized');
1797 exit;
1798
1799 } else {
1800 $auth_result = authenticate_user($link,
1801 $_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"]);
1802
1803 if (!$auth_result) {
1804 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS RSSGen"');
1805 header('HTTP/1.0 401 Unauthorized');
1806 exit;
1807 }
1808 }
1809
1810 return true;
1811 }
1812
461766f3 1813 function authenticate_user($link, $login, $password, $force_auth = false) {
c8437f35 1814
131b01b3 1815 if (!SINGLE_USER_MODE) {
c8437f35 1816
1a9f4d3c
AD
1817 $pwd_hash1 = encrypt_password($password);
1818 $pwd_hash2 = encrypt_password($password, $login);
2d969845 1819 $login = db_escape_string($login);
461766f3 1820
66917e70 1821 if (defined('ALLOW_REMOTE_USER_AUTH') && ALLOW_REMOTE_USER_AUTH
73f5f114 1822 && $_SERVER["REMOTE_USER"] && $login != "admin") {
66917e70
AD
1823
1824 $login = db_escape_string($_SERVER["REMOTE_USER"]);
1825
73f5f114 1826 $query = "SELECT id,login,access_level,pwd_hash
461766f3 1827 FROM ttrss_users WHERE
66917e70
AD
1828 login = '$login'";
1829
461766f3 1830 } else {
1a9f4d3c 1831 $query = "SELECT id,login,access_level,pwd_hash
461766f3 1832 FROM ttrss_users WHERE
1a9f4d3c
AD
1833 login = '$login' AND (pwd_hash = '$pwd_hash1' OR
1834 pwd_hash = '$pwd_hash2')";
461766f3
AD
1835 }
1836
1837 $result = db_query($link, $query);
131b01b3
AD
1838
1839 if (db_num_rows($result) == 1) {
1840 $_SESSION["uid"] = db_fetch_result($result, 0, "id");
1841 $_SESSION["name"] = db_fetch_result($result, 0, "login");
1842 $_SESSION["access_level"] = db_fetch_result($result, 0, "access_level");
1843
1844 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
1845 $_SESSION["uid"]);
1846
131b01b3 1847 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
1a9f4d3c 1848 $_SESSION["pwd_hash"] = db_fetch_result($result, 0, "pwd_hash");
91c5f229
AD
1849
1850 $_SESSION["last_version_check"] = time();
131b01b3
AD
1851
1852 initialize_user_prefs($link, $_SESSION["uid"]);
1853
1854 return true;
1855 }
1856
1857 return false;
503eb349 1858
131b01b3 1859 } else {
503eb349 1860
131b01b3
AD
1861 $_SESSION["uid"] = 1;
1862 $_SESSION["name"] = "admin";
f557cd78 1863
0bbba72d
AD
1864 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
1865
1866 initialize_user_prefs($link, $_SESSION["uid"]);
1867
c8437f35
AD
1868 return true;
1869 }
c8437f35
AD
1870 }
1871
e6cb77a0
AD
1872 function make_password($length = 8) {
1873
1874 $password = "";
798f722b
AD
1875 $possible = "0123456789abcdfghjkmnpqrstvwxyzABCDFGHJKMNPQRSTVWXYZ";
1876
1877 $i = 0;
e6cb77a0
AD
1878
1879 while ($i < $length) {
1880 $char = substr($possible, mt_rand(0, strlen($possible)-1), 1);
1881
1882 if (!strstr($password, $char)) {
1883 $password .= $char;
1884 $i++;
1885 }
1886 }
1887 return $password;
1888 }
1889
1890 // this is called after user is created to initialize default feeds, labels
1891 // or whatever else
1892
1893 // user preferences are checked on every login, not here
1894
1895 function initialize_user($link, $uid) {
1896
e6cb77a0 1897 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
74bff337 1898 values ('$uid', 'Tiny Tiny RSS: New Releases',
b6d486a3 1899 'http://tt-rss.org/releases.rss')");
3b0feb9b 1900
cd2cd415
AD
1901 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
1902 values ('$uid', 'Tiny Tiny RSS: Forum',
f0855b88 1903 'http://tt-rss.org/forum/rss.php')");
3b0feb9b 1904 }
e6cb77a0 1905
b8aa49bc 1906 function logout_user() {
5ccc1cf5
AD
1907 session_destroy();
1908 if (isset($_COOKIE[session_name()])) {
1909 setcookie(session_name(), '', time()-42000, '/');
1910 }
b8aa49bc
AD
1911 }
1912
75836f33 1913 function get_script_urlpath() {
87a79fa4 1914 return preg_replace('/\/[^\/]*$/', "", $_SERVER["REQUEST_URI"]);
75836f33
AD
1915 }
1916
916f788a 1917 function validate_session($link) {
741edab2
AD
1918 if (SINGLE_USER_MODE) {
1919 return true;
1920 }
1921
a2e9b457 1922 if (SESSION_CHECK_ADDRESS && $_SESSION["uid"]) {
916f788a
AD
1923 if ($_SESSION["ip_address"]) {
1924 if ($_SESSION["ip_address"] != $_SERVER["REMOTE_ADDR"]) {
af163b85 1925 $_SESSION["login_error_msg"] = __("Session failed to validate (incorrect IP)");
916f788a
AD
1926 return false;
1927 }
1928 }
1929 }
d620cfe7 1930
05044a59
AD
1931 if ($_SESSION["ref_schema_version"] != get_schema_version($link, true)) {
1932 return false;
1933 }
1934
e6684130
AD
1935 if ($_SESSION["uid"]) {
1936
1937 $result = db_query($link,
1938 "SELECT pwd_hash FROM ttrss_users WHERE id = '".$_SESSION["uid"]."'");
1939
1940 $pwd_hash = db_fetch_result($result, 0, "pwd_hash");
1941
1942 if ($pwd_hash != $_SESSION["pwd_hash"]) {
1943 return false;
1944 }
1945 }
1946
a885f0ec 1947/* if ($_SESSION["cookie_lifetime"] && $_SESSION["uid"]) {
d620cfe7 1948
8e849206 1949 //print_r($_SESSION);
d620cfe7
AD
1950
1951 if (time() > $_SESSION["cookie_lifetime"]) {
1952 return false;
1953 }
a885f0ec
AD
1954 } */
1955
916f788a
AD
1956 return true;
1957 }
1958
793185a9 1959 function login_sequence($link, $mobile = false) {
b8aa49bc 1960 if (!SINGLE_USER_MODE) {
75836f33 1961
7f0acba7 1962 $login_action = $_POST["login_action"];
a885f0ec 1963
01a87dff 1964 # try to authenticate user if called from login form
7f0acba7 1965 if ($login_action == "do_login") {
01a87dff
AD
1966 $login = $_POST["login"];
1967 $password = $_POST["password"];
d620cfe7 1968 $remember_me = $_POST["remember_me"];
f557cd78 1969
01a87dff
AD
1970 if (authenticate_user($link, $login, $password)) {
1971 $_POST["password"] = "";
d620cfe7 1972
f8c612d4 1973 $_SESSION["language"] = $_POST["language"];
05044a59 1974 $_SESSION["ref_schema_version"] = get_schema_version($link, true);
a598370d 1975 $_SESSION["bw_limit"] = !!$_POST["bw_limit"];
f8c612d4 1976
d9084cf2
AD
1977 if ($_POST["profile"]) {
1978
1979 $profile = db_escape_string($_POST["profile"]);
1980
1981 $result = db_query($link, "SELECT id FROM ttrss_settings_profiles
1982 WHERE id = '$profile' AND owner_uid = " . $_SESSION["uid"]);
1983
1984 if (db_num_rows($result) != 0) {
1985 $_SESSION["profile"] = $profile;
1986 $_SESSION["prefs_cache"] = array();
1987 }
1988 }
1989
d620cfe7
AD
1990 header("Location: " . $_SERVER["REQUEST_URI"]);
1991 exit;
1992
01a87dff 1993 return;
7f0acba7 1994 } else {
af163b85 1995 $_SESSION["login_error_msg"] = __("Incorrect username or password");
01a87dff
AD
1996 }
1997 }
1998
7f0acba7 1999 if (!$_SESSION["uid"] || !validate_session($link)) {
206d4967
AD
2000 render_login_form($link, $mobile);
2001 //header("Location: login.php");
01a87dff 2002 exit;
d3687e7a
AD
2003 } else {
2004 /* bump login timestamp */
2005 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
2006 $_SESSION["uid"]);
019bd5a9 2007
d54780bc 2008 if ($_SESSION["language"] && SESSION_COOKIE_LIFETIME > 0) {
019bd5a9
AD
2009 setcookie("ttrss_lang", $_SESSION["language"],
2010 time() + SESSION_COOKIE_LIFETIME);
2011 }
4fdb0476
AD
2012
2013 /* bump counters stamp since we're getting reloaded anyway */
2014
2015 $_SESSION["get_all_counters_stamp"] = time();
b8aa49bc 2016 }
d620cfe7 2017
b8aa49bc 2018 } else {
0bbba72d 2019 return authenticate_user($link, "admin", null);
b8aa49bc
AD
2020 }
2021 }
3547842a
AD
2022
2023 function truncate_string($str, $max_len) {
12db369c 2024 if (mb_strlen($str, "utf-8") > $max_len - 3) {
66a251f9 2025 return mb_substr($str, 0, $max_len, "utf-8") . "&hellip;";
3547842a
AD
2026 } else {
2027 return $str;
2028 }
2029 }
54a60e1a 2030
e9823609 2031 function theme_image($link, $filename) {
883fee8d
AD
2032 if ($link) {
2033 $theme_path = get_user_theme_path($link);
e9823609 2034
883fee8d
AD
2035 if ($theme_path && is_file($theme_path.$filename)) {
2036 return $theme_path.$filename;
2037 } else {
2038 return $filename;
2039 }
e9823609
AD
2040 } else {
2041 return $filename;
2042 }
2043 }
2044
dce46cad 2045 function get_user_theme($link) {
e4c51a6c 2046
b92fbcd8 2047 if (get_schema_version($link) >= 63 && $_SESSION["uid"]) {
b97e6e02
AD
2048 $theme_name = get_pref($link, "_THEME_ID");
2049 if (is_dir("themes/$theme_name")) {
2050 return $theme_name;
2051 } else {
2052 return '';
2053 }
e4c51a6c 2054 } else {
b97e6e02 2055 return '';
e4c51a6c 2056 }
d9084cf2 2057
dce46cad
AD
2058 }
2059
2060 function get_user_theme_path($link) {
c3fddd05 2061 $theme_path = '';
dce46cad 2062
b92fbcd8 2063 if (get_schema_version($link) >= 63 && $_SESSION["uid"]) {
dce46cad
AD
2064 $theme_name = get_pref($link, "_THEME_ID");
2065
b97e6e02 2066 if ($theme_name && is_dir("themes/$theme_name")) {
dce46cad 2067 $theme_path = "themes/$theme_name/";
6ba50622 2068 } else {
dce46cad 2069 $theme_name = '';
6ba50622 2070 }
54a60e1a 2071 } else {
dce46cad
AD
2072 $theme_path = '';
2073 }
2074
2075 return $theme_path;
2076 }
2077
e71f2610
AD
2078 function get_user_theme_options($link) {
2079 $t = get_user_theme_path($link);
2080
2081 if ($t) {
2082 if (is_file("$t/theme.ini")) {
2083 $ini = parse_ini_file("$t/theme.ini", true);
2084 if ($ini['theme']['version']) {
2085 return $ini['theme']['options'];
2086 }
2087 }
2088 }
f1f3a642 2089 return '';
e71f2610
AD
2090 }
2091
2092
dce46cad
AD
2093 function get_all_themes() {
2094 $themes = glob("themes/*");
2095
b97e6e02
AD
2096 asort($themes);
2097
dce46cad
AD
2098 $rv = array();
2099
2100 foreach ($themes as $t) {
2101 if (is_file("$t/theme.ini")) {
2102 $ini = parse_ini_file("$t/theme.ini", true);
b97e6e02 2103 if ($ini['theme']['version'] && !$ini['theme']['disabled']) {
dce46cad
AD
2104 $entry = array();
2105 $entry["path"] = $t;
2106 $entry["base"] = basename($t);
2107 $entry["name"] = $ini['theme']['name'];
2108 $entry["version"] = $ini['theme']['version'];
2109 $entry["author"] = $ini['theme']['author'];
e71f2610 2110 $entry["options"] = $ini['theme']['options'];
dce46cad
AD
2111 array_push($rv, $entry);
2112 }
2113 }
54a60e1a 2114 }
dce46cad
AD
2115
2116 return $rv;
54a60e1a 2117 }
be773442
AD
2118
2119 function smart_date_time($timestamp) {
2120 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
2121 return date("G:i", $timestamp);
f26450f1 2122 } else if (date("Y", $timestamp) == date("Y")) {
be773442
AD
2123 return date("M d, G:i", $timestamp);
2124 } else {
7d7e0509 2125 return date("Y/m/d, G:i", $timestamp);
be773442
AD
2126 }
2127 }
2128
2129 function smart_date($timestamp) {
2130 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
2131 return "Today";
f26450f1 2132 } else if (date("Y", $timestamp) == date("Y")) {
be773442
AD
2133 return date("D m", $timestamp);
2134 } else {
b02111c2 2135 return date("Y/m/d", $timestamp);
be773442
AD
2136 }
2137 }
a654a595
AD
2138
2139 function sql_bool_to_string($s) {
2140 if ($s == "t" || $s == "1") {
2141 return "true";
2142 } else {
2143 return "false";
2144 }
2145 }
e3c99f3b
AD
2146
2147 function sql_bool_to_bool($s) {
2148 if ($s == "t" || $s == "1") {
2149 return true;
2150 } else {
2151 return false;
2152 }
2153 }
0ea4fb50 2154
badac687
AD
2155 function bool_to_sql_bool($s) {
2156 if ($s) {
2157 return "true";
2158 } else {
2159 return "false";
2160 }
2161 }
e3c99f3b 2162
0ea4fb50
AD
2163 function toggleEvenOdd($a) {
2164 if ($a == "even")
2165 return "odd";
2166 else
2167 return "even";
2168 }
6043fb7e 2169
199db684
AD
2170 function get_schema_version($link, $nocache = false) {
2171 if (!$_SESSION["schema_version"] || $nocache) {
2172 $result = db_query($link, "SELECT schema_version FROM ttrss_version");
2173 $version = db_fetch_result($result, 0, "schema_version");
2174 $_SESSION["schema_version"] = $version;
2175 return $version;
2176 } else {
2177 return $_SESSION["schema_version"];
2178 }
e4c51a6c
AD
2179 }
2180
6043fb7e 2181 function sanity_check($link) {
9cbca41f 2182
aec3ce39
AD
2183 error_reporting(0);
2184
6043fb7e 2185 $error_code = 0;
05044a59 2186 $schema_version = get_schema_version($link);
6043fb7e
AD
2187
2188 if ($schema_version != SCHEMA_VERSION) {
2189 $error_code = 5;
2190 }
2191
aec3ce39
AD
2192 if (DB_TYPE == "mysql") {
2193 $result = db_query($link, "SELECT true", false);
2194 if (db_num_rows($result) != 1) {
2195 $error_code = 10;
2196 }
2197 }
2198
f29ba148
AD
2199 if (db_escape_string("testTEST") != "testTEST") {
2200 $error_code = 12;
2201 }
2202
aec3ce39
AD
2203 error_reporting (DEFAULT_ERROR_LEVEL);
2204
6043fb7e 2205 if ($error_code != 0) {
aec3ce39 2206 print_error_xml($error_code);
6043fb7e
AD
2207 return false;
2208 } else {
2209 return true;
4220d6b0 2210 }
6043fb7e
AD
2211 }
2212
27981ca3 2213 function file_is_locked($filename) {
31a6d42d
AD
2214 if (function_exists('flock')) {
2215 error_reporting(0);
cfa43e02 2216 $fp = fopen(LOCK_DIRECTORY . "/$filename", "r");
31a6d42d
AD
2217 error_reporting(DEFAULT_ERROR_LEVEL);
2218 if ($fp) {
2219 if (flock($fp, LOCK_EX | LOCK_NB)) {
2220 flock($fp, LOCK_UN);
2221 fclose($fp);
2222 return false;
2223 }
27981ca3 2224 fclose($fp);
31a6d42d 2225 return true;
e89aed7b
AD
2226 } else {
2227 return false;
27981ca3 2228 }
27981ca3 2229 }
c1fb4a5e 2230 return true; // consider the file always locked and skip the test
27981ca3
AD
2231 }
2232
fcb4c0c9 2233 function make_lockfile($filename) {
cfa43e02 2234 $fp = fopen(LOCK_DIRECTORY . "/$filename", "w");
fcb4c0c9 2235
82acc36d 2236 if (flock($fp, LOCK_EX | LOCK_NB)) {
4c59adb1
AD
2237 if (function_exists('posix_getpid')) {
2238 fwrite($fp, posix_getpid() . "\n");
2239 }
fcb4c0c9
AD
2240 return $fp;
2241 } else {
2242 return false;
2243 }
2244 }
2245
bf7fcde8 2246 function make_stampfile($filename) {
cfa43e02 2247 $fp = fopen(LOCK_DIRECTORY . "/$filename", "w");
bf7fcde8 2248
8e00ae9b 2249 if (flock($fp, LOCK_EX | LOCK_NB)) {
bf7fcde8 2250 fwrite($fp, time() . "\n");
8e00ae9b 2251 flock($fp, LOCK_UN);
bf7fcde8
AD
2252 fclose($fp);
2253 return true;
2254 } else {
2255 return false;
2256 }
2257 }
2258
894ebcf5
AD
2259 function sql_random_function() {
2260 if (DB_TYPE == "mysql") {
2261 return "RAND()";
2262 } else {
2263 return "RANDOM()";
2264 }
2265 }
2266
c7e51de1
AD
2267 function catchup_feed($link, $feed, $cat_view, $owner_uid) {
2268
2269 if (!$owner_uid) $owner_uid = $_SESSION['uid'];
88040f57
AD
2270
2271 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
22fdebff 2272
23aa0d16
AD
2273 if ($cat_view) {
2274
72a2f4f5 2275 if ($feed >= 0) {
f9fca8cb
AD
2276
2277 if ($feed > 0) {
2278 $cat_qpart = "cat_id = '$feed'";
2279 } else {
2280 $cat_qpart = "cat_id IS NULL";
2281 }
23aa0d16 2282
f9fca8cb 2283 $tmp_result = db_query($link, "SELECT id
c7e51de1 2284 FROM ttrss_feeds WHERE $cat_qpart AND owner_uid = $owner_uid");
f9fca8cb
AD
2285
2286 while ($tmp_line = db_fetch_assoc($tmp_result)) {
23aa0d16 2287
f9fca8cb 2288 $tmp_feed = $tmp_line["id"];
23aa0d16 2289
f9fca8cb
AD
2290 db_query($link, "UPDATE ttrss_user_entries
2291 SET unread = false,last_read = NOW()
c7e51de1 2292 WHERE feed_id = '$tmp_feed' AND owner_uid = $owner_uid");
f9fca8cb
AD
2293 }
2294 } else if ($feed == -2) {
23aa0d16 2295
6f69764c
AD
2296
2297 db_query($link, "UPDATE ttrss_user_entries
2298 SET unread = false,last_read = NOW() WHERE (SELECT COUNT(*)
2299 FROM ttrss_user_labels2 WHERE article_id = ref_id) > 0
c7e51de1 2300 AND unread = true AND owner_uid = $owner_uid");
23aa0d16
AD
2301 }
2302
2303 } else if ($feed > 0) {
2304
2305 $tmp_result = db_query($link, "SELECT id
2306 FROM ttrss_feeds WHERE parent_feed = '$feed'
2307 ORDER BY cat_id,title");
2308
2309 $parent_ids = array();
2310
2311 if (db_num_rows($tmp_result) > 0) {
2312 while ($p = db_fetch_assoc($tmp_result)) {
2313 array_push($parent_ids, "feed_id = " . $p["id"]);
2314 }
2315
2316 $children_qpart = implode(" OR ", $parent_ids);
2317
2318 db_query($link, "UPDATE ttrss_user_entries
2319 SET unread = false,last_read = NOW()
2320 WHERE (feed_id = '$feed' OR $children_qpart)
c7e51de1 2321 AND owner_uid = $owner_uid");
23aa0d16
AD
2322
2323 } else {
2324 db_query($link, "UPDATE ttrss_user_entries
2325 SET unread = false,last_read = NOW()
c7e51de1 2326 WHERE feed_id = '$feed' AND owner_uid = $owner_uid");
23aa0d16
AD
2327 }
2328
2329 } else if ($feed < 0 && $feed > -10) { // special, like starred
2330
2331 if ($feed == -1) {
2332 db_query($link, "UPDATE ttrss_user_entries
2333 SET unread = false,last_read = NOW()
c7e51de1 2334 WHERE marked = true AND owner_uid = $owner_uid");
23aa0d16 2335 }
e4f4b46f
AD
2336
2337 if ($feed == -2) {
2338 db_query($link, "UPDATE ttrss_user_entries
2339 SET unread = false,last_read = NOW()
c7e51de1 2340 WHERE published = true AND owner_uid = $owner_uid");
e4f4b46f
AD
2341 }
2342
2d24f032
AD
2343 if ($feed == -3) {
2344
c1d7e6c3
AD
2345 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE");
2346
2d24f032 2347 if (DB_TYPE == "pgsql") {
7608b38a 2348 $match_part = "updated > NOW() - INTERVAL '$intl hour' ";
2d24f032 2349 } else {
7608b38a 2350 $match_part = "updated > DATE_SUB(NOW(),
c1d7e6c3 2351 INTERVAL $intl HOUR) ";
2d24f032
AD
2352 }
2353
1f3335dc
AD
2354 $result = db_query($link, "SELECT id FROM ttrss_entries,
2355 ttrss_user_entries WHERE $match_part AND
2356 unread = true AND
2357 ttrss_user_entries.ref_id = ttrss_entries.id AND
c7e51de1 2358 owner_uid = $owner_uid");
1f3335dc
AD
2359
2360 $affected_ids = array();
2361
2362 while ($line = db_fetch_assoc($result)) {
2363 array_push($affected_ids, $line["id"]);
2364 }
2365
2366 catchupArticlesById($link, $affected_ids, 0);
2d24f032
AD
2367 }
2368
3584cb11
AD
2369 if ($feed == -4) {
2370 db_query($link, "UPDATE ttrss_user_entries
2371 SET unread = false,last_read = NOW()
c7e51de1 2372 WHERE owner_uid = $owner_uid");
3584cb11
AD
2373 }
2374
23aa0d16
AD
2375 } else if ($feed < -10) { // label
2376
23aa0d16
AD
2377 $label_id = -$feed - 11;
2378
933ba4ee 2379 db_query($link, "UPDATE ttrss_user_entries, ttrss_user_labels2
338c238d
AD
2380 SET unread = false, last_read = NOW()
2381 WHERE label_id = '$label_id' AND unread = true
c7e51de1 2382 AND owner_uid = '$owner_uid' AND ref_id = article_id");
23aa0d16 2383
23aa0d16 2384 }
ad0056a8 2385
c7e51de1 2386 ccache_update($link, $feed, $owner_uid, $cat_view);
ad0056a8 2387
23aa0d16
AD
2388 } else { // tag
2389 db_query($link, "BEGIN");
2390
2391 $tag_name = db_escape_string($feed);
2392
2393 $result = db_query($link, "SELECT post_int_id FROM ttrss_tags
c7e51de1 2394 WHERE tag_name = '$tag_name' AND owner_uid = $owner_uid");
23aa0d16
AD
2395
2396 while ($line = db_fetch_assoc($result)) {
2397 db_query($link, "UPDATE ttrss_user_entries SET
2398 unread = false, last_read = NOW()
2399 WHERE int_id = " . $line["post_int_id"]);
2400 }
2401 db_query($link, "COMMIT");
2402 }
2403 }
2404
35bf080c 2405 function update_generic_feed($link, $feed, $cat_view, $force_update = false) {
23aa0d16
AD
2406 if ($cat_view) {
2407
2408 if ($feed > 0) {
2409 $cat_qpart = "cat_id = '$feed'";
2410 } else {
2411 $cat_qpart = "cat_id IS NULL";
2412 }
2413
c633e370 2414 $tmp_result = db_query($link, "SELECT id FROM ttrss_feeds
23aa0d16
AD
2415 WHERE $cat_qpart AND owner_uid = " . $_SESSION["uid"]);
2416
2417 while ($tmp_line = db_fetch_assoc($tmp_result)) {
571dad82 2418 $feed_id = $tmp_line["id"];
c633e370 2419 update_rss_feed($link, $feed_id, $force_update);
23aa0d16
AD
2420 }
2421
2422 } else {
c633e370 2423 update_rss_feed($link, $feed, $force_update);
23aa0d16
AD
2424 }
2425 }
a9cb1f83 2426
4ffa126e 2427 function getAllCounters($link, $omode = "flc", $active_feed = false) {
cf4d339c 2428
e33fe293 2429 if (!$omode) $omode = "flc";
0a6e5382 2430
6a7817c1
AD
2431 $data = getGlobalCounters($link);
2432
2433 $data = array_merge($data, getVirtCounters($link));
2434
2435 if (strchr($omode, "l")) $data = array_merge($data, getLabelCounters($link));
2436 if (strchr($omode, "f")) $data = array_merge($data, getFeedCounters($link, $active_feed));
2437 if (strchr($omode, "t")) $data = array_merge($data, getTagCounters($link));
e33fe293
AD
2438 if (strchr($omode, "c")) {
2439 if (get_pref($link, 'ENABLE_FEED_CATS')) {
6a7817c1 2440 $data = array_merge($data, getCategoryCounters($link));
cf4d339c 2441 }
e33fe293 2442 }
6a7817c1
AD
2443
2444 return $data;
a9cb1f83
AD
2445 }
2446
2447 function getCategoryCounters($link) {
6a7817c1 2448 $ret_arr = array();
bba7c4bf 2449
6a7817c1 2450 /* Labels category */
bba7c4bf 2451
8acc449c 2452 $cv = array("id" => -2, "kind" => "cat",
6a7817c1 2453 "counter" => getCategoryUnread($link, -2));
bba7c4bf 2454
6a7817c1 2455 array_push($ret_arr, $cv);
bba7c4bf 2456
14073c0a
AD
2457 $age_qpart = getMaxAgeSubquery();
2458
31375163
AD
2459 $result = db_query($link, "SELECT id AS cat_id, value AS unread
2460 FROM ttrss_feed_categories, ttrss_cat_counters_cache
2461 WHERE ttrss_cat_counters_cache.feed_id = id AND
2462 ttrss_feed_categories.owner_uid = " . $_SESSION["uid"]);
a9cb1f83
AD
2463
2464 while ($line = db_fetch_assoc($result)) {
22fdebff 2465 $line["cat_id"] = (int) $line["cat_id"];
8a4c759e 2466
8acc449c 2467 $cv = array("id" => $line["cat_id"], "kind" => "cat",
6a7817c1
AD
2468 "counter" => $line["unread"]);
2469
2470 array_push($ret_arr, $cv);
a9cb1f83 2471 }
d232a40f
AD
2472
2473 /* Special case: NULL category doesn't actually exist in the DB */
2474
9798b2b4 2475 $cv = array("id" => 0, "kind" => "cat",
6a7817c1 2476 "counter" => ccache_find($link, 0, $_SESSION["uid"], true));
d232a40f 2477
6a7817c1
AD
2478 array_push($ret_arr, $cv);
2479
2480 return $ret_arr;
a9cb1f83
AD
2481 }
2482
b6d486a3
AD
2483 function getCategoryUnread($link, $cat, $owner_uid = false) {
2484
2485 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
f295c368 2486
bba7c4bf 2487 if ($cat >= 0) {
18664970 2488
bba7c4bf
AD
2489 if ($cat != 0) {
2490 $cat_query = "cat_id = '$cat'";
2491 } else {
2492 $cat_query = "cat_id IS NULL";
2493 }
14073c0a
AD
2494
2495 $age_qpart = getMaxAgeSubquery();
2496
bba7c4bf 2497 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE $cat_query
b6d486a3 2498 AND owner_uid = " . $owner_uid);
bba7c4bf
AD
2499
2500 $cat_feeds = array();
2501 while ($line = db_fetch_assoc($result)) {
2502 array_push($cat_feeds, "feed_id = " . $line["id"]);
2503 }
2504
2505 if (count($cat_feeds) == 0) return 0;
2506
2507 $match_part = implode(" OR ", $cat_feeds);
2508
2509 $result = db_query($link, "SELECT COUNT(int_id) AS unread
14073c0a
AD
2510 FROM ttrss_user_entries,ttrss_entries
2511 WHERE unread = true AND ($match_part) AND id = ref_id
b6d486a3 2512 AND $age_qpart AND owner_uid = " . $owner_uid);
bba7c4bf
AD
2513
2514 $unread = 0;
2515
2516 # this needs to be rewritten
2517 while ($line = db_fetch_assoc($result)) {
2518 $unread += $line["unread"];
2519 }
2520
2521 return $unread;
2522 } else if ($cat == -1) {
59e15af4 2523 return getFeedUnread($link, -1) + getFeedUnread($link, -2) + getFeedUnread($link, -3) + getFeedUnread($link, 0);
bba7c4bf 2524 } else if ($cat == -2) {
f295c368 2525
b2531a28
AD
2526 $result = db_query($link, "
2527 SELECT COUNT(unread) AS unread FROM
2528 ttrss_user_entries, ttrss_labels2, ttrss_user_labels2, ttrss_feeds
2529 WHERE label_id = ttrss_labels2.id AND article_id = ref_id AND
2530 ttrss_labels2.owner_uid = '$owner_uid'
117335bf 2531 AND unread = true AND feed_id = ttrss_feeds.id
b2531a28 2532 AND ttrss_user_entries.owner_uid = '$owner_uid'");
ceb30ba4 2533
b2531a28 2534 $unread = db_fetch_result($result, 0, "unread");
f295c368 2535
b2531a28 2536 return $unread;
f295c368 2537
ceb30ba4 2538 }
f295c368
AD
2539 }
2540
14073c0a
AD
2541 function getMaxAgeSubquery($days = COUNTERS_MAX_AGE) {
2542 if (DB_TYPE == "pgsql") {
25ea2805 2543 return "ttrss_entries.date_updated >
14073c0a
AD
2544 NOW() - INTERVAL '$days days'";
2545 } else {
25ea2805 2546 return "ttrss_entries.date_updated >
14073c0a
AD
2547 DATE_SUB(NOW(), INTERVAL $days DAY)";
2548 }
2549 }
2550
f295c368 2551 function getFeedUnread($link, $feed, $is_cat = false) {
2627f2d0 2552 return getFeedArticles($link, $feed, $is_cat, true, $_SESSION["uid"]);
bdb7369b
AD
2553 }
2554
ceb30ba4
AD
2555 function getLabelUnread($link, $label_id, $owner_uid = false) {
2556 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
2557
2558 $result = db_query($link, "
0112162d 2559 SELECT COUNT(unread) AS unread FROM
b0f24af1
AD
2560 ttrss_user_entries, ttrss_labels2, ttrss_user_labels2, ttrss_feeds
2561 WHERE label_id = ttrss_labels2.id AND article_id = ref_id AND
2562 ttrss_labels2.owner_uid = '$owner_uid' AND ttrss_labels2.id = '$label_id'
117335bf 2563 AND unread = true AND feed_id = ttrss_feeds.id
933ba4ee 2564 AND ttrss_user_entries.owner_uid = '$owner_uid'");
ceb30ba4
AD
2565
2566 if (db_num_rows($result) != 0) {
2567 return db_fetch_result($result, 0, "unread");
2568 } else {
2569 return 0;
2570 }
2571 }
2572
2627f2d0
AD
2573 function getFeedArticles($link, $feed, $is_cat = false, $unread_only = false,
2574 $owner_uid = false) {
2575
22fdebff 2576 $n_feed = (int) $feed;
f295c368 2577
2627f2d0
AD
2578 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
2579
bdb7369b
AD
2580 if ($unread_only) {
2581 $unread_qpart = "unread = true";
2582 } else {
2583 $unread_qpart = "true";
2584 }
2585
14073c0a
AD
2586 $age_qpart = getMaxAgeSubquery();
2587
f295c368 2588 if ($is_cat) {
b6d486a3 2589 return getCategoryUnread($link, $n_feed, $owner_uid);
326469fc
AD
2590 } if ($feed != "0" && $n_feed == 0) {
2591
c5701e70
AD
2592 $feed = db_escape_string($feed);
2593
326469fc
AD
2594 $result = db_query($link, "SELECT SUM((SELECT COUNT(int_id)
2595 FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id
2596 AND ref_id = id AND $age_qpart
2597 AND $unread_qpart)) AS count FROM ttrss_tags
2598 WHERE owner_uid = $owner_uid AND tag_name = '$feed'");
2599 return db_fetch_result($result, 0, "count");
2600
f295c368 2601 } else if ($n_feed == -1) {
a9cb1f83 2602 $match_part = "marked = true";
e4f4b46f
AD
2603 } else if ($n_feed == -2) {
2604 $match_part = "published = true";
2d24f032
AD
2605 } else if ($n_feed == -3) {
2606 $match_part = "unread = true";
2607
b71e188e 2608 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE", $owner_uid);
c1d7e6c3 2609
2d24f032 2610 if (DB_TYPE == "pgsql") {
7608b38a 2611 $match_part .= " AND updated > NOW() - INTERVAL '$intl hour' ";
2d24f032 2612 } else {
7608b38a 2613 $match_part .= " AND updated > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
2d24f032 2614 }
b2531a28
AD
2615 } else if ($n_feed == -4) {
2616 $match_part = "true";
e04c18a2 2617 } else if ($n_feed >= 0) {
831ff047 2618
e8b8485f
AD
2619 $result = db_query($link, "SELECT id FROM ttrss_feeds
2620 WHERE parent_feed = '$n_feed'
2627f2d0 2621 AND owner_uid = " . $owner_uid);
831ff047
AD
2622
2623 if (db_num_rows($result) > 0) {
4919fb42 2624
831ff047
AD
2625 $linked_feeds = array();
2626 while ($line = db_fetch_assoc($result)) {
2627 array_push($linked_feeds, "feed_id = " . $line["id"]);
2628 }
e8b8485f
AD
2629
2630 array_push($linked_feeds, "feed_id = $n_feed");
831ff047
AD
2631
2632 $match_part = implode(" OR ", $linked_feeds);
2633
dbfc4365 2634 $tmp_result = db_query($link, "SELECT COUNT(int_id) AS unread
14073c0a 2635 FROM ttrss_user_entries,ttrss_entries
bdb7369b 2636 WHERE $unread_qpart AND
14073c0a
AD
2637 ttrss_user_entries.ref_id = ttrss_entries.id AND
2638 $age_qpart AND
2639 ($match_part) AND
2627f2d0 2640 owner_uid = " . $owner_uid);
4919fb42
AD
2641
2642 $unread = 0;
2643
2644 # this needs to be rewritten
dbfc4365 2645 while ($line = db_fetch_assoc($tmp_result)) {
4919fb42
AD
2646 $unread += $line["unread"];
2647 }
2648
2649 return $unread;
2650
831ff047 2651 } else {
e04c18a2
AD
2652 if ($n_feed != 0) {
2653 $match_part = "feed_id = '$n_feed'";
2654 } else {
2655 $match_part = "feed_id IS NULL";
2656 }
831ff047 2657 }
a9cb1f83 2658 } else if ($feed < -10) {
318260cc 2659
a9cb1f83
AD
2660 $label_id = -$feed - 11;
2661
ceb30ba4 2662 return getLabelUnread($link, $label_id, $owner_uid);
a9cb1f83 2663
a9cb1f83
AD
2664 }
2665
2666 if ($match_part) {
e04c18a2
AD
2667
2668 if ($n_feed != 0) {
2669 $from_qpart = "ttrss_user_entries,ttrss_feeds,ttrss_entries";
117335bf 2670 $feeds_qpart = "ttrss_user_entries.feed_id = ttrss_feeds.id AND";
e04c18a2
AD
2671 } else {
2672 $from_qpart = "ttrss_user_entries,ttrss_entries";
c3fddd05 2673 $feeds_qpart = '';
e04c18a2
AD
2674 }
2675
dbfc4365 2676 $query = "SELECT count(int_id) AS unread
e04c18a2 2677 FROM $from_qpart WHERE
88040f57 2678 ttrss_user_entries.ref_id = ttrss_entries.id AND
14073c0a 2679 $age_qpart AND
dbfc4365
AD
2680 $feeds_qpart
2681 $unread_qpart AND ($match_part) AND ttrss_user_entries.owner_uid = $owner_uid";
2682
2683 $result = db_query($link, $query);
a9cb1f83
AD
2684
2685 } else {
2686
2687 $result = db_query($link, "SELECT COUNT(post_int_id) AS unread
14073c0a 2688 FROM ttrss_tags,ttrss_user_entries,ttrss_entries
828f22b7 2689 WHERE tag_name = '$feed' AND post_int_id = int_id AND ref_id = ttrss_entries.id
bdb7369b 2690 AND $unread_qpart AND $age_qpart AND
2627f2d0 2691 ttrss_tags.owner_uid = " . $owner_uid);
a9cb1f83
AD
2692 }
2693
2694 $unread = db_fetch_result($result, 0, "unread");
cfb02131 2695
a9cb1f83
AD
2696 return $unread;
2697 }
2698
f3acc32e
AD
2699 function getGlobalUnread($link, $user_id = false) {
2700
2701 if (!$user_id) {
2702 $user_id = $_SESSION["uid"];
2703 }
2704
8a4c759e
AD
2705 $result = db_query($link, "SELECT SUM(value) AS c_id FROM ttrss_counters_cache
2706 WHERE owner_uid = '$user_id' AND feed_id > 0");
2707
2708 $c_id = db_fetch_result($result, 0, "c_id");
2709
a9cb1f83
AD
2710 return $c_id;
2711 }
2712
2713 function getGlobalCounters($link, $global_unread = -1) {
6a7817c1
AD
2714 $ret_arr = array();
2715
a9cb1f83
AD
2716 if ($global_unread == -1) {
2717 $global_unread = getGlobalUnread($link);
2718 }
6a7817c1
AD
2719
2720 $cv = array("id" => "global-unread",
2721 "counter" => $global_unread);
2722
2723 array_push($ret_arr, $cv);
7bf7e4d3
AD
2724
2725 $result = db_query($link, "SELECT COUNT(id) AS fn FROM
2726 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
2727
2728 $subscribed_feeds = db_fetch_result($result, 0, "fn");
2729
6a7817c1
AD
2730 $cv = array("id" => "subscribed-feeds",
2731 "counter" => $subscribed_feeds);
7bf7e4d3 2732
6a7817c1
AD
2733 array_push($ret_arr, $cv);
2734
2735 return $ret_arr;
a9cb1f83
AD
2736 }
2737
95004daf
AD
2738 function getSubscribedFeeds($link) {
2739 $result = db_query($link, "SELECT COUNT(id) AS fn FROM
2740 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
2741
2742 return db_fetch_result($result, 0, "fn");
2743 }
2744
3809b278 2745 function getTagCounters($link) {
6a7817c1
AD
2746
2747 $ret_arr = array();
a9cb1f83 2748
14073c0a
AD
2749 $age_qpart = getMaxAgeSubquery();
2750
a9cb1f83 2751 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
14073c0a
AD
2752 FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id
2753 AND ref_id = id AND $age_qpart
a9cb1f83 2754 AND unread = true)) AS count FROM ttrss_tags
ef1ac7c7
AD
2755 WHERE owner_uid = ".$_SESSION['uid']." GROUP BY tag_name
2756 ORDER BY count DESC LIMIT 55");
a9cb1f83
AD
2757
2758 $tags = array();
2759
2760 while ($line = db_fetch_assoc($result)) {
2761 $tags[$line["tag_name"]] += $line["count"];
2762 }
2763
2764 foreach (array_keys($tags) as $tag) {
2765 $unread = $tags[$tag];
a9cb1f83 2766 $tag = htmlspecialchars($tag);
6a7817c1
AD
2767
2768 $cv = array("id" => $tag,
8acc449c 2769 "kind" => "tag",
6a7817c1
AD
2770 "counter" => $unread);
2771
2772 array_push($ret_arr, $cv);
2773 }
2774
2775 return $ret_arr;
a9cb1f83
AD
2776 }
2777
6a7817c1 2778 function getVirtCounters($link) {
a9cb1f83 2779
ef393de7 2780 $ret_arr = array();
bdb7369b 2781
e04c18a2 2782 for ($i = 0; $i >= -4; $i--) {
bdb7369b 2783
ceb30ba4 2784 $count = getFeedUnread($link, $i);
6a7817c1
AD
2785
2786 $cv = array("id" => $i,
2abc7af0 2787 "counter" => $count);
ceb30ba4 2788
6a7817c1
AD
2789 if (get_pref($link, 'EXTENDED_FEEDLIST'))
2790 $cv["xmsg"] = getFeedArticles($link, $i)." ".__("total");
bdb7369b 2791
6a7817c1 2792 array_push($ret_arr, $cv);
0a6e5382
AD
2793 }
2794
2795 return $ret_arr;
2796 }
2797
11232703 2798 function getLabelCounters($link, $descriptions = false) {
6a7817c1
AD
2799
2800 $ret_arr = array();
0a6e5382
AD
2801
2802 $age_qpart = getMaxAgeSubquery();
2803
3809b278 2804 $owner_uid = $_SESSION["uid"];
bdb7369b 2805
3809b278
AD
2806 $result = db_query($link, "SELECT id, caption FROM ttrss_labels2
2807 WHERE owner_uid = '$owner_uid'");
2808
2809 while ($line = db_fetch_assoc($result)) {
2d24f032 2810
3809b278 2811 $id = -$line["id"] - 11;
e4f4b46f 2812
3809b278
AD
2813 $label_name = $line["caption"];
2814 $count = getFeedUnread($link, $id);
3809b278 2815
6a7817c1 2816 $cv = array("id" => $id,
11232703
AD
2817 "counter" => $count);
2818
2819 if ($descriptions)
2820 $cv["description"] = $label_name;
a9cb1f83 2821
6a7817c1
AD
2822 if (get_pref($link, 'EXTENDED_FEEDLIST'))
2823 $cv["xmsg"] = getFeedArticles($link, $id)." ".__("total");
ef393de7 2824
6a7817c1 2825 array_push($ret_arr, $cv);
3809b278
AD
2826 }
2827
ef393de7 2828 return $ret_arr;
a9cb1f83
AD
2829 }
2830
3809b278 2831 function getFeedCounters($link, $active_feed = false) {
a9cb1f83 2832
6a7817c1
AD
2833 $ret_arr = array();
2834
14073c0a
AD
2835 $age_qpart = getMaxAgeSubquery();
2836
8a4c759e
AD
2837 $query = "SELECT ttrss_feeds.id,
2838 ttrss_feeds.title,
2839 ".SUBSTRING_FOR_DATE."(ttrss_feeds.last_updated,1,19) AS last_updated,
de0a2122
AD
2840 last_error, value AS count
2841 FROM ttrss_feeds, ttrss_counters_cache
8a4c759e
AD
2842 WHERE ttrss_feeds.owner_uid = ".$_SESSION["uid"]."
2843 AND parent_feed IS NULL
55e01d7e 2844 AND ttrss_counters_cache.feed_id = id";
a9cb1f83 2845
14073c0a 2846 $result = db_query($link, $query);
a9cb1f83
AD
2847 $fctrs_modified = false;
2848
fb1fb4ab
AD
2849 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
2850
a9cb1f83
AD
2851 while ($line = db_fetch_assoc($result)) {
2852
2853 $id = $line["id"];
de0a2122 2854 $count = $line["count"];
a9cb1f83 2855 $last_error = htmlspecialchars($line["last_error"]);
fb1fb4ab
AD
2856
2857 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
2858 $last_updated = smart_date_time(strtotime($line["last_updated"]));
2859 } else {
2860 $last_updated = date($short_date, strtotime($line["last_updated"]));
2861 }
2862
7defa089 2863 $has_img = feed_has_icon($id);
a9cb1f83 2864
de0a2122
AD
2865 $tmp_result = db_query($link,
2866 "SELECT SUM(value) AS unread FROM ttrss_feeds, ttrss_counters_cache
2867 WHERE parent_feed = '$id' AND feed_id = id");
2868
2869 $count += db_fetch_result($tmp_result, 0, "unread");
a9cb1f83 2870
6a7817c1 2871 $cv = array("id" => $id,
21884958 2872 "updated" => $last_updated,
6a7817c1
AD
2873 "counter" => $count,
2874 "has_img" => (int) $has_img);
a9cb1f83 2875
6a7817c1
AD
2876 if ($last_error)
2877 $cv["error"] = $last_error;
4ffa126e 2878
6a7817c1
AD
2879 if (get_pref($link, 'EXTENDED_FEEDLIST'))
2880 $cv["xmsg"] = getFeedArticles($link, $id)." ".__("total");
bdb7369b 2881
6a7817c1
AD
2882 if ($active_feed && $id == $active_feed)
2883 $cv["title"] = $line["title"];
2884
2885 array_push($ret_arr, $cv);
a9cb1f83 2886
a9cb1f83 2887 }
6a7817c1
AD
2888
2889 return $ret_arr;
a9cb1f83
AD
2890 }
2891
1b758780 2892 function get_script_dt_add() {
3ac60b76 2893 return time();
1b758780
AD
2894 }
2895
6e7f8d26
AD
2896 function get_pgsql_version($link) {
2897 $result = db_query($link, "SELECT version() AS version");
2898 $version = split(" ", db_fetch_result($result, 0, "version"));
2899 return $version[1];
2900 }
2901
af106b0e
AD
2902 function print_error_xml($code, $add_msg = "") {
2903 global $ERRORS;
2904
2905 $error_msg = $ERRORS[$code];
2906
2907 if ($add_msg) {
2908 $error_msg = "$error_msg; $add_msg";
2909 }
2910
4c2abbc1 2911 print "<rpc-reply>";
af106b0e 2912 print "<error error-code=\"$code\" error-msg=\"$error_msg\"/>";
4c2abbc1 2913 print "</rpc-reply>";
af106b0e 2914 }
956c7629 2915
a5819bb3 2916 function subscribe_to_feed($link, $url, $cat_id = 0,
f27de515 2917 $auth_login = '', $auth_pass = '') {
bb0f29a4 2918
a5819bb3 2919 $parts = parse_url($url);
c91c2249 2920
a5819bb3
AD
2921 if (!validate_feed_url($url)) return 2;
2922
2923 if ($parts['scheme'] == 'feed') $parts['scheme'] = 'http';
b3dfe8ba 2924
a5819bb3 2925 $url = make_url_from_parts($parts);
bb0f29a4 2926
956c7629
AD
2927 if ($cat_id == "0" || !$cat_id) {
2928 $cat_qpart = "NULL";
2929 } else {
2930 $cat_qpart = "'$cat_id'";
2931 }
2932
2933 $result = db_query($link,
2934 "SELECT id FROM ttrss_feeds
a5819bb3 2935 WHERE feed_url = '$url' AND owner_uid = ".$_SESSION["uid"]);
956c7629
AD
2936
2937 if (db_num_rows($result) == 0) {
2938
2939 $result = db_query($link,
f27de515
AD
2940 "INSERT INTO ttrss_feeds
2941 (owner_uid,feed_url,title,cat_id, auth_login,auth_pass)
a5819bb3 2942 VALUES ('".$_SESSION["uid"]."', '$url',
f27de515 2943 '[Unknown]', $cat_qpart, '$auth_login', '$auth_pass')");
956c7629
AD
2944
2945 $result = db_query($link,
a5819bb3 2946 "SELECT id FROM ttrss_feeds WHERE feed_url = '$url'
f27de515 2947 AND owner_uid = " . $_SESSION["uid"]);
956c7629
AD
2948
2949 $feed_id = db_fetch_result($result, 0, "id");
2950
2951 if ($feed_id) {
c633e370 2952 update_rss_feed($link, $feed_id, true);
956c7629
AD
2953 }
2954
a5819bb3 2955 return 1;
956c7629 2956 } else {
a5819bb3 2957 return 0;
956c7629
AD
2958 }
2959 }
2960
673d54ca
AD
2961 function print_feed_select($link, $id, $default_id = "",
2962 $attributes = "", $include_all_feeds = true) {
2963
79f3553b 2964 print "<select id=\"$id\" name=\"$id\" $attributes>";
673d54ca 2965 if ($include_all_feeds) {
89cb787e 2966 print "<option value=\"0\">".__('All feeds')."</option>";
673d54ca
AD
2967 }
2968
2969 $result = db_query($link, "SELECT id,title FROM ttrss_feeds
2970 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
2971
2972 if (db_num_rows($result) > 0 && $include_all_feeds) {
2973 print "<option disabled>--------</option>";
2974 }
2975
2976 while ($line = db_fetch_assoc($result)) {
2977 if ($line["id"] == $default_id) {
2978 $is_selected = "selected";
2979 } else {
2980 $is_selected = "";
2981 }
b1710666
AD
2982
2983 $title = truncate_string(htmlspecialchars($line["title"]), 40);
2984
79f3553b 2985 printf("<option $is_selected value='%d'>%s</option>",
b1710666 2986 $line["id"], $title);
673d54ca
AD
2987 }
2988
2989 print "</select>";
2990 }
2991
2992 function print_feed_cat_select($link, $id, $default_id = "",
2993 $attributes = "", $include_all_cats = true) {
2994
79f3553b 2995 print "<select id=\"$id\" name=\"$id\" $attributes>";
673d54ca
AD
2996
2997 if ($include_all_cats) {
d1db26aa 2998 print "<option value=\"0\">".__('Uncategorized')."</option>";
673d54ca
AD
2999 }
3000
3001 $result = db_query($link, "SELECT id,title FROM ttrss_feed_categories
3002 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
3003
3004 if (db_num_rows($result) > 0 && $include_all_cats) {
3005 print "<option disabled>--------</option>";
3006 }
3007
3008 while ($line = db_fetch_assoc($result)) {
3009 if ($line["id"] == $default_id) {
3010 $is_selected = "selected";
3011 } else {
3012 $is_selected = "";
3013 }
14f69488 3014 printf("<option $is_selected value='%d'>%s</option>",
47439031 3015 $line["id"], htmlspecialchars($line["title"]));
673d54ca
AD
3016 }
3017
3018 print "</select>";
3019 }
3020
14f69488
AD
3021 function checkbox_to_sql_bool($val) {
3022 return ($val == "on") ? "true" : "false";
3023 }
86b682ce
AD
3024
3025 function getFeedCatTitle($link, $id) {
3026 if ($id == -1) {
d1db26aa 3027 return __("Special");
86b682ce 3028 } else if ($id < -10) {
d1db26aa 3029 return __("Labels");
86b682ce
AD
3030 } else if ($id > 0) {
3031 $result = db_query($link, "SELECT ttrss_feed_categories.title
3032 FROM ttrss_feeds, ttrss_feed_categories WHERE ttrss_feeds.id = '$id' AND
3033 cat_id = ttrss_feed_categories.id");
3034 if (db_num_rows($result) == 1) {
3035 return db_fetch_result($result, 0, "title");
3036 } else {
d1db26aa 3037 return __("Uncategorized");
86b682ce
AD
3038 }
3039 } else {
3040 return "getFeedCatTitle($id) failed";
3041 }
3042
3043 }
3044
af88c48a
AD
3045 function getFeedIcon($id) {
3046 switch ($id) {
4bee8b5f
AD
3047 case 0:
3048 return "images/archive.png";
3049 break;
af88c48a 3050 case -1:
f65ffc2d 3051 return "images/mark_set.png";
af88c48a
AD
3052 break;
3053 case -2:
b97e6e02 3054 return "images/pub_set.png";
af88c48a
AD
3055 break;
3056 case -3:
3057 return "images/fresh.png";
3058 break;
3059 case -4:
3060 return "images/tag.png";
3061 break;
3062 default:
4bee8b5f
AD
3063 if ($id < -10) {
3064 return "images/label.png";
3065 } else {
3066 return ICONS_URL . "/$id.ico";
3067 }
af88c48a
AD
3068 break;
3069 }
3070 }
3071
86b682ce
AD
3072 function getFeedTitle($link, $id) {
3073 if ($id == -1) {
d1db26aa 3074 return __("Starred articles");
945c243e
AD
3075 } else if ($id == -2) {
3076 return __("Published articles");
2d24f032
AD
3077 } else if ($id == -3) {
3078 return __("Fresh articles");
b2531a28
AD
3079 } else if ($id == -4) {
3080 return __("All articles");
80db1113 3081 } else if ($id === 0 || $id === "0") {
e04c18a2 3082 return __("Archived articles");
86b682ce 3083 } else if ($id < -10) {
76626c72 3084 $label_id = -$id - 11;
ceb30ba4 3085 $result = db_query($link, "SELECT caption FROM ttrss_labels2 WHERE id = '$label_id'");
86b682ce 3086 if (db_num_rows($result) == 1) {
ceb30ba4 3087 return db_fetch_result($result, 0, "caption");
86b682ce
AD
3088 } else {
3089 return "Unknown label ($label_id)";
3090 }
3091
3092 } else if ($id > 0) {
3093 $result = db_query($link, "SELECT title FROM ttrss_feeds WHERE id = '$id'");
3094 if (db_num_rows($result) == 1) {
3095 return db_fetch_result($result, 0, "title");
3096 } else {
3097 return "Unknown feed ($id)";
3098 }
3099 } else {
22fdebff 3100 return $id;
86b682ce 3101 }
86b682ce 3102 }
3dd46f19
AD
3103
3104 function get_session_cookie_name() {
3105 return ((!defined('TTRSS_SESSION_NAME')) ? "ttrss_sid" : TTRSS_SESSION_NAME);
3106 }
3ac2b520 3107
f1f3a642
AD
3108 function make_init_param($param, $value) {
3109 return array("param" => $param, "value" => $value);
3110 }
e8bd0da9 3111
d8221301 3112 function make_init_params($link) {
f1f3a642 3113 $params = array();
c9268ed5 3114
f1f3a642
AD
3115 array_push($params, make_init_param("theme", get_user_theme($link)));
3116 array_push($params, make_init_param("theme_options", get_user_theme_options($link)));
3117 array_push($params, make_init_param("daemon_enabled", ENABLE_UPDATE_DAEMON));
3118 array_push($params, make_init_param("feeds_frame_refresh", FEEDS_FRAME_REFRESH));
f6d6e22f 3119
f1f3a642
AD
3120 array_push($params, make_init_param("sign_progress",
3121 theme_image($link, "images/indicator_white.gif")));
ac7bcd71 3122
f1f3a642 3123 array_push($params, make_init_param("sign_progress_tiny",
c7adf760 3124 theme_image($link, "images/indicator_tiny.gif")));
66438f29 3125
f1f3a642
AD
3126 array_push($params, make_init_param("sign_excl",
3127 theme_image($link, "images/sign_excl.png")));
8e9c121b 3128
f1f3a642
AD
3129 array_push($params, make_init_param("sign_info",
3130 theme_image($link, "images/sign_info.png")));
be0801a1 3131
f1f3a642
AD
3132 foreach (array("ON_CATCHUP_SHOW_NEXT_FEED", "HIDE_READ_FEEDS",
3133 "ENABLE_FEED_CATS", "FEEDS_SORT_BY_UNREAD", "CONFIRM_FEED_CATCHUP",
3134 "CDM_AUTO_CATCHUP", "FRESH_ARTICLE_MAX_AGE",
3135 "HIDE_READ_SHOWS_SPECIAL", "HIDE_FEEDLIST") as $param) {
40496720 3136
f1f3a642
AD
3137 array_push($params, make_init_param(strtolower($param),
3138 (int) get_pref($link, $param)));
3139 }
40496720 3140
f1f3a642 3141 array_push($params, make_init_param("icons_url", ICONS_URL));
7b4d02a8 3142
f1f3a642 3143 array_push($params, make_init_param("cookie_lifetime", SESSION_COOKIE_LIFETIME));
fe8d2059 3144
f1f3a642
AD
3145 array_push($params, make_init_param("default_view_mode",
3146 get_pref($link, "_DEFAULT_VIEW_MODE")));
465ff90b 3147
f1f3a642
AD
3148 array_push($params, make_init_param("default_view_limit",
3149 (int) get_pref($link, "_DEFAULT_VIEW_LIMIT")));
527c3bf0 3150
f1f3a642
AD
3151 array_push($params, make_init_param("default_view_order_by",
3152 get_pref($link, "_DEFAULT_VIEW_ORDER_BY")));
22f3e356 3153
f1f3a642
AD
3154 array_push($params, make_init_param("prefs_active_tab",
3155 get_pref($link, "_PREFS_ACTIVE_TAB")));
24c1e1c1 3156
f1f3a642
AD
3157 array_push($params, make_init_param("infobox_disable_overlay",
3158 get_pref($link, "_INFOBOX_DISABLE_OVERLAY")));
a598370d 3159
f1f3a642
AD
3160 array_push($params, make_init_param("bw_limit",
3161 (int) $_SESSION["bw_limit"]));
bd090ab4 3162
f1f3a642
AD
3163 array_push($params, make_init_param("offline_enabled",
3164 (int) get_pref($link, "ENABLE_OFFLINE_READING")));
59b223d7 3165
9b7ecc0a
AD
3166 $result = db_query($link, "SELECT COUNT(*) AS cf FROM
3167 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
3168
3169 $num_feeds = db_fetch_result($result, 0, "cf");
3170
f1f3a642
AD
3171 array_push($params, make_init_param("num_feeds",
3172 (int) $num_feeds));
3173
3174 array_push($params, make_init_param("collapsed_feedlist",
3175 (int) get_pref($link, "_COLLAPSED_FEEDLIST")));
9b7ecc0a 3176
d8221301 3177 return $params;
3ac2b520 3178 }
f54f515f
AD
3179
3180 function print_runtime_info($link) {
3181 print "<runtime-info>";
20361063 3182
9b7ecc0a
AD
3183 $result = db_query($link, "SELECT COUNT(*) AS cf FROM
3184 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
3185
3186 $num_feeds = db_fetch_result($result, 0, "cf");
3187
3188 print "<param key=\"num_feeds\" value=\"".
3189 (int)$num_feeds. "\"/>";
3190
71ad883b
AD
3191 if (ENABLE_UPDATE_DAEMON) {
3192 print "<param key=\"daemon_is_running\" value=\"".
22fdebff 3193 (int) file_is_locked("update_daemon.lock") . "\"/>";
8e00ae9b 3194
9041f58b 3195 if (time() - $_SESSION["daemon_stamp_check"] > 30) {
8e00ae9b 3196
1ea20897 3197 $stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
fbae93d8 3198
8e00ae9b 3199 if ($stamp) {
9041f58b
AD
3200 $stamp_delta = time() - $stamp;
3201
3202 if ($stamp_delta > 1800) {
f6854e44 3203 $stamp_check = 0;
8e00ae9b 3204 } else {
f6854e44
AD
3205 $stamp_check = 1;
3206 $_SESSION["daemon_stamp_check"] = time();
8e00ae9b
AD
3207 }
3208
f6854e44
AD
3209 print "<param key=\"daemon_stamp_ok\" value=\"$stamp_check\"/>";
3210
8e00ae9b
AD
3211 $stamp_fmt = date("Y.m.d, G:i", $stamp);
3212
3213 print "<param key=\"daemon_stamp\" value=\"$stamp_fmt\"/>";
3214 }
8e00ae9b 3215 }
71ad883b 3216 }
8e00ae9b 3217
d9fa39f1
AD
3218 if (CHECK_FOR_NEW_VERSION && $_SESSION["access_level"] >= 10) {
3219
8742de78 3220 if ($_SESSION["last_version_check"] + 86400 + rand(-1000, 1000) < time()) {
d9fa39f1
AD
3221 $new_version_details = check_for_update($link);
3222
3223 print "<param key=\"new_version_available\" value=\"".
3224 sprintf("%d", $new_version_details != ""). "\"/>";
3225
3226 $_SESSION["last_version_check"] = time();
3227 }
3228 }
3229
1c9df66e 3230// print "<param key=\"new_version_available\" value=\"1\"/>";
b4507bc2 3231
f54f515f
AD
3232 print "</runtime-info>";
3233 }
ef393de7 3234
88040f57 3235 function getSearchSql($search, $match_on) {
ef393de7 3236
88040f57 3237 $search_query_part = "";
e20c9d88 3238
88040f57
AD
3239 $keywords = split(" ", $search);
3240 $query_keywords = array();
e20c9d88 3241
88040f57 3242 if ($match_on == "both") {
e20c9d88 3243
88040f57 3244 foreach ($keywords as $k) {
eb6c7f42
AD
3245 if (strpos($k, "-") === 0) {
3246 $k = substr($k, 1);
3247 $not = "NOT";
3248 } else {
3249 $not = "";
3250 }
3251
3252 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%')
3253 OR UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
88040f57 3254 }
e20c9d88 3255
88040f57 3256 $search_query_part = implode("AND", $query_keywords) . " AND ";
e20c9d88 3257
88040f57 3258 } else if ($match_on == "title") {
e20c9d88 3259
88040f57 3260 foreach ($keywords as $k) {
eb6c7f42
AD
3261 if (strpos($k, "-") === 0) {
3262 $k = substr($k, 1);
3263 $not = "NOT";
3264 } else {
3265 $not = "";
3266 }
3267
3268 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%'))");
88040f57 3269 }
e20c9d88 3270
88040f57 3271 $search_query_part = implode("AND", $query_keywords) . " AND ";
e20c9d88 3272
88040f57
AD
3273 } else if ($match_on == "content") {
3274
3275 foreach ($keywords as $k) {
eb6c7f42
AD
3276 if (strpos($k, "-") === 0) {
3277 $k = substr($k, 1);
3278 $not = "NOT";
3279 } else {
3280 $not = "";
3281 }
3282
3283 array_push($query_keywords, "(UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
88040f57
AD
3284 }
3285 }
3286
3287 $search_query_part = implode("AND", $query_keywords);
3288
3289 return $search_query_part;
3290 }
3291
c36bf4d5
AD
3292 function queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view, $search, $search_mode, $match_on, $override_order = false, $offset = 0, $owner_uid = 0) {
3293
3294 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
c1a0b534 3295
c3fddd05
AD
3296 $ext_tables_part = "";
3297
88040f57
AD
3298 if ($search) {
3299
3300 $search_query_part = getSearchSql($search, $match_on);
3301 $search_query_part .= " AND ";
e20c9d88 3302
ef393de7
AD
3303 } else {
3304 $search_query_part = "";
3305 }
3306
3307 $view_query_part = "";
3308
7b4d02a8 3309 if ($view_mode == "adaptive" || $view_query_part == "noscores") {
ef393de7
AD
3310 if ($search) {
3311 $view_query_part = " ";
3312 } else if ($feed != -1) {
f295c368 3313 $unread = getFeedUnread($link, $feed, $cat_view);
ef393de7 3314 if ($unread > 0) {
ff863e00 3315 $view_query_part = " unread = true AND ";
ef393de7
AD
3316 }
3317 }
3318 }
3319
3320 if ($view_mode == "marked") {
3321 $view_query_part = " marked = true AND ";
3322 }
23d72f39
AD
3323
3324 if ($view_mode == "published") {
3325 $view_query_part = " published = true AND ";
3326 }
3327
ef393de7
AD
3328 if ($view_mode == "unread") {
3329 $view_query_part = " unread = true AND ";
3330 }
8b09eac8
AD
3331
3332 if ($view_mode == "updated") {
3333 $view_query_part = " (last_read is null and unread = false) AND ";
3334 }
3335
ef393de7
AD
3336 if ($limit > 0) {
3337 $limit_query_part = "LIMIT " . $limit;
3338 }
3339
3340 $vfeed_query_part = "";
3341
3342 // override query strategy and enable feed display when searching globally
3343 if ($search && $search_mode == "all_feeds") {
3344 $query_strategy_part = "ttrss_entries.id > 0";
3345 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
22fdebff 3346 /* tags */
ef393de7
AD
3347 } else if (preg_match("/^-?[0-9][0-9]*$/", $feed) == false) {
3348 $query_strategy_part = "ttrss_entries.id > 0";
3349 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
3350 id = feed_id) as feed_title,";
e04c18a2 3351 } else if ($feed > 0 && $search && $search_mode == "this_cat") {
ef393de7
AD
3352
3353 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
0a6c4846
AD
3354
3355 $tmp_result = false;
3356
3357 if ($cat_view) {
3358 $tmp_result = db_query($link, "SELECT id
3359 FROM ttrss_feeds WHERE cat_id = '$feed'");
3360 } else {
3361 $tmp_result = db_query($link, "SELECT id
3362 FROM ttrss_feeds WHERE cat_id = (SELECT cat_id FROM ttrss_feeds
3363 WHERE id = '$feed') AND id != '$feed'");
3364 }
ef393de7
AD
3365
3366 $cat_siblings = array();
3367
3368 if (db_num_rows($tmp_result) > 0) {
3369 while ($p = db_fetch_assoc($tmp_result)) {
3370 array_push($cat_siblings, "feed_id = " . $p["id"]);
3371 }
3372
3373 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
3374 $feed, implode(" OR ", $cat_siblings));
3375
3376 } else {
3377 $query_strategy_part = "ttrss_entries.id > 0";
3378 }
3379
e04c18a2 3380 } else if ($feed > 0) {
ef393de7
AD
3381
3382 if ($cat_view) {
5c365f60 3383
ef393de7
AD
3384 if ($feed > 0) {
3385 $query_strategy_part = "cat_id = '$feed'";
3386 } else {
3387 $query_strategy_part = "cat_id IS NULL";
3388 }
3389
3390 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
5c365f60 3391
ef393de7
AD
3392 } else {
3393 $tmp_result = db_query($link, "SELECT id
3394 FROM ttrss_feeds WHERE parent_feed = '$feed'
3395 ORDER BY cat_id,title");
3396
3397 $parent_ids = array();
3398
3399 if (db_num_rows($tmp_result) > 0) {
3400 while ($p = db_fetch_assoc($tmp_result)) {
3401 array_push($parent_ids, "feed_id = " . $p["id"]);
3402 }
3403
3404 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
3405 $feed, implode(" OR ", $parent_ids));
3406
3407 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3408 } else {
3409 $query_strategy_part = "feed_id = '$feed'";
3410 }
3411 }
bfe5ddfc 3412 } else if ($feed == 0 && !$cat_view) { // archive virtual feed
e04c18a2 3413 $query_strategy_part = "feed_id IS NULL";
bfe5ddfc
AD
3414 } else if ($feed == 0 && $cat_view) { // uncategorized
3415 $query_strategy_part = "cat_id IS NULL";
3416 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
ef393de7
AD
3417 } else if ($feed == -1) { // starred virtual feed
3418 $query_strategy_part = "marked = true";
3419 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
e6a38cde
AD
3420 } else if ($feed == -2) { // published virtual feed OR labels category
3421
3422 if (!$cat_view) {
3423 $query_strategy_part = "published = true";
3424 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3425 } else {
3426 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3427
3428 $ext_tables_part = ",ttrss_labels2,ttrss_user_labels2";
3429
3430 $query_strategy_part = "ttrss_labels2.id = ttrss_user_labels2.label_id AND
3431 ttrss_user_labels2.article_id = ref_id";
3432
3433 }
3434
2d24f032
AD
3435 } else if ($feed == -3) { // fresh virtual feed
3436 $query_strategy_part = "unread = true";
3437
7a22dc2a 3438 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE", $owner_uid);
c1d7e6c3 3439
2d24f032 3440 if (DB_TYPE == "pgsql") {
7608b38a 3441 $query_strategy_part .= " AND updated > NOW() - INTERVAL '$intl hour' ";
2d24f032 3442 } else {
7608b38a 3443 $query_strategy_part .= " AND updated > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
2d24f032
AD
3444 }
3445
b2531a28
AD
3446 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3447 } else if ($feed == -4) { // all articles virtual feed
3448 $query_strategy_part = "true";
e4f4b46f 3449 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
ef393de7
AD
3450 } else if ($feed <= -10) { // labels
3451 $label_id = -$feed - 11;
3de0261a 3452
ceb30ba4
AD
3453 $query_strategy_part = "label_id = '$label_id' AND
3454 ttrss_labels2.id = ttrss_user_labels2.label_id AND
3455 ttrss_user_labels2.article_id = ref_id";
3de0261a 3456
ef393de7 3457 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
ceb30ba4
AD
3458 $ext_tables_part = ",ttrss_labels2,ttrss_user_labels2";
3459
ef393de7
AD
3460 } else {
3461 $query_strategy_part = "id > 0"; // dumb
3462 }
d6e5706d 3463
7a22dc2a 3464 if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
f9b2d27c 3465 $order_by = "date_entered";
d6e5706d 3466 } else {
f9b2d27c 3467 $order_by = "date_entered DESC";
d6e5706d 3468 }
e939722a 3469
7b4d02a8
AD
3470 if ($view_mode != "noscores") {
3471 $order_by = "score DESC, $order_by";
3472 }
48b0c4ec 3473
e939722a
AD
3474 if ($override_order) {
3475 $order_by = $override_order;
3476 }
ef393de7
AD
3477
3478 $feed_title = "";
3479
22fdebff
AD
3480 if ($search) {
3481 $feed_title = "Search results";
3482 } else {
ef393de7 3483 if ($cat_view) {
22fdebff 3484 $feed_title = getCategoryTitle($link, $feed);
ef393de7 3485 } else {
22fdebff
AD
3486 if ((int)$feed == $feed && $feed > 0) {
3487 $result = db_query($link, "SELECT title,site_url,last_error
3488 FROM ttrss_feeds WHERE id = '$feed' AND owner_uid = $owner_uid");
ef393de7 3489
22fdebff
AD
3490 $feed_title = db_fetch_result($result, 0, "title");
3491 $feed_site_url = db_fetch_result($result, 0, "site_url");
3492 $last_error = db_fetch_result($result, 0, "last_error");
3493 } else {
3494 $feed_title = getFeedTitle($link, $feed);
3495 }
88040f57 3496 }
ef393de7
AD
3497 }
3498
62129e67
AD
3499 $content_query_part = "content as content_preview,";
3500
ef393de7
AD
3501 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
3502
3503 if ($feed >= 0) {
3504 $feed_kind = "Feeds";
3505 } else {
3506 $feed_kind = "Labels";
3507 }
3508
95a82c08
AD
3509 if ($limit_query_part) {
3510 $offset_query_part = "OFFSET $offset";
3511 }
3512
d00f22ac 3513 if ($vfeed_query_part && get_pref($link, 'VFEED_GROUP_BY_FEED', $owner_uid)) {
6cfea5c7 3514 if (!$override_order) {
43fc671f
AD
3515 $order_by = "ttrss_feeds.title, $order_by";
3516 }
6cfea5c7
AD
3517 }
3518
e04c18a2
AD
3519 if ($feed != "0") {
3520 $from_qpart = "ttrss_entries,ttrss_user_entries,ttrss_feeds$ext_tables_part";
117335bf 3521 $feed_check_qpart = "ttrss_user_entries.feed_id = ttrss_feeds.id AND";
e04c18a2
AD
3522
3523 } else {
3524 $from_qpart = "ttrss_entries,ttrss_user_entries$ext_tables_part
3525 LEFT JOIN ttrss_feeds ON (feed_id = ttrss_feeds.id)";
3526 }
3527
3ebd7ca5 3528 $query = "SELECT DISTINCT
f9b2d27c 3529 date_entered,
1f64b1be 3530 guid,
ef393de7 3531 ttrss_entries.id,ttrss_entries.title,
46921916 3532 updated,
c7e51de1 3533 note,
494a64ea 3534 unread,feed_id,marked,published,link,last_read,orig_feed_id,
fc2b26a6 3535 ".SUBSTRING_FOR_DATE."(last_read,1,19) as last_read_noms,
ef393de7
AD
3536 $vfeed_query_part
3537 $content_query_part
fc2b26a6 3538 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated_noms,
ff6e357a 3539 author,score
ef393de7 3540 FROM
e04c18a2 3541 $from_qpart
ef393de7 3542 WHERE
e04c18a2 3543 $feed_check_qpart
ef393de7 3544 ttrss_user_entries.ref_id = ttrss_entries.id AND
c36bf4d5 3545 ttrss_user_entries.owner_uid = '$owner_uid' AND
ef393de7
AD
3546 $search_query_part
3547 $view_query_part
3548 $query_strategy_part ORDER BY $order_by
95a82c08 3549 $limit_query_part $offset_query_part";
4bc311fc 3550
b4e75b2a 3551 if ($_REQUEST["debug"]) print $query;
4bc311fc
AD
3552
3553 $result = db_query($link, $query);
ef393de7
AD
3554
3555 } else {
3556 // browsing by tag
3557
3558 $feed_kind = "Tags";
3559
3560 $result = db_query($link, "SELECT
1f64b1be 3561 guid,
c7e51de1 3562 note,
ef393de7 3563 ttrss_entries.id as id,title,
46921916 3564 updated,
494a64ea 3565 unread,feed_id,orig_feed_id,
ef393de7 3566 marked,link,last_read,
fc2b26a6 3567 ".SUBSTRING_FOR_DATE."(last_read,1,19) as last_read_noms,
ef393de7
AD
3568 $vfeed_query_part
3569 $content_query_part
4d0b3607
AD
3570 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated_noms,
3571 score
ef393de7
AD
3572 FROM
3573 ttrss_entries,ttrss_user_entries,ttrss_tags
3574 WHERE
546499a9 3575 ref_id = ttrss_entries.id AND
c36bf4d5 3576 ttrss_user_entries.owner_uid = '$owner_uid' AND
ef393de7
AD
3577 post_int_id = int_id AND tag_name = '$feed' AND
3578 $view_query_part
3579 $search_query_part
3580 $query_strategy_part ORDER BY $order_by
3581 $limit_query_part");
3582 }
3583
c7188969 3584 return array($result, $feed_title, $feed_site_url, $last_error);
22fdebff 3585
ef393de7
AD
3586 }
3587
c36bf4d5 3588 function generate_syndicated_feed($link, $owner_uid, $feed, $is_cat,
23d72f39 3589 $limit, $search, $search_mode, $match_on, $view_mode = false) {
ead2715d 3590
db54143e 3591 $note_style = "float : right; background-color : #fff7d5; border-width : 1px; ".
c7e51de1 3592 "padding : 5px; border-style : dashed; border-color : #e7d796;".
db54143e 3593 "margin-bottom : 1em; color : #9a8c59;";
c7e51de1 3594
ead2715d 3595 if (!$limit) $limit = 30;
18664970
AD
3596
3597 $qfh_ret = queryFeedHeadlines($link, $feed,
23d72f39
AD
3598 $limit, $view_mode, $is_cat, $search, $search_mode,
3599 $match_on, "date_entered DESC", 0, $owner_uid);
18664970
AD
3600
3601 $result = $qfh_ret[0];
59e2aab4 3602 $feed_title = htmlspecialchars($qfh_ret[1]);
18664970
AD
3603 $feed_site_url = $qfh_ret[2];
3604 $last_error = $qfh_ret[3];
3605
a5472764 3606// if (!$feed_site_url) $feed_site_url = "http://localhost/";
4bc64807 3607
a5472764
AD
3608 print "<?xml version=\"1.0\" encoding=\"utf-8\"?>
3609 <?xml-stylesheet type=\"text/xsl\" href=\"rss.xsl\"?>
3610 <rss version=\"2.0\">
3baeeeca
AD
3611 <channel>
3612 <title>$feed_title</title>
4bc64807
AD
3613 <link>$feed_site_url</link>
3614 <description>Feed generated by Tiny Tiny RSS</description>";
3baeeeca
AD
3615
3616 while ($line = db_fetch_assoc($result)) {
3617 print "<item>";
4bc64807 3618 print "<guid>" . htmlspecialchars($line["guid"]) . "</guid>";
3baeeeca 3619 print "<link>" . htmlspecialchars($line["link"]) . "</link>";
0c3d1c68 3620
bc976a8c 3621 $tags = get_article_tags($link, $line["id"], $owner_uid);
0c3d1c68
AD
3622
3623 foreach ($tags as $tag) {
3624 print "<category>" . htmlspecialchars($tag) . "</category>";
3625 }
3626
3baeeeca
AD
3627 $rfc822_date = date('r', strtotime($line["updated"]));
3628
2f0903a6
AD
3629 print "<pubDate>$rfc822_date</pubDate>";
3630
3631 if ($line["author"]) {
3632 print "<author>" . htmlspecialchars($line["author"]) . "</author>";
3633 }
3baeeeca
AD
3634
3635 print "<title>" .
3636 htmlspecialchars($line["title"]) . "</title>";
3637
db54143e
AD
3638 print "<description><![CDATA[";
3639
c7e51de1
AD
3640 if ($line["note"]) {
3641 print "<div style='$note_style'>";
3642 print $line["note"];
3643 print "</div>";
3644 }
db54143e 3645
ceb0cab5 3646 print sanitize_rss($link, $line["content_preview"], false, $owner_uid);
c7e51de1 3647 print "]]></description>";
c7845467
AD
3648
3649 $enclosures = get_article_enclosures($link, $line["id"]);
3650
3651 foreach ($enclosures as $e) {
3652 $type = htmlspecialchars($e['content_type']);
3653 $url = htmlspecialchars($e['content_url']);
3654 $length = $e['duration'];
3655 print "<enclosure url=\"$url\" type=\"$type\" length=\"$length\"/>";
3656 }
3657
3baeeeca
AD
3658 print "</item>";
3659 }
3660
3661 print "</channel></rss>";
18664970
AD
3662
3663 }
3664
0a6c4846
AD
3665 function getCategoryTitle($link, $cat_id) {
3666
bba7c4bf
AD
3667 if ($cat_id == -1) {
3668 return __("Special");
3669 } else if ($cat_id == -2) {
3670 return __("Labels");
0a6c4846 3671 } else {
bba7c4bf
AD
3672
3673 $result = db_query($link, "SELECT title FROM ttrss_feed_categories WHERE
3674 id = '$cat_id'");
3675
3676 if (db_num_rows($result) == 1) {
3677 return db_fetch_result($result, 0, "title");
3678 } else {
3679 return "Uncategorized";
3680 }
0a6c4846
AD
3681 }
3682 }
3683
f45a286b
AD
3684 function strip_tags_long($string, $allowed) {
3685
3686 $config = HTMLPurifier_Config::createDefault();
3687
3688 $config->set('HTML', 'Allowed', $allowed);
3689 $purifier = new HTMLPurifier($config);
3690
3691 return $purifier->purify($string);
3692
3693 }
3694
f738aef1
AD
3695 // http://ru2.php.net/strip-tags
3696
f45a286b 3697/* function strip_tags_long($textstring, $allowed){
f738aef1
AD
3698 while($textstring != strip_tags($textstring, $allowed))
3699 {
3700 while (strlen($textstring) != 0)
3701 {
3702 if (strlen($textstring) > 1024) {
3703 $otherlen = 1024;
3704 } else {
3705 $otherlen = strlen($textstring);
3706 }
3707 $temptext = strip_tags(substr($textstring,0,$otherlen), $allowed);
3708 $safetext .= $temptext;
3709 $textstring = substr_replace($textstring,'',0,$otherlen);
3710 }
3711 $textstring = $safetext;
3712 }
3713 return $textstring;
f45a286b 3714} */
f738aef1
AD
3715
3716
ceb0cab5 3717 function sanitize_rss($link, $str, $force_strip_tags = false, $owner = false) {
60452879 3718 $res = $str;
183ad07b 3719
ceb0cab5
AD
3720 if (!$owner) $owner = $_SESSION["uid"];
3721
3722 if (get_pref($link, "STRIP_UNSAFE_TAGS", $owner) || $force_strip_tags) {
f738aef1 3723
f45a286b
AD
3724// $res = strip_tags_long($res,
3725// "<p><a><i><em><b><strong><code><pre><blockquote><br><img><ul><ol><li>");
3726
7e1265ed 3727 $res = strip_tags_long($res,
f45a286b 3728 "p,a[href],i,em,b,strong,code,pre,blockquote,br,img[src|alt|title],ul,ol,li,h1,h2,h3,h4");
f738aef1 3729
f826eee1
AD
3730 }
3731
ceb0cab5 3732 if (get_pref($link, "STRIP_IMAGES", $owner)) {
8dccabed 3733 $res = preg_replace('/<img[^>]+>/is', '', $res);
7514749d 3734 }
8dccabed 3735
a522a767 3736 if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW', $owner)) {
7514749d 3737 $res = preg_replace("/href=/i", "target=\"_blank\" href=", $res);
8dccabed
AD
3738 }
3739
183ad07b
AD
3740 return $res;
3741 }
b72c3ef8 3742
45004d43
AD
3743 /**
3744 * Send by mail a digest of last articles.
3745 *
3746 * @param mixed $link The database connection.
3747 * @param integer $limit The maximum number of articles by digest.
3748 * @return boolean Return false if digests are not enabled.
3749 */
9cd7c995
AD
3750 function send_headlines_digests($link, $limit = 100) {
3751
1ddba275
AD
3752 if (!DIGEST_ENABLE) return false;
3753
9cd7c995 3754 $user_limit = DIGEST_EMAIL_LIMIT;
5430c959 3755 $days = 1;
9cd7c995
AD
3756
3757 print "Sending digests, batch of max $user_limit users, days = $days, headline limit = $limit\n\n";
3758
3759 if (DB_TYPE == "pgsql") {
3760 $interval_query = "last_digest_sent < NOW() - INTERVAL '$days days'";
3761 } else if (DB_TYPE == "mysql") {
3762 $interval_query = "last_digest_sent < DATE_SUB(NOW(), INTERVAL $days DAY)";
3763 }
3764
3765 $result = db_query($link, "SELECT id,email FROM ttrss_users
3766 WHERE email != '' AND (last_digest_sent IS NULL OR $interval_query)");
3767
3768 while ($line = db_fetch_assoc($result)) {
dc85be2b 3769
9cd7c995
AD
3770 if (get_pref($link, 'DIGEST_ENABLE', $line['id'], false)) {
3771 print "Sending digest for UID:" . $line['id'] . " - " . $line["email"] . " ... ";
3772
dc85be2b
AD
3773 $do_catchup = get_pref($link, 'DIGEST_CATCHUP', $line['id'], false);
3774
9cd7c995
AD
3775 $tuple = prepare_headlines_digest($link, $line["id"], $days, $limit);
3776 $digest = $tuple[0];
3777 $headlines_count = $tuple[1];
dc85be2b 3778 $affected_ids = $tuple[2];
c62a2c21 3779 $digest_text = $tuple[3];
9cd7c995
AD
3780
3781 if ($headlines_count > 0) {
a8931123 3782
c62a2c21 3783 $mail = new PHPMailer();
a8931123 3784
d134e3a3
AD
3785 $mail->PluginDir = "lib/phpmailer/";
3786 $mail->SetLanguage("en", "lib/phpmailer/language/");
a8931123 3787
c62a2c21 3788 $mail->CharSet = "UTF-8";
a8931123 3789
c62a2c21
AD
3790 $mail->From = DIGEST_FROM_ADDRESS;
3791 $mail->FromName = DIGEST_FROM_NAME;
3792 $mail->AddAddress($line["email"], $line["login"]);
c7ddac5c 3793
c62a2c21 3794 if (DIGEST_SMTP_HOST) {
a8931123
AD
3795 $mail->Host = DIGEST_SMTP_HOST;
3796 $mail->Mailer = "smtp";
19a1da0d 3797 $mail->SMTPAuth = DIGEST_SMTP_LOGIN != '';
a8931123
AD
3798 $mail->Username = DIGEST_SMTP_LOGIN;
3799 $mail->Password = DIGEST_SMTP_PASSWORD;
c62a2c21 3800 }
a8931123 3801
c62a2c21 3802 $mail->IsHTML(true);
163a295e 3803 $mail->Subject = DIGEST_SUBJECT;
c62a2c21
AD
3804 $mail->Body = $digest;
3805 $mail->AltBody = $digest_text;
a8931123 3806
c62a2c21 3807 $rc = $mail->Send();
a8931123 3808
c62a2c21 3809 if (!$rc) print "ERROR: " . $mail->ErrorInfo;
a8931123 3810
9cd7c995 3811 print "RC=$rc\n";
a8931123 3812
c62a2c21 3813 if ($rc && $do_catchup) {
dc85be2b 3814 print "Marking affected articles as read...\n";
9968d46f 3815 catchupArticlesById($link, $affected_ids, 0, $line["id"]);
dc85be2b
AD
3816 }
3817
9cd7c995
AD
3818 db_query($link, "UPDATE ttrss_users SET last_digest_sent = NOW()
3819 WHERE id = " . $line["id"]);
3820 } else {
3821 print "No headlines\n";
3822 }
3823 }
3824 }
3825
cedd3e89
AD
3826 print "All done.\n";
3827
9cd7c995
AD
3828 }
3829
7e3634d9 3830 function prepare_headlines_digest($link, $user_id, $days = 1, $limit = 100) {
c62a2c21 3831
fe7537b5 3832 require_once "lib/MiniTemplator.class.php";
c62a2c21
AD
3833
3834 $tpl = new MiniTemplator;
3835 $tpl_t = new MiniTemplator;
3836
3837 $tpl->readTemplateFromFile("templates/digest_template_html.txt");
3838 $tpl_t->readTemplateFromFile("templates/digest_template.txt");
3839
3840 $tpl->setVariable('CUR_DATE', date('Y/m/d'));
3841 $tpl->setVariable('CUR_TIME', date('G:i'));
3842
3843 $tpl_t->setVariable('CUR_DATE', date('Y/m/d'));
3844 $tpl_t->setVariable('CUR_TIME', date('G:i'));
7e3634d9 3845
dc85be2b
AD
3846 $affected_ids = array();
3847
7e3634d9 3848 if (DB_TYPE == "pgsql") {
25ea2805 3849 $interval_query = "ttrss_entries.date_updated > NOW() - INTERVAL '$days days'";
7e3634d9 3850 } else if (DB_TYPE == "mysql") {
25ea2805 3851 $interval_query = "ttrss_entries.date_updated > DATE_SUB(NOW(), INTERVAL $days DAY)";
7e3634d9
AD
3852 }
3853
3854 $result = db_query($link, "SELECT ttrss_entries.title,
3855 ttrss_feeds.title AS feed_title,
25ea2805 3856 date_updated,
dc85be2b 3857 ttrss_user_entries.ref_id,
7e3634d9 3858 link,
c62a2c21 3859 SUBSTRING(content, 1, 120) AS excerpt,
fc2b26a6 3860 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
7e3634d9
AD
3861 FROM
3862 ttrss_user_entries,ttrss_entries,ttrss_feeds
3863 WHERE
3864 ref_id = ttrss_entries.id AND feed_id = ttrss_feeds.id
3dd9183c 3865 AND include_in_digest = true
7e3634d9 3866 AND $interval_query
448b0abd 3867 AND ttrss_user_entries.owner_uid = $user_id
c62a2c21 3868 AND unread = true
25ea2805 3869 ORDER BY ttrss_feeds.title, date_updated DESC
7e3634d9
AD
3870 LIMIT $limit");
3871
3872 $cur_feed_title = "";
3873
9cd7c995
AD
3874 $headlines_count = db_num_rows($result);
3875
c62a2c21
AD
3876 $headlines = array();
3877
7e3634d9 3878 while ($line = db_fetch_assoc($result)) {
c62a2c21
AD
3879 array_push($headlines, $line);
3880 }
3881
3882 for ($i = 0; $i < sizeof($headlines); $i++) {
3883
3884 $line = $headlines[$i];
dc85be2b
AD
3885
3886 array_push($affected_ids, $line["ref_id"]);
3887
7e3634d9 3888 $updated = smart_date_time(strtotime($line["last_updated"]));
7e3634d9 3889
c62a2c21
AD
3890 $tpl->setVariable('FEED_TITLE', $line["feed_title"]);
3891 $tpl->setVariable('ARTICLE_TITLE', $line["title"]);
3892 $tpl->setVariable('ARTICLE_LINK', $line["link"]);
3893 $tpl->setVariable('ARTICLE_UPDATED', $updated);
163a295e
AD
3894 $tpl->setVariable('ARTICLE_EXCERPT',
3895 truncate_string(strip_tags($line["excerpt"]), 100));
7e3634d9 3896
c62a2c21
AD
3897 $tpl->addBlock('article');
3898
3899 $tpl_t->setVariable('FEED_TITLE', $line["feed_title"]);
3900 $tpl_t->setVariable('ARTICLE_TITLE', $line["title"]);
3901 $tpl_t->setVariable('ARTICLE_LINK', $line["link"]);
3902 $tpl_t->setVariable('ARTICLE_UPDATED', $updated);
3903// $tpl_t->setVariable('ARTICLE_EXCERPT',
3904// truncate_string(strip_tags($line["excerpt"]), 100));
3905
3906 $tpl_t->addBlock('article');
3907
3908 if ($headlines[$i]['feed_title'] != $headlines[$i+1]['feed_title']) {
3909 $tpl->addBlock('feed');
3910 $tpl_t->addBlock('feed');
7e3634d9
AD
3911 }
3912
7e3634d9
AD
3913 }
3914
c62a2c21
AD
3915 $tpl->addBlock('digest');
3916 $tpl->generateOutputToString($tmp);
3917
3918 $tpl_t->addBlock('digest');
3919 $tpl_t->generateOutputToString($tmp_t);
7e3634d9 3920
c62a2c21 3921 return array($tmp, $headlines_count, $affected_ids, $tmp_t);
7e3634d9
AD
3922 }
3923
73495fd1 3924 function check_for_update($link) {
b6d486a3 3925 $releases_feed = "http://tt-rss.org/releases.rss";
b72c3ef8
AD
3926
3927 if (!CHECK_FOR_NEW_VERSION || $_SESSION["access_level"] < 10) {
3928 return;
3929 }
3930
3931 error_reporting(0);
63def06c 3932 if (DEFAULT_UPDATE_METHOD == "1") {
f67d9754
AD
3933 $rss = new SimplePie();
3934 $rss->set_useragent(SIMPLEPIE_USERAGENT . MAGPIE_USER_AGENT_EXT);
4148e809 3935// $rss->set_timeout(MAGPIE_FETCH_TIME_OUT);
f67d9754
AD
3936 $rss->set_feed_url($fetch_url);
3937 $rss->set_output_encoding('UTF-8');
3938 $rss->init();
3939 } else {
3940 $rss = fetch_rss($releases_feed);
3941 }
b72c3ef8
AD
3942 error_reporting (DEFAULT_ERROR_LEVEL);
3943
3944 if ($rss) {
3945
78a5c296 3946 if (DEFAULT_UPDATE_METHOD == "1") {
f67d9754
AD
3947 $items = $rss->get_items();
3948 } else {
3949 $items = $rss->items;
b72c3ef8 3950
f67d9754
AD
3951 if (!$items || !is_array($items)) $items = $rss->entries;
3952 if (!$items || !is_array($items)) $items = $rss;
3953 }
b72c3ef8 3954
da412ad3 3955 if (!is_array($items) || count($items) == 0) {
b72c3ef8 3956 return;
da412ad3 3957 }
b72c3ef8 3958
a41d2c65 3959 $latest_item = $items[0];
b72c3ef8 3960
78a5c296 3961 if (DEFAULT_UPDATE_METHOD == "1") {
f67d9754
AD
3962 $last_title = $latest_item->get_title();
3963 } else {
3964 $last_title = $latest_item["title"];
3965 }
b72c3ef8 3966
f67d9754
AD
3967 $latest_version = trim(preg_replace("/(Milestone)|(completed)/", "", $last_title));
3968
78a5c296 3969 if (DEFAULT_UPDATE_METHOD == "1") {
dcf7fd08
AD
3970 $release_url = sanitize_rss($link, $latest_item->get_link());
3971 $content = sanitize_rss($link, $latest_item->get_description());
f67d9754
AD
3972 } else {
3973 $release_url = sanitize_rss($link, $latest_item["link"]);
3974 $content = sanitize_rss($link, $latest_item["description"]);
3975 }
48e1a342 3976
a41d2c65 3977 if (version_compare(VERSION, $latest_version) == -1) {
73495fd1
AD
3978 return sprintf("New version of Tiny-Tiny RSS (%s) is available:",
3979 $latest_version)."<div class='milestoneDetails'>$content</div>";
3980 } else {
3981 return false;
3982 }
b72c3ef8
AD
3983 }
3984 }
472782e8 3985
18eddb2c
AD
3986 function markArticlesById($link, $ids, $cmode) {
3987
3988 $tmp_ids = array();
3989
3990 foreach ($ids as $id) {
3991 array_push($tmp_ids, "ref_id = '$id'");
3992 }
3993
3994 $ids_qpart = join(" OR ", $tmp_ids);
3995
3996 if ($cmode == 0) {
3997 db_query($link, "UPDATE ttrss_user_entries SET
3998 marked = false,last_read = NOW()
3999 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4000 } else if ($cmode == 1) {
4001 db_query($link, "UPDATE ttrss_user_entries SET
4002 marked = true
4003 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4004 } else {
4005 db_query($link, "UPDATE ttrss_user_entries SET
4006 marked = NOT marked,last_read = NOW()
4007 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4008 }
4009 }
4010
e4f4b46f
AD
4011 function publishArticlesById($link, $ids, $cmode) {
4012
4013 $tmp_ids = array();
4014
4015 foreach ($ids as $id) {
4016 array_push($tmp_ids, "ref_id = '$id'");
4017 }
4018
4019 $ids_qpart = join(" OR ", $tmp_ids);
4020
4021 if ($cmode == 0) {
4022 db_query($link, "UPDATE ttrss_user_entries SET
4023 published = false,last_read = NOW()
4024 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4025 } else if ($cmode == 1) {
4026 db_query($link, "UPDATE ttrss_user_entries SET
4027 published = true
4028 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4029 } else {
4030 db_query($link, "UPDATE ttrss_user_entries SET
4031 published = NOT published,last_read = NOW()
4032 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4033 }
4034 }
4035
9968d46f
AD
4036 function catchupArticlesById($link, $ids, $cmode, $owner_uid = false) {
4037
4038 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
ed41f171 4039 if (count($ids) == 0) return;
472782e8
AD
4040
4041 $tmp_ids = array();
4042
4043 foreach ($ids as $id) {
4044 array_push($tmp_ids, "ref_id = '$id'");
4045 }
4046
4047 $ids_qpart = join(" OR ", $tmp_ids);
4048
4049 if ($cmode == 0) {
4050 db_query($link, "UPDATE ttrss_user_entries SET
4051 unread = false,last_read = NOW()
9968d46f 4052 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8
AD
4053 } else if ($cmode == 1) {
4054 db_query($link, "UPDATE ttrss_user_entries SET
4055 unread = true
9968d46f 4056 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8
AD
4057 } else {
4058 db_query($link, "UPDATE ttrss_user_entries SET
4059 unread = NOT unread,last_read = NOW()
9968d46f 4060 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
472782e8 4061 }
0737b95a
AD
4062
4063 /* update ccache */
4064
4065 $result = db_query($link, "SELECT DISTINCT feed_id FROM ttrss_user_entries
4066 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
4067
4068 while ($line = db_fetch_assoc($result)) {
4069 ccache_update($link, $line["feed_id"], $owner_uid);
4070 }
472782e8
AD
4071 }
4072
e097e8be
AD
4073 function catchupArticleById($link, $id, $cmode) {
4074
4075 if ($cmode == 0) {
4076 db_query($link, "UPDATE ttrss_user_entries SET
4077 unread = false,last_read = NOW()
4078 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4079 } else if ($cmode == 1) {
4080 db_query($link, "UPDATE ttrss_user_entries SET
4081 unread = true
4082 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4083 } else {
4084 db_query($link, "UPDATE ttrss_user_entries SET
4085 unread = NOT unread,last_read = NOW()
4086 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4087 }
ab197ae1
AD
4088
4089 $feed_id = getArticleFeed($link, $id);
4090 ccache_update($link, $feed_id, $_SESSION["uid"]);
e097e8be
AD
4091 }
4092
1f64b1be
AD
4093 function make_guid_from_title($title) {
4094 return preg_replace("/[ \"\',.:;]/", "-",
fefef828 4095 mb_strtolower(strip_tags($title), 'utf-8'));
1f64b1be
AD
4096 }
4097
11befbb2 4098 function print_headline_subtoolbar($link, $feed_site_url, $feed_title,
0ef68e6f 4099 $feed_id, $is_cat, $search, $match_on,
23d72f39 4100 $search_mode, $view_mode) {
e6c115b2 4101
0ef68e6f 4102 print "<div class=\"headlinesSubToolbar\">";
11befbb2 4103
e6c115b2
AD
4104 $page_prev_link = "javascript:viewFeedGoPage(-1)";
4105 $page_next_link = "javascript:viewFeedGoPage(1)";
4106 $page_first_link = "javascript:viewFeedGoPage(0)";
203de776 4107
eb28b131
AD
4108 $catchup_page_link = "javascript:catchupPage()";
4109 $catchup_feed_link = "javascript:catchupCurrentFeed()";
a5ae125a 4110 $catchup_sel_link = "javascript:catchupSelection()";
c6008b62 4111
e04c18a2
AD
4112 $archive_sel_link = "javascript:archiveSelection()";
4113 $delete_sel_link = "javascript:deleteSelection()";
4114
11befbb2
AD
4115 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
4116
c6008b62
AD
4117 $sel_all_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, '', true)";
4118 $sel_unread_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, 'Unread', true)";
4119 $sel_none_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false)";
e75d70b5 4120 $sel_inv_link = "javascript:invertHeadlineSelection()";
11befbb2 4121
c6008b62
AD
4122 $tog_unread_link = "javascript:selectionToggleUnread()";
4123 $tog_marked_link = "javascript:selectionToggleMarked()";
e4f4b46f 4124 $tog_published_link = "javascript:selectionTogglePublished()";
11befbb2 4125
c6008b62 4126 } else {
11befbb2 4127
c6008b62
AD
4128 $sel_all_link = "javascript:cdmSelectArticles('all')";
4129 $sel_unread_link = "javascript:cdmSelectArticles('unread')";
4130 $sel_none_link = "javascript:cdmSelectArticles('none')";
4131
e75d70b5
AD
4132 $sel_inv_link = "javascript:invertHeadlineSelection()";
4133
c6008b62
AD
4134 $tog_unread_link = "javascript:selectionToggleUnread(true)";
4135 $tog_marked_link = "javascript:selectionToggleMarked(true)";
e4f4b46f 4136 $tog_published_link = "javascript:selectionTogglePublished(true)";
c6008b62
AD
4137
4138 }
4139
0ef68e6f
AD
4140 print "<div id=\"subtoolbar_ftitle\">";
4141
4142 if ($feed_site_url) {
c3fddd05 4143 $target = "target=\"_blank\"";
9fdeb07e 4144 print "<a title=\"".__("Visit the website")."\"$target href=\"$feed_site_url\">".
0ef68e6f
AD
4145 truncate_string($feed_title,30)."</a>";
4146 } else {
5163fc70
AD
4147 if ($feed_id < -10) {
4148 $label_id = -11-$feed_id;
4149
4150 $result = db_query($link, "SELECT fg_color, bg_color
4151 FROM ttrss_labels2 WHERE id = '$label_id' AND owner_uid = " .
4152 $_SESSION["uid"]);
4153
4154 if (db_num_rows($result) != 0) {
4155 $fg_color = db_fetch_result($result, 0, "fg_color");
4156 $bg_color = db_fetch_result($result, 0, "bg_color");
4157
4158 print "<span style='background : $bg_color; color : $fg_color'>";
4159 print $feed_title;
4160 print "</span>";
4161 } else {
4162 print $feed_title;
4163 }
4164
4165 } else {
4166 print $feed_title;
4167 }
0ef68e6f
AD
4168 }
4169
4170 if ($search) {
4171 $search_q = "&q=$search&m=$match_on&smode=$search_mode";
c3fddd05
AD
4172 } else {
4173 $search_q = "";
0ef68e6f
AD
4174 }
4175
f0361de2
AD
4176 $rss_link = "backend.php?op=rss&id=$feed_id&is_cat=$is_cat&view-mode=$view_mode$search_q";
4177
0ef68e6f 4178 print "
23d72f39 4179 <a target=\"_blank\"
9c5b98ad 4180 title=\"".__("View as RSS feed")."\"
f0361de2 4181 href=\"$rss_link\">
23d72f39 4182 <img class=\"noborder\" src=\"images/feed-icon-12x12.png\"></a>";
b8a637f3 4183
0ef68e6f 4184 print "</div>";
ceb30ba4 4185
d75ed3eb
AD
4186 print __('Select:')."
4187 <a href=\"$sel_all_link\">".__('All')."</a>,
4188 <a href=\"$sel_unread_link\">".__('Unread')."</a>,
4189 <a href=\"$sel_inv_link\">".__('Invert')."</a>,
4190 <a href=\"$sel_none_link\">".__('None')."</a></li>";
bf3c9838 4191
d75ed3eb 4192 print "&nbsp;&nbsp;";
bf3c9838 4193
d75ed3eb
AD
4194 print "<span
4195 onmouseover=\"enable_selection(false)\"
4196 onmouseout=\"enable_selection(true)\"
4197 onclick=\"toggleHeadlineActions()\" id=\"headlineActionsDrop\">".
7d939be7
AD
4198 __("Actions...") . "&nbsp;&nbsp;<img width='11' height'7'
4199 src=\"images/down_arrow.png\">
d75ed3eb 4200 </span>";
bf3c9838 4201
d75ed3eb 4202 print "<ul id=\"headlineActionsBody\" style=\"display : none\">";
bf3c9838 4203
d75ed3eb
AD
4204 print "<li class=\"insensitive\">".__('Selection toggle:')."</li>
4205 <li onclick=\"$tog_unread_link\">&nbsp;&nbsp;".__('Unread')."</li>
4206 <li onclick=\"$tog_marked_link\">&nbsp;&nbsp;".__('Starred')."</li>
4207 <li onclick=\"$tog_published_link\">&nbsp;&nbsp;".__('Published')."</li>
938052ba
AD
4208 <li class=\"insensitive\">".__('Selection:')."</li>
4209 <li onclick=\"$catchup_sel_link\">&nbsp;&nbsp;".__('Mark as read')."</li>";
bf3c9838 4210
938052ba
AD
4211// print "<li onclick=\"$catchup_feed_link\">&nbsp;&nbsp;".__('Entire feed').
4212// "</li>";
bf3c9838 4213
e04c18a2 4214 if ($feed_id != "0") {
938052ba 4215 print "<li onclick=\"$archive_sel_link\">&nbsp;&nbsp;".__('Archive')."</li>";
e04c18a2 4216 } else {
938052ba 4217 print "<li onclick=\"$archive_sel_link\">&nbsp;&nbsp;".__('Move back')."</li>";
84d7198a 4218 print "<li onclick=\"$delete_sel_link\">&nbsp;&nbsp;".__('Delete')."</li>";
e04c18a2 4219
84d7198a 4220 }
938052ba 4221
d75ed3eb
AD
4222 //print "<li><span class=\"insensitive\">--------</span></li>";
4223 print "<li class=\"insensitive\">".__('Assign label:')."</li>";
bf3c9838 4224
79c88e11 4225 print_labels_headlines_dropdown($link, $feed_id);
c6008b62 4226
f0361de2
AD
4227 print "<li class=\"insensitive\">".__('Feed:')."</li>";
4228 print "<li onclick=\"window.open('$rss_link')\">&nbsp;&nbsp;".__('View as RSS')."</li>";
4229
d75ed3eb 4230 print "</ul>";
11befbb2 4231
0ef68e6f 4232 print "</div>";
11befbb2
AD
4233 }
4234
f0855b88
AD
4235 function printCategoryHeader($link, $cat_id, $hidden = false, $can_browse = true,
4236 $title_override = false) {
bba7c4bf 4237
f0855b88
AD
4238 if (!$title_override)
4239 $tmp_category = getCategoryTitle($link, $cat_id);
4240 else
4241 $tmp_category = $title_override;
cc914918
AD
4242
4243 if ($cat_id > 0) {
4244 $cat_unread = ccache_find($link, $cat_id, $_SESSION["uid"], true);
b2531a28 4245 } else if ($cat_id == 0 || $cat_id == -2) {
cc914918
AD
4246 $cat_unread = getCategoryUnread($link, $cat_id);
4247 }
bba7c4bf
AD
4248
4249 if ($hidden) {
4250 $holder_style = "display:none;";
66a251f9 4251 $ellipsis = "…";
bba7c4bf
AD
4252 } else {
4253 $holder_style = "";
4254 $ellipsis = "";
4255 }
4256
4257 $catctr_class = ($cat_unread > 0) ? "catCtrHasUnread" : "catCtrNoUnread";
4258
bba7c4bf 4259 if ($can_browse) {
4c41e58f
AD
4260 $browse_cat_link = "onclick=\"javascript:viewCategory($cat_id)\"";
4261 $inner_title_class = "catTitle";
bba7c4bf 4262 } else {
4c41e58f
AD
4263 $browse_cat_link = "";
4264 $inner_title_class = "catTitleNL";
bba7c4bf
AD
4265 }
4266
2baedabe 4267 $cat_class = "feedCat";
364e391e
AD
4268
4269 print "<li class=\"$cat_class\" id=\"FCAT-$cat_id\">
98fb6193 4270 <img onclick=\"toggleCollapseCat($cat_id)\" class=\"catCollapse\"
4c41e58f
AD
4271 title=\"".__('Click to collapse category')."\"
4272 src=\"images/cat-collapse.png\"><span class=\"$inner_title_class\"
c6dbeedc 4273 id=\"FCATN-$cat_id\" $browse_cat_link/>$tmp_category</span>";
4c41e58f
AD
4274
4275 print "<span id=\"FCAP-$cat_id\">";
4276
dda1396f 4277 print " <span id=\"FCATCTR-$cat_id\"
bba7c4bf
AD
4278 class=\"$catctr_class\">($cat_unread)</span> $ellipsis";
4279
4c41e58f 4280 print "</span>";
bba7c4bf 4281
782ddd70 4282 //print "</li>";
bba7c4bf 4283
60ea2377 4284 print "<ul class=\"feedCatList\" id=\"FCATLIST-$cat_id\" style='$holder_style'>";
7abee14f 4285
bba7c4bf
AD
4286 }
4287
f407c086
AD
4288 function outputFeedList($link, $tags = false) {
4289
3bd9a780 4290 print "<ul class=\"feedList\" id=\"feedList\">";
f407c086
AD
4291
4292 $owner_uid = $_SESSION["uid"];
4293
cf4d339c 4294 /* virtual feeds */
f407c086 4295
cf4d339c 4296 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3b086176 4297
57937c42 4298 $cat_hidden = get_pref($link, "_COLLAPSED_SPECIAL");
3b086176 4299
bba7c4bf 4300 printCategoryHeader($link, -1, $cat_hidden, false);
cf4d339c 4301 }
f407c086 4302
e1050aec 4303 foreach (array(-4, -3, -1, -2, 0) as $i) {
4bee8b5f
AD
4304 printFeedEntry($i, "virt", false, false,
4305 false, $link);
4306 }
e4f4b46f 4307
cf4d339c 4308 if (get_pref($link, 'ENABLE_FEED_CATS')) {
8b803aa2 4309 print "</ul></li>";
cf4d339c 4310 }
f407c086 4311
cf4d339c 4312 if (!$tags) {
f407c086 4313
ceb30ba4 4314
2eb9c95c 4315 $result = db_query($link, "SELECT * FROM
ceb30ba4 4316 ttrss_labels2 WHERE owner_uid = '$owner_uid' ORDER by caption");
f407c086
AD
4317
4318 if (db_num_rows($result) > 0) {
4319 if (get_pref($link, 'ENABLE_FEED_CATS')) {
bd64489f 4320
57937c42 4321 $cat_hidden = get_pref($link, "_COLLAPSED_LABELS");
bd64489f 4322
e6a38cde 4323 printCategoryHeader($link, -2, $cat_hidden, true);
bd64489f 4324
f407c086 4325 } else {
3bd9a780 4326 print "<li><hr></li>";
f407c086
AD
4327 }
4328 }
4329
4330 while ($line = db_fetch_assoc($result)) {
4331
f407c086
AD
4332 $label_id = -$line['id'] - 11;
4333 $count = getFeedUnread($link, $label_id);
f407c086
AD
4334
4335 printFeedEntry($label_id,
4bee8b5f
AD
4336 "label", $line["caption"],
4337 $count, false, $link,
2eb9c95c
AD
4338 false, false, false,
4339 $line['fg_color'], $line['bg_color']);
f407c086
AD
4340
4341 }
4342
4343 if (db_num_rows($result) > 0) {
4344 if (get_pref($link, 'ENABLE_FEED_CATS')) {
4345 print "</ul>";
4346 }
ceb30ba4 4347 }
f407c086 4348
f407c086
AD
4349
4350 if (!get_pref($link, 'ENABLE_FEED_CATS')) {
3bd9a780 4351 print "<li><hr></li>";
f407c086
AD
4352 }
4353
4354 if (get_pref($link, 'ENABLE_FEED_CATS')) {
4355 if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
9d393c84 4356 $order_by_qpart = "order_id,category,unread DESC,title";
f407c086 4357 } else {
9d393c84 4358 $order_by_qpart = "order_id,category,title";
f407c086
AD
4359 }
4360 } else {
4361 if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
4362 $order_by_qpart = "unread DESC,title";
4363 } else {
4364 $order_by_qpart = "title";
4365 }
4366 }
4367
14073c0a
AD
4368 $age_qpart = getMaxAgeSubquery();
4369
99509451 4370 $query = "SELECT ttrss_feeds.*,
fc2b26a6 4371 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated_noms,
f407c086
AD
4372 cat_id,last_error,
4373 ttrss_feed_categories.title AS category,
d7135e2a
AD
4374 ttrss_feed_categories.collapsed,
4375 value AS unread
4376 FROM ttrss_feeds LEFT JOIN ttrss_feed_categories
4377 ON (ttrss_feed_categories.id = cat_id)
4378 LEFT JOIN ttrss_counters_cache
4379 ON
4380 (ttrss_feeds.id = feed_id)
f407c086 4381 WHERE
f407c086 4382 ttrss_feeds.owner_uid = '$owner_uid' AND parent_feed IS NULL
99509451
AD
4383 ORDER BY $order_by_qpart";
4384
4385 $result = db_query($link, $query);
f407c086 4386
b4e75b2a 4387 $actid = $_REQUEST["actid"];
f407c086
AD
4388
4389 /* real feeds */
4390
4391 $lnum = 0;
4392
4393 $total_unread = 0;
4394
4395 $category = "";
4396
4397 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
4398
4399 while ($line = db_fetch_assoc($result)) {
4400
70c9b173 4401 $feed = htmlspecialchars(trim($line["title"]));
0f39ae20
AD
4402
4403 if (!$feed) $feed = "[Untitled]";
4404
f407c086 4405 $feed_id = $line["id"];
d7135e2a 4406 $unread = $line["unread"];
f407c086 4407
b4e75b2a 4408 $subop = $_REQUEST["subop"];
f407c086
AD
4409
4410 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
4411 $last_updated = smart_date_time(strtotime($line["last_updated_noms"]));
4412 } else {
4413 $last_updated = date($short_date, strtotime($line["last_updated_noms"]));
4414 }
4415
4416 $rtl_content = sql_bool_to_bool($line["rtl_content"]);
4417
4418 if ($rtl_content) {
4419 $rtl_tag = "dir=\"RTL\"";
4420 } else {
4421 $rtl_tag = "";
4422 }
4423
4424 $tmp_result = db_query($link,
de0a2122
AD
4425 "SELECT SUM(value) AS unread FROM ttrss_feeds, ttrss_counters_cache
4426 WHERE parent_feed = '$feed_id' AND feed_id = id");
f407c086 4427
de0a2122
AD
4428 $unread += db_fetch_result($tmp_result, 0, "unread");
4429
f407c086
AD
4430 $cat_id = $line["cat_id"];
4431
4432 $tmp_category = $line["category"];
4433
4434 if (!$tmp_category) {
d1db26aa 4435 $tmp_category = __("Uncategorized");
f407c086
AD
4436 }
4437
4438 // $class = ($lnum % 2) ? "even" : "odd";
4439
4440 if ($line["last_error"]) {
4441 $class = "error";
4442 } else {
4443 $class = "feed";
4444 }
4445
f407c086
AD
4446 if ($actid == $feed_id) {
4447 $class .= "Selected";
4448 }
4449
4450 $total_unread += $unread;
4451
4452 if ($category != $tmp_category && get_pref($link, 'ENABLE_FEED_CATS')) {
4453
4454 if ($category) {
8b803aa2 4455 print "</ul></li>";
f407c086
AD
4456 }
4457
4458 $category = $tmp_category;
4459
7abee14f 4460 $collapsed = sql_bool_to_bool($line["collapsed"]);
f407c086
AD
4461
4462 // workaround for NULL category
d1db26aa 4463 if ($category == __("Uncategorized")) {
57937c42 4464 $collapsed = get_pref($link, "_COLLAPSED_UNCAT");
f407c086
AD
4465 }
4466
22fdebff 4467 $cat_id = (int) $cat_id;
f407c086 4468
7abee14f
AD
4469 printCategoryHeader($link, $cat_id, $collapsed, true);
4470
f407c086
AD
4471 }
4472
4473 printFeedEntry($feed_id, $class, $feed, $unread,
4bee8b5f 4474 false, $link, $rtl_content,
f407c086
AD
4475 $last_updated, $line["last_error"]);
4476
4477 ++$lnum;
4478 }
4479
4480 if (db_num_rows($result) == 0) {
f0855b88
AD
4481
4482 if (!get_pref($link, 'ENABLE_FEED_CATS')) {
4483 print "<li style='text-align : center'><a href=\"#\"
4484 onclick=\"quickAddFeed()\">".
4485 __('Subscribe to feed...')."</a></li>";
4486 } else {
4487 printCategoryHeader($link, -1, false, false, "Feeds");
4488
4489 print "<li><a href=\"#\"
4490 onclick=\"quickAddFeed()\">".
4491 __('Subscribe to feed...')."</a></li>";
4492
4493 print "</ul>";
4494 }
f407c086
AD
4495 }
4496
4497 } else {
4498
4499 // tags
4500
4501/* $result = db_query($link, "SELECT tag_name,count(ttrss_entries.id) AS count
4502 FROM ttrss_tags,ttrss_entries,ttrss_user_entries WHERE
4503 post_int_id = ttrss_user_entries.int_id AND
4504 unread = true AND ref_id = ttrss_entries.id
4505 AND ttrss_tags.owner_uid = '$owner_uid' GROUP BY tag_name
4506 UNION
4507 select tag_name,0 as count FROM ttrss_tags WHERE owner_uid = '$owner_uid'
4508 ORDER BY tag_name"); */
4509
4510 if (get_pref($link, 'ENABLE_FEED_CATS')) {
d1db26aa 4511 print "<li class=\"feedCat\">".__('Tags')."</li>";
60ea2377 4512 print "<ul class=\"feedCatList\">";
f407c086
AD
4513 }
4514
14073c0a
AD
4515 $age_qpart = getMaxAgeSubquery();
4516
f407c086 4517 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
14073c0a
AD
4518 FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id
4519 AND ref_id = id AND $age_qpart
f407c086 4520 AND unread = true)) AS count FROM ttrss_tags
ef1ac7c7
AD
4521 WHERE owner_uid = ".$_SESSION['uid']." GROUP BY tag_name
4522 ORDER BY count DESC LIMIT 50");
f407c086
AD
4523
4524 $tags = array();
4525
4526 while ($line = db_fetch_assoc($result)) {
4527 $tags[$line["tag_name"]] += $line["count"];
4528 }
4529
4530 foreach (array_keys($tags) as $tag) {
4531
4532 $unread = $tags[$tag];
f407c086 4533 $class = "tag";
326469fc 4534
f407c086
AD
4535 printFeedEntry($tag, $class, $tag, $unread, "images/tag.png", $link);
4536
4537 }
4538
4539 if (db_num_rows($result) == 0) {
4540 print "<li>No tags to display.</li>";
4541 }
4542
4543 if (get_pref($link, 'ENABLE_FEED_CATS')) {
3bd9a780 4544 print "</ul>";
f407c086
AD
4545 }
4546
4547 }
4548
4549 print "</ul>";
4550
4551 }
4552
bc976a8c 4553 function get_article_tags($link, $id, $owner_uid = 0) {
0b126ac2 4554
bd3f2ade
AD
4555 global $memcache;
4556
0b126ac2
AD
4557 $a_id = db_escape_string($id);
4558
bc976a8c
AD
4559 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
4560
bd3f2ade 4561 $query = "SELECT DISTINCT tag_name,
0c3d1c68 4562 owner_uid as owner FROM
0b126ac2 4563 ttrss_tags WHERE post_int_id = (SELECT int_id FROM ttrss_user_entries WHERE
bd3f2ade 4564 ref_id = '$a_id' AND owner_uid = '$owner_uid' LIMIT 1) ORDER BY tag_name";
0b126ac2 4565
bd3f2ade 4566 $obj_id = md5("TAGS:$owner_uid:$id");
0b126ac2 4567 $tags = array();
bd3f2ade
AD
4568
4569 if ($memcache && $obj = $memcache->get($obj_id)) {
4570 $tags = $obj;
4571 } else {
4572 $tmp_result = db_query($link, $query);
4573
4574 while ($tmp_line = db_fetch_assoc($tmp_result)) {
4575 array_push($tags, $tmp_line["tag_name"]);
4576 }
4577
4578 if ($memcache) $memcache->add($obj_id, $tags, 0, 3600);
0b126ac2
AD
4579 }
4580
4581 return $tags;
4582 }
4583
d62a3b63
AD
4584 function trim_value(&$value) {
4585 $value = trim($value);
4586 }
4587
4588 function trim_array($array) {
4589 $tmp = $array;
4590 array_walk($tmp, 'trim_value');
4591 return $tmp;
4592 }
4593
be832a1a 4594 function tag_is_valid($tag) {
ef063748
AD
4595 if ($tag == '') return false;
4596 if (preg_match("/^[0-9]*$/", $tag)) return false;
41f7498a 4597 if (mb_strlen($tag) > 250) return false;
ef063748 4598
31365729
AD
4599 if (function_exists('iconv')) {
4600 $tag = iconv("utf-8", "utf-8", $tag);
4601 }
4602
ef063748
AD
4603 if (!$tag) return false;
4604
4605 return true;
be832a1a
AD
4606 }
4607
afb12ed0
AD
4608 function render_login_form($link, $mobile = 0) {
4609 switch ($mobile) {
4610 case 0:
793185a9 4611 require_once "login_form.php";
afb12ed0
AD
4612 break;
4613 case 1:
793185a9 4614 require_once "mobile/login_form.php";
afb12ed0
AD
4615 break;
4616 case 2:
4617 require_once "mobile/classic/login_form.php";
793185a9 4618 }
01a87dff
AD
4619 }
4620
dc56b3b7
AD
4621 // from http://developer.apple.com/internet/safari/faq.html
4622 function no_cache_incantation() {
4623 header("Expires: Mon, 22 Dec 1980 00:00:00 GMT"); // Happy birthday to me :)
4624 header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // always modified
4625 header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); // HTTP/1.1
4626 header("Cache-Control: post-check=0, pre-check=0", false);
4627 header("Pragma: no-cache"); // HTTP/1.0
4628 }
4629
42395d28 4630 function format_warning($msg, $id = "") {
883fee8d 4631 global $link;
42395d28 4632 return "<div class=\"warning\" id=\"$id\">
883fee8d 4633 <img src=\"".theme_image($link, "images/sign_excl.png")."\">$msg</div>";
0d32b41e
AD
4634 }
4635
4636 function format_notice($msg) {
883fee8d
AD
4637 global $link;
4638 return "<div class=\"notice\" id=\"$id\">
4639 <img src=\"".theme_image($link, "images/sign_info.png")."\">$msg</div>";
0d32b41e
AD
4640 }
4641
68d2f95e 4642 function format_error($msg) {
883fee8d
AD
4643 global $link;
4644 return "<div class=\"error\" id=\"$id\">
4645 <img src=\"".theme_image($link, "images/sign_excl.png")."\">$msg</div>";
68d2f95e
AD
4646 }
4647
4dccf1ed
AD
4648 function print_notice($msg) {
4649 return print format_notice($msg);
4650 }
4651
4652 function print_warning($msg) {
4653 return print format_warning($msg);
4654 }
4655
68d2f95e
AD
4656 function print_error($msg) {
4657 return print format_error($msg);
4658 }
4659
4660
4dccf1ed
AD
4661 function T_sprintf() {
4662 $args = func_get_args();
4663 return vsprintf(__(array_shift($args)), $args);
4664 }
4665
51682b23
AD
4666 function format_inline_player($link, $url, $ctype) {
4667
4668 $entry = "";
4669
4670 if (($ctype == __("audio/mpeg")) && (get_pref($link, "ENABLE_FLASH_PLAYER")) ) {
4671
4672 $entry .= "<object type=\"application/x-shockwave-flash\"
4673 data=\"extras/button/musicplayer.swf?song_url=$url\"
4674 width=\"17\" height=\"17\">
4675 <param name=\"movie\" value=\"extras/button/musicplayer.swf?song_url=$url\" /> </object>";
4676 }
4677
4678 /*
4679
4680 if (substr($ctype,0,6)=="audio/" || $ctype=="application/ogg" || $ctype=="application/x-ogg") {
4681 $entry .= "<audio controls=\"controls\"><source src=\"$url\" type=\"$ctype\" />";
4682 if (($ctype == __("audio/mpeg")) &&
4683 (get_pref($link, "ENABLE_FLASH_PLAYER")) ) {
4684 $entry .= "<span><object type=\"application/x-shockwave-flash\" data=\"extras/button/musicplayer.swf?song_url=$url\" width=\"17\" height=\"17\"> <param name=\"movie\" value=\"extras/button/musicplayer.swf?song_url=$url\" /> </object></span>";
4685 }
4686 $entry .= "</audio> ";
4687 if (($ctype == __("audio/mpeg")) &&
4688 (get_pref($link, "ENABLE_FLASH_PLAYER")) ) {
4689 $entry .= "<a id='switchToFlashLink' href='#' onclick='return switchToFlash(this)'>".__('Switch to Flash Player')."</a>";
4690 $entry .= "<script type='text/javascript'>html5AudioOrFlash('$ctype');</script>";
4691 }
4692 } elseif (substr($ctype,0,6)=="video/") {
4693 $entry .= "<video controls=\"controls\"><source src=\"$url\" type=\"$ctype\" />";
4694 $entry .= "</video>";
4695 } */
4696
4697
4698
4699 return $entry;
4700 }
4701
eedfb635
AD
4702 function outputArticleXML($link, $id, $feed_id, $mark_as_read = true,
4703 $zoom_mode = false) {
3de0261a 4704
10eb9da8 4705 /* we can figure out feed_id from article id anyway, why do we
e04c18a2 4706 * pass feed_id here? let's ignore the argument :( */
10eb9da8
AD
4707
4708 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
4709 WHERE ref_id = '$id'");
4710
e04c18a2 4711 $feed_id = (int) db_fetch_result($result, 0, "feed_id");
10eb9da8 4712
eedfb635 4713 if (!$zoom_mode) { print "<article id='$id'><![CDATA["; };
3de0261a 4714
54e61a68 4715 $result = db_query($link, "SELECT rtl_content, always_display_enclosures FROM ttrss_feeds
3de0261a
AD
4716 WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
4717
4718 if (db_num_rows($result) == 1) {
4719 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
54e61a68 4720 $always_display_enclosures = sql_bool_to_bool(db_fetch_result($result, 0, "always_display_enclosures"));
3de0261a
AD
4721 } else {
4722 $rtl_content = false;
54e61a68 4723 $always_display_enclosures = false;
3de0261a
AD
4724 }
4725
4726 if ($rtl_content) {
4727 $rtl_tag = "dir=\"RTL\"";
4728 $rtl_class = "RTL";
4729 } else {
4730 $rtl_tag = "";
4731 $rtl_class = "";
4732 }
4733
4734 if ($mark_as_read) {
4735 $result = db_query($link, "UPDATE ttrss_user_entries
4736 SET unread = false,last_read = NOW()
4737 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
8a4c759e
AD
4738
4739 ccache_update($link, $feed_id, $_SESSION["uid"]);
3de0261a
AD
4740 }
4741
4742 $result = db_query($link, "SELECT title,link,content,feed_id,comments,int_id,
fc2b26a6 4743 ".SUBSTRING_FOR_DATE."(updated,1,16) as updated,
3de0261a
AD
4744 (SELECT icon_url FROM ttrss_feeds WHERE id = feed_id) as icon_url,
4745 num_comments,
c7e51de1 4746 author,
ef83538d 4747 orig_feed_id,
c7e51de1 4748 note
3de0261a
AD
4749 FROM ttrss_entries,ttrss_user_entries
4750 WHERE id = '$id' AND ref_id = id AND owner_uid = " . $_SESSION["uid"]);
4751
4752 if ($result) {
4753
3de0261a
AD
4754 $line = db_fetch_assoc($result);
4755
4756 if ($line["icon_url"]) {
4757 $feed_icon = "<img class=\"feedIcon\" src=\"" . $line["icon_url"] . "\">";
4758 } else {
4759 $feed_icon = "&nbsp;";
4760 }
4761
3de0261a
AD
4762 $num_comments = $line["num_comments"];
4763 $entry_comments = "";
4764
4765 if ($num_comments > 0) {
4766 if ($line["comments"]) {
4767 $comments_url = $line["comments"];
4768 } else {
4769 $comments_url = $line["link"];
4770 }
7514749d 4771 $entry_comments = "<a target='_blank' href=\"$comments_url\">$num_comments comments</a>";
3de0261a
AD
4772 } else {
4773 if ($line["comments"] && $line["link"] != $line["comments"]) {
7514749d 4774 $entry_comments = "<a target='_blank' href=\"".$line["comments"]."\">comments</a>";
3de0261a
AD
4775 }
4776 }
4777
eedfb635
AD
4778 if ($zoom_mode) {
4779 header("Content-Type: text/html");
4780 print "<html><head>
5bb0cc8e 4781 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
eedfb635
AD
4782 <title>Tiny Tiny RSS - ".$line["title"]."</title>
4783 <link rel=\"stylesheet\" type=\"text/css\" href=\"tt-rss.css\">
4784 </head><body>";
4785 }
4786
4787
3de0261a
AD
4788 print "<div class=\"postReply\">";
4789
31a53903 4790 print "<div class=\"postHeader\" onmouseover=\"enable_resize(false)\"
94047498 4791 onmouseout=\"enable_resize(false)\">";
3de0261a
AD
4792
4793 $entry_author = $line["author"];
4794
4795 if ($entry_author) {
60164936 4796 $entry_author = __(" - ") . $entry_author;
3de0261a
AD
4797 }
4798
4799 $parsed_updated = date(get_pref($link, 'LONG_DATE_FORMAT'),
4800 strtotime($line["updated"]));
4801
4802 print "<div class=\"postDate$rtl_class\">$parsed_updated</div>";
4803
4804 if ($line["link"]) {
7514749d 4805 print "<div clear='both'><a target='_blank' href=\"" . $line["link"] . "\">" .
06202d88 4806 $line["title"] . "</a><span class='author'>$entry_author</span></div>";
3de0261a
AD
4807 } else {
4808 print "<div clear='both'>" . $line["title"] . "$entry_author</div>";
4809 }
4810
307d187c 4811 $tags_str = format_tags_string(get_article_tags($link, $id), $id);
e7544143 4812
3de0261a
AD
4813 if (!$entry_comments) $entry_comments = "&nbsp;"; # placeholder
4814
5f014cf1 4815 print "<div style='float : right'>
e9823609
AD
4816 <img src='".theme_image($link, 'images/tag.png')."'
4817 class='tagsPic' alt='Tags' title='Tags'>&nbsp;";
eedfb635
AD
4818
4819 if (!$zoom_mode) {
307d187c 4820 print "<span id=\"ATSTR-$id\">$tags_str</span>
eedfb635 4821 <a title=\"".__('Edit tags for this article')."\"
31a53903 4822 href=\"#\" onclick=\"editArticleTags($id, $feed_id)\">(+)</a>";
4710e3dc 4823
e9823609
AD
4824 print "<img src=\"".theme_image($link, 'images/art-zoom.png')."\"
4825 class='tagsPic' style=\"cursor : pointer\" style=\"cursor : pointer\"
eedfb635
AD
4826 onclick=\"zoomToArticle($id)\"
4827 alt='Zoom' title='".__('Show article summary in new window')."'>";
c7e51de1
AD
4828
4829 $note_escaped = htmlspecialchars($line['note'], ENT_QUOTES);
4830
e9823609
AD
4831 print "<img src=\"".theme_image($link, 'images/art-pub-note.png')."\"
4832 class='tagsPic' style=\"cursor : pointer\" style=\"cursor : pointer\"
c7e51de1
AD
4833 onclick=\"publishWithNote($id, '$note_escaped')\"
4834 alt='PubNote' title='".__('Publish article with a note')."'>";
4835
31a53903
AD
4836 if (DIGEST_ENABLE) {
4837 print "<img src=\"".theme_image($link, 'images/art-email.png')."\"
4838 class='tagsPic' style=\"cursor : pointer\" style=\"cursor : pointer\"
4839 onclick=\"emailArticle($id)\"
4840 alt='Zoom' title='".__('Forward by email')."'>";
4841 }
4842
24ecbcae
AD
4843 } else {
4844 $tags_str = strip_tags($tags_str);
4845 print "<span id=\"ATSTR-$id\">$tags_str</span>";
eedfb635
AD
4846 }
4847 print "</div>";
4848 print "<div clear='both'>$entry_comments</div>";
3de0261a 4849
ef83538d
AD
4850 if ($line["orig_feed_id"]) {
4851
4852 $tmp_result = db_query($link, "SELECT * FROM ttrss_archived_feeds
4853 WHERE id = ".$line["orig_feed_id"]);
4854
4855 if (db_num_rows($tmp_result) != 0) {
4856
4857 print "<div clear='both'>";
4858 print __("Originally from:");
4859
4860 print "&nbsp;";
4861
4862 $tmp_line = db_fetch_assoc($tmp_result);
4863
4864 print "<a target='_blank'
4865 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
4866 $tmp_line['title'] . "</a>";
4867
4868 print "&nbsp;";
4869
4870 print "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
4871 print "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_set.gif'></a>";
4872
4873 print "</div>";
4874 }
4875 }
4876
3de0261a
AD
4877 print "</div>";
4878
4879 print "<div class=\"postIcon\">" . $feed_icon . "</div>";
64ab16ac 4880
3de0261a 4881 print "<div class=\"postContent\">";
64ab16ac 4882
c54526fe 4883 $article_content = sanitize_rss($link, $line["content"]);
c41890b0 4884
c7e51de1
AD
4885 print "<div id=\"POSTNOTE-$id\">";
4886 if ($line['note']) {
4887 print format_article_note($id, $line['note']);
4888 }
4889 print "</div>";
4890
db54143e
AD
4891 print $article_content;
4892
be35798b
AD
4893// $result = db_query($link, "SELECT * FROM ttrss_enclosures WHERE
4894// post_id = '$id' AND content_url != ''");
ce53e200 4895
be35798b
AD
4896 $result = get_article_enclosures($link, $id);
4897
4898// if (db_num_rows($result) > 0) {
4899
4900 if (count($result) > 0) {
ce53e200 4901
9c5ee7e1 4902 $entries_html = array();
ce53e200
AD
4903 $entries = array();
4904
be35798b
AD
4905 //while ($line = db_fetch_assoc($result)) {
4906 foreach ($result as $line) {
ce53e200
AD
4907
4908 $url = $line["content_url"];
4752b041
AD
4909 $ctype = $line["content_type"];
4910
4911 if (!$ctype) $ctype = __("unknown type");
ce53e200
AD
4912
4913 $filename = substr($url, strrpos($url, "/")+1);
4914
51682b23 4915 $entry = format_inline_player($link, $url, $ctype);
8dccabed 4916
51682b23 4917 $entry .= " <a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
4752b041 4918 $filename . " (" . $ctype . ")" . "</a>";
ce53e200 4919
9c5ee7e1
AD
4920 array_push($entries_html, $entry);
4921
4922 $entry = array();
4923
4924 $entry["type"] = $ctype;
4925 $entry["filename"] = $filename;
4926 $entry["url"] = $url;
4927
ce53e200
AD
4928 array_push($entries, $entry);
4929 }
4930
9c5ee7e1
AD
4931 print "<div class=\"postEnclosures\">";
4932
fbaca246 4933 if (!get_pref($link, "STRIP_IMAGES")) {
44cfa025
AD
4934 if ($always_display_enclosures ||
4935 !preg_match("/<img/i", $article_content)) {
4936
fbaca246 4937 foreach ($entries as $entry) {
44cfa025
AD
4938
4939 if (preg_match("/image/", $entry["type"]) ||
4940 preg_match("/\.(jpg|png|gif|bmp)/i", $entry["filename"])) {
4941
4942 print "<p><img
fbaca246 4943 alt=\"".htmlspecialchars($entry["filename"])."\"
44cfa025 4944 src=\"" .htmlspecialchars($entry["url"]) . "\"/></p>";
fbaca246 4945 }
9c5ee7e1
AD
4946 }
4947 }
4948 }
4949
9c5ee7e1
AD
4950 if (db_num_rows($result) == 1) {
4951 print __("Attachment:") . " ";
4952 } else {
4953 print __("Attachments:") . " ";
4954 }
4955
4956 print join(", ", $entries_html);
ce53e200
AD
4957
4958 print "</div>";
4959 }
4960
4961 print "</div>";
3de0261a
AD
4962
4963 print "</div>";
4964
4965 }
4966
eedfb635
AD
4967 if (!$zoom_mode) {
4968 print "]]></article>";
4969 } else {
4970 print "
4971 <div style=\"text-align : center\">
2ae69126
AD
4972 <button onclick=\"return window.close()\">".
4973 __("Close this window")."</button></div>";
eedfb635
AD
4974 print "</body></html>";
4975
4976 }
3de0261a
AD
4977
4978 }
4979
4980 function outputHeadlinesList($link, $feed, $subop, $view_mode, $limit, $cat_view,
7b4d02a8
AD
4981 $next_unread_feed, $offset, $vgr_last_feed = false,
4982 $override_order = false) {
3de0261a 4983
52d7e7da
AD
4984 $disable_cache = false;
4985
46921916
AD
4986 $timing_info = getmicrotime();
4987
961f4c73
AD
4988 $topmost_article_ids = array();
4989
ac541432
AD
4990 if (!$offset) {
4991 $offset = 0;
4992 }
3de0261a
AD
4993
4994 if ($subop == "undefined") $subop = "";
4995
a9bcfb8f
AD
4996 $subop_split = split(":", $subop);
4997
3de0261a 4998 if ($subop == "CatchupSelected") {
b4e75b2a
AD
4999 $ids = split(",", db_escape_string($_REQUEST["ids"]));
5000 $cmode = sprintf("%d", $_REQUEST["cmode"]);
3de0261a
AD
5001
5002 catchupArticlesById($link, $ids, $cmode);
5003 }
5004
5005 if ($subop == "ForceUpdate" && sprintf("%d", $feed) > 0) {
35bf080c 5006 update_generic_feed($link, $feed, $cat_view, true);
3de0261a
AD
5007 }
5008
5009 if ($subop == "MarkAllRead") {
5010 catchup_feed($link, $feed, $cat_view);
5011
5012 if (get_pref($link, 'ON_CATCHUP_SHOW_NEXT_FEED')) {
5013 if ($next_unread_feed) {
5014 $feed = $next_unread_feed;
5015 }
5016 }
5017 }
5018
a9bcfb8f
AD
5019 if ($subop_split[0] == "MarkAllReadGR") {
5020 catchup_feed($link, $subop_split[1], false);
5021 }
5022
c3fddd05 5023 // FIXME: might break tag display?
a9bcfb8f 5024
e325d700 5025 if ($feed > 0 && !$cat_view) {
3de0261a
AD
5026 $result = db_query($link,
5027 "SELECT id FROM ttrss_feeds WHERE id = '$feed' LIMIT 1");
5028
5029 if (db_num_rows($result) == 0) {
5030 print "<div align='center'>".__('Feed not found.')."</div>";
5031 return;
5032 }
5033 }
5034
5035 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
10eb9da8 5036
3de0261a
AD
5037 $result = db_query($link, "SELECT rtl_content FROM ttrss_feeds
5038 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
5039
5040 if (db_num_rows($result) == 1) {
5041 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
5042 } else {
5043 $rtl_content = false;
5044 }
5045
5046 if ($rtl_content) {
5047 $rtl_tag = "dir=\"RTL\"";
5048 } else {
5049 $rtl_tag = "";
5050 }
5051 } else {
5052 $rtl_tag = "";
5053 $rtl_content = false;
5054 }
5055
5056 $script_dt_add = get_script_dt_add();
5057
5058 /// START /////////////////////////////////////////////////////////////////////////////////
5059
c3fddd05 5060 @$search = db_escape_string($_REQUEST["query"]);
52d7e7da
AD
5061
5062 if ($search) {
5063 $disable_cache = true;
5064 }
5065
c3fddd05
AD
5066 @$search_mode = db_escape_string($_REQUEST["search_mode"]);
5067 @$match_on = db_escape_string($_REQUEST["match_on"]);
3de0261a
AD
5068
5069 if (!$match_on) {
5070 $match_on = "both";
5071 }
5072
5073 $real_offset = $offset * $limit;
5074
b4e75b2a 5075 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H0", $timing_info);
46921916 5076
3de0261a 5077 $qfh_ret = queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view,
7b4d02a8 5078 $search, $search_mode, $match_on, $override_order, $real_offset);
3de0261a 5079
b4e75b2a 5080 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H1", $timing_info);
46921916 5081
3de0261a
AD
5082 $result = $qfh_ret[0];
5083 $feed_title = $qfh_ret[1];
5084 $feed_site_url = $qfh_ret[2];
5085 $last_error = $qfh_ret[3];
f56e3080 5086
081e527d
AD
5087 $vgroup_last_feed = $vgr_last_feed;
5088
f56e3080
AD
5089 if ($feed == -2) {
5090 $feed_site_url = article_publish_url($link);
5091 }
5092
3de0261a
AD
5093 /// STOP //////////////////////////////////////////////////////////////////////////////////
5094
ac541432
AD
5095 if (!$offset) {
5096 print "<div id=\"headlinesContainer\" $rtl_tag>";
3de0261a 5097
ac541432
AD
5098 if (!$result) {
5099 print "<div align='center'>".__("Could not display feed (query failed). Please check label match syntax or local configuration.")."</div>";
5100 return;
5101 }
3de0261a 5102
0ef68e6f 5103 print_headline_subtoolbar($link, $feed_site_url, $feed_title,
23d72f39 5104 $feed, $cat_view, $search, $match_on, $search_mode, $view_mode);
3de0261a 5105
ac541432
AD
5106 print "<div id=\"headlinesInnerContainer\" onscroll=\"headlines_scroll_handler()\">";
5107 }
3de0261a 5108
29dfb258
AD
5109 $headlines_count = db_num_rows($result);
5110
3de0261a
AD
5111 if (db_num_rows($result) > 0) {
5112
5113# print "\{$offset}";
5114
ac541432 5115 if (!get_pref($link, 'COMBINED_DISPLAY_MODE') && !$offset) {
3de0261a
AD
5116 print "<table class=\"headlinesList\" id=\"headlinesList\"
5117 cellspacing=\"0\">";
5118 }
5119
4ab4d364
AD
5120 $lnum = $limit*$offset;
5121
3de0261a
AD
5122 error_reporting (DEFAULT_ERROR_LEVEL);
5123
5124 $num_unread = 0;
6cfea5c7
AD
5125 $cur_feed_title = '';
5126
784ac51f
AD
5127 $fresh_intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE") * 60 * 60;
5128
3de0261a
AD
5129 while ($line = db_fetch_assoc($result)) {
5130
5131 $class = ($lnum % 2) ? "even" : "odd";
5132
5133 $id = $line["id"];
5134 $feed_id = $line["feed_id"];
961f4c73 5135
e2549229 5136 $labels = get_article_labels($link, $id);
e2549229 5137
2eb9c95c
AD
5138 $labels_str = "<span id=\"HLLCTR-$id\">";
5139 $labels_str .= format_article_labels($labels, $id);
f9247195 5140 $labels_str .= "</span>";
2eb9c95c 5141
961f4c73
AD
5142 if (count($topmost_article_ids) < 5) {
5143 array_push($topmost_article_ids, $id);
5144 }
5145
784ac51f 5146 if ($line["last_read"] == "" && !sql_bool_to_bool($line["unread"])) {
3de0261a 5147
883fee8d
AD
5148 $update_pic = "<img id='FUPDPIC-$id' src=\"".
5149 theme_image($link, 'images/updated.png')."\"
3de0261a
AD
5150 alt=\"Updated\">";
5151 } else {
5152 $update_pic = "<img id='FUPDPIC-$id' src=\"images/blank_icon.gif\"
5153 alt=\"Updated\">";
5154 }
784ac51f
AD
5155
5156 if (sql_bool_to_bool($line["unread"]) &&
5157 time() - strtotime($line["updated_noms"]) < $fresh_intl) {
5158
e9823609
AD
5159 $update_pic = "<img id='FUPDPIC-$id' src=\"".
5160 theme_image($link, 'images/fresh_sign.png')."\" alt=\"Fresh\">";
784ac51f 5161 }
3de0261a
AD
5162
5163 if ($line["unread"] == "t" || $line["unread"] == "1") {
5164 $class .= "Unread";
5165 ++$num_unread;
5166 $is_unread = true;
5167 } else {
5168 $is_unread = false;
5169 }
abd8a516 5170
3de0261a 5171 if ($line["marked"] == "t" || $line["marked"] == "1") {
e9823609
AD
5172 $marked_pic = "<img id=\"FMPIC-$id\"
5173 src=\"".theme_image($link, 'images/mark_set.png')."\"
5174 class=\"markedPic\" alt=\"Unstar article\"
5175 onclick='javascript:tMark($id)'>";
3de0261a 5176 } else {
e9823609
AD
5177 $marked_pic = "<img id=\"FMPIC-$id\"
5178 src=\"".theme_image($link, 'images/mark_unset.png')."\"
5179 class=\"markedPic\" alt=\"Star article\"
5180 onclick='javascript:tMark($id)'>";
3de0261a
AD
5181 }
5182
e4f4b46f 5183 if ($line["published"] == "t" || $line["published"] == "1") {
e9823609
AD
5184 $published_pic = "<img id=\"FPPIC-$id\" src=\"".theme_image($link,
5185 'images/pub_set.png')."\"
e4f4b46f 5186 class=\"markedPic\"
f5e0338d 5187 alt=\"Unpublish article\" onclick='javascript:tPub($id)'>";
e4f4b46f 5188 } else {
e9823609
AD
5189 $published_pic = "<img id=\"FPPIC-$id\" src=\"".theme_image($link,
5190 'images/pub_unset.png')."\"
e4f4b46f 5191 class=\"markedPic\"
f5e0338d 5192 alt=\"Publish article\" onclick='javascript:tPub($id)'>";
e4f4b46f
AD
5193 }
5194
e944346c 5195# $content_link = "<a target=\"_blank\" href=\"".$line["link"]."\">" .
3de0261a
AD
5196# $line["title"] . "</a>";
5197
f0971fc1
AD
5198# $content_link = "<a
5199# href=\"" . htmlspecialchars($line["link"]) . "\"
5200# onclick=\"view($id,$feed_id);\">" .
5201# $line["title"] . "</a>";
3de0261a
AD
5202
5203# $content_link = "<a href=\"javascript:viewContentUrl('".$line["link"]."');\">" .
5204# $line["title"] . "</a>";
5205
5206 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
46921916 5207 $updated_fmt = smart_date_time(strtotime($line["updated_noms"]));
3de0261a
AD
5208 } else {
5209 $short_date = get_pref($link, 'SHORT_DATE_FORMAT');
46921916 5210 $updated_fmt = date($short_date, strtotime($line["updated_noms"]));
3de0261a
AD
5211 }
5212
5213 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
5214 $content_preview = truncate_string(strip_tags($line["content_preview"]),
5215 100);
5216 }
5217
ff6e357a
AD
5218 $score = $line["score"];
5219
883fee8d
AD
5220 $score_pic = theme_image($link,
5221 "images/" . get_score_pic($score));
546499a9 5222
9bf3f101
AD
5223/* $score_title = __("(Click to change)");
5224 $score_pic = "<img class='hlScorePic' src=\"images/$score_pic\"
5225 onclick=\"adjustArticleScore($id, $score)\" title=\"$score $score_title\">"; */
546499a9 5226
883fee8d 5227 $score_pic = "<img class='hlScorePic' src=\"$score_pic\"
9bf3f101 5228 title=\"$score\">";
ff6e357a 5229
5daa24f2
AD
5230 if ($score > 500) {
5231 $hlc_suffix = "H";
5232 } else if ($score < -100) {
5233 $hlc_suffix = "L";
5234 } else {
5235 $hlc_suffix = "";
5236 }
5237
3de0261a
AD
5238 $entry_author = $line["author"];
5239
5240 if ($entry_author) {
60164936 5241 $entry_author = " - $entry_author";
3de0261a
AD
5242 }
5243
7defa089 5244 $has_feed_icon = feed_has_icon($feed_id);
bd51294a
AD
5245
5246 if ($has_feed_icon) {
5247 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
5248 } else {
5249 //$feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\" alt=\"\">";
20be0cf8 5250 $feed_icon_img = "";
bd51294a
AD
5251 }
5252
3de0261a 5253 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
6cfea5c7 5254
d00f22ac 5255 if (get_pref($link, 'VFEED_GROUP_BY_FEED')) {
bb031f91 5256 if ($feed_id != $vgroup_last_feed && $line["feed_title"]) {
a9bcfb8f
AD
5257
5258 $cur_feed_title = $line["feed_title"];
081e527d 5259 $vgroup_last_feed = $feed_id;
a9bcfb8f 5260
962d8ba4 5261 $cur_feed_title = htmlspecialchars($cur_feed_title);
43fc671f 5262
af163b85 5263 $vf_catchup_link = "(<a onclick='javascript:catchupFeedInGroup($feed_id);' href='#'>".__('mark as read')."</a>)";
a9bcfb8f 5264
6cfea5c7 5265 print "<tr class='feedTitle'><td colspan='7'>".
dc803347 5266 "<div style=\"float : right\">$feed_icon_img</div>".
6cfea5c7 5267 "<a href=\"javascript:viewfeed($feed_id, '', false)\">".
965fb2af 5268 $line["feed_title"]."</a> $vf_catchup_link</td></tr>";
6cfea5c7
AD
5269 }
5270 }
314fcd2b
AD
5271
5272 $mouseover_attrs = "onmouseover='postMouseIn($id)'
5273 onmouseout='postMouseOut($id)'";
5274
5275 print "<tr class='$class' id='RROW-$id' $mouseover_attrs>";
3de0261a 5276
67343d9f 5277 print "<td class='hlUpdPic'>$update_pic</td>";
3de0261a
AD
5278
5279 print "<td class='hlSelectRow'>
67343d9f
AD
5280 <input type=\"checkbox\" onclick=\"tSR(this)\"
5281 id=\"RCHK-$id\">
3de0261a
AD
5282 </td>";
5283
5284 print "<td class='hlMarkedPic'>$marked_pic</td>";
e4f4b46f 5285 print "<td class='hlMarkedPic'>$published_pic</td>";
3de0261a 5286
df456bb0
AD
5287# if ($line["feed_title"]) {
5288# print "<td class='hlContent'>$content_link</td>";
5289# print "<td class='hlFeed'>
5290# <a href=\"javascript:viewfeed($feed_id, '', false)\">".
5291# truncate_string($line["feed_title"],30)."</a>&nbsp;</td>";
5292# } else {
5293
e04c18a2 5294 print "<td onclick='view($id)' class='hlContent$hlc_suffix' valign='middle' id='HLC-$id'>";
df456bb0 5295
f0971fc1
AD
5296 print "<a id=\"RTITLE-$id\"
5297 href=\"" . htmlspecialchars($line["link"]) . "\"
6e35a862 5298 onclick=\"return false\">" .
df456bb0
AD
5299 $line["title"];
5300
5301 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
5302 if ($content_preview) {
5303 print "<span class=\"contentPreview\"> - $content_preview</span>";
3de0261a 5304 }
3de0261a 5305 }
df456bb0
AD
5306
5307 print "</a>";
5308
e2549229
AD
5309 print $labels_str;
5310
df456bb0
AD
5311# <a href=\"javascript:viewfeed($feed_id, '', false)\">".
5312# $line["feed_title"]."</a>
5313
d00f22ac 5314 if (!get_pref($link, 'VFEED_GROUP_BY_FEED')) {
c3fddd05 5315 if (@$line["feed_title"]) {
6cfea5c7
AD
5316 print "<span class=\"hlFeed\">
5317 (<a href=\"javascript:viewfeed($feed_id, '', false)\">".
5318 $line["feed_title"]."</a>)
5319 </span>";
5320 }
df456bb0 5321 }
6e35a862
AD
5322
5323// print "<img id='HLL-$id' class='hlLoading'
5324// src='images/indicator_tiny.gif' style='display : none'>";
5325
df456bb0 5326 print "</td>";
bd51294a 5327
df456bb0 5328# }
3de0261a 5329
e04c18a2 5330 print "<td class=\"hlUpdated\" onclick='view($id)'><nobr>$updated_fmt&nbsp;</nobr></td>";
546499a9
AD
5331
5332 print "<td class='hlMarkedPic'>$score_pic</td>";
bd51294a 5333
c3fddd05 5334 if (@$line["feed_title"] && !get_pref($link, 'VFEED_GROUP_BY_FEED')) {
d7e83df7 5335 print "<td onclick=\"viewfeed($feed_id)\" class=\"hlFeedIcon\">$feed_icon_img</td>";
bd51294a
AD
5336 }
5337
3de0261a
AD
5338 print "</tr>";
5339
5340 } else {
6cfea5c7 5341
bb031f91 5342 if (get_pref($link, 'VFEED_GROUP_BY_FEED') && $line["feed_title"]) {
081e527d
AD
5343 if ($feed_id != $vgroup_last_feed) {
5344
5345 $cur_feed_title = $line["feed_title"];
5346 $vgroup_last_feed = $feed_id;
5347
962d8ba4
AD
5348 $cur_feed_title = htmlspecialchars($cur_feed_title);
5349
af163b85 5350 $vf_catchup_link = "(<a onclick='javascript:catchupFeedInGroup($feed_id);' href='#'>".__('mark as read')."</a>)";
081e527d 5351
7defa089 5352 $has_feed_icon = feed_has_icon($feed_id);
dc803347
AD
5353
5354 if ($has_feed_icon) {
5355 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
5356 } else {
5357 //$feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\" alt=\"\">";
5358 }
5359
6cfea5c7 5360 print "<div class='cdmFeedTitle'>".
dc803347 5361 "<div style=\"float : right\">$feed_icon_img</div>".
6cfea5c7 5362 "<a href=\"javascript:viewfeed($feed_id, '', false)\">".
081e527d 5363 $line["feed_title"]."</a> $vf_catchup_link</div>";
6cfea5c7
AD
5364 }
5365 }
5366
3de0261a
AD
5367 if ($is_unread) {
5368 $add_class = "Unread";
5369 } else {
5370 $add_class = "";
5371 }
0cacc891
AD
5372
5373 $expand_cdm = get_pref($link, 'CDM_EXPANDED');
3cd4239a 5374 $show_excerpt = false;
0cacc891 5375
5daa24f2 5376 if ($expand_cdm && $score >= -100) {
0cacc891 5377 $cdm_cstyle = "";
3cd4239a 5378 $show_excerpt = false;
0cacc891
AD
5379 } else {
5380 $cdm_cstyle = "style=\"display : none\"";
3cd4239a 5381 $show_excerpt = true;
0cacc891
AD
5382 }
5383
314fcd2b
AD
5384 $mouseover_attrs = "onmouseover='postMouseIn($id)'
5385 onmouseout='postMouseOut($id)'";
5386
e4914b62 5387 print "<div class=\"cdmArticle$add_class\"
3cd4239a 5388 id=\"RROW-$id\"
314fcd2b 5389 $mouseover_attrs'>";
3de0261a
AD
5390
5391 print "<div class=\"cdmHeader\">";
5392
965fb2af
AD
5393 if (!get_pref($link, "VFEED_GROUP_BY_FEED") || !$line["feed_title"]) {
5394 $cdm_feed_icon = "<span style=\"cursor : pointer\" onclick=\"viewfeed($feed_id)\">$feed_icon_img</span>";
5395 }
5396
5397 print "<div class=\"articleUpdated\">$updated_fmt $score_pic $cdm_feed_icon
b3296d36 5398 </div>";
5daa24f2 5399
9617eb94 5400 print "<span id=\"RTITLE-$id\" class=\"titleWrap$hlc_suffix\"><a class=\"title\"
3de0261a 5401 onclick=\"javascript:toggleUnread($id, 0)\"
5daa24f2
AD
5402 target=\"_blank\" href=\"".$line["link"]."\">".$line["title"]."</a>
5403 ";
3de0261a
AD
5404
5405 print $entry_author;
5406
3cd4239a 5407/* if (!$expand_cdm || $score < -100) {
0cacc891
AD
5408 print "&nbsp;<a id=\"CICH-$id\"
5409 href=\"javascript:cdmExpandArticle($id)\">
5410 (".__('Show article').")</a>";
3cd4239a 5411 } */
0cacc891 5412
39f3c580 5413 print $labels_str;
0cacc891 5414
d00f22ac 5415 if (!get_pref($link, 'VFEED_GROUP_BY_FEED')) {
6cfea5c7
AD
5416 if ($line["feed_title"]) {
5417 print "&nbsp;(<a href='javascript:viewfeed($feed_id)'>".$line["feed_title"]."</a>)";
5418 }
3de0261a
AD
5419 }
5420
5daa24f2 5421 print "</span></div>";
3de0261a 5422
3cd4239a
AD
5423 if ($show_excerpt) {
5424 print "<div class=\"cdmExcerpt\" id=\"CEXC-$id\"
5425 onclick=\"cdmExpandArticle($id)\"
5426 title=\"".__('Click to expand article')."\">";
c9efd838
AD
5427
5428 $content_preview = trim(truncate_string(strip_tags($line["content_preview"]), 100));
5429
5430 if (strlen($content_preview) != 0) {
5431 print $content_preview;
5432 } else {
5433 print __('Click to expand article');
5434 }
3cd4239a
AD
5435 print "</div>";
5436 }
5437
5438 print "<div class=\"cdmContent\"
5439 onclick=\"cdmClicked($id)\"
5440 id=\"CICD-$id\" $cdm_cstyle>";
a04c8e8d 5441
494a64ea
AD
5442 if ($line["orig_feed_id"]) {
5443
5444 $tmp_result = db_query($link, "SELECT * FROM ttrss_archived_feeds
5445 WHERE id = ".$line["orig_feed_id"]);
5446
5447 if (db_num_rows($tmp_result) != 0) {
5448
5449 print "<div clear='both'>";
5450 print __("Originally from:");
5451
5452 print "&nbsp;";
5453
5454 $tmp_line = db_fetch_assoc($tmp_result);
5455
5456 print "<a target='_blank'
5457 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
5458 $tmp_line['title'] . "</a>";
5459
5460 print "&nbsp;";
5461
5462 print "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
5463 print "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_set.gif'></a>";
5464
5465 print "</div>";
5466 }
5467 }
5468
0cacc891 5469// print "<div class=\"cdmInnerContent\" id=\"CICD-$id\" $cdm_cstyle>";
621ffb00 5470
c7e51de1
AD
5471 print "<div id=\"POSTNOTE-$id\">";
5472 if ($line['note']) {
5473 print format_article_note($id, $line['note']);
5474 }
5475 print "</div>";
5476
54e61a68
AD
5477 print sanitize_rss($link, $line["content_preview"]);
5478
c54526fe 5479 $article_content = $line["content_preview"];
3c66b582
AD
5480
5481 $e_result = db_query($link, "SELECT * FROM ttrss_enclosures WHERE
4752b041 5482 post_id = '$id' AND content_url != ''");
3c66b582
AD
5483
5484 if (db_num_rows($e_result) > 0) {
3c66b582 5485
a3eeb471 5486 $entries_html = array();
3c66b582
AD
5487 $entries = array();
5488
5489 while ($e_line = db_fetch_assoc($e_result)) {
5490
5491 $url = $e_line["content_url"];
4752b041
AD
5492 $ctype = $e_line["content_type"];
5493 if (!$ctype) $ctype = __("unknown type");
3c66b582
AD
5494
5495 $filename = substr($url, strrpos($url, "/")+1);
5496
51682b23 5497 $entry = format_inline_player($link, $url, $ctype);
8dccabed 5498
51682b23 5499 $entry .= " <a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
4752b041 5500 $filename . " (" . $ctype . ")" . "</a>";
3c66b582 5501
a3eeb471
AD
5502 array_push($entries_html, $entry);
5503
5504 $entry = array();
5505
5506 $entry["type"] = $ctype;
5507 $entry["filename"] = $filename;
5508 $entry["url"] = $url;
5509
3c66b582
AD
5510 array_push($entries, $entry);
5511 }
5512
54e61a68 5513 $tmp_result = db_query($link, "SELECT always_display_enclosures FROM
a16a62c0
AD
5514 ttrss_feeds WHERE id = ".
5515 (($line['feed_id'] == null) ? $line['orig_feed_id'] :
5516 $line['feed_id'])." AND owner_uid = ".$_SESSION["uid"]);
54e61a68
AD
5517
5518 $always_display_enclosures = db_fetch_result($tmp_result, 0, "always_display_enclosures");
5519
fbaca246 5520 if (!get_pref($link, "STRIP_IMAGES")) {
44cfa025
AD
5521 if ($always_display_enclosures ||
5522 !preg_match("/img/i", $article_content)) {
5523
fbaca246 5524 foreach ($entries as $entry) {
44cfa025
AD
5525 if (preg_match("/image/", $entry["type"]) ||
5526 preg_match("/\.(jpg|png|gif|bmp)/i", $entry["filename"])) {
fbaca246
AD
5527 print "<p><img
5528 alt=\"".htmlspecialchars($entry["filename"])."\"
5529 src=\"" .htmlspecialchars($entry["url"]) . "\"></p>";
5530 }
a3eeb471
AD
5531 }
5532 }
5533 }
5534
5535 print "<div class=\"cdmEnclosures\">";
5536
5537 if (db_num_rows($e_result) == 1) {
5538 print __("Attachment:") . " ";
5539 } else {
5540 print __("Attachments:") . " ";
5541 }
5542
5543 print join(", ", $entries_html);
3c66b582
AD
5544
5545 print "</div>";
5546 }
5547
a3eeb471 5548
0cacc891
AD
5549 print "<br clear='both'>";
5550// print "</div>";
a04c8e8d 5551
0cacc891 5552/* if (!$expand_cdm) {
12f5d8fe
AD
5553 print "<a id=\"CICH-$id\"
5554 href=\"javascript:cdmExpandArticle($id)\">
5555 Show article</a>";
0cacc891 5556 } */
a04c8e8d 5557
0cacc891 5558 print "</div>";
3de0261a 5559
e2ccbfab 5560 print "<div class=\"cdmFooter\"><span class='s0'>";
3de0261a 5561
e2ccbfab 5562 /* print "<div class=\"markedPic\">Star it: $marked_pic</div>"; */
3de0261a 5563
e2ccbfab
AD
5564 print __("Select:").
5565 " <input type=\"checkbox\" onclick=\"toggleSelectRowById(this,
3de0261a
AD
5566 'RROW-$id')\" class=\"feedCheckBox\" id=\"RCHK-$id\">";
5567
c7e51de1
AD
5568 print "</span><span class='s1'>$marked_pic&nbsp;";
5569 print "$published_pic&nbsp;";
5570 print "<img src=\"images/art-zoom.png\" class='tagsPic'
eedfb635
AD
5571 onclick=\"zoomToArticle($id)\"
5572 style=\"cursor : pointer\"
5573 alt='Zoom'
c7e51de1
AD
5574 title='".__('Show article summary in new window')."'>&nbsp;";
5575
5576 $note_escaped = htmlspecialchars($line['note'], ENT_QUOTES);
5577
5578 print "<img src=\"images/art-pub-note.png\" class='tagsPic'
5579 style=\"cursor : pointer\" style=\"cursor : pointer\"
5580 onclick=\"publishWithNote($id, '$note_escaped')\"
5581 alt='PubNote' title='".__('Publish article with a note')."'>";
5582
5583 print "</span>";
e2ccbfab 5584
307d187c 5585 $tags_str = format_tags_string(get_article_tags($link, $id), $id);
e2ccbfab 5586
5f014cf1 5587 print "<span class='s1'>
e9823609
AD
5588 <img class='tagsPic' src='".theme_image($link,
5589 'images/tag.png')."' alt='Tags' title='Tags'>
307d187c
AD
5590 <span id=\"ATSTR-$id\">$tags_str</span>
5591 <a title=\"".__('Edit tags for this article')."\"
5592 href=\"javascript:editArticleTags($id, $feed_id, true)\">(+)</a>";
3de0261a 5593
e2ccbfab 5594 print "</span>";
3de0261a 5595
c7e51de1 5596 print "<span class='s2'><a class=\"cdmToggleLink\"
e2ccbfab 5597 href=\"javascript:toggleUnread($id)\">
c7e51de1 5598 ".__('toggle unread')."</a></span>";
3de0261a 5599
e2ccbfab 5600 print "</div>";
3de0261a
AD
5601 print "</div>";
5602
5603 }
5604
5605 ++$lnum;
5606 }
5607
ac541432 5608 if (!get_pref($link, 'COMBINED_DISPLAY_MODE') && !$offset) {
3de0261a
AD
5609 print "</table>";
5610 }
5611
3de0261a 5612 } else {
93c841c4
AD
5613 $message = "";
5614
5615 switch ($view_mode) {
5616 case "unread":
5617 $message = __("No unread articles found to display.");
5618 break;
8b09eac8
AD
5619 case "updated":
5620 $message = __("No updated articles found to display.");
5621 break;
93c841c4
AD
5622 case "marked":
5623 $message = __("No starred articles found to display.");
5624 break;
5625 default:
215af892
AD
5626 if ($feed < -10) {
5627 $message = __("No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter.");
5628 } else {
5629 $message = __("No articles found to display.");
5630 }
93c841c4
AD
5631 }
5632
5633 if (!$offset) print "<div class='whiteBox'>$message</div>";
3de0261a
AD
5634 }
5635
ac541432
AD
5636 if (!$offset) {
5637 print "</div>";
5638 print "</div>";
5639 }
3de0261a 5640
081e527d 5641 return array($topmost_article_ids, $headlines_count, $feed, $disable_cache, $vgroup_last_feed);
3de0261a 5642 }
0979b696
AD
5643
5644// from here: http://www.roscripts.com/Create_tag_cloud-71.html
5645
5646 function printTagCloud($link) {
35a03bdd 5647
0979b696
AD
5648 $query = "SELECT tag_name, COUNT(post_int_id) AS count
5649 FROM ttrss_tags WHERE owner_uid = ".$_SESSION["uid"]."
b31af972 5650 GROUP BY tag_name ORDER BY count DESC LIMIT 50";
0979b696
AD
5651
5652 $result = db_query($link, $query);
5653
5654 $tags = array();
5655
5656 while ($line = db_fetch_assoc($result)) {
5657 $tags[$line["tag_name"]] = $line["count"];
5658 }
5659
5660 ksort($tags);
5661
5662 $max_size = 32; // max font size in pixels
4548a580 5663 $min_size = 11; // min font size in pixels
0979b696
AD
5664
5665 // largest and smallest array values
5666 $max_qty = max(array_values($tags));
5667 $min_qty = min(array_values($tags));
5668
5669 // find the range of values
5670 $spread = $max_qty - $min_qty;
5671 if ($spread == 0) { // we don't want to divide by zero
5672 $spread = 1;
5673 }
5674
5675 // set the font-size increment
5676 $step = ($max_size - $min_size) / ($spread);
5677
5678 // loop through the tag array
5679 foreach ($tags as $key => $value) {
5680 // calculate font-size
5681 // find the $value in excess of $min_qty
5682 // multiply by the font-size increment ($size)
5683 // and add the $min_size set above
5684 $size = round($min_size + (($value - $min_qty) * $step));
546ffab4
AD
5685
5686 $key_escaped = str_replace("'", "\\'", $key);
5687
5688 echo "<a href=\"javascript:viewfeed('$key_escaped') \" style=\"font-size: " .
0979b696
AD
5689 $size . "px\" title=\"$value articles tagged with " .
5690 $key . '">' . $key . '</a> ';
5691 }
5692 }
46921916
AD
5693
5694 function print_checkpoint($n, $s) {
5695 $ts = getmicrotime();
5696 echo sprintf("<!-- CP[$n] %.4f seconds -->", $ts - $s);
5697 return $ts;
5698 }
14b6c54b
AD
5699
5700 function sanitize_tag($tag) {
5701 $tag = trim($tag);
5702
5703 $tag = mb_strtolower($tag, 'utf-8');
5704
0c3d1c68
AD
5705 $tag = preg_replace('/[\"\+\>\<]/', "", $tag);
5706
5707// $tag = str_replace('"', "", $tag);
5708// $tag = str_replace("+", " ", $tag);
14b6c54b
AD
5709 $tag = str_replace("technorati tag: ", "", $tag);
5710
5711 return $tag;
5712 }
e4f4b46f
AD
5713
5714 function generate_publish_key() {
5715 return sha1(uniqid(rand(), true));
5716 }
5717
f56e3080
AD
5718 function article_publish_url($link) {
5719
e2749781
AD
5720 $url_path = "";
5721
5722
5723 if ($_SERVER['HTTPS'] != "on") {
5724 $url_path = "http://";
5725 } else {
5726 $url_path = "https://";
5727 }
f56e3080 5728
e2749781 5729 $url_path .= $_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']);
d9084cf2
AD
5730 $url_path .= "/backend.php?op=publish&key=" .
5731 get_pref($link, "_PREFS_PUBLISH_KEY", $_SESSION["uid"]);
f56e3080
AD
5732
5733 return $url_path;
5734 }
e0dc56d4
MK
5735 function opml_publish_url($link){
5736 $url_path = "";
5737
5738
5739 if ($_SERVER['HTTPS'] != "on") {
5740 $url_path = "http://";
5741 } else {
5742 $url_path = "https://";
5743 }
5744
5745 $url_path .= $_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']);
5746 $url_path .= "/opml.php?op=publish&key=" .
5747 get_pref($link, "_PREFS_PUBLISH_KEY", $_SESSION["uid"]);
5748
5749 return $url_path;
5750 }
f56e3080 5751
45004d43
AD
5752 /**
5753 * Purge a feed contents, marked articles excepted.
5754 *
5755 * @param mixed $link The database connection.
5756 * @param integer $id The id of the feed to purge.
5757 * @return void
5758 */
d1f0c584 5759 function clear_feed_articles($link, $id) {
e04c18a2
AD
5760
5761 if ($id != 0) {
5762 $result = db_query($link, "DELETE FROM ttrss_user_entries
a8ae1b9a 5763 WHERE feed_id = '$id' AND marked = false AND owner_uid = " . $_SESSION["uid"]);
e04c18a2
AD
5764 } else {
5765 $result = db_query($link, "DELETE FROM ttrss_user_entries
5766 WHERE feed_id IS NULL AND marked = false AND owner_uid = " . $_SESSION["uid"]);
5767 }
d1f0c584
AD
5768
5769 $result = db_query($link, "DELETE FROM ttrss_entries WHERE
5770 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
ced46404
AD
5771
5772 ccache_update($link, $id, $_SESSION['uid']);
45004d43
AD
5773 } // function clear_feed_articles
5774
5775 /**
5776 * Compute the Mozilla Firefox feed adding URL from server HOST and REQUEST_URI.
5777 *
5778 * @return string The Mozilla Firefox feed adding URL.
5779 */
5780 function add_feed_url() {
d70c5ae4 5781 $url_path = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
755a43ee
AD
5782 $url_path .= "?op=pref-feeds&quiet=1&subop=add&feed_url=%s";
5783 return $url_path;
45004d43
AD
5784 } // function add_feed_url
5785
5786 /**
5787 * Encrypt a password in SHA1.
5788 *
5789 * @param string $pass The password to encrypt.
5790 * @param string $login A optionnal login.
5791 * @return string The encrypted password.
5792 */
1a9f4d3c
AD
5793 function encrypt_password($pass, $login = '') {
5794 if ($login) {
5795 return "SHA1X:" . sha1("$login:$pass");
5796 } else {
5797 return "SHA1:" . sha1($pass);
5798 }
45004d43
AD
5799 } // function encrypt_password
5800
5801 /**
5802 * Update a feed batch.
5803 * Used by daemons to update n feeds by run.
5804 * Only update feed needing a update, and not being processed
5805 * by another process.
5806 *
5807 * @param mixed $link Database link
5808 * @param integer $limit Maximum number of feeds in update batch. Default to DAEMON_FEED_LIMIT.
5809 * @param boolean $from_http Set to true if you call this function from http to disable cli specific code.
5810 * @param boolean $debug Set to false to disable debug output. Default to true.
5811 * @return void
5812 */
5813 function update_daemon_common($link, $limit = DAEMON_FEED_LIMIT, $from_http = false, $debug = true) {
5814 // Process all other feeds using last_updated and interval parameters
5815
5816 // Test if the user has loggued in recently. If not, it does not update its feeds.
5817 if (DAEMON_UPDATE_LOGIN_LIMIT > 0) {
5818 if (DB_TYPE == "pgsql") {
5819 $login_thresh_qpart = "AND ttrss_users.last_login >= NOW() - INTERVAL '".DAEMON_UPDATE_LOGIN_LIMIT." days'";
5820 } else {
5821 $login_thresh_qpart = "AND ttrss_users.last_login >= DATE_SUB(NOW(), INTERVAL ".DAEMON_UPDATE_LOGIN_LIMIT." DAY)";
5822 }
5823 } else {
5824 $login_thresh_qpart = "";
5825 }
5826
5827 // Test if the feed need a update (update interval exceded).
5828 if (DB_TYPE == "pgsql") {
5829 $update_limit_qpart = "AND ((
5830 ttrss_feeds.update_interval = 0
5831 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_user_prefs.value || ' minutes') AS INTERVAL)
5832 ) OR (
5833 ttrss_feeds.update_interval > 0
5834 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_feeds.update_interval || ' minutes') AS INTERVAL)
da4caf5d 5835 ) OR ttrss_feeds.last_updated IS NULL)";
45004d43
AD
5836 } else {
5837 $update_limit_qpart = "AND ((
5838 ttrss_feeds.update_interval = 0
5839 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL CONVERT(ttrss_user_prefs.value, SIGNED INTEGER) MINUTE)
5840 ) OR (
5841 ttrss_feeds.update_interval > 0
5842 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL ttrss_feeds.update_interval MINUTE)
da4caf5d 5843 ) OR ttrss_feeds.last_updated IS NULL)";
45004d43
AD
5844 }
5845
5846 // Test if feed is currently being updated by another process.
5847 if (DB_TYPE == "pgsql") {
5848 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < NOW() - INTERVAL '120 seconds')";
5849 } else {
5850 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 120 SECOND))";
5851 }
5852
5853 // Test if there is a limit to number of updated feeds
5854 $query_limit = "";
5855 if($limit) $query_limit = sprintf("LIMIT %d", $limit);
5856
51b8c957
AD
5857 $random_qpart = sql_random_function();
5858
45004d43
AD
5859 // We search for feed needing update.
5860 $result = db_query($link, "SELECT ttrss_feeds.feed_url,ttrss_feeds.id, ttrss_feeds.owner_uid,
fc2b26a6 5861 ".SUBSTRING_FOR_DATE."(ttrss_feeds.last_updated,1,19) AS last_updated,
45004d43
AD
5862 ttrss_feeds.update_interval
5863 FROM
5864 ttrss_feeds, ttrss_users, ttrss_user_prefs
5865 WHERE
5866 ttrss_feeds.owner_uid = ttrss_users.id
5867 AND ttrss_users.id = ttrss_user_prefs.owner_uid
5868 AND ttrss_user_prefs.pref_name = 'DEFAULT_UPDATE_INTERVAL'
5869 $login_thresh_qpart $update_limit_qpart
51b8c957
AD
5870 $updstart_thresh_qpart
5871 ORDER BY $random_qpart $query_limit");
45004d43
AD
5872
5873 $user_prefs_cache = array();
5874
5875 if($debug) _debug(sprintf("Scheduled %d feeds to update...\n", db_num_rows($result)));
5876
5877 // Here is a little cache magic in order to minimize risk of double feed updates.
5878 $feeds_to_update = array();
5879 while ($line = db_fetch_assoc($result)) {
5880 $feeds_to_update[$line['id']] = $line;
5881 }
5882
5883 // We update the feed last update started date before anything else.
5884 // There is no lag due to feed contents downloads
5885 // It prevent an other process to update the same feed.
5886 $feed_ids = array_keys($feeds_to_update);
5887 if($feed_ids) {
5888 db_query($link, sprintf("UPDATE ttrss_feeds SET last_update_started = NOW()
5889 WHERE id IN (%s)", implode(',', $feed_ids)));
5890 }
5891
5892 // For each feed, we call the feed update function.
5893 while ($line = array_pop($feeds_to_update)) {
5894
5895 if($debug) _debug("Feed: " . $line["feed_url"] . ", " . $line["last_updated"]);
5896
cce9822a
AD
5897 update_rss_feed($link, $line["id"], true);
5898
45004d43
AD
5899 sleep(1); // prevent flood (FIXME make this an option?)
5900 }
5901
0e0dd486
AD
5902 // Send feed digests by email if needed.
5903 if (DAEMON_SENDS_DIGESTS) send_headlines_digests($link);
5904
5905 purge_orphans($link);
45004d43
AD
5906
5907 } // function update_daemon_common
1a9f4d3c 5908
621ffb00
AD
5909 function sanitize_article_content($text) {
5910 # we don't support CDATA sections in articles, they break our own escaping
5911 $text = preg_replace("/\[\[CDATA/", "", $text);
5912 $text = preg_replace("/\]\]\>/", "", $text);
5913 return $text;
5914 }
fee840fb
AD
5915
5916 function load_filters($link, $feed, $owner_uid, $action_id = false) {
5917 $filters = array();
5918
b8ffa322 5919 global $memcache;
fee840fb 5920
1f011328
AD
5921 $obj_id = md5("FILTER:$feed:$owner_uid:$action_id");
5922
b8ffa322
AD
5923 if ($memcache && $obj = $memcache->get($obj_id)) {
5924
b8ffa322
AD
5925 return $obj;
5926
5927 } else {
fee840fb 5928
b8ffa322
AD
5929 if ($action_id) $ftype_query_part = "action_id = '$action_id' AND";
5930
5931 $result = db_query($link, "SELECT reg_exp,
5932 ttrss_filter_types.name AS name,
5933 ttrss_filter_actions.name AS action,
5934 inverse,
5935 action_param,
5936 filter_param
5937 FROM ttrss_filters,ttrss_filter_types,ttrss_filter_actions WHERE
5938 enabled = true AND
5939 $ftype_query_part
5940 owner_uid = $owner_uid AND
5941 ttrss_filter_types.id = filter_type AND
5942 ttrss_filter_actions.id = action_id AND
5943 (feed_id IS NULL OR feed_id = '$feed') ORDER BY reg_exp");
5944
5945 while ($line = db_fetch_assoc($result)) {
5946 if (!$filters[$line["name"]]) $filters[$line["name"]] = array();
5947 $filter["reg_exp"] = $line["reg_exp"];
5948 $filter["action"] = $line["action"];
5949 $filter["action_param"] = $line["action_param"];
5950 $filter["filter_param"] = $line["filter_param"];
5951 $filter["inverse"] = sql_bool_to_bool($line["inverse"]);
5952
5953 array_push($filters[$line["name"]], $filter);
5954 }
5955
5956 if ($memcache) $memcache->add($obj_id, $filters, 0, 3600*8);
5957
5958 return $filters;
5959 }
fee840fb 5960 }
1e36af0c
AD
5961
5962 function get_score_pic($score) {
1cce3aca 5963 if ($score > 100) {
1e36af0c 5964 return "score_high.png";
1cce3aca 5965 } else if ($score > 0) {
883fee8d 5966 return "score_half_high.png";
1cce3aca 5967 } else if ($score < -100) {
883fee8d 5968 return "score_low.png";
1cce3aca 5969 } else if ($score < 0) {
883fee8d 5970 return "score_half_low.png";
1e36af0c 5971 } else {
883fee8d 5972 return "score_neutral.png";
1e36af0c
AD
5973 }
5974 }
ec92c9d1 5975
0745839a 5976 function rounded_table_start($classname, $header = "&nbsp;") {
ec92c9d1 5977 print "<table width='100%' class='$classname' cellspacing='0' cellpadding='0'>";
74d5c8fa 5978 print "<tr><td class='c1'>&nbsp;</td><td class='top'>$header</td><td class='c2'>&nbsp;</td></tr>";
ec92c9d1
AD
5979 print "<tr><td class='left'>&nbsp;</td><td class='content'>";
5980 }
5981
0745839a 5982 function rounded_table_end($footer = "&nbsp;") {
ec92c9d1 5983 print "</td><td class='right'>&nbsp;</td></tr>";
74d5c8fa 5984 print "<tr><td class='c4'>&nbsp;</td><td class='bottom'>$footer</td><td class='c3'>&nbsp;</td></tr>";
ec92c9d1
AD
5985 print "</table>";
5986 }
5987
7defa089
AD
5988 function feed_has_icon($id) {
5989 return is_file(ICONS_DIR . "/$id.ico") && filesize(ICONS_DIR . "/$id.ico") > 0;
5990 }
f29ba148
AD
5991
5992 function init_connection($link) {
5993 if (DB_TYPE == "pgsql") {
6fc720fd 5994 pg_query($link, "set client_encoding = 'UTF-8'");
f29ba148 5995 pg_set_client_encoding("UNICODE");
045d0ab8 5996 pg_query($link, "set datestyle = 'ISO, european'");
f29ba148
AD
5997 } else {
5998 if (defined('MYSQL_CHARSET') && MYSQL_CHARSET) {
5999 db_query($link, "SET NAMES " . MYSQL_CHARSET);
6000 // db_query($link, "SET CHARACTER SET " . MYSQL_CHARSET);
6001 }
6002 }
6003 }
5e96ca9d
AD
6004
6005 function update_feedbrowser_cache($link) {
6006
931dcbc1 6007 $result = db_query($link, "SELECT feed_url,title, COUNT(id) AS subscribers
5e96ca9d
AD
6008 FROM ttrss_feeds WHERE (SELECT COUNT(id) = 0 FROM ttrss_feeds AS tf
6009 WHERE tf.feed_url = ttrss_feeds.feed_url
6010 AND (private IS true OR feed_url LIKE '%:%@%/%'))
d460f7aa 6011 GROUP BY feed_url, title ORDER BY subscribers DESC LIMIT 1000");
5e96ca9d
AD
6012
6013 db_query($link, "BEGIN");
6014
6015 db_query($link, "DELETE FROM ttrss_feedbrowser_cache");
6016
6017 $count = 0;
6018
6019 while ($line = db_fetch_assoc($result)) {
6020 $subscribers = db_escape_string($line["subscribers"]);
6021 $feed_url = db_escape_string($line["feed_url"]);
931dcbc1
AD
6022 $title = db_escape_string($line["title"]);
6023
6024 $tmp_result = db_query($link, "SELECT subscribers FROM
6025 ttrss_feedbrowser_cache WHERE feed_url = '$feed_url'");
6026
6027 if (db_num_rows($tmp_result) == 0) {
6028
6029 db_query($link, "INSERT INTO ttrss_feedbrowser_cache
6030 (feed_url, title, subscribers) VALUES ('$feed_url',
6031 '$title', '$subscribers')");
6032
6033 ++$count;
6034
6035 }
5e96ca9d 6036
5e96ca9d
AD
6037 }
6038
6039 db_query($link, "COMMIT");
6040
6041 return $count;
6042
6043 }
2627f2d0 6044
8a4c759e 6045 function ccache_zero($link, $feed_id, $owner_uid) {
2627f2d0
AD
6046 db_query($link, "UPDATE ttrss_counters_cache SET
6047 value = 0, updated = NOW() WHERE
6048 feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
8a4c759e 6049 }
2627f2d0 6050
ad0056a8
AD
6051 function ccache_zero_all($link, $owner_uid) {
6052 db_query($link, "UPDATE ttrss_counters_cache SET
6053 value = 0 WHERE owner_uid = '$owner_uid'");
6054
6055 db_query($link, "UPDATE ttrss_cat_counters_cache SET
6056 value = 0 WHERE owner_uid = '$owner_uid'");
6057 }
6058
c7e51de1
AD
6059 function ccache_remove($link, $feed_id, $owner_uid, $is_cat = false) {
6060
6061 if (!$is_cat) {
6062 $table = "ttrss_counters_cache";
6063 } else {
6064 $table = "ttrss_cat_counters_cache";
6065 }
6066
6067 db_query($link, "DELETE FROM $table WHERE
6068 feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
6069
6070 }
6071
5f4f7adf
AD
6072 function ccache_update_all($link, $owner_uid) {
6073
6074 if (get_pref($link, 'ENABLE_FEED_CATS', $owner_uid)) {
6075
6076 $result = db_query($link, "SELECT feed_id FROM ttrss_cat_counters_cache
6077 WHERE feed_id > 0 AND owner_uid = '$owner_uid'");
6078
6079 while ($line = db_fetch_assoc($result)) {
6080 ccache_update($link, $line["feed_id"], $owner_uid, true);
6081 }
6082
c5ffeb61
AD
6083 /* We have to manually include category 0 */
6084
6085 ccache_update($link, 0, $owner_uid, true);
6086
8a4c759e 6087 } else {
5f4f7adf
AD
6088 $result = db_query($link, "SELECT feed_id FROM ttrss_counters_cache
6089 WHERE feed_id > 0 AND owner_uid = '$owner_uid'");
8a4c759e 6090
5f4f7adf
AD
6091 while ($line = db_fetch_assoc($result)) {
6092 print ccache_update($link, $line["feed_id"], $owner_uid);
6093
6094 }
6095
6096 }
6097 }
2627f2d0 6098
6b49a3dd
AD
6099 function ccache_find($link, $feed_id, $owner_uid, $is_cat = false,
6100 $no_update = false) {
8a4c759e 6101
5c432ba4
AD
6102 if (!is_numeric($feed_id)) return;
6103
8a4c759e
AD
6104 if (!$is_cat) {
6105 $table = "ttrss_counters_cache";
32d2181b
AD
6106 if ($feed_id > 0) {
6107 $tmp_result = db_query($link, "SELECT owner_uid FROM ttrss_feeds
6108 WHERE id = '$feed_id'");
6109 $owner_uid = db_fetch_result($tmp_result, 0, "owner_uid");
6110 }
8a4c759e
AD
6111 } else {
6112 $table = "ttrss_cat_counters_cache";
6113 }
6114
6115 if (DB_TYPE == "pgsql") {
6116 $date_qpart = "updated > NOW() - INTERVAL '15 minutes'";
6117 } else if (DB_TYPE == "mysql") {
6118 $date_qpart = "updated > DATE_SUB(NOW(), INTERVAL 15 MINUTE)";
6119 }
6120
6121 $result = db_query($link, "SELECT value FROM $table
6122 WHERE owner_uid = '$owner_uid' AND feed_id = '$feed_id'
37fb651d 6123 LIMIT 1");
2627f2d0
AD
6124
6125 if (db_num_rows($result) == 1) {
6126 return db_fetch_result($result, 0, "value");
6127 } else {
6b49a3dd
AD
6128 if ($no_update) {
6129 return -1;
6130 } else {
6131 return ccache_update($link, $feed_id, $owner_uid, $is_cat);
6132 }
2627f2d0
AD
6133 }
6134
6135 }
6136
6c2a9b9e 6137 function ccache_update($link, $feed_id, $owner_uid, $is_cat = false,
6b49a3dd
AD
6138 $update_pcat = true) {
6139
5c432ba4
AD
6140 if (!is_numeric($feed_id)) return;
6141
32d2181b 6142 if (!$is_cat && $feed_id > 0) {
2e93b64c
AD
6143 $tmp_result = db_query($link, "SELECT owner_uid FROM ttrss_feeds
6144 WHERE id = '$feed_id'");
6145 $owner_uid = db_fetch_result($tmp_result, 0, "owner_uid");
6146 }
6147
43ead405
AD
6148 $prev_unread = ccache_find($link, $feed_id, $owner_uid, $is_cat, true);
6149
6150 /* When updating a label, all we need to do is recalculate feed counters
6151 * because labels are not cached */
c98e43db
AD
6152
6153 if ($feed_id < 0) {
43ead405
AD
6154 ccache_update_all($link, $owner_uid);
6155 return;
c98e43db
AD
6156 }
6157
8a4c759e
AD
6158 if (!$is_cat) {
6159 $table = "ttrss_counters_cache";
6160 } else {
6161 $table = "ttrss_cat_counters_cache";
6162 }
6163
b6d486a3 6164 if ($is_cat && $feed_id >= 0) {
37fb651d
AD
6165 if ($feed_id != 0) {
6166 $cat_qpart = "cat_id = '$feed_id'";
6167 } else {
6168 $cat_qpart = "cat_id IS NULL";
6169 }
6170
6b49a3dd
AD
6171 /* Recalculate counters for child feeds */
6172
6173 $result = db_query($link, "SELECT id FROM ttrss_feeds
6174 WHERE owner_uid = '$owner_uid' AND $cat_qpart");
6175
6176 while ($line = db_fetch_assoc($result)) {
6177 ccache_update($link, $line["id"], $owner_uid, false, false);
6178 }
6179
37fb651d
AD
6180 $result = db_query($link, "SELECT SUM(value) AS sv
6181 FROM ttrss_counters_cache, ttrss_feeds
6182 WHERE id = feed_id AND $cat_qpart AND
6183 ttrss_feeds.owner_uid = '$owner_uid'");
6184
51e196de 6185 $unread = (int) db_fetch_result($result, 0, "sv");
37fb651d 6186
f55b0b12
AD
6187 } else {
6188 $unread = (int) getFeedArticles($link, $feed_id, $is_cat, true, $owner_uid);
37fb651d 6189 }
2627f2d0 6190
c7e51de1
AD
6191 db_query($link, "BEGIN");
6192
8a4c759e 6193 $result = db_query($link, "SELECT feed_id FROM $table
2627f2d0
AD
6194 WHERE owner_uid = '$owner_uid' AND feed_id = '$feed_id' LIMIT 1");
6195
6196 if (db_num_rows($result) == 1) {
8a4c759e 6197 db_query($link, "UPDATE $table SET
2627f2d0
AD
6198 value = '$unread', updated = NOW() WHERE
6199 feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
6200
6201 } else {
8a4c759e 6202 db_query($link, "INSERT INTO $table
2627f2d0
AD
6203 (feed_id, value, owner_uid, updated)
6204 VALUES
6205 ($feed_id, $unread, $owner_uid, NOW())");
2627f2d0
AD
6206 }
6207
c7e51de1
AD
6208 db_query($link, "COMMIT");
6209
6b49a3dd 6210 if ($feed_id > 0 && $prev_unread != $unread) {
8a4c759e 6211
37fb651d 6212 if (!$is_cat) {
8a4c759e 6213
6b49a3dd 6214 /* Update parent category */
8a4c759e 6215
6b49a3dd 6216 if ($update_pcat) {
37fb651d 6217
6b49a3dd
AD
6218 $result = db_query($link, "SELECT cat_id FROM ttrss_feeds
6219 WHERE owner_uid = '$owner_uid' AND id = '$feed_id'");
8a4c759e 6220
6b49a3dd 6221 $cat_id = (int) db_fetch_result($result, 0, "cat_id");
37fb651d 6222
6b49a3dd 6223 ccache_update($link, $cat_id, $owner_uid, true);
6c2a9b9e 6224
6c2a9b9e 6225 }
8a4c759e 6226 }
5f4f7adf
AD
6227 } else if ($feed_id < 0) {
6228 ccache_update_all($link, $owner_uid);
8a4c759e
AD
6229 }
6230
6231 return $unread;
2627f2d0 6232 }
ceb30ba4
AD
6233
6234 function label_find_id($link, $label, $owner_uid) {
6235 $result = db_query($link,
6236 "SELECT id FROM ttrss_labels2 WHERE caption = '$label'
6237 AND owner_uid = '$owner_uid' LIMIT 1");
6238
6239 if (db_num_rows($result) == 1) {
6240 return db_fetch_result($result, 0, "id");
6241 } else {
6242 return 0;
6243 }
6244 }
6245
814bff66 6246 function get_article_labels($link, $id) {
d721a547
AD
6247 global $memcache;
6248
814bff66 6249 $result = db_query($link,
2eb9c95c 6250 "SELECT DISTINCT label_id,caption,fg_color,bg_color
814bff66
AD
6251 FROM ttrss_labels2, ttrss_user_labels2
6252 WHERE id = label_id
6253 AND article_id = '$id'
e2549229
AD
6254 AND owner_uid = ".$_SESSION["uid"] . "
6255 ORDER BY caption");
814bff66 6256
d721a547
AD
6257 $obj_id = md5("LABELS:$id:" . $_SESSION["uid"]);
6258
814bff66
AD
6259 $rv = array();
6260
d721a547
AD
6261 if ($memcache && $obj = $memcache->get($obj_id)) {
6262 return $obj;
6263 } else {
6264 while ($line = db_fetch_assoc($result)) {
6265 $rk = array($line["label_id"], $line["caption"], $line["fg_color"],
6266 $line["bg_color"]);
6267 array_push($rv, $rk);
6268 }
6269 if ($memcache) $memcache->add($obj_id, $rv, 0, 3600);
814bff66
AD
6270 }
6271
6272 return $rv;
6273 }
6274
6275
b8a637f3
AD
6276 function label_find_caption($link, $label, $owner_uid) {
6277 $result = db_query($link,
6278 "SELECT caption FROM ttrss_labels2 WHERE id = '$label'
6279 AND owner_uid = '$owner_uid' LIMIT 1");
6280
6281 if (db_num_rows($result) == 1) {
6282 return db_fetch_result($result, 0, "caption");
6283 } else {
6284 return "";
6285 }
6286 }
6287
933ba4ee
AD
6288 function label_remove_article($link, $id, $label, $owner_uid) {
6289
6290 $label_id = label_find_id($link, $label, $owner_uid);
6291
6292 if (!$label_id) return;
6293
6294 $result = db_query($link,
6295 "DELETE FROM ttrss_user_labels2
6296 WHERE
6297 label_id = '$label_id' AND
6298 article_id = '$id'");
6299 }
6300
ceb30ba4
AD
6301 function label_add_article($link, $id, $label, $owner_uid) {
6302
d721a547
AD
6303 global $memcache;
6304
6305 if ($memcache) {
6306 $obj_id = md5("LABELS:$id:$owner_uid");
6307 $memcache->delete($obj_id);
6308 }
6309
ceb30ba4
AD
6310 $label_id = label_find_id($link, $label, $owner_uid);
6311
6312 if (!$label_id) return;
6313
6314 $result = db_query($link,
6315 "SELECT
6316 article_id FROM ttrss_labels2, ttrss_user_labels2
6317 WHERE
6318 label_id = id AND
6319 label_id = '$label_id' AND
6320 article_id = '$id' AND owner_uid = '$owner_uid'
6321 LIMIT 1");
6322
6323 if (db_num_rows($result) == 0) {
6324 db_query($link, "INSERT INTO ttrss_user_labels2
6325 (label_id, article_id) VALUES ('$label_id', '$id')");
6326 }
6327 }
1380f8ee
AD
6328
6329 function label_remove($link, $id, $owner_uid) {
d721a547
AD
6330 global $memcache;
6331
6332 if ($memcache) {
6333 $obj_id = md5("LABELS:$id:$owner_uid");
6334 $memcache->delete($obj_id);
6335 }
1380f8ee
AD
6336
6337 db_query($link, "BEGIN");
6338
6339 $result = db_query($link, "SELECT caption FROM ttrss_labels2
6340 WHERE id = '$id'");
6341
6342 $caption = db_fetch_result($result, 0, "caption");
6343
6344 $result = db_query($link, "DELETE FROM ttrss_labels2 WHERE id = '$id'
6345 AND owner_uid = " . $_SESSION["uid"]);
6346
6347 if (db_affected_rows($link, $result) != 0 && $caption) {
6348
6349 /* Disable filters that reference label being removed */
6350
6351 db_query($link, "UPDATE ttrss_filters SET
6352 enabled = false WHERE action_param = '$caption'
6353 AND action_id = 7
6354 AND owner_uid = " . $_SESSION["uid"]);
6355 }
6356
6357 db_query($link, "COMMIT");
6358 }
79c88e11 6359
6b2ee18d
AD
6360 function label_create($link, $caption) {
6361
6362 db_query($link, "BEGIN");
6363
6364 $result = false;
6365
6366 $result = db_query($link, "SELECT id FROM ttrss_labels2
6367 WHERE caption = '$caption' AND owner_uid = ". $_SESSION["uid"]);
6368
6369 if (db_num_rows($result) == 0) {
6370 $result = db_query($link,
6371 "INSERT INTO ttrss_labels2 (caption,owner_uid)
6372 VALUES ('$caption', '".$_SESSION["uid"]."')");
6373
6374 $result = db_affected_rows($link, $result) != 0;
6375 }
6376
6377 db_query($link, "COMMIT");
6378
6379 return $result;
6380 }
6381
79c88e11
AD
6382 function print_labels_headlines_dropdown($link, $feed_id) {
6383 print "<li onclick=\"javascript:addLabel()\">
6384 &nbsp;&nbsp;".__("Create label...")."</li>";
6385
6386 $result = db_query($link, "SELECT id, caption FROM ttrss_labels2 WHERE
6387 owner_uid = '".$_SESSION["uid"]."' ORDER BY caption");
6388
6389 while ($line = db_fetch_assoc($result)) {
6390
6391 $label_id = $line["id"];
6392 $label_caption = $line["caption"];
c3fddd05 6393 $id = $line["id"];
79c88e11
AD
6394
6395 if ($feed_id < -10 && $feed_id == -11-$label_id) {
6396 print "<li id=\"LHDL-$id\"
6397 onclick=\"javascript:selectionRemoveLabel($label_id)\">
6398 &nbsp;&nbsp;$label_caption ".__('(remove)')."</li>";
6399 } else {
6400 print "<li id=\"LHDL-$id\"
6401 onclick=\"javascript:selectionAssignLabel($label_id)\">
6402 &nbsp;&nbsp;$label_caption</li>";
6403 }
6404 }
6405 }
307d187c
AD
6406
6407 function format_tags_string($tags, $id) {
6408
6409 $tags_str = "";
6410 $tags_nolinks_str = "";
6411
6412 $num_tags = 0;
6413
dce46cad 6414/* if (get_user_theme($link) == "3pane") {
307d187c
AD
6415 $tag_limit = 3;
6416 } else {
6417 $tag_limit = 6;
d9084cf2
AD
6418 } */
6419
6420 $tag_limit = 6;
307d187c
AD
6421
6422 $formatted_tags = array();
6423
6424 foreach ($tags as $tag) {
6425 $num_tags++;
6426 $tag_escaped = str_replace("'", "\\'", $tag);
6427
275a0af2
AD
6428 if (mb_strlen($tag) > 30) {
6429 $tag = truncate_string($tag, 30);
6430 }
6431
307d187c
AD
6432 $tag_str = "<a href=\"javascript:viewfeed('$tag_escaped')\">$tag</a>";
6433
6434 array_push($formatted_tags, $tag_str);
275a0af2
AD
6435
6436 $tmp_tags_str = implode(", ", $formatted_tags);
307d187c 6437
275a0af2 6438 if ($num_tags == $tag_limit || mb_strlen($tmp_tags_str) > 150) {
307d187c
AD
6439 break;
6440 }
6441 }
6442
6443 $tags_str = implode(", ", $formatted_tags);
6444
6445 if ($num_tags < count($tags)) {
6446 $tags_str .= ", &hellip;";
6447 }
6448
6449 if ($num_tags == 0) {
6450 $tags_str = __("no tags");
6451 }
6452
6453 return $tags_str;
6454
6455 }
2eb9c95c
AD
6456
6457 function format_article_labels($labels, $id) {
6458
6459 $labels_str = "";
6460
6461 foreach ($labels as $l) {
6462 $labels_str .= sprintf("<span class='hlLabelRef'
6463 style='color : %s; background-color : %s'>%s</span>",
6464 $l[2], $l[3], $l[1]);
6465 }
6466
6467 return $labels_str;
6468
6469 }
c7e51de1
AD
6470
6471 function format_article_note($id, $note) {
6472
6473 $note_escaped = htmlspecialchars($note, ENT_QUOTES);
6474
6475 $str = "<div class='articleNote'>";
db54143e 6476 $str .= $note;
c7e51de1
AD
6477 $str .= "<div class='articleNoteOps'>";
6478 $str .= "<a href=\"javascript:publishWithNote($id, '$note_escaped')\">".
6479 __('edit note')."</a>";
6480 $str .= "</div>";
c7e51de1
AD
6481 $str .= "</div>";
6482
6483 return $str;
6484 }
7f969260
AD
6485
6486 function toggle_collapse_cat($link, $cat_id) {
6487 if ($cat_id > 0) {
6488 db_query($link, "UPDATE ttrss_feed_categories SET
6489 collapsed = NOT collapsed WHERE id = '$cat_id' AND owner_uid = " .
6490 $_SESSION["uid"]);
6491 } else {
6492 $pref_name = '';
6493
6494 switch ($cat_id) {
6495 case -1:
6496 $pref_name = '_COLLAPSED_SPECIAL';
6497 break;
6498 case -2:
6499 $pref_name = '_COLLAPSED_LABELS';
6500 break;
6501 case 0:
6502 $pref_name = '_COLLAPSED_UNCAT';
6503 break;
6504 }
6505
6506 if ($pref_name) {
6507 if (get_pref($link, $pref_name)) {
6508 set_pref($link, $pref_name, 'false');
6509 } else {
6510 set_pref($link, $pref_name, 'true');
6511 }
6512 }
6513 }
6514 }
7e329f13
AD
6515
6516 function remove_feed($link, $id, $owner_uid) {
6517
6518 if ($id > 0) {
e04c18a2
AD
6519
6520 /* save starred articles in Archived feed */
6521
6522 db_query($link, "BEGIN");
6523
8056ec50
AD
6524 /* prepare feed if necessary */
6525
6526 $result = db_query($link, "SELECT id FROM ttrss_archived_feeds
6527 WHERE id = '$id'");
6528
6529 if (db_num_rows($result) == 0) {
6530 db_query($link, "INSERT INTO ttrss_archived_feeds
6531 (id, owner_uid, title, feed_url, site_url)
6532 SELECT id, owner_uid, title, feed_url, site_url from ttrss_feeds
6533 WHERE id = '$id'");
6534 }
6535
74d22f0c
AD
6536 db_query($link, "UPDATE ttrss_user_entries SET feed_id = NULL,
6537 orig_feed_id = '$id' WHERE feed_id = '$id' AND
e04c18a2
AD
6538 marked = true AND owner_uid = $owner_uid");
6539
6540 /* remove the feed */
6541
7e329f13
AD
6542 db_query($link, "DELETE FROM ttrss_feeds
6543 WHERE id = '$id' AND owner_uid = $owner_uid");
6544
e04c18a2
AD
6545 db_query($link, "COMMIT");
6546
69877646 6547/* if (file_exists(ICONS_DIR . "/$id.ico")) {
7e329f13 6548 unlink(ICONS_DIR . "/$id.ico");
69877646 6549 } */
7e329f13
AD
6550
6551 ccache_remove($link, $id, $owner_uid);
6552
6553 } else {
6554 label_remove($link, -11-$id, $owner_uid);
6555 ccache_remove($link, -11-$id, $owner_uid);
6556 }
6557 }
6558
6559 function remove_feed_category($link, $id, $owner_uid) {
6560
6561 db_query($link, "DELETE FROM ttrss_feed_categories
6562 WHERE id = '$id' AND owner_uid = $owner_uid");
6563
6564 ccache_remove($link, $id, $owner_uid, true);
6565 }
6566
16fdac16
AD
6567 function archive_article($link, $id, $owner_uid) {
6568 db_query($link, "BEGIN");
6569
6570 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
6571 WHERE ref_id = '$id' AND owner_uid = $owner_uid");
6572
6573 if (db_num_rows($result) != 0) {
6574
6575 /* prepare the archived table */
6576
6577 $feed_id = (int) db_fetch_result($result, 0, "feed_id");
6578
6579 if ($feed_id) {
6580 $result = db_query($link, "SELECT id FROM ttrss_archived_feeds
6581 WHERE id = '$feed_id'");
6582
6583 if (db_num_rows($result) == 0) {
6584 db_query($link, "INSERT INTO ttrss_archived_feeds
6585 (id, owner_uid, title, feed_url, site_url)
6586 SELECT id, owner_uid, title, feed_url, site_url from ttrss_feeds
6587 WHERE id = '$feed_id'");
6588 }
6589
6590 db_query($link, "UPDATE ttrss_user_entries
6591 SET orig_feed_id = feed_id, feed_id = NULL
6592 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
6593 }
6594 }
6595
6596 db_query($link, "COMMIT");
6597 }
ab197ae1
AD
6598
6599 function getArticleFeed($link, $id) {
6600 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
a545dc31 6601 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
ab197ae1
AD
6602
6603 if (db_num_rows($result) != 0) {
6604 return db_fetch_result($result, 0, "feed_id");
6605 } else {
6606 return 0;
6607 }
6608 }
a5819bb3
AD
6609
6610 function make_url_from_parts($parts) {
6611 $url = $parts['scheme'] . '://' . $parts['host'];
6612
6613 if ($parts['path']) $url .= $parts['path'];
6614 if ($parts['query']) $url .= '?' . $parts['query'];
6615
6616 return $url;
6617 }
6618
6619 function validate_feed_url($url) {
6620 $parts = parse_url($url);
6621
6622 return ($parts['scheme'] == 'http' || $parts['scheme'] == 'feed' || $parts['scheme'] == 'https');
6623
6624 }
d9084cf2 6625
be35798b
AD
6626 function get_article_enclosures($link, $id) {
6627
6628 global $memcache;
6629
6630 $query = "SELECT * FROM ttrss_enclosures
6631 WHERE post_id = '$id' AND content_url != ''";
6632
bd3f2ade 6633 $obj_id = md5("ENCLOSURES:$id");
be35798b
AD
6634
6635 $rv = array();
6636
bd3f2ade 6637 if ($memcache && $obj = $memcache->get($obj_id)) {
be35798b
AD
6638 $rv = $obj;
6639 } else {
6640 $result = db_query($link, $query);
6641
6642 if (db_num_rows($result) > 0) {
6643 while ($line = db_fetch_assoc($result)) {
6644 array_push($rv, $line);
6645 }
bd3f2ade 6646 if ($memcache) $memcache->add($obj_id, $rv, 0, 3600);
be35798b
AD
6647 }
6648 }
6649
6650 return $rv;
6651 }
6652
911d4c08 6653 function api_get_feeds($link, $cat_id, $unread_only, $limit, $offset) {
911d4c08
AD
6654
6655 $feeds = array();
6656
911d4c08
AD
6657 /* Labels */
6658
fb8d17f3 6659 if ($cat_id == -4 || $cat_id == -2) {
911d4c08
AD
6660 $counters = getLabelCounters($link, true);
6661
11232703 6662 foreach (array_values($counters) as $cv) {
911d4c08 6663
11232703 6664 $unread = $cv["counter"];
911d4c08
AD
6665
6666 if ($unread || !$unread_only) {
6667
6668 $row = array(
11232703
AD
6669 "id" => $cv["id"],
6670 "title" => $cv["description"],
6671 "unread" => $cv["counter"],
911d4c08
AD
6672 "cat_id" => -2,
6673 );
6674
6675 array_push($feeds, $row);
6676 }
6677 }
6678 }
6679
6680 /* Virtual feeds */
6681
fb8d17f3 6682 if ($cat_id == -4 || $cat_id == -1) {
911d4c08
AD
6683 foreach (array(-1, -2, -3, -4, 0) as $i) {
6684 $unread = getFeedUnread($link, $i);
6685
6686 if ($unread || !$unread_only) {
6687 $title = getFeedTitle($link, $i);
6688
6689 $row = array(
6690 "id" => $i,
6691 "title" => $title,
6692 "unread" => $unread,
6693 "cat_id" => -1,
6694 );
6695 array_push($feeds, $row);
6696 }
6697
6698 }
6699 }
b41c2549
AD
6700
6701 /* Real feeds */
6702
6703 if ($limit) {
6704 $limit_qpart = "LIMIT $limit OFFSET $offset";
6705 } else {
6706 $limit_qpart = "";
6707 }
6708
fb8d17f3 6709 if ($cat_id == -4 || $cat_id == -3) {
b41c2549
AD
6710 $result = db_query($link, "SELECT
6711 id, feed_url, cat_id, title, ".
6712 SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
6713 FROM ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"] .
6714 " ORDER BY cat_id, title " . $limit_qpart);
6715 } else {
fb8d17f3
AD
6716
6717 if ($cat_id)
6718 $cat_qpart = "cat_id = '$cat_id'";
6719 else
6720 $cat_qpart = "cat_id IS NULL";
6721
b41c2549
AD
6722 $result = db_query($link, "SELECT
6723 id, feed_url, cat_id, title, ".
6724 SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
6725 FROM ttrss_feeds WHERE
fb8d17f3 6726 $cat_qpart AND owner_uid = " . $_SESSION["uid"] .
b41c2549
AD
6727 " ORDER BY cat_id, title " . $limit_qpart);
6728 }
6729
6730 while ($line = db_fetch_assoc($result)) {
6731
6732 $unread = getFeedUnread($link, $line["id"]);
6733
6734 $has_icon = feed_has_icon($line['id']);
6735
6736 if ($unread || !$unread_only) {
6737
6738 $row = array(
6739 "feed_url" => $line["feed_url"],
6740 "title" => $line["title"],
6741 "id" => (int)$line["id"],
6742 "unread" => (int)$unread,
6743 "has_icon" => $has_icon,
6744 "cat_id" => (int)$line["cat_id"],
6745 "last_updated" => strtotime($line["last_updated"])
6746 );
6747
6748 array_push($feeds, $row);
6749 }
6750 }
6751
911d4c08
AD
6752 return $feeds;
6753 }
6754
6755 function api_get_headlines($link, $feed_id, $limit, $offset,
6756 $filter, $is_cat, $show_excerpt, $show_content, $view_mode, $order) {
6757
6758 /* do not rely on params below */
6759
6760 $search = db_escape_string($_REQUEST["search"]);
6761 $search_mode = db_escape_string($_REQUEST["search_mode"]);
6762 $match_on = db_escape_string($_REQUEST["match_on"]);
6763
6764 $qfh_ret = queryFeedHeadlines($link, $feed_id, $limit,
6765 $view_mode, $is_cat, $search, $search_mode, $match_on,
6766 $order, $offset);
6767
6768 $result = $qfh_ret[0];
6769 $feed_title = $qfh_ret[1];
6770
6771 $headlines = array();
6772
6773 while ($line = db_fetch_assoc($result)) {
6774 $is_updated = ($line["last_read"] == "" &&
6775 ($line["unread"] != "t" && $line["unread"] != "1"));
6776
6777 $headline_row = array(
6778 "id" => (int)$line["id"],
6779 "unread" => sql_bool_to_bool($line["unread"]),
6780 "marked" => sql_bool_to_bool($line["marked"]),
9ed133e7 6781 "published" => sql_bool_to_bool($line["published"]),
911d4c08
AD
6782 "updated" => strtotime($line["updated"]),
6783 "is_updated" => $is_updated,
6784 "title" => $line["title"],
6785 "link" => $line["link"],
6786 "feed_id" => $line["feed_id"],
78ac6caf 6787 "tags" => get_article_tags($link, $line["id"]),
911d4c08
AD
6788 );
6789
6790 if ($show_excerpt) {
6791 $excerpt = truncate_string(strip_tags($line["content_preview"]), 100);
6792 $headline_row["excerpt"] = $excerpt;
6793 }
6794
6795 if ($show_content) {
6796 $headline_row["content"] = $line["content_preview"];
6797 }
6798
6799 array_push($headlines, $headline_row);
6800 }
6801
6802 return $headlines;
6803 }
6804
fe1087fb
AD
6805 function generate_dashboard_feed($link) {
6806 print "<headlines id=\"-5\" is_cat=\"\">";
6807
6808 print '<![CDATA[<div id="headlinesContainer">';
6809
6810 print "<div class='whiteBox'>".__('No feed selected.');
6811
5d128c95
AD
6812 print "<p class=\"small\"><span class=\"insensitive\">";
6813
6814 $result = db_query($link, "SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
6815 WHERE owner_uid = " . $_SESSION['uid']);
6816
6817 $last_updated = db_fetch_result($result, 0, "last_updated");
6818
6819 if (get_pref($link, 'HEADLINES_SMART_DATE')) {
6820 $last_updated = smart_date_time(strtotime($last_updated));
6821 } else {
6822 $last_updated = date($short_date, strtotime($last_updated));
6823 }
6824
6825 printf(__("Feeds last updated at %s"), $last_updated);
6826
fe1087fb
AD
6827 $result = db_query($link, "SELECT COUNT(id) AS num_errors
6828 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
6829
6830 $num_errors = db_fetch_result($result, 0, "num_errors");
6831
6832 if ($num_errors > 0) {
5d128c95
AD
6833 print "<br/>";
6834 print "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
fe1087fb
AD
6835 __('Some feeds have update errors (click for details)')."</a>";
6836 }
5d128c95 6837 print "</span></p>";
fe1087fb
AD
6838
6839 print "</div>]]>";
6840 print "</headlines>";
6841
6842 print "<headlines-count value=\"0\"/>";
6843 print "<vgroup-last-feed value=\"0\"/>";
6844 print "<headlines-unread value=\"0\"/>";
6845 print "<disable-cache value=\"1\"/>";
6846
6847 }
31a53903
AD
6848
6849 function save_email_address($link, $email) {
6850 // FIXME: implement persistent storage of emails
6851
6852 if (!$_SESSION['stored_emails'])
6853 $_SESSION['stored_emails'] = array();
6854
6855 if (!in_array($email, $_SESSION['stored_emails']))
6856 array_push($_SESSION['stored_emails'], $email);
6857 }
40d13c28 6858?>