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