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