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