3 date_default_timezone_set('UTC');
4 if (defined('E_DEPRECATED')) {
5 error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
7 error_reporting(E_ALL & ~E_NOTICE);
10 require_once 'config.php';
12 if (DB_TYPE == "pgsql") {
13 define('SUBSTRING_FOR_DATE', 'SUBSTRING_FOR_DATE');
15 define('SUBSTRING_FOR_DATE', 'SUBSTRING');
18 define('THEME_VERSION_REQUIRED', 1.1);
21 * Return available translations names.
24 * @return array A array of available translations.
26 function get_translations() {
28 "auto" => "Detect automatically",
33 "fr_FR" => "Français",
34 "hu_HU" => "Magyar (Hungarian)",
35 "it_IT" => "Italiano",
36 "ja_JP" => "日本語 (Japanese)",
37 "nb_NO" => "Norwegian bokmål",
39 "pt_BR" => "Portuguese/Brazil",
40 "zh_CN" => "Simplified Chinese");
45 require_once "lib/accept-to-gettext.php";
46 require_once "lib/gettext/gettext.inc";
48 function startup_gettext() {
50 # Get locale from Accept-Language header
51 $lang = al2gt(array_keys(get_translations()), "text/html");
53 if (defined('_TRANSLATION_OVERRIDE_DEFAULT')) {
54 $lang = _TRANSLATION_OVERRIDE_DEFAULT;
57 if ($_COOKIE["ttrss_lang"] && $_COOKIE["ttrss_lang"] != "auto") {
58 $lang = $_COOKIE["ttrss_lang"];
61 /* In login action of mobile version */
62 if ($_POST["language"] && defined('MOBILE_VERSION')) {
63 $lang = $_POST["language"];
64 $_COOKIE["ttrss_lang"] = $lang;
68 if (defined('LC_MESSAGES')) {
69 _setlocale(LC_MESSAGES, $lang);
70 } else if (defined('LC_ALL')) {
71 _setlocale(LC_ALL, $lang);
74 if (defined('MOBILE_VERSION')) {
75 _bindtextdomain("messages", "../locale");
77 _bindtextdomain("messages", "locale");
80 _textdomain("messages");
81 _bind_textdomain_codeset("messages", "UTF-8");
87 if (defined('MEMCACHE_SERVER')) {
88 $memcache = new Memcache;
89 $memcache->connect(MEMCACHE_SERVER, 11211);
92 require_once 'db-prefs.php';
93 require_once 'errors.php';
94 require_once 'version.php';
96 require_once 'lib/phpmailer/class.phpmailer.php';
97 require_once 'lib/sphinxapi.php';
98 require_once 'lib/tmhoauth/tmhOAuth.php';
100 //define('MAGPIE_USER_AGENT_EXT', ' (Tiny Tiny RSS/' . VERSION . ')');
101 define('MAGPIE_OUTPUT_ENCODING', 'UTF-8');
103 define('SELF_USER_AGENT', 'Tiny Tiny RSS/' . VERSION . ' (http://tt-rss.org/)');
104 define('MAGPIE_USER_AGENT', SELF_USER_AGENT);
106 ini_set('user_agent', SELF_USER_AGENT);
108 require_once "lib/simplepie/simplepie.inc";
109 require_once "lib/magpierss/rss_fetch.inc";
110 require_once 'lib/magpierss/rss_utils.inc';
111 require_once 'lib/htmlpurifier/library/HTMLPurifier.auto.php';
112 require_once 'lib/pubsubhubbub/publisher.php';
113 require_once 'lib/pubsubhubbub/subscriber.php';
115 $config = HTMLPurifier_Config::createDefault();
117 $allowed = "p,a[href],i,em,b,strong,code,pre,blockquote,br,img[src|alt|title],ul,ol,li,h1,h2,h3,h4,s,object[classid|type|id|name|width|height|codebase],param[name|value],table,tr,td";
119 $config->set('HTML.SafeObject', true);
120 @$config->set('HTML', 'Allowed', $allowed);
121 $config->set('Output.FlashCompat', true);
122 $config->set('Attr.EnableID', true);
123 if (!defined('MOBILE_VERSION')) {
124 @$config->set('Cache', 'SerializerPath', CACHE_DIR . "/htmlpurifier");
126 @$config->set('Cache', 'SerializerPath', "../" . CACHE_DIR . "/htmlpurifier");
129 $purifier = new HTMLPurifier($config);
132 $utc_tz = new DateTimeZone('UTC');
133 $schema_version = false;
136 * Print a timestamped debug message.
138 * @param string $msg The debug message.
141 function _debug($msg) {
142 $ts = strftime("%H:%M:%S", time());
143 if (function_exists('posix_getpid')) {
144 $ts = "$ts/" . posix_getpid();
146 print "[$ts] $msg\n";
150 * Purge a feed old posts.
152 * @param mixed $link A database connection.
153 * @param mixed $feed_id The id of the purged feed.
154 * @param mixed $purge_interval Olderness of purged posts.
155 * @param boolean $debug Set to True to enable the debug. False by default.
159 function purge_feed($link, $feed_id, $purge_interval, $debug = false) {
161 if (!$purge_interval) $purge_interval = feed_purge_interval($link, $feed_id);
165 $result = db_query($link,
166 "SELECT owner_uid FROM ttrss_feeds WHERE id = '$feed_id'");
170 if (db_num_rows($result) == 1) {
171 $owner_uid = db_fetch_result($result, 0, "owner_uid");
174 if ($purge_interval == -1 || !$purge_interval) {
176 ccache_update($link, $feed_id, $owner_uid);
181 if (!$owner_uid) return;
183 if (FORCE_ARTICLE_PURGE == 0) {
184 $purge_unread = get_pref($link, "PURGE_UNREAD_ARTICLES",
187 $purge_unread = true;
188 $purge_interval = FORCE_ARTICLE_PURGE;
191 if (!$purge_unread) $query_limit = " unread = false AND ";
193 if (DB_TYPE == "pgsql") {
194 $pg_version = get_pgsql_version($link);
196 if (preg_match("/^7\./", $pg_version) || preg_match("/^8\.0/", $pg_version)) {
198 $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
199 ttrss_entries.id = ref_id AND
201 feed_id = '$feed_id' AND
203 ttrss_entries.date_updated < NOW() - INTERVAL '$purge_interval days'");
207 $result = db_query($link, "DELETE FROM ttrss_user_entries
209 WHERE ttrss_entries.id = ref_id AND
211 feed_id = '$feed_id' AND
213 ttrss_entries.date_updated < NOW() - INTERVAL '$purge_interval days'");
216 $rows = pg_affected_rows($result);
220 /* $result = db_query($link, "DELETE FROM ttrss_user_entries WHERE
221 marked = false AND feed_id = '$feed_id' AND
222 (SELECT date_updated FROM ttrss_entries WHERE
223 id = ref_id) < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)"); */
225 $result = db_query($link, "DELETE FROM ttrss_user_entries
226 USING ttrss_user_entries, ttrss_entries
227 WHERE ttrss_entries.id = ref_id AND
229 feed_id = '$feed_id' AND
231 ttrss_entries.date_updated < DATE_SUB(NOW(), INTERVAL $purge_interval DAY)");
233 $rows = mysql_affected_rows($link);
237 ccache_update($link, $feed_id, $owner_uid);
240 _debug("Purged feed $feed_id ($purge_interval): deleted $rows articles");
242 } // function purge_feed
245 * Purge old posts from old feeds. Not used anymore, purging is done after feed update.
247 * @param mixed $link A database connection
248 * @param boolean $do_output Set to true to enable printed output, false by default.
249 * @param integer $limit The maximal number of removed posts.
253 /* function global_purge_old_posts($link, $do_output = false, $limit = false) {
255 $random_qpart = sql_random_function();
258 $limit_qpart = "LIMIT $limit";
263 $result = db_query($link,
264 "SELECT id,purge_interval,owner_uid FROM ttrss_feeds
265 ORDER BY $random_qpart $limit_qpart");
267 while ($line = db_fetch_assoc($result)) {
269 $feed_id = $line["id"];
270 $purge_interval = $line["purge_interval"];
271 $owner_uid = $line["owner_uid"];
273 if ($purge_interval == 0) {
275 $tmp_result = db_query($link,
276 "SELECT value FROM ttrss_user_prefs WHERE
277 pref_name = 'PURGE_OLD_DAYS' AND owner_uid = '$owner_uid'");
279 if (db_num_rows($tmp_result) != 0) {
280 $purge_interval = db_fetch_result($tmp_result, 0, "value");
285 // print "Feed $feed_id: purge interval = $purge_interval\n";
288 if ($purge_interval > 0 || FORCE_ARTICLE_PURGE) {
289 purge_feed($link, $feed_id, $purge_interval, $do_output);
293 purge_orphans($link, $do_output);
295 } // function global_purge_old_posts */
297 function feed_purge_interval($link, $feed_id) {
299 $result = db_query($link, "SELECT purge_interval, owner_uid FROM ttrss_feeds
300 WHERE id = '$feed_id'");
302 if (db_num_rows($result) == 1) {
303 $purge_interval = db_fetch_result($result, 0, "purge_interval");
304 $owner_uid = db_fetch_result($result, 0, "owner_uid");
306 if ($purge_interval == 0) $purge_interval = get_pref($link,
307 'PURGE_OLD_DAYS', $owner_uid);
309 return $purge_interval;
316 function purge_old_posts($link) {
318 $user_id = $_SESSION["uid"];
320 $result = db_query($link, "SELECT id,purge_interval FROM ttrss_feeds
321 WHERE owner_uid = '$user_id'");
323 while ($line = db_fetch_assoc($result)) {
325 $feed_id = $line["id"];
326 $purge_interval = $line["purge_interval"];
328 if ($purge_interval == 0) $purge_interval = get_pref($link, 'PURGE_OLD_DAYS');
330 if ($purge_interval > 0) {
331 purge_feed($link, $feed_id, $purge_interval);
335 purge_orphans($link);
338 function purge_orphans($link, $do_output = false) {
340 // purge orphaned posts in main content table
341 $result = db_query($link, "DELETE FROM ttrss_entries WHERE
342 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
345 $rows = db_affected_rows($link, $result);
346 _debug("Purged $rows orphaned posts.");
350 function get_feed_update_interval($link, $feed_id) {
351 $result = db_query($link, "SELECT owner_uid, update_interval FROM
352 ttrss_feeds WHERE id = '$feed_id'");
354 if (db_num_rows($result) == 1) {
355 $update_interval = db_fetch_result($result, 0, "update_interval");
356 $owner_uid = db_fetch_result($result, 0, "owner_uid");
358 if ($update_interval != 0) {
359 return $update_interval;
361 return get_pref($link, 'DEFAULT_UPDATE_INTERVAL', $owner_uid, false);
369 function fetch_file_contents($url, $type = false, $login = false, $pass = false, $post_query = false) {
370 $login = urlencode($login);
371 $pass = urlencode($pass);
373 if (function_exists('curl_init') && !ini_get("open_basedir")) {
374 $ch = curl_init($url);
376 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 15);
377 curl_setopt($ch, CURLOPT_TIMEOUT, 45);
378 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
379 curl_setopt($ch, CURLOPT_MAXREDIRS, 20);
380 curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
381 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
382 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
383 curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
384 curl_setopt($ch, CURLOPT_USERAGENT, SELF_USER_AGENT);
385 curl_setopt($ch, CURLOPT_ENCODING , "gzip");
388 curl_setopt($ch, CURLOPT_POST, true);
389 curl_setopt($ch, CURLOPT_POSTFIELDS, $post_query);
393 curl_setopt($ch, CURLOPT_USERPWD, "$login:$pass");
395 $contents = @curl_exec($ch);
397 if ($contents === false) {
402 $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
403 $content_type = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
406 if ($http_code != 200 || $type && strpos($content_type, "$type") === false) {
412 if ($login && $pass ){
413 $url_parts = array();
415 preg_match("/(^[^:]*):\/\/(.*)/", $url, $url_parts);
417 if ($url_parts[1] && $url_parts[2]) {
418 $url = $url_parts[1] . "://$login:$pass@" . $url_parts[2];
422 return @file_get_contents($url);
428 * Try to determine the favicon URL for a feed.
429 * adapted from wordpress favicon plugin by Jeff Minard (http://thecodepro.com/)
430 * http://dev.wp-plugins.org/file/favatars/trunk/favatars.php
432 * @param string $url A feed or page URL
434 * @return mixed The favicon URL, or false if none was found.
436 function get_favicon_url($url) {
438 $favicon_url = false;
440 if ($html = @fetch_file_contents($url)) {
442 libxml_use_internal_errors(true);
444 $doc = new DOMDocument();
445 $doc->loadHTML($html);
446 $xpath = new DOMXPath($doc);
448 $base = $xpath->query('/html/head/base');
449 foreach ($base as $b) {
450 $url = $b->getAttribute("href");
454 $entries = $xpath->query('/html/head/link[@rel="shortcut icon" or @rel="icon"]');
455 if (count($entries) > 0) {
456 foreach ($entries as $entry) {
457 $favicon_url = rewrite_relative_url($url, $entry->getAttribute("href"));
464 $favicon_url = rewrite_relative_url($url, "/favicon.ico");
467 } // function get_favicon_url
469 function check_feed_favicon($site_url, $feed, $link) {
470 # print "FAVICON [$site_url]: $favicon_url\n";
472 $icon_file = ICONS_DIR . "/$feed.ico";
474 if (!file_exists($icon_file)) {
475 $favicon_url = get_favicon_url($site_url);
478 $contents = fetch_file_contents($favicon_url, "image");
481 $fp = @fopen($icon_file, "w");
484 fwrite($fp, $contents);
486 chmod($icon_file, 0644);
493 function update_rss_feed($link, $feed, $ignore_daemon = false, $no_cache = false) {
497 /* Update all feeds with the same URL to utilize memcache */
500 $result = db_query($link, "SELECT f1.id
501 FROM ttrss_feeds AS f1, ttrss_feeds AS f2
502 WHERE f2.feed_url = f1.feed_url AND f2.id = '$feed'");
504 while ($line = db_fetch_assoc($result)) {
505 update_rss_feed_real($link, $line["id"], $ignore_daemon, $no_cache);
508 update_rss_feed_real($link, $feed, $ignore_daemon, $no_cache);
512 function update_rss_feed_real($link, $feed, $ignore_daemon = false, $no_cache = false,
513 $override_url = false) {
517 $debug_enabled = defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug'];
519 if (!$_REQUEST["daemon"] && !$ignore_daemon) {
523 if ($debug_enabled) {
524 _debug("update_rss_feed: start");
527 if (!$ignore_daemon) {
529 if (DB_TYPE == "pgsql") {
530 $updstart_thresh_qpart = "(ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < NOW() - INTERVAL '120 seconds')";
532 $updstart_thresh_qpart = "(ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 120 SECOND))";
535 $result = db_query($link, "SELECT id,update_interval,auth_login,
536 auth_pass,cache_images,update_method
537 FROM ttrss_feeds WHERE id = '$feed' AND $updstart_thresh_qpart");
541 $result = db_query($link, "SELECT id,update_interval,auth_login,
542 feed_url,auth_pass,cache_images,update_method,last_updated,
543 mark_unread_on_update, owner_uid, update_on_checksum_change,
545 FROM ttrss_feeds WHERE id = '$feed'");
549 if (db_num_rows($result) == 0) {
550 if ($debug_enabled) {
551 _debug("update_rss_feed: feed $feed NOT FOUND/SKIPPED");
556 $update_method = db_fetch_result($result, 0, "update_method");
557 $last_updated = db_fetch_result($result, 0, "last_updated");
558 $owner_uid = db_fetch_result($result, 0, "owner_uid");
559 $mark_unread_on_update = sql_bool_to_bool(db_fetch_result($result,
560 0, "mark_unread_on_update"));
561 $update_on_checksum_change = sql_bool_to_bool(db_fetch_result($result,
562 0, "update_on_checksum_change"));
563 $pubsub_state = db_fetch_result($result, 0, "pubsub_state");
565 db_query($link, "UPDATE ttrss_feeds SET last_update_started = NOW()
566 WHERE id = '$feed'");
568 $auth_login = db_fetch_result($result, 0, "auth_login");
569 $auth_pass = db_fetch_result($result, 0, "auth_pass");
571 if ($update_method == 0)
572 $update_method = DEFAULT_UPDATE_METHOD + 1;
578 if ($update_method == 2)
579 $use_simplepie = true;
581 $use_simplepie = false;
583 if ($debug_enabled) {
584 _debug("update method: $update_method (feed setting: $update_method) (use simplepie: $use_simplepie)\n");
587 if ($update_method == 1) {
588 $auth_login = urlencode($auth_login);
589 $auth_pass = urlencode($auth_pass);
592 $update_interval = db_fetch_result($result, 0, "update_interval");
593 $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
594 $fetch_url = db_fetch_result($result, 0, "feed_url");
596 if ($update_interval < 0) { return false; }
598 $feed = db_escape_string($feed);
600 if ($auth_login && $auth_pass ){
601 $url_parts = array();
602 preg_match("/(^[^:]*):\/\/(.*)/", $fetch_url, $url_parts);
604 if ($url_parts[1] && $url_parts[2]) {
605 $fetch_url = $url_parts[1] . "://$auth_login:$auth_pass@" . $url_parts[2];
611 $fetch_url = $override_url;
613 if ($debug_enabled) {
614 _debug("update_rss_feed: fetching [$fetch_url]...");
617 $obj_id = md5("FDATA:$use_simplepie:$fetch_url");
619 if ($memcache && $obj = $memcache->get($obj_id)) {
621 if ($debug_enabled) {
622 _debug("update_rss_feed: data found in memcache.");
629 if ($update_method == 3) {
630 $rss = fetch_twitter_rss($link, $fetch_url, $owner_uid);
631 } else if ($update_method == 1) {
633 define('MAGPIE_CACHE_AGE', get_feed_update_interval($link, $feed) * 60);
634 define('MAGPIE_CACHE_ON', !$no_cache);
635 define('MAGPIE_FETCH_TIME_OUT', 60);
636 define('MAGPIE_CACHE_DIR', CACHE_DIR . "/magpie");
638 $rss = @fetch_rss($fetch_url);
640 $simplepie_cache_dir = CACHE_DIR . "/simplepie";
642 if (!is_dir($simplepie_cache_dir)) {
643 mkdir($simplepie_cache_dir);
646 $rss = new SimplePie();
647 $rss->set_useragent(SELF_USER_AGENT);
648 # $rss->set_timeout(10);
649 $rss->set_feed_url($fetch_url);
650 $rss->set_output_encoding('UTF-8');
651 $rss->force_feed(true);
653 if (SIMPLEPIE_CACHE_IMAGES && $cache_images) {
655 if ($debug_enabled) {
656 _debug("enabling image cache");
659 $rss->set_image_handler("image.php", 'i');
662 if ($debug_enabled) {
663 _debug("feed update interval (sec): " .
664 get_feed_update_interval($link, $feed)*60);
667 $rss->enable_cache(!$no_cache);
670 $rss->set_cache_location($simplepie_cache_dir);
671 $rss->set_cache_duration(get_feed_update_interval($link, $feed) * 60);
677 if ($memcache && $rss) $memcache->add($obj_id, $rss, 0, 300);
682 if ($debug_enabled) {
683 _debug("update_rss_feed: fetch done, parsing...");
686 $feed = db_escape_string($feed);
688 if ($update_method == 2) {
689 $fetch_ok = !$rss->error();
696 if ($debug_enabled) {
697 _debug("update_rss_feed: processing feed data...");
700 // db_query($link, "BEGIN");
702 $result = db_query($link, "SELECT title,icon_url,site_url,owner_uid
703 FROM ttrss_feeds WHERE id = '$feed'");
705 $registered_title = db_fetch_result($result, 0, "title");
706 $orig_icon_url = db_fetch_result($result, 0, "icon_url");
707 $orig_site_url = db_fetch_result($result, 0, "site_url");
709 $owner_uid = db_fetch_result($result, 0, "owner_uid");
711 if ($use_simplepie) {
712 $site_url = $rss->get_link();
714 $site_url = $rss->channel["link"];
717 $site_url = rewrite_relative_url($fetch_url, $site_url);
719 if ($debug_enabled) {
720 _debug("update_rss_feed: checking favicon...");
723 check_feed_favicon($site_url, $feed, $link);
725 if (!$registered_title || $registered_title == "[Unknown]") {
727 if ($use_simplepie) {
728 $feed_title = db_escape_string($rss->get_title());
730 $feed_title = db_escape_string($rss->channel["title"]);
733 if ($debug_enabled) {
734 _debug("update_rss_feed: registering title: $feed_title");
737 db_query($link, "UPDATE ttrss_feeds SET
738 title = '$feed_title' WHERE id = '$feed'");
741 // weird, weird Magpie
742 if (!$use_simplepie) {
743 if (!$site_url) $site_url = db_escape_string($rss->channel["link_"]);
746 if ($site_url && $orig_site_url != db_escape_string($site_url)) {
747 db_query($link, "UPDATE ttrss_feeds SET
748 site_url = '$site_url' WHERE id = '$feed'");
751 // print "I: " . $rss->channel["image"]["url"];
753 if (!$use_simplepie) {
754 $icon_url = db_escape_string($rss->image["url"]);
756 $icon_url = db_escape_string($rss->get_image_url());
759 $icon_url = substr($icon_url, 0, 250);
761 if ($icon_url && $orig_icon_url != $icon_url) {
762 db_query($link, "UPDATE ttrss_feeds SET icon_url = '$icon_url' WHERE id = '$feed'");
765 if ($debug_enabled) {
766 _debug("update_rss_feed: loading filters...");
769 $filters = load_filters($link, $feed, $owner_uid);
771 // if ($debug_enabled) {
772 // print_r($filters);
775 if ($use_simplepie) {
776 $iterator = $rss->get_items();
778 $iterator = $rss->items;
779 if (!$iterator || !is_array($iterator)) $iterator = $rss->entries;
780 if (!$iterator || !is_array($iterator)) $iterator = $rss;
783 if (!is_array($iterator)) {
784 /* db_query($link, "UPDATE ttrss_feeds
785 SET last_error = 'Parse error: can\'t find any articles.'
786 WHERE id = '$feed'"); */
788 // clear any errors and mark feed as updated if fetched okay
789 // even if it's blank
791 if ($debug_enabled) {
792 _debug("update_rss_feed: entry iterator is not an array, no articles?");
795 db_query($link, "UPDATE ttrss_feeds
796 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
798 return; // no articles
801 if ($pubsub_state != 2 && PUBSUBHUBBUB_ENABLED) {
803 if ($debug_enabled) _debug("update_rss_feed: checking for PUSH hub...");
805 $feed_hub_url = false;
806 if ($use_simplepie) {
807 $links = $rss->get_links('hub');
809 if ($links && is_array($links)) {
810 foreach ($links as $l) {
817 $atom = $rss->channel['atom'];
820 if ($atom['link@rel'] == 'hub') {
821 $feed_hub_url = $atom['link@href'];
824 if (!$feed_hub_url && $atom['link#'] > 1) {
825 for ($i = 2; $i <= $atom['link#']; $i++) {
826 if ($atom["link#$i@rel"] == 'hub') {
827 $feed_hub_url = $atom["link#$i@href"];
833 $feed_hub_url = $rss->channel['link_hub'];
837 if ($debug_enabled) _debug("update_rss_feed: feed hub url: $feed_hub_url");
839 if ($feed_hub_url && function_exists('curl_init') &&
840 !ini_get("open_basedir")) {
842 $callback_url = get_self_url_prefix() .
843 "/public.php?op=pubsub&id=$feed";
845 $s = new Subscriber($feed_hub_url, $callback_url);
847 $rc = $s->subscribe($fetch_url);
850 _debug("update_rss_feed: feed hub url found, subscribe request sent.");
852 db_query($link, "UPDATE ttrss_feeds SET pubsub_state = 1
853 WHERE id = '$feed'");
857 if ($debug_enabled) {
858 _debug("update_rss_feed: processing articles...");
861 foreach ($iterator as $item) {
863 if ($_REQUEST['xdebug'] == 2) {
867 if ($use_simplepie) {
868 $entry_guid = $item->get_id();
869 if (!$entry_guid) $entry_guid = $item->get_link();
870 if (!$entry_guid) $entry_guid = make_guid_from_title($item->get_title());
874 $entry_guid = $item["id"];
876 if (!$entry_guid) $entry_guid = $item["guid"];
877 if (!$entry_guid) $entry_guid = $item["about"];
878 if (!$entry_guid) $entry_guid = $item["link"];
879 if (!$entry_guid) $entry_guid = make_guid_from_title($item["title"]);
882 if ($debug_enabled) {
883 _debug("update_rss_feed: guid $entry_guid");
886 if (!$entry_guid) continue;
888 $entry_timestamp = "";
890 if ($use_simplepie) {
891 $entry_timestamp = strtotime($item->get_date());
893 $rss_2_date = $item['pubdate'];
894 $rss_1_date = $item['dc']['date'];
895 $atom_date = $item['issued'];
896 if (!$atom_date) $atom_date = $item['updated'];
898 if ($atom_date != "") $entry_timestamp = parse_w3cdtf($atom_date);
899 if ($rss_1_date != "") $entry_timestamp = parse_w3cdtf($rss_1_date);
900 if ($rss_2_date != "") $entry_timestamp = strtotime($rss_2_date);
904 if ($entry_timestamp == "" || $entry_timestamp == -1 || !$entry_timestamp) {
905 $entry_timestamp = time();
906 $no_orig_date = 'true';
908 $no_orig_date = 'false';
911 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
913 if ($debug_enabled) {
914 _debug("update_rss_feed: date $entry_timestamp [$entry_timestamp_fmt]");
917 if ($use_simplepie) {
918 $entry_title = $item->get_title();
920 $entry_title = trim(strip_tags($item["title"]));
923 if ($use_simplepie) {
924 $entry_link = $item->get_link();
926 // strange Magpie workaround
927 $entry_link = $item["link_"];
928 if (!$entry_link) $entry_link = $item["link"];
931 $entry_link = rewrite_relative_url($site_url, $entry_link);
933 if ($debug_enabled) {
934 _debug("update_rss_feed: title $entry_title");
935 _debug("update_rss_feed: link $entry_link");
938 if (!$entry_title) $entry_title = date("Y-m-d H:i:s", $entry_timestamp);;
940 $entry_link = strip_tags($entry_link);
942 if ($use_simplepie) {
943 $entry_content = $item->get_content();
944 if (!$entry_content) $entry_content = $item->get_description();
946 $entry_content = $item["content:escaped"];
948 if (!$entry_content) $entry_content = $item["content:encoded"];
949 if (!$entry_content) $entry_content = $item["content"]["encoded"];
950 if (!$entry_content) $entry_content = $item["content"];
952 // Magpie bugs are getting ridiculous
953 if (trim($entry_content) == "Array") $entry_content = false;
955 if (!$entry_content) $entry_content = $item["atom_content"];
956 if (!$entry_content) $entry_content = $item["summary"];
958 if (!$entry_content ||
959 strlen($entry_content) < strlen($item["description"])) {
960 $entry_content = $item["description"];
964 if (is_array($entry_content)) {
965 $entry_content = $entry_content["encoded"];
966 if (!$entry_content) $entry_content = $entry_content["escaped"];
970 if ($_REQUEST["xdebug"] == 2) {
971 print "update_rss_feed: content: ";
972 print_r(htmlspecialchars($entry_content));
975 $entry_content_unescaped = $entry_content;
977 if ($use_simplepie) {
978 $entry_comments = strip_tags($item->data["comments"]);
979 if ($item->get_author()) {
980 $entry_author_item = $item->get_author();
981 $entry_author = $entry_author_item->get_name();
982 if (!$entry_author) $entry_author = $entry_author_item->get_email();
984 $entry_author = db_escape_string($entry_author);
987 $entry_comments = strip_tags($item["comments"]);
989 $entry_author = db_escape_string(strip_tags($item['dc']['creator']));
991 if ($item['author']) {
993 if (is_array($item['author'])) {
995 if (!$entry_author) {
996 $entry_author = db_escape_string(strip_tags($item['author']['name']));
999 if (!$entry_author) {
1000 $entry_author = db_escape_string(strip_tags($item['author']['email']));
1004 if (!$entry_author) {
1005 $entry_author = db_escape_string(strip_tags($item['author']));
1010 if (preg_match('/^[\t\n\r ]*$/', $entry_author)) $entry_author = '';
1012 $entry_guid = db_escape_string(strip_tags($entry_guid));
1013 $entry_guid = mb_substr($entry_guid, 0, 250);
1015 $result = db_query($link, "SELECT id FROM ttrss_entries
1016 WHERE guid = '$entry_guid'");
1018 $entry_content = db_escape_string($entry_content, false);
1020 $content_hash = "SHA1:" . sha1(strip_tags($entry_content));
1022 $entry_title = db_escape_string($entry_title);
1023 $entry_link = db_escape_string($entry_link);
1024 $entry_comments = mb_substr(db_escape_string($entry_comments), 0, 250);
1025 $entry_author = mb_substr($entry_author, 0, 250);
1027 if ($use_simplepie) {
1028 $num_comments = 0; #FIXME#
1030 $num_comments = db_escape_string($item["slash"]["comments"]);
1033 if (!$num_comments) $num_comments = 0;
1035 if ($debug_enabled) {
1036 _debug("update_rss_feed: looking for tags [1]...");
1039 // parse <category> entries into tags
1041 $additional_tags = array();
1043 if ($use_simplepie) {
1045 $additional_tags_src = $item->get_categories();
1047 if (is_array($additional_tags_src)) {
1048 foreach ($additional_tags_src as $tobj) {
1049 array_push($additional_tags, $tobj->get_term());
1053 if ($debug_enabled) {
1054 _debug("update_rss_feed: category tags:");
1055 print_r($additional_tags);
1060 $t_ctr = $item['category#'];
1063 $additional_tags = array();
1064 } else if ($t_ctr > 0) {
1065 $additional_tags = array($item['category']);
1067 if ($item['category@term']) {
1068 array_push($additional_tags, $item['category@term']);
1071 for ($i = 0; $i <= $t_ctr; $i++ ) {
1072 if ($item["category#$i"]) {
1073 array_push($additional_tags, $item["category#$i"]);
1076 if ($item["category#$i@term"]) {
1077 array_push($additional_tags, $item["category#$i@term"]);
1082 // parse <dc:subject> elements
1084 $t_ctr = $item['dc']['subject#'];
1087 array_push($additional_tags, $item['dc']['subject']);
1089 for ($i = 0; $i <= $t_ctr; $i++ ) {
1090 if ($item['dc']["subject#$i"]) {
1091 array_push($additional_tags, $item['dc']["subject#$i"]);
1097 if ($debug_enabled) {
1098 _debug("update_rss_feed: looking for tags [2]...");
1102 // <a href="..." rel="tag">Xorg</a>, //
1106 preg_match_all("/<a.*?rel=['\"]tag['\"].*?\>([^<]+)<\/a>/i",
1107 $entry_content_unescaped, $entry_tags);
1109 $entry_tags = $entry_tags[1];
1111 $entry_tags = array_merge($entry_tags, $additional_tags);
1112 $entry_tags = array_unique($entry_tags);
1114 for ($i = 0; $i < count($entry_tags); $i++)
1115 $entry_tags[$i] = mb_strtolower($entry_tags[$i], 'utf-8');
1117 if ($debug_enabled) {
1118 _debug("update_rss_feed: unfiltered tags found:");
1119 print_r($entry_tags);
1124 $entry_content = sanitize_article_content($entry_content);
1125 $entry_title = sanitize_article_content($entry_title);
1127 if ($debug_enabled) {
1128 _debug("update_rss_feed: done collecting data [TITLE:$entry_title]");
1131 db_query($link, "BEGIN");
1133 if (db_num_rows($result) == 0) {
1135 if ($debug_enabled) {
1136 _debug("update_rss_feed: base guid not found");
1139 // base post entry does not exist, create it
1141 $result = db_query($link,
1142 "INSERT INTO ttrss_entries
1159 '$entry_timestamp_fmt',
1169 // we keep encountering the entry in feeds, so we need to
1170 // update date_updated column so that we don't get horrible
1171 // dupes when the entry gets purged and reinserted again e.g.
1172 // in the case of SLOW SLOW OMG SLOW updating feeds
1174 $base_entry_id = db_fetch_result($result, 0, "id");
1176 db_query($link, "UPDATE ttrss_entries SET date_updated = NOW()
1177 WHERE id = '$base_entry_id'");
1180 // now it should exist, if not - bad luck then
1182 $result = db_query($link, "SELECT
1183 id,content_hash,no_orig_date,title,
1184 ".SUBSTRING_FOR_DATE."(date_updated,1,19) as date_updated,
1185 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated,
1189 WHERE guid = '$entry_guid'");
1194 if (db_num_rows($result) == 1) {
1196 if ($debug_enabled) {
1197 _debug("update_rss_feed: base guid found, checking for user record");
1200 // this will be used below in update handler
1201 $orig_content_hash = db_fetch_result($result, 0, "content_hash");
1202 $orig_title = db_fetch_result($result, 0, "title");
1203 $orig_num_comments = db_fetch_result($result, 0, "num_comments");
1204 $orig_date_updated = strtotime(db_fetch_result($result,
1205 0, "date_updated"));
1207 $ref_id = db_fetch_result($result, 0, "id");
1208 $entry_ref_id = $ref_id;
1210 // check for user post link to main table
1212 // do we allow duplicate posts with same GUID in different feeds?
1213 if (get_pref($link, "ALLOW_DUPLICATE_POSTS", $owner_uid, false)) {
1214 $dupcheck_qpart = "AND (feed_id = '$feed' OR feed_id IS NULL)";
1216 $dupcheck_qpart = "";
1219 /* Collect article tags here so we could filter by them: */
1221 $article_filters = get_article_filters($filters, $entry_title,
1222 $entry_content, $entry_link, $entry_timestamp, $entry_author,
1225 if ($debug_enabled) {
1226 _debug("update_rss_feed: article filters: ");
1227 if (count($article_filters) != 0) {
1228 print_r($article_filters);
1232 if (find_article_filter($article_filters, "filter")) {
1233 db_query($link, "COMMIT"); // close transaction in progress
1237 $score = calculate_article_score($article_filters);
1239 if ($debug_enabled) {
1240 _debug("update_rss_feed: initial score: $score");
1243 $query = "SELECT ref_id, int_id FROM ttrss_user_entries WHERE
1244 ref_id = '$ref_id' AND owner_uid = '$owner_uid'
1247 // if ($_REQUEST["xdebug"]) print "$query\n";
1249 $result = db_query($link, $query);
1251 // okay it doesn't exist - create user entry
1252 if (db_num_rows($result) == 0) {
1254 if ($debug_enabled) {
1255 _debug("update_rss_feed: user record not found, creating...");
1258 if ($score >= -500 && !find_article_filter($article_filters, 'catchup')) {
1260 $last_read_qpart = 'NULL';
1263 $last_read_qpart = 'NOW()';
1266 if (find_article_filter($article_filters, 'mark') || $score > 1000) {
1272 if (find_article_filter($article_filters, 'publish')) {
1273 $published = 'true';
1275 $published = 'false';
1278 $result = db_query($link,
1279 "INSERT INTO ttrss_user_entries
1280 (ref_id, owner_uid, feed_id, unread, last_read, marked,
1281 published, score, tag_cache, label_cache, uuid)
1282 VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
1283 $last_read_qpart, $marked, $published, '$score', '', '', '')");
1285 if (PUBSUBHUBBUB_HUB && $published == 'true') {
1286 $rss_link = get_self_url_prefix() .
1287 "/public.php?op=rss&id=-2&key=" .
1288 get_feed_access_key($link, -2, false, $owner_uid);
1290 $p = new Publisher(PUBSUBHUBBUB_HUB);
1292 $pubsub_result = $p->publish_update($rss_link);
1295 $result = db_query($link,
1296 "SELECT int_id FROM ttrss_user_entries WHERE
1297 ref_id = '$ref_id' AND owner_uid = '$owner_uid' AND
1298 feed_id = '$feed' LIMIT 1");
1300 if (db_num_rows($result) == 1) {
1301 $entry_int_id = db_fetch_result($result, 0, "int_id");
1304 if ($debug_enabled) {
1305 _debug("update_rss_feed: user record FOUND");
1308 $entry_ref_id = db_fetch_result($result, 0, "ref_id");
1309 $entry_int_id = db_fetch_result($result, 0, "int_id");
1312 if ($debug_enabled) {
1313 _debug("update_rss_feed: RID: $entry_ref_id, IID: $entry_int_id");
1316 $post_needs_update = false;
1317 $update_insignificant = false;
1319 if ($orig_num_comments != $num_comments) {
1320 $post_needs_update = true;
1321 $update_insignificant = true;
1324 if ($content_hash != $orig_content_hash) {
1325 $post_needs_update = true;
1326 $update_insignificant = false;
1329 if (db_escape_string($orig_title) != $entry_title) {
1330 $post_needs_update = true;
1331 $update_insignificant = false;
1334 // if post needs update, update it and mark all user entries
1335 // linking to this post as updated
1336 if ($post_needs_update) {
1338 if (defined('DAEMON_EXTENDED_DEBUG')) {
1339 _debug("update_rss_feed: post $entry_guid needs update...");
1342 // print "<!-- post $orig_title needs update : $post_needs_update -->";
1344 db_query($link, "UPDATE ttrss_entries
1345 SET title = '$entry_title', content = '$entry_content',
1346 content_hash = '$content_hash',
1347 updated = '$entry_timestamp_fmt',
1348 num_comments = '$num_comments'
1349 WHERE id = '$ref_id'");
1351 if (!$update_insignificant) {
1352 if ($mark_unread_on_update) {
1353 db_query($link, "UPDATE ttrss_user_entries
1354 SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
1355 } else if ($update_on_checksum_change) {
1356 db_query($link, "UPDATE ttrss_user_entries
1357 SET last_read = null WHERE ref_id = '$ref_id'
1358 AND unread = false");
1364 db_query($link, "COMMIT");
1366 if ($debug_enabled) {
1367 _debug("update_rss_feed: assigning labels...");
1370 assign_article_to_labels($link, $entry_ref_id, $article_filters,
1373 if ($debug_enabled) {
1374 _debug("update_rss_feed: looking for enclosures...");
1379 $enclosures = array();
1381 if ($use_simplepie) {
1382 $encs = $item->get_enclosures();
1384 if (is_array($encs)) {
1385 foreach ($encs as $e) {
1387 $e->link, $e->type, $e->length);
1389 array_push($enclosures, $e_item);
1396 $e_ctr = $item['enclosure#'];
1399 $e_item = array($item['enclosure@url'],
1400 $item['enclosure@type'],
1401 $item['enclosure@length']);
1403 array_push($enclosures, $e_item);
1405 for ($i = 0; $i <= $e_ctr; $i++ ) {
1407 if ($item["enclosure#$i@url"]) {
1408 $e_item = array($item["enclosure#$i@url"],
1409 $item["enclosure#$i@type"],
1410 $item["enclosure#$i@length"]);
1411 array_push($enclosures, $e_item);
1417 // can there be many of those? yes -fox
1419 $m_ctr = $item['media']['content#'];
1422 $e_item = array($item['media']['content@url'],
1423 $item['media']['content@medium'],
1424 $item['media']['content@length']);
1426 array_push($enclosures, $e_item);
1428 for ($i = 0; $i <= $m_ctr; $i++ ) {
1430 if ($item["media"]["content#$i@url"]) {
1431 $e_item = array($item["media"]["content#$i@url"],
1432 $item["media"]["content#$i@medium"],
1433 $item["media"]["content#$i@length"]);
1434 array_push($enclosures, $e_item);
1442 if ($debug_enabled) {
1443 _debug("update_rss_feed: article enclosures:");
1444 print_r($enclosures);
1447 db_query($link, "BEGIN");
1449 foreach ($enclosures as $enc) {
1450 $enc_url = db_escape_string($enc[0]);
1451 $enc_type = db_escape_string($enc[1]);
1452 $enc_dur = db_escape_string($enc[2]);
1454 $result = db_query($link, "SELECT id FROM ttrss_enclosures
1455 WHERE content_url = '$enc_url' AND post_id = '$entry_ref_id'");
1457 if (db_num_rows($result) == 0) {
1458 db_query($link, "INSERT INTO ttrss_enclosures
1459 (content_url, content_type, title, duration, post_id) VALUES
1460 ('$enc_url', '$enc_type', '', '$enc_dur', '$entry_ref_id')");
1464 db_query($link, "COMMIT");
1466 // check for manual tags (we have to do it here since they're loaded from filters)
1468 foreach ($article_filters as $f) {
1469 if ($f[0] == "tag") {
1471 $manual_tags = trim_array(explode(",", $f[1]));
1473 foreach ($manual_tags as $tag) {
1474 if (tag_is_valid($tag)) {
1475 array_push($entry_tags, $tag);
1483 $boring_tags = trim_array(explode(",", mb_strtolower(get_pref($link,
1484 'BLACKLISTED_TAGS', $owner_uid, ''), 'utf-8')));
1486 $filtered_tags = array();
1487 $tags_to_cache = array();
1489 if ($entry_tags && is_array($entry_tags)) {
1490 foreach ($entry_tags as $tag) {
1491 if (array_search($tag, $boring_tags) === false) {
1492 array_push($filtered_tags, $tag);
1497 $filtered_tags = array_unique($filtered_tags);
1499 if ($debug_enabled) {
1500 _debug("update_rss_feed: filtered article tags:");
1501 print_r($filtered_tags);
1504 // Save article tags in the database
1506 if (count($filtered_tags) > 0) {
1508 db_query($link, "BEGIN");
1510 foreach ($filtered_tags as $tag) {
1512 $tag = sanitize_tag($tag);
1513 $tag = db_escape_string($tag);
1515 if (!tag_is_valid($tag)) continue;
1517 $result = db_query($link, "SELECT id FROM ttrss_tags
1518 WHERE tag_name = '$tag' AND post_int_id = '$entry_int_id' AND
1519 owner_uid = '$owner_uid' LIMIT 1");
1521 if ($result && db_num_rows($result) == 0) {
1523 db_query($link, "INSERT INTO ttrss_tags
1524 (owner_uid,tag_name,post_int_id)
1525 VALUES ('$owner_uid','$tag', '$entry_int_id')");
1528 array_push($tags_to_cache, $tag);
1531 /* update the cache */
1533 $tags_to_cache = array_unique($tags_to_cache);
1535 $tags_str = db_escape_string(join(",", $tags_to_cache));
1537 db_query($link, "UPDATE ttrss_user_entries
1538 SET tag_cache = '$tags_str' WHERE ref_id = '$entry_ref_id'
1539 AND owner_uid = $owner_uid");
1541 db_query($link, "COMMIT");
1544 if ($debug_enabled) {
1545 _debug("update_rss_feed: article processed");
1549 if (!$last_updated) {
1550 if ($debug_enabled) {
1551 _debug("update_rss_feed: new feed, catching it up...");
1553 catchup_feed($link, $feed, false, $owner_uid);
1556 if ($debug_enabled) {
1557 _debug("purging feed...");
1560 purge_feed($link, $feed, 0, $debug_enabled);
1562 db_query($link, "UPDATE ttrss_feeds
1563 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
1565 // db_query($link, "COMMIT");
1569 if ($use_simplepie) {
1570 $error_msg = mb_substr($rss->error(), 0, 250);
1572 $error_msg = mb_substr(magpie_error(), 0, 250);
1575 if ($debug_enabled) {
1576 _debug("update_rss_feed: error fetching feed: $error_msg");
1579 $error_msg = db_escape_string($error_msg);
1582 "UPDATE ttrss_feeds SET last_error = '$error_msg',
1583 last_updated = NOW() WHERE id = '$feed'");
1586 if ($use_simplepie) {
1590 if ($debug_enabled) {
1591 _debug("update_rss_feed: done");
1596 function print_select($id, $default, $values, $attributes = "") {
1597 print "<select name=\"$id\" id=\"$id\" $attributes>";
1598 foreach ($values as $v) {
1600 $sel = "selected=\"1\"";
1604 print "<option value=\"$v\" $sel>$v</option>";
1609 function print_select_hash($id, $default, $values, $attributes = "") {
1610 print "<select name=\"$id\" id='$id' $attributes>";
1611 foreach (array_keys($values) as $v) {
1613 $sel = 'selected="selected"';
1617 print "<option $sel value=\"$v\">".$values[$v]."</option>";
1623 function get_article_filters($filters, $title, $content, $link, $timestamp, $author, $tags) {
1626 if ($filters["title"]) {
1627 foreach ($filters["title"] as $filter) {
1628 $reg_exp = $filter["reg_exp"];
1629 $inverse = $filter["inverse"];
1630 if ((!$inverse && @preg_match("/$reg_exp/i", $title)) ||
1631 ($inverse && !@preg_match("/$reg_exp/i", $title))) {
1633 array_push($matches, array($filter["action"], $filter["action_param"]));
1638 if ($filters["content"]) {
1639 foreach ($filters["content"] as $filter) {
1640 $reg_exp = $filter["reg_exp"];
1641 $inverse = $filter["inverse"];
1643 if ((!$inverse && @preg_match("/$reg_exp/i", $content)) ||
1644 ($inverse && !@preg_match("/$reg_exp/i", $content))) {
1646 array_push($matches, array($filter["action"], $filter["action_param"]));
1651 if ($filters["both"]) {
1652 foreach ($filters["both"] as $filter) {
1653 $reg_exp = $filter["reg_exp"];
1654 $inverse = $filter["inverse"];
1657 if (!@preg_match("/$reg_exp/i", $title) && !preg_match("/$reg_exp/i", $content)) {
1658 array_push($matches, array($filter["action"], $filter["action_param"]));
1661 if (@preg_match("/$reg_exp/i", $title) || preg_match("/$reg_exp/i", $content)) {
1662 array_push($matches, array($filter["action"], $filter["action_param"]));
1668 if ($filters["link"]) {
1669 $reg_exp = $filter["reg_exp"];
1670 foreach ($filters["link"] as $filter) {
1671 $reg_exp = $filter["reg_exp"];
1672 $inverse = $filter["inverse"];
1674 if ((!$inverse && @preg_match("/$reg_exp/i", $link)) ||
1675 ($inverse && !@preg_match("/$reg_exp/i", $link))) {
1677 array_push($matches, array($filter["action"], $filter["action_param"]));
1682 if ($filters["date"]) {
1683 $reg_exp = $filter["reg_exp"];
1684 foreach ($filters["date"] as $filter) {
1685 $date_modifier = $filter["filter_param"];
1686 $inverse = $filter["inverse"];
1687 $check_timestamp = strtotime($filter["reg_exp"]);
1689 # no-op when timestamp doesn't parse to prevent misfires
1691 if ($check_timestamp) {
1694 if ($date_modifier == "before" && $timestamp < $check_timestamp ||
1695 $date_modifier == "after" && $timestamp > $check_timestamp) {
1699 if ($inverse) $match_ok = !$match_ok;
1702 array_push($matches, array($filter["action"], $filter["action_param"]));
1708 if ($filters["author"]) {
1709 foreach ($filters["author"] as $filter) {
1710 $reg_exp = $filter["reg_exp"];
1711 $inverse = $filter["inverse"];
1712 if ((!$inverse && @preg_match("/$reg_exp/i", $author)) ||
1713 ($inverse && !@preg_match("/$reg_exp/i", $author))) {
1715 array_push($matches, array($filter["action"], $filter["action_param"]));
1720 if ($filters["tag"]) {
1722 $tag_string = join(",", $tags);
1724 foreach ($filters["tag"] as $filter) {
1725 $reg_exp = $filter["reg_exp"];
1726 $inverse = $filter["inverse"];
1728 if ((!$inverse && @preg_match("/$reg_exp/i", $tag_string)) ||
1729 ($inverse && !@preg_match("/$reg_exp/i", $tag_string))) {
1731 array_push($matches, array($filter["action"], $filter["action_param"]));
1740 function find_article_filter($filters, $filter_name) {
1741 foreach ($filters as $f) {
1742 if ($f[0] == $filter_name) {
1749 function calculate_article_score($filters) {
1752 foreach ($filters as $f) {
1753 if ($f[0] == "score") {
1760 function assign_article_to_labels($link, $id, $filters, $owner_uid) {
1761 foreach ($filters as $f) {
1762 if ($f[0] == "label") {
1763 label_add_article($link, $id, $f[1], $owner_uid);
1768 function getmicrotime() {
1769 list($usec, $sec) = explode(" ",microtime());
1770 return ((float)$usec + (float)$sec);
1773 function print_radio($id, $default, $true_is, $values, $attributes = "") {
1774 foreach ($values as $v) {
1781 if ($v == $true_is) {
1782 $sel .= " value=\"1\"";
1784 $sel .= " value=\"0\"";
1787 print "<input class=\"noborder\" dojoType=\"dijit.form.RadioButton\"
1788 type=\"radio\" $sel $attributes name=\"$id\"> $v ";
1793 function initialize_user_prefs($link, $uid, $profile = false) {
1795 $uid = db_escape_string($uid);
1799 $profile_qpart = "AND profile IS NULL";
1801 $profile_qpart = "AND profile = '$profile'";
1804 if (get_schema_version($link) < 63) $profile_qpart = "";
1806 db_query($link, "BEGIN");
1808 $result = db_query($link, "SELECT pref_name,def_value FROM ttrss_prefs");
1810 $u_result = db_query($link, "SELECT pref_name
1811 FROM ttrss_user_prefs WHERE owner_uid = '$uid' $profile_qpart");
1813 $active_prefs = array();
1815 while ($line = db_fetch_assoc($u_result)) {
1816 array_push($active_prefs, $line["pref_name"]);
1819 while ($line = db_fetch_assoc($result)) {
1820 if (array_search($line["pref_name"], $active_prefs) === FALSE) {
1821 // print "adding " . $line["pref_name"] . "<br>";
1823 if (get_schema_version($link) < 63) {
1824 db_query($link, "INSERT INTO ttrss_user_prefs
1825 (owner_uid,pref_name,value) VALUES
1826 ('$uid', '".$line["pref_name"]."','".$line["def_value"]."')");
1829 db_query($link, "INSERT INTO ttrss_user_prefs
1830 (owner_uid,pref_name,value, profile) VALUES
1831 ('$uid', '".$line["pref_name"]."','".$line["def_value"]."', $profile)");
1837 db_query($link, "COMMIT");
1841 function lookup_user_id($link, $user) {
1843 $result = db_query($link, "SELECT id FROM ttrss_users WHERE login = '$user'");
1845 if (db_num_rows($result) == 1) {
1846 return db_fetch_result($result, 0, "id");
1852 /* function http_authenticate_user($link) {
1853 if (!$_SERVER["PHP_AUTH_USER"]) {
1855 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS RSSGen"');
1856 header('HTTP/1.0 401 Unauthorized');
1860 $auth_result = authenticate_user($link,
1861 $_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"]);
1863 if (!$auth_result) {
1864 header('WWW-Authenticate: Basic realm="Tiny Tiny RSS RSSGen"');
1865 header('HTTP/1.0 401 Unauthorized');
1873 function get_ssl_certificate_id() {
1874 if ($_SERVER["REDIRECT_SSL_CLIENT_M_SERIAL"]) {
1875 return sha1($_SERVER["REDIRECT_SSL_CLIENT_M_SERIAL"] .
1876 $_SERVER["REDIRECT_SSL_CLIENT_V_START"] .
1877 $_SERVER["REDIRECT_SSL_CLIENT_V_END"] .
1878 $_SERVER["REDIRECT_SSL_CLIENT_S_DN"]);
1883 function get_login_by_ssl_certificate($link) {
1885 $cert_serial = db_escape_string(get_ssl_certificate_id());
1888 $result = db_query($link, "SELECT login FROM ttrss_user_prefs, ttrss_users
1889 WHERE pref_name = 'SSL_CERT_SERIAL' AND value = '$cert_serial' AND
1890 owner_uid = ttrss_users.id");
1892 if (db_num_rows($result) != 0) {
1893 return db_escape_string(db_fetch_result($result, 0, "login"));
1900 function get_remote_user($link) {
1902 if (defined('ALLOW_REMOTE_USER_AUTH') && ALLOW_REMOTE_USER_AUTH) {
1903 return db_escape_string($_SERVER["REMOTE_USER"]);
1906 return db_escape_string(get_login_by_ssl_certificate($link));
1909 function get_remote_fakepass($link) {
1910 if (get_remote_user($link))
1916 function authenticate_user($link, $login, $password, $force_auth = false) {
1918 if (!SINGLE_USER_MODE) {
1920 $pwd_hash1 = encrypt_password($password);
1921 $pwd_hash2 = encrypt_password($password, $login);
1922 $login = db_escape_string($login);
1924 $remote_user = get_remote_user($link);
1926 if ($remote_user && $remote_user == $login && $login != "admin") {
1928 $login = $remote_user;
1930 $query = "SELECT id,login,access_level,pwd_hash
1931 FROM ttrss_users WHERE
1934 if (defined('AUTO_CREATE_USER') && AUTO_CREATE_USER
1935 && $_SERVER["REMOTE_USER"]) {
1936 $result = db_query($link, $query);
1939 if (db_num_rows($result) == 0) {
1940 $query2 = "INSERT INTO ttrss_users
1941 (login,access_level,last_login,created)
1942 VALUES ('$login', 0, null, NOW())";
1943 db_query($link, $query2);
1948 $query = "SELECT id,login,access_level,pwd_hash
1949 FROM ttrss_users WHERE
1950 login = '$login' AND (pwd_hash = '$pwd_hash1' OR
1951 pwd_hash = '$pwd_hash2')";
1954 $result = db_query($link, $query);
1956 if (db_num_rows($result) == 1) {
1957 $_SESSION["uid"] = db_fetch_result($result, 0, "id");
1958 $_SESSION["name"] = db_fetch_result($result, 0, "login");
1959 $_SESSION["access_level"] = db_fetch_result($result, 0, "access_level");
1961 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
1965 // LemonLDAP can send user informations via HTTP HEADER
1966 if (defined('AUTO_CREATE_USER') && AUTO_CREATE_USER){
1968 $fullname = $_SERVER['HTTP_USER_NAME'] ? $_SERVER['HTTP_USER_NAME'] : $_SERVER['AUTHENTICATE_CN'];
1970 $fullname = db_escape_string($fullname);
1971 db_query($link, "UPDATE ttrss_users SET full_name = '$fullname' WHERE id = " .
1975 $email = $_SERVER['HTTP_USER_MAIL'] ? $_SERVER['HTTP_USER_MAIL'] : $_SERVER['AUTHENTICATE_MAIL'];
1977 $email = db_escape_string($email);
1978 db_query($link, "UPDATE ttrss_users SET email = '$email' WHERE id = " .
1983 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
1984 $_SESSION["pwd_hash"] = db_fetch_result($result, 0, "pwd_hash");
1986 $_SESSION["last_version_check"] = time();
1988 initialize_user_prefs($link, $_SESSION["uid"]);
1997 $_SESSION["uid"] = 1;
1998 $_SESSION["name"] = "admin";
2000 $_SESSION["ip_address"] = $_SERVER["REMOTE_ADDR"];
2002 initialize_user_prefs($link, $_SESSION["uid"]);
2008 function make_password($length = 8) {
2011 $possible = "0123456789abcdfghjkmnpqrstvwxyzABCDFGHJKMNPQRSTVWXYZ";
2015 while ($i < $length) {
2016 $char = substr($possible, mt_rand(0, strlen($possible)-1), 1);
2018 if (!strstr($password, $char)) {
2026 // this is called after user is created to initialize default feeds, labels
2029 // user preferences are checked on every login, not here
2031 function initialize_user($link, $uid) {
2033 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
2034 values ('$uid', 'Tiny Tiny RSS: New Releases',
2035 'http://tt-rss.org/releases.rss')");
2037 db_query($link, "insert into ttrss_feeds (owner_uid,title,feed_url)
2038 values ('$uid', 'Tiny Tiny RSS: Forum',
2039 'http://tt-rss.org/forum/rss.php')");
2042 function logout_user() {
2044 if (isset($_COOKIE[session_name()])) {
2045 setcookie(session_name(), '', time()-42000, '/');
2049 function get_script_urlpath() {
2050 return preg_replace('/\/[^\/]*$/', "", $_SERVER["REQUEST_URI"]);
2053 function validate_session($link) {
2054 if (SINGLE_USER_MODE) return true;
2056 $check_ip = $_SESSION['ip_address'];
2058 switch (SESSION_CHECK_ADDRESS) {
2063 $check_ip = substr($check_ip, 0, strrpos($check_ip, '.')+1);
2066 $check_ip = substr($check_ip, 0, strrpos($check_ip, '.'));
2067 $check_ip = substr($check_ip, 0, strrpos($check_ip, '.')+1);
2071 if ($check_ip && strpos($_SERVER['REMOTE_ADDR'], $check_ip) !== 0) {
2072 $_SESSION["login_error_msg"] =
2073 __("Session failed to validate (incorrect IP)");
2077 if ($_SESSION["ref_schema_version"] != get_schema_version($link, true))
2080 if ($_SESSION["uid"]) {
2082 $result = db_query($link,
2083 "SELECT pwd_hash FROM ttrss_users WHERE id = '".$_SESSION["uid"]."'");
2085 $pwd_hash = db_fetch_result($result, 0, "pwd_hash");
2087 if ($pwd_hash != $_SESSION["pwd_hash"]) {
2092 /* if ($_SESSION["cookie_lifetime"] && $_SESSION["uid"]) {
2094 //print_r($_SESSION);
2096 if (time() > $_SESSION["cookie_lifetime"]) {
2104 function login_sequence($link, $mobile = false) {
2105 $_SESSION["prefs_cache"] = array();
2107 if (!SINGLE_USER_MODE) {
2109 $login_action = $_POST["login_action"];
2111 # try to authenticate user if called from login form
2112 if ($login_action == "do_login") {
2113 $login = db_escape_string($_POST["login"]);
2114 $password = $_POST["password"];
2115 $remember_me = $_POST["remember_me"];
2117 if (authenticate_user($link, $login, $password)) {
2118 $_POST["password"] = "";
2120 $_SESSION["language"] = $_POST["language"];
2121 $_SESSION["ref_schema_version"] = get_schema_version($link, true);
2122 $_SESSION["bw_limit"] = !!$_POST["bw_limit"];
2124 if ($_POST["profile"]) {
2126 $profile = db_escape_string($_POST["profile"]);
2128 $result = db_query($link, "SELECT id FROM ttrss_settings_profiles
2129 WHERE id = '$profile' AND owner_uid = " . $_SESSION["uid"]);
2131 if (db_num_rows($result) != 0) {
2132 $_SESSION["profile"] = $profile;
2133 $_SESSION["prefs_cache"] = array();
2137 if ($_REQUEST['return']) {
2138 header("Location: " . $_REQUEST['return']);
2140 header("Location: " . $_SERVER["REQUEST_URI"]);
2147 $_SESSION["login_error_msg"] = __("Incorrect username or password");
2151 if (!$_SESSION["uid"] || !validate_session($link)) {
2153 if (get_remote_user($link) && AUTO_LOGIN) {
2154 authenticate_user($link, get_remote_user($link), null);
2155 $_SESSION["ref_schema_version"] = get_schema_version($link, true);
2157 render_login_form($link, $mobile);
2158 //header("Location: login.php");
2162 /* bump login timestamp */
2163 db_query($link, "UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
2166 if ($_SESSION["language"] && SESSION_COOKIE_LIFETIME > 0) {
2167 setcookie("ttrss_lang", $_SESSION["language"],
2168 time() + SESSION_COOKIE_LIFETIME);
2171 // try to remove possible duplicates from feed counter cache
2172 // ccache_cleanup($link, $_SESSION["uid"]);
2176 return authenticate_user($link, "admin", null);
2180 function truncate_string($str, $max_len, $suffix = '…') {
2181 if (mb_strlen($str, "utf-8") > $max_len - 3) {
2182 return mb_substr($str, 0, $max_len, "utf-8") . $suffix;
2188 function theme_image($link, $filename) {
2190 $theme_path = get_user_theme_path($link);
2192 if ($theme_path && is_file($theme_path.$filename)) {
2193 return $theme_path.$filename;
2202 function get_user_theme($link) {
2204 if (get_schema_version($link) >= 63 && $_SESSION["uid"]) {
2205 $theme_name = get_pref($link, "_THEME_ID");
2206 if (is_dir("themes/$theme_name")) {
2217 function get_user_theme_path($link) {
2220 if (get_schema_version($link) >= 63 && $_SESSION["uid"]) {
2221 $theme_name = get_pref($link, "_THEME_ID");
2223 if ($theme_name && is_dir("themes/$theme_name")) {
2224 $theme_path = "themes/$theme_name/";
2233 if (is_file("$theme_path/theme.ini")) {
2234 $ini = parse_ini_file("$theme_path/theme.ini", true);
2235 if ($ini['theme']['version'] >= THEME_VERSION_REQUIRED) {
2243 function get_user_theme_options($link) {
2244 $t = get_user_theme_path($link);
2247 if (is_file("$t/theme.ini")) {
2248 $ini = parse_ini_file("$t/theme.ini", true);
2249 if ($ini['theme']['version']) {
2250 return $ini['theme']['options'];
2257 function print_theme_includes($link) {
2259 $t = get_user_theme_path($link);
2263 print "<link rel=\"stylesheet\" type=\"text/css\"
2264 href=\"$t/theme.css?$time \">";
2265 if (file_exists("$t/theme.js")) {
2266 print "<script type=\"text/javascript\" src=\"$t/theme.js?$time\">
2272 function get_all_themes() {
2273 $themes = glob("themes/*");
2279 foreach ($themes as $t) {
2280 if (is_file("$t/theme.ini")) {
2281 $ini = parse_ini_file("$t/theme.ini", true);
2282 if ($ini['theme']['version'] >= THEME_VERSION_REQUIRED &&
2283 !$ini['theme']['disabled']) {
2285 $entry["path"] = $t;
2286 $entry["base"] = basename($t);
2287 $entry["name"] = $ini['theme']['name'];
2288 $entry["version"] = $ini['theme']['version'];
2289 $entry["author"] = $ini['theme']['author'];
2290 $entry["options"] = $ini['theme']['options'];
2291 array_push($rv, $entry);
2299 function convert_timestamp($timestamp, $source_tz, $dest_tz) {
2302 $source_tz = new DateTimeZone($source_tz);
2303 } catch (Exception $e) {
2304 $source_tz = new DateTimeZone('UTC');
2308 $dest_tz = new DateTimeZone($dest_tz);
2309 } catch (Exception $e) {
2310 $dest_tz = new DateTimeZone('UTC');
2313 $dt = new DateTime(date('Y-m-d H:i:s', $timestamp), $source_tz);
2314 return $dt->format('U') + $dest_tz->getOffset($dt);
2317 function make_local_datetime($link, $timestamp, $long, $owner_uid = false,
2318 $no_smart_dt = false) {
2320 if (!$owner_uid) $owner_uid = $_SESSION['uid'];
2321 if (!$timestamp) $timestamp = '1970-01-01 0:00';
2326 # We store date in UTC internally
2327 $dt = new DateTime($timestamp, $utc_tz);
2329 if ($tz_offset == -1) {
2331 $user_tz_string = get_pref($link, 'USER_TIMEZONE', $owner_uid);
2334 $user_tz = new DateTimeZone($user_tz_string);
2335 } catch (Exception $e) {
2339 $tz_offset = $user_tz->getOffset($dt);
2342 $user_timestamp = $dt->format('U') + $tz_offset;
2344 if (!$no_smart_dt) {
2345 return smart_date_time($link, $user_timestamp,
2346 $tz_offset, $owner_uid);
2349 $format = get_pref($link, 'LONG_DATE_FORMAT', $owner_uid);
2351 $format = get_pref($link, 'SHORT_DATE_FORMAT', $owner_uid);
2353 return date($format, $user_timestamp);
2357 function smart_date_time($link, $timestamp, $tz_offset = 0, $owner_uid = false) {
2358 if (!$owner_uid) $owner_uid = $_SESSION['uid'];
2360 if (date("Y.m.d", $timestamp) == date("Y.m.d", time() + $tz_offset)) {
2361 return date("G:i", $timestamp);
2362 } else if (date("Y", $timestamp) == date("Y", time() + $tz_offset)) {
2363 $format = get_pref($link, 'SHORT_DATE_FORMAT', $owner_uid);
2364 return date($format, $timestamp);
2366 $format = get_pref($link, 'LONG_DATE_FORMAT', $owner_uid);
2367 return date($format, $timestamp);
2371 function smart_date($timestamp) {
2372 if (date("Y.m.d", $timestamp) == date("Y.m.d")) {
2374 } else if (date("Y", $timestamp) == date("Y")) {
2375 return date("D m", $timestamp);
2377 return date("Y/m/d", $timestamp);
2381 function sql_bool_to_string($s) {
2382 if ($s == "t" || $s == "1") {
2389 function sql_bool_to_bool($s) {
2390 if ($s == "t" || $s == "1" || $s == "true") {
2397 function bool_to_sql_bool($s) {
2405 function toggleEvenOdd($a) {
2412 // Session caching removed due to causing wrong redirects to upgrade
2413 // script when get_schema_version() is called on an obsolete session
2414 // created on a previous schema version.
2415 function get_schema_version($link, $nocache = false) {
2416 global $schema_version;
2418 if (!$schema_version) {
2419 $result = db_query($link, "SELECT schema_version FROM ttrss_version");
2420 $version = db_fetch_result($result, 0, "schema_version");
2421 $schema_version = $version;
2424 return $schema_version;
2428 function sanity_check($link) {
2433 $schema_version = get_schema_version($link, true);
2435 if ($schema_version != SCHEMA_VERSION) {
2439 if (DB_TYPE == "mysql") {
2440 $result = db_query($link, "SELECT true", false);
2441 if (db_num_rows($result) != 1) {
2446 if (db_escape_string("testTEST") != "testTEST") {
2450 return array("code" => $error_code, "message" => $ERRORS[$error_code]);
2453 function file_is_locked($filename) {
2454 if (function_exists('flock')) {
2455 $fp = @fopen(LOCK_DIRECTORY . "/$filename", "r");
2457 if (flock($fp, LOCK_EX | LOCK_NB)) {
2458 flock($fp, LOCK_UN);
2468 return true; // consider the file always locked and skip the test
2471 function make_lockfile($filename) {
2472 $fp = fopen(LOCK_DIRECTORY . "/$filename", "w");
2474 if (flock($fp, LOCK_EX | LOCK_NB)) {
2475 if (function_exists('posix_getpid')) {
2476 fwrite($fp, posix_getpid() . "\n");
2484 function make_stampfile($filename) {
2485 $fp = fopen(LOCK_DIRECTORY . "/$filename", "w");
2487 if (flock($fp, LOCK_EX | LOCK_NB)) {
2488 fwrite($fp, time() . "\n");
2489 flock($fp, LOCK_UN);
2497 function sql_random_function() {
2498 if (DB_TYPE == "mysql") {
2505 function catchup_feed($link, $feed, $cat_view, $owner_uid = false) {
2507 if (!$owner_uid) $owner_uid = $_SESSION['uid'];
2509 //if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
2511 if (is_numeric($feed)) {
2517 $cat_qpart = "cat_id = '$feed'";
2519 $cat_qpart = "cat_id IS NULL";
2522 $tmp_result = db_query($link, "SELECT id
2523 FROM ttrss_feeds WHERE $cat_qpart AND owner_uid = $owner_uid");
2525 while ($tmp_line = db_fetch_assoc($tmp_result)) {
2527 $tmp_feed = $tmp_line["id"];
2529 db_query($link, "UPDATE ttrss_user_entries
2530 SET unread = false,last_read = NOW()
2531 WHERE feed_id = '$tmp_feed' AND owner_uid = $owner_uid");
2533 } else if ($feed == -2) {
2535 db_query($link, "UPDATE ttrss_user_entries
2536 SET unread = false,last_read = NOW() WHERE (SELECT COUNT(*)
2537 FROM ttrss_user_labels2 WHERE article_id = ref_id) > 0
2538 AND unread = true AND owner_uid = $owner_uid");
2541 } else if ($feed > 0) {
2543 db_query($link, "UPDATE ttrss_user_entries
2544 SET unread = false,last_read = NOW()
2545 WHERE feed_id = '$feed' AND owner_uid = $owner_uid");
2547 } else if ($feed < 0 && $feed > -10) { // special, like starred
2550 db_query($link, "UPDATE ttrss_user_entries
2551 SET unread = false,last_read = NOW()
2552 WHERE marked = true AND owner_uid = $owner_uid");
2556 db_query($link, "UPDATE ttrss_user_entries
2557 SET unread = false,last_read = NOW()
2558 WHERE published = true AND owner_uid = $owner_uid");
2563 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE");
2565 if (DB_TYPE == "pgsql") {
2566 $match_part = "updated > NOW() - INTERVAL '$intl hour' ";
2568 $match_part = "updated > DATE_SUB(NOW(),
2569 INTERVAL $intl HOUR) ";
2572 $result = db_query($link, "SELECT id FROM ttrss_entries,
2573 ttrss_user_entries WHERE $match_part AND
2575 ttrss_user_entries.ref_id = ttrss_entries.id AND
2576 owner_uid = $owner_uid");
2578 $affected_ids = array();
2580 while ($line = db_fetch_assoc($result)) {
2581 array_push($affected_ids, $line["id"]);
2584 catchupArticlesById($link, $affected_ids, 0);
2588 db_query($link, "UPDATE ttrss_user_entries
2589 SET unread = false,last_read = NOW()
2590 WHERE owner_uid = $owner_uid");
2593 } else if ($feed < -10) { // label
2595 $label_id = -$feed - 11;
2597 db_query($link, "UPDATE ttrss_user_entries, ttrss_user_labels2
2598 SET unread = false, last_read = NOW()
2599 WHERE label_id = '$label_id' AND unread = true
2600 AND owner_uid = '$owner_uid' AND ref_id = article_id");
2604 ccache_update($link, $feed, $owner_uid, $cat_view);
2607 db_query($link, "BEGIN");
2609 $tag_name = db_escape_string($feed);
2611 $result = db_query($link, "SELECT post_int_id FROM ttrss_tags
2612 WHERE tag_name = '$tag_name' AND owner_uid = $owner_uid");
2614 while ($line = db_fetch_assoc($result)) {
2615 db_query($link, "UPDATE ttrss_user_entries SET
2616 unread = false, last_read = NOW()
2617 WHERE int_id = " . $line["post_int_id"]);
2619 db_query($link, "COMMIT");
2623 function getAllCounters($link, $omode = "flc", $active_feed = false) {
2625 if (!$omode) $omode = "flc";
2627 $data = getGlobalCounters($link);
2629 $data = array_merge($data, getVirtCounters($link));
2631 if (strchr($omode, "l")) $data = array_merge($data, getLabelCounters($link));
2632 if (strchr($omode, "f")) $data = array_merge($data, getFeedCounters($link, $active_feed));
2633 if (strchr($omode, "t")) $data = array_merge($data, getTagCounters($link));
2634 if (strchr($omode, "c")) $data = array_merge($data, getCategoryCounters($link));
2639 function getCategoryCounters($link) {
2642 /* Labels category */
2644 $cv = array("id" => -2, "kind" => "cat",
2645 "counter" => getCategoryUnread($link, -2));
2647 array_push($ret_arr, $cv);
2649 $age_qpart = getMaxAgeSubquery();
2651 $result = db_query($link, "SELECT id AS cat_id, value AS unread
2652 FROM ttrss_feed_categories, ttrss_cat_counters_cache
2653 WHERE ttrss_cat_counters_cache.feed_id = id AND
2654 ttrss_feed_categories.owner_uid = " . $_SESSION["uid"]);
2656 while ($line = db_fetch_assoc($result)) {
2657 $line["cat_id"] = (int) $line["cat_id"];
2659 $cv = array("id" => $line["cat_id"], "kind" => "cat",
2660 "counter" => $line["unread"]);
2662 array_push($ret_arr, $cv);
2665 /* Special case: NULL category doesn't actually exist in the DB */
2667 $cv = array("id" => 0, "kind" => "cat",
2668 "counter" => ccache_find($link, 0, $_SESSION["uid"], true));
2670 array_push($ret_arr, $cv);
2675 function getCategoryUnread($link, $cat, $owner_uid = false) {
2677 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
2682 $cat_query = "cat_id = '$cat'";
2684 $cat_query = "cat_id IS NULL";
2687 $age_qpart = getMaxAgeSubquery();
2689 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE $cat_query
2690 AND owner_uid = " . $owner_uid);
2692 $cat_feeds = array();
2693 while ($line = db_fetch_assoc($result)) {
2694 array_push($cat_feeds, "feed_id = " . $line["id"]);
2697 if (count($cat_feeds) == 0) return 0;
2699 $match_part = implode(" OR ", $cat_feeds);
2701 $result = db_query($link, "SELECT COUNT(int_id) AS unread
2702 FROM ttrss_user_entries,ttrss_entries
2703 WHERE unread = true AND ($match_part) AND id = ref_id
2704 AND $age_qpart AND owner_uid = " . $owner_uid);
2708 # this needs to be rewritten
2709 while ($line = db_fetch_assoc($result)) {
2710 $unread += $line["unread"];
2714 } else if ($cat == -1) {
2715 return getFeedUnread($link, -1) + getFeedUnread($link, -2) + getFeedUnread($link, -3) + getFeedUnread($link, 0);
2716 } else if ($cat == -2) {
2718 $result = db_query($link, "
2719 SELECT COUNT(unread) AS unread FROM
2720 ttrss_user_entries, ttrss_labels2, ttrss_user_labels2, ttrss_feeds
2721 WHERE label_id = ttrss_labels2.id AND article_id = ref_id AND
2722 ttrss_labels2.owner_uid = '$owner_uid'
2723 AND unread = true AND feed_id = ttrss_feeds.id
2724 AND ttrss_user_entries.owner_uid = '$owner_uid'");
2726 $unread = db_fetch_result($result, 0, "unread");
2733 function getMaxAgeSubquery($days = COUNTERS_MAX_AGE) {
2734 if (DB_TYPE == "pgsql") {
2735 return "ttrss_entries.date_updated >
2736 NOW() - INTERVAL '$days days'";
2738 return "ttrss_entries.date_updated >
2739 DATE_SUB(NOW(), INTERVAL $days DAY)";
2743 function getFeedUnread($link, $feed, $is_cat = false) {
2744 return getFeedArticles($link, $feed, $is_cat, true, $_SESSION["uid"]);
2747 function getLabelUnread($link, $label_id, $owner_uid = false) {
2748 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
2750 $result = db_query($link, "
2751 SELECT COUNT(unread) AS unread FROM
2752 ttrss_user_entries, ttrss_labels2, ttrss_user_labels2, ttrss_feeds
2753 WHERE label_id = ttrss_labels2.id AND article_id = ref_id AND
2754 ttrss_labels2.owner_uid = '$owner_uid' AND ttrss_labels2.id = '$label_id'
2755 AND unread = true AND feed_id = ttrss_feeds.id
2756 AND ttrss_user_entries.owner_uid = '$owner_uid'");
2758 if (db_num_rows($result) != 0) {
2759 return db_fetch_result($result, 0, "unread");
2765 function getFeedArticles($link, $feed, $is_cat = false, $unread_only = false,
2766 $owner_uid = false) {
2768 $n_feed = (int) $feed;
2770 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
2773 $unread_qpart = "unread = true";
2775 $unread_qpart = "true";
2778 $age_qpart = getMaxAgeSubquery();
2781 return getCategoryUnread($link, $n_feed, $owner_uid);
2782 } if ($feed != "0" && $n_feed == 0) {
2784 $feed = db_escape_string($feed);
2786 $result = db_query($link, "SELECT SUM((SELECT COUNT(int_id)
2787 FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id
2788 AND ref_id = id AND $age_qpart
2789 AND $unread_qpart)) AS count FROM ttrss_tags
2790 WHERE owner_uid = $owner_uid AND tag_name = '$feed'");
2791 return db_fetch_result($result, 0, "count");
2793 } else if ($n_feed == -1) {
2794 $match_part = "marked = true";
2795 } else if ($n_feed == -2) {
2796 $match_part = "published = true";
2797 } else if ($n_feed == -3) {
2798 $match_part = "unread = true AND score >= 0";
2800 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE", $owner_uid);
2802 if (DB_TYPE == "pgsql") {
2803 $match_part .= " AND updated > NOW() - INTERVAL '$intl hour' ";
2805 $match_part .= " AND updated > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
2807 } else if ($n_feed == -4) {
2808 $match_part = "true";
2809 } else if ($n_feed >= 0) {
2812 $match_part = "feed_id = '$n_feed'";
2814 $match_part = "feed_id IS NULL";
2817 } else if ($feed < -10) {
2819 $label_id = -$feed - 11;
2821 return getLabelUnread($link, $label_id, $owner_uid);
2828 $from_qpart = "ttrss_user_entries,ttrss_feeds,ttrss_entries";
2829 $feeds_qpart = "ttrss_user_entries.feed_id = ttrss_feeds.id AND";
2831 $from_qpart = "ttrss_user_entries,ttrss_entries";
2835 $query = "SELECT count(int_id) AS unread
2836 FROM $from_qpart WHERE
2837 ttrss_user_entries.ref_id = ttrss_entries.id AND
2840 $unread_qpart AND ($match_part) AND ttrss_user_entries.owner_uid = $owner_uid";
2842 $result = db_query($link, $query);
2846 $result = db_query($link, "SELECT COUNT(post_int_id) AS unread
2847 FROM ttrss_tags,ttrss_user_entries,ttrss_entries
2848 WHERE tag_name = '$feed' AND post_int_id = int_id AND ref_id = ttrss_entries.id
2849 AND $unread_qpart AND $age_qpart AND
2850 ttrss_tags.owner_uid = " . $owner_uid);
2853 $unread = db_fetch_result($result, 0, "unread");
2858 function getGlobalUnread($link, $user_id = false) {
2861 $user_id = $_SESSION["uid"];
2864 $result = db_query($link, "SELECT SUM(value) AS c_id FROM ttrss_counters_cache
2865 WHERE owner_uid = '$user_id' AND feed_id > 0");
2867 $c_id = db_fetch_result($result, 0, "c_id");
2872 function getGlobalCounters($link, $global_unread = -1) {
2875 if ($global_unread == -1) {
2876 $global_unread = getGlobalUnread($link);
2879 $cv = array("id" => "global-unread",
2880 "counter" => $global_unread);
2882 array_push($ret_arr, $cv);
2884 $result = db_query($link, "SELECT COUNT(id) AS fn FROM
2885 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
2887 $subscribed_feeds = db_fetch_result($result, 0, "fn");
2889 $cv = array("id" => "subscribed-feeds",
2890 "counter" => $subscribed_feeds);
2892 array_push($ret_arr, $cv);
2897 function getSubscribedFeeds($link) {
2898 $result = db_query($link, "SELECT COUNT(id) AS fn FROM
2899 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
2901 return db_fetch_result($result, 0, "fn");
2904 function getTagCounters($link) {
2908 $age_qpart = getMaxAgeSubquery();
2910 $result = db_query($link, "SELECT tag_name,SUM((SELECT COUNT(int_id)
2911 FROM ttrss_user_entries,ttrss_entries WHERE int_id = post_int_id
2912 AND ref_id = id AND $age_qpart
2913 AND unread = true)) AS count FROM ttrss_tags
2914 WHERE owner_uid = ".$_SESSION['uid']." GROUP BY tag_name
2915 ORDER BY count DESC LIMIT 55");
2919 while ($line = db_fetch_assoc($result)) {
2920 $tags[$line["tag_name"]] += $line["count"];
2923 foreach (array_keys($tags) as $tag) {
2924 $unread = $tags[$tag];
2925 $tag = htmlspecialchars($tag);
2927 $cv = array("id" => $tag,
2929 "counter" => $unread);
2931 array_push($ret_arr, $cv);
2937 function getVirtCounters($link) {
2941 for ($i = 0; $i >= -4; $i--) {
2943 $count = getFeedUnread($link, $i);
2945 $cv = array("id" => $i,
2946 "counter" => $count);
2948 // if (get_pref($link, 'EXTENDED_FEEDLIST'))
2949 // $cv["xmsg"] = getFeedArticles($link, $i)." ".__("total");
2951 array_push($ret_arr, $cv);
2957 function getLabelCounters($link, $descriptions = false) {
2961 $age_qpart = getMaxAgeSubquery();
2963 $owner_uid = $_SESSION["uid"];
2965 $result = db_query($link, "SELECT id, caption FROM ttrss_labels2
2966 WHERE owner_uid = '$owner_uid'");
2968 while ($line = db_fetch_assoc($result)) {
2970 $id = -$line["id"] - 11;
2972 $label_name = $line["caption"];
2973 $count = getFeedUnread($link, $id);
2975 $cv = array("id" => $id,
2976 "counter" => $count);
2979 $cv["description"] = $label_name;
2981 // if (get_pref($link, 'EXTENDED_FEEDLIST'))
2982 // $cv["xmsg"] = getFeedArticles($link, $id)." ".__("total");
2984 array_push($ret_arr, $cv);
2990 function getFeedCounters($link, $active_feed = false) {
2994 $age_qpart = getMaxAgeSubquery();
2996 $query = "SELECT ttrss_feeds.id,
2998 ".SUBSTRING_FOR_DATE."(ttrss_feeds.last_updated,1,19) AS last_updated,
2999 last_error, value AS count
3000 FROM ttrss_feeds, ttrss_counters_cache
3001 WHERE ttrss_feeds.owner_uid = ".$_SESSION["uid"]."
3002 AND ttrss_counters_cache.feed_id = id";
3004 $result = db_query($link, $query);
3005 $fctrs_modified = false;
3007 while ($line = db_fetch_assoc($result)) {
3010 $count = $line["count"];
3011 $last_error = htmlspecialchars($line["last_error"]);
3013 $last_updated = make_local_datetime($link, $line['last_updated'], false);
3015 $has_img = feed_has_icon($id);
3017 if (date('Y') - date('Y', strtotime($line['last_updated'])) > 2)
3020 $cv = array("id" => $id,
3021 "updated" => $last_updated,
3022 "counter" => $count,
3023 "has_img" => (int) $has_img);
3026 $cv["error"] = $last_error;
3028 // if (get_pref($link, 'EXTENDED_FEEDLIST'))
3029 // $cv["xmsg"] = getFeedArticles($link, $id)." ".__("total");
3031 if ($active_feed && $id == $active_feed)
3032 $cv["title"] = truncate_string($line["title"], 30);
3034 array_push($ret_arr, $cv);
3041 function get_pgsql_version($link) {
3042 $result = db_query($link, "SELECT version() AS version");
3043 $version = explode(" ", db_fetch_result($result, 0, "version"));
3048 * Subscribes the user to the given feed
3050 * @param resource $link Database connection
3051 * @param string $url Feed URL to subscribe to
3052 * @param integer $cat_id Category ID the feed shall be added to
3053 * @param string $auth_login (optional) Feed username
3054 * @param string $auth_pass (optional) Feed password
3056 * @return integer Status code:
3057 * 0 - OK, Feed already exists
3058 * 1 - OK, Feed added
3060 * 3 - URL content is HTML, no feeds available
3061 * 4 - URL content is HTML which contains multiple feeds.
3062 * Here you should call extractfeedurls in rpc-backend
3063 * to get all possible feeds.
3064 * 5 - Couldn't download the URL content.
3066 function subscribe_to_feed($link, $url, $cat_id = 0,
3067 $auth_login = '', $auth_pass = '') {
3069 $url = fix_url($url);
3071 if (!$url || !validate_feed_url($url)) return 2;
3075 $result = db_query($link, "SELECT twitter_oauth FROM ttrss_users
3076 WHERE id = ".$_SESSION['uid']);
3078 $has_oauth = db_fetch_result($result, 0, 'twitter_oauth');
3080 if (!$has_oauth || strpos($url, '://api.twitter.com') === false) {
3081 if (!fetch_file_contents($url, false, $auth_login, $auth_pass)) return 5;
3083 if (url_is_html($url, $auth_login, $auth_pass)) {
3084 $feedUrls = get_feeds_from_html($url, $auth_login, $auth_pass);
3085 if (count($feedUrls) == 0) {
3087 } else if (count($feedUrls) > 1) {
3090 //use feed url as new URL
3091 $url = key($feedUrls);
3095 if (!fetch_twitter_rss($link, $url, $_SESSION['uid']))
3100 if ($cat_id == "0" || !$cat_id) {
3101 $cat_qpart = "NULL";
3103 $cat_qpart = "'$cat_id'";
3106 $result = db_query($link,
3107 "SELECT id FROM ttrss_feeds
3108 WHERE feed_url = '$url' AND owner_uid = ".$_SESSION["uid"]);
3110 if (db_num_rows($result) == 0) {
3111 $result = db_query($link,
3112 "INSERT INTO ttrss_feeds
3113 (owner_uid,feed_url,title,cat_id, auth_login,auth_pass,update_method)
3114 VALUES ('".$_SESSION["uid"]."', '$url',
3115 '[Unknown]', $cat_qpart, '$auth_login', '$auth_pass', '$update_method')");
3117 $result = db_query($link,
3118 "SELECT id FROM ttrss_feeds WHERE feed_url = '$url'
3119 AND owner_uid = " . $_SESSION["uid"]);
3121 $feed_id = db_fetch_result($result, 0, "id");
3124 update_rss_feed($link, $feed_id, true);
3133 function print_feed_select($link, $id, $default_id = "",
3134 $attributes = "", $include_all_feeds = true) {
3136 print "<select id=\"$id\" name=\"$id\" $attributes>";
3137 if ($include_all_feeds) {
3138 print "<option value=\"0\">".__('All feeds')."</option>";
3141 $result = db_query($link, "SELECT id,title FROM ttrss_feeds
3142 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
3144 if (db_num_rows($result) > 0 && $include_all_feeds) {
3145 print "<option disabled>--------</option>";
3148 while ($line = db_fetch_assoc($result)) {
3149 if ($line["id"] == $default_id) {
3150 $is_selected = "selected=\"1\"";
3155 $title = truncate_string(htmlspecialchars($line["title"]), 40);
3157 printf("<option $is_selected value='%d'>%s</option>",
3158 $line["id"], $title);
3164 function print_feed_cat_select($link, $id, $default_id = "",
3165 $attributes = "", $include_all_cats = true) {
3167 print "<select id=\"$id\" name=\"$id\" default=\"$default_id\" onchange=\"catSelectOnChange(this)\" $attributes>";
3169 if ($include_all_cats) {
3170 print "<option value=\"0\">".__('Uncategorized')."</option>";
3173 $result = db_query($link, "SELECT id,title FROM ttrss_feed_categories
3174 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
3176 if (db_num_rows($result) > 0 && $include_all_cats) {
3177 print "<option disabled=\"1\">--------</option>";
3180 while ($line = db_fetch_assoc($result)) {
3181 if ($line["id"] == $default_id) {
3182 $is_selected = "selected=\"1\"";
3188 printf("<option $is_selected value='%d'>%s</option>",
3189 $line["id"], htmlspecialchars($line["title"]));
3192 # print "<option value=\"ADD_CAT\">" .__("Add category...") . "</option>";
3197 function checkbox_to_sql_bool($val) {
3198 return ($val == "on") ? "true" : "false";
3201 function getFeedCatTitle($link, $id) {
3203 return __("Special");
3204 } else if ($id < -10) {
3205 return __("Labels");
3206 } else if ($id > 0) {
3207 $result = db_query($link, "SELECT ttrss_feed_categories.title
3208 FROM ttrss_feeds, ttrss_feed_categories WHERE ttrss_feeds.id = '$id' AND
3209 cat_id = ttrss_feed_categories.id");
3210 if (db_num_rows($result) == 1) {
3211 return db_fetch_result($result, 0, "title");
3213 return __("Uncategorized");
3216 return "getFeedCatTitle($id) failed";
3221 function getFeedIcon($id) {
3224 return "images/archive.png";
3227 return "images/mark_set.png";
3230 return "images/pub_set.png";
3233 return "images/fresh.png";
3236 return "images/tag.png";
3240 return "images/label.png";
3242 if (file_exists(ICONS_DIR . "/$id.ico"))
3243 return ICONS_URL . "/$id.ico";
3249 function getFeedTitle($link, $id) {
3251 return __("Starred articles");
3252 } else if ($id == -2) {
3253 return __("Published articles");
3254 } else if ($id == -3) {
3255 return __("Fresh articles");
3256 } else if ($id == -4) {
3257 return __("All articles");
3258 } else if ($id === 0 || $id === "0") {
3259 return __("Archived articles");
3260 } else if ($id < -10) {
3261 $label_id = -$id - 11;
3262 $result = db_query($link, "SELECT caption FROM ttrss_labels2 WHERE id = '$label_id'");
3263 if (db_num_rows($result) == 1) {
3264 return db_fetch_result($result, 0, "caption");
3266 return "Unknown label ($label_id)";
3269 } else if (is_numeric($id) && $id > 0) {
3270 $result = db_query($link, "SELECT title FROM ttrss_feeds WHERE id = '$id'");
3271 if (db_num_rows($result) == 1) {
3272 return db_fetch_result($result, 0, "title");
3274 return "Unknown feed ($id)";
3281 function get_session_cookie_name() {
3282 return ((!defined('TTRSS_SESSION_NAME')) ? "ttrss_sid" : TTRSS_SESSION_NAME);
3285 function make_init_params($link) {
3288 $params["theme"] = get_user_theme($link);
3289 $params["theme_options"] = get_user_theme_options($link);
3291 $params["sign_progress"] = theme_image($link, "images/indicator_white.gif");
3292 $params["sign_progress_tiny"] = theme_image($link, "images/indicator_tiny.gif");
3293 $params["sign_excl"] = theme_image($link, "images/sign_excl.png");
3294 $params["sign_info"] = theme_image($link, "images/sign_info.png");
3296 foreach (array("ON_CATCHUP_SHOW_NEXT_FEED", "HIDE_READ_FEEDS",
3297 "ENABLE_FEED_CATS", "FEEDS_SORT_BY_UNREAD", "CONFIRM_FEED_CATCHUP",
3298 "CDM_AUTO_CATCHUP", "FRESH_ARTICLE_MAX_AGE", "DEFAULT_ARTICLE_LIMIT",
3299 "HIDE_READ_SHOWS_SPECIAL", "COMBINED_DISPLAY_MODE") as $param) {
3301 $params[strtolower($param)] = (int) get_pref($link, $param);
3304 $params["icons_url"] = ICONS_URL;
3305 $params["cookie_lifetime"] = SESSION_COOKIE_LIFETIME;
3306 $params["default_view_mode"] = get_pref($link, "_DEFAULT_VIEW_MODE");
3307 $params["default_view_limit"] = (int) get_pref($link, "_DEFAULT_VIEW_LIMIT");
3308 $params["default_view_order_by"] = get_pref($link, "_DEFAULT_VIEW_ORDER_BY");
3309 $params["bw_limit"] = (int) $_SESSION["bw_limit"];
3311 $result = db_query($link, "SELECT MAX(id) AS mid, COUNT(*) AS nf FROM
3312 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
3314 $max_feed_id = db_fetch_result($result, 0, "mid");
3315 $num_feeds = db_fetch_result($result, 0, "nf");
3317 $params["max_feed_id"] = (int) $max_feed_id;
3318 $params["num_feeds"] = (int) $num_feeds;
3320 $params["collapsed_feedlist"] = (int) get_pref($link, "_COLLAPSED_FEEDLIST");
3325 function print_runtime_info($link) {
3326 print "<runtime-info><![CDATA[";
3327 print json_encode(make_runtime_info($link));
3328 print "]]></runtime-info>";
3331 function make_runtime_info($link) {
3334 $result = db_query($link, "SELECT MAX(id) AS mid, COUNT(*) AS nf FROM
3335 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
3337 $max_feed_id = db_fetch_result($result, 0, "mid");
3338 $num_feeds = db_fetch_result($result, 0, "nf");
3340 $data["max_feed_id"] = (int) $max_feed_id;
3341 $data["num_feeds"] = (int) $num_feeds;
3343 $data['last_article_id'] = getLastArticleId($link);
3344 $data['cdm_expanded'] = get_pref($link, 'CDM_EXPANDED');
3346 if (file_exists(LOCK_DIRECTORY . "/update_daemon.lock")) {
3348 $data['daemon_is_running'] = (int) file_is_locked("update_daemon.lock");
3350 if (time() - $_SESSION["daemon_stamp_check"] > 30) {
3352 $stamp = (int) @file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
3355 $stamp_delta = time() - $stamp;
3357 if ($stamp_delta > 1800) {
3361 $_SESSION["daemon_stamp_check"] = time();
3364 $data['daemon_stamp_ok'] = $stamp_check;
3366 $stamp_fmt = date("Y.m.d, G:i", $stamp);
3368 $data['daemon_stamp'] = $stamp_fmt;
3373 if ($_SESSION["last_version_check"] + 86400 + rand(-1000, 1000) < time()) {
3374 $new_version_details = @check_for_update($link);
3376 $data['new_version_available'] = (int) ($new_version_details != false);
3378 $_SESSION["last_version_check"] = time();
3384 function search_to_sql($link, $search, $match_on) {
3386 $search_query_part = "";
3388 $keywords = explode(" ", $search);
3389 $query_keywords = array();
3391 foreach ($keywords as $k) {
3392 if (strpos($k, "-") === 0) {
3399 $commandpair = explode(":", mb_strtolower($k), 2);
3401 if ($commandpair[0] == "note" && $commandpair[1]) {
3403 if ($commandpair[1] == "true")
3404 array_push($query_keywords, "($not (note IS NOT NULL AND note != ''))");
3406 array_push($query_keywords, "($not (note IS NULL OR note = ''))");
3408 } else if ($commandpair[0] == "star" && $commandpair[1]) {
3410 if ($commandpair[1] == "true")
3411 array_push($query_keywords, "($not (marked = true))");
3413 array_push($query_keywords, "($not (marked = false))");
3415 } else if ($commandpair[0] == "pub" && $commandpair[1]) {
3417 if ($commandpair[1] == "true")
3418 array_push($query_keywords, "($not (published = true))");
3420 array_push($query_keywords, "($not (published = false))");
3422 } else if (strpos($k, "@") === 0) {
3424 $user_tz_string = get_pref($link, 'USER_TIMEZONE', $_SESSION['uid']);
3425 $orig_ts = strtotime(substr($k, 1));
3426 $k = date("Y-m-d", convert_timestamp($orig_ts, $user_tz_string, 'UTC'));
3428 //$k = date("Y-m-d", strtotime(substr($k, 1)));
3430 array_push($query_keywords, "(".SUBSTRING_FOR_DATE."(updated,1,LENGTH('$k')) $not = '$k')");
3431 } else if ($match_on == "both") {
3432 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%')
3433 OR UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
3434 } else if ($match_on == "title") {
3435 array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%'))");
3436 } else if ($match_on == "content") {
3437 array_push($query_keywords, "(UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
3441 $search_query_part = implode("AND", $query_keywords);
3443 return $search_query_part;
3447 function queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view, $search, $search_mode, $match_on, $override_order = false, $offset = 0, $owner_uid = 0, $filter = false, $since_id = 0) {
3449 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
3451 $ext_tables_part = "";
3455 if (SPHINX_ENABLED) {
3456 $ids = join(",", @sphinx_search($search, 0, 500));
3459 $search_query_part = "ref_id IN ($ids) AND ";
3461 $search_query_part = "ref_id = -1 AND ";
3464 $search_query_part = search_to_sql($link, $search, $match_on);
3465 $search_query_part .= " AND ";
3469 $search_query_part = "";
3473 $filter_query_part = filter_to_sql($filter);
3475 $filter_query_part = "";
3479 $since_id_part = "ttrss_entries.id > $since_id AND ";
3481 $since_id_part = "";
3484 $view_query_part = "";
3486 if ($view_mode == "adaptive" || $view_query_part == "noscores") {
3488 $view_query_part = " ";
3489 } else if ($feed != -1) {
3490 $unread = getFeedUnread($link, $feed, $cat_view);
3492 $view_query_part = " unread = true AND ";
3497 if ($view_mode == "marked") {
3498 $view_query_part = " marked = true AND ";
3501 if ($view_mode == "published") {
3502 $view_query_part = " published = true AND ";
3505 if ($view_mode == "unread") {
3506 $view_query_part = " unread = true AND ";
3509 if ($view_mode == "updated") {
3510 $view_query_part = " (last_read is null and unread = false) AND ";
3514 $limit_query_part = "LIMIT " . $limit;
3517 $vfeed_query_part = "";
3519 // override query strategy and enable feed display when searching globally
3520 if ($search && $search_mode == "all_feeds") {
3521 $query_strategy_part = "ttrss_entries.id > 0";
3522 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3524 } else if (preg_match("/^-?[0-9][0-9]*$/", $feed) == false) {
3525 $query_strategy_part = "ttrss_entries.id > 0";
3526 $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE
3527 id = feed_id) as feed_title,";
3528 } else if ($feed > 0 && $search && $search_mode == "this_cat") {
3530 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3532 $tmp_result = false;
3535 $tmp_result = db_query($link, "SELECT id
3536 FROM ttrss_feeds WHERE cat_id = '$feed'");
3538 $tmp_result = db_query($link, "SELECT id
3539 FROM ttrss_feeds WHERE cat_id = (SELECT cat_id FROM ttrss_feeds
3540 WHERE id = '$feed') AND id != '$feed'");
3543 $cat_siblings = array();
3545 if (db_num_rows($tmp_result) > 0) {
3546 while ($p = db_fetch_assoc($tmp_result)) {
3547 array_push($cat_siblings, "feed_id = " . $p["id"]);
3550 $query_strategy_part = sprintf("(feed_id = %d OR %s)",
3551 $feed, implode(" OR ", $cat_siblings));
3554 $query_strategy_part = "ttrss_entries.id > 0";
3557 } else if ($feed > 0) {
3562 $query_strategy_part = "cat_id = '$feed'";
3564 $query_strategy_part = "cat_id IS NULL";
3567 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3570 $query_strategy_part = "feed_id = '$feed'";
3572 } else if ($feed == 0 && !$cat_view) { // archive virtual feed
3573 $query_strategy_part = "feed_id IS NULL";
3574 } else if ($feed == 0 && $cat_view) { // uncategorized
3575 $query_strategy_part = "cat_id IS NULL";
3576 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3577 } else if ($feed == -1) { // starred virtual feed
3578 $query_strategy_part = "marked = true";
3579 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3580 } else if ($feed == -2) { // published virtual feed OR labels category
3583 $query_strategy_part = "published = true";
3584 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3586 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3588 $ext_tables_part = ",ttrss_labels2,ttrss_user_labels2";
3590 $query_strategy_part = "ttrss_labels2.id = ttrss_user_labels2.label_id AND
3591 ttrss_user_labels2.article_id = ref_id";
3595 } else if ($feed == -3) { // fresh virtual feed
3596 $query_strategy_part = "unread = true AND score >= 0";
3598 $intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE", $owner_uid);
3600 if (DB_TYPE == "pgsql") {
3601 $query_strategy_part .= " AND updated > NOW() - INTERVAL '$intl hour' ";
3603 $query_strategy_part .= " AND updated > DATE_SUB(NOW(), INTERVAL $intl HOUR) ";
3606 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3607 } else if ($feed == -4) { // all articles virtual feed
3608 $query_strategy_part = "true";
3609 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3610 } else if ($feed <= -10) { // labels
3611 $label_id = -$feed - 11;
3613 $query_strategy_part = "label_id = '$label_id' AND
3614 ttrss_labels2.id = ttrss_user_labels2.label_id AND
3615 ttrss_user_labels2.article_id = ref_id";
3617 $vfeed_query_part = "ttrss_feeds.title AS feed_title,";
3618 $ext_tables_part = ",ttrss_labels2,ttrss_user_labels2";
3621 $query_strategy_part = "id > 0"; // dumb
3624 if (get_pref($link, "SORT_HEADLINES_BY_FEED_DATE", $owner_uid)) {
3625 $date_sort_field = "updated";
3627 $date_sort_field = "date_entered";
3630 if (get_pref($link, 'REVERSE_HEADLINES', $owner_uid)) {
3631 $order_by = "$date_sort_field";
3633 $order_by = "$date_sort_field DESC";
3636 if ($view_mode != "noscores") {
3637 $order_by = "score DESC, $order_by";
3640 if ($override_order) {
3641 $order_by = $override_order;
3647 $feed_title = "Search results";
3650 $feed_title = getCategoryTitle($link, $feed);
3652 if (is_numeric($feed) && $feed > 0) {
3653 $result = db_query($link, "SELECT title,site_url,last_error
3654 FROM ttrss_feeds WHERE id = '$feed' AND owner_uid = $owner_uid");
3656 $feed_title = db_fetch_result($result, 0, "title");
3657 $feed_site_url = db_fetch_result($result, 0, "site_url");
3658 $last_error = db_fetch_result($result, 0, "last_error");
3660 $feed_title = getFeedTitle($link, $feed);
3665 $content_query_part = "content as content_preview,";
3667 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
3670 $feed_kind = "Feeds";
3672 $feed_kind = "Labels";
3675 if ($limit_query_part) {
3676 $offset_query_part = "OFFSET $offset";
3679 if ($vfeed_query_part && get_pref($link, 'VFEED_GROUP_BY_FEED', $owner_uid)) {
3680 if (!$override_order) {
3681 $order_by = "ttrss_feeds.title, $order_by";
3686 $from_qpart = "ttrss_entries,ttrss_user_entries,ttrss_feeds$ext_tables_part";
3687 $feed_check_qpart = "ttrss_user_entries.feed_id = ttrss_feeds.id AND";
3690 $from_qpart = "ttrss_entries,ttrss_user_entries$ext_tables_part
3691 LEFT JOIN ttrss_feeds ON (feed_id = ttrss_feeds.id)";
3694 $query = "SELECT DISTINCT
3697 ttrss_entries.id,ttrss_entries.title,
3701 always_display_enclosures,
3706 unread,feed_id,marked,published,link,last_read,orig_feed_id,
3707 ".SUBSTRING_FOR_DATE."(last_read,1,19) as last_read_noms,
3710 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated_noms,
3716 ttrss_user_entries.ref_id = ttrss_entries.id AND
3717 ttrss_user_entries.owner_uid = '$owner_uid' AND
3722 $query_strategy_part ORDER BY $order_by
3723 $limit_query_part $offset_query_part";
3725 if ($_REQUEST["debug"]) print $query;
3727 $result = db_query($link, $query);
3732 $select_qpart = "SELECT DISTINCT " .
3736 "ttrss_entries.id as id," .
3743 "always_display_enclosures, ".
3751 SUBSTRING_FOR_DATE . "(last_read,1,19) as last_read_noms," .
3754 $content_query_part .
3755 SUBSTRING_FOR_DATE . "(updated,1,19) as updated_noms," .
3758 $feed_kind = "Tags";
3759 $all_tags = explode(",", $feed);
3760 if ($search_mode == 'any') {
3761 $tag_sql = "tag_name in (" . implode(", ", array_map("db_quote", $all_tags)) . ")";
3762 $from_qpart = " FROM ttrss_entries,ttrss_user_entries,ttrss_tags ";
3763 $where_qpart = " WHERE " .
3764 "ref_id = ttrss_entries.id AND " .
3765 "ttrss_user_entries.owner_uid = $owner_uid AND " .
3766 "post_int_id = int_id AND $tag_sql AND " .
3768 $search_query_part .
3769 $query_strategy_part . " ORDER BY $order_by " .
3774 $sub_selects = array();
3775 $sub_ands = array();
3776 foreach ($all_tags as $term) {
3777 array_push($sub_selects, "(SELECT post_int_id from ttrss_tags WHERE tag_name = " . db_quote($term) . " AND owner_uid = $owner_uid) as A$i");
3784 array_push($sub_ands, "A$x.post_int_id = A$y.post_int_id");
3789 array_push($sub_ands, "A1.post_int_id = ttrss_user_entries.int_id and ttrss_user_entries.owner_uid = $owner_uid");
3790 array_push($sub_ands, "ttrss_user_entries.ref_id = ttrss_entries.id");
3791 $from_qpart = " FROM " . implode(", ", $sub_selects) . ", ttrss_user_entries, ttrss_entries";
3792 $where_qpart = " WHERE " . implode(" AND ", $sub_ands);
3794 // error_log("TAG SQL: " . $tag_sql);
3795 // $tag_sql = "tag_name = '$feed'"; DEFAULT way
3797 // error_log("[". $select_qpart . "][" . $from_qpart . "][" .$where_qpart . "]");
3798 $result = db_query($link, $select_qpart . $from_qpart . $where_qpart);
3801 return array($result, $feed_title, $feed_site_url, $last_error);
3805 function generate_syndicated_feed($link, $owner_uid, $feed, $is_cat,
3806 $limit, $search, $search_mode, $match_on, $view_mode = false) {
3808 require_once "lib/MiniTemplator.class.php";
3810 $note_style = "background-color : #fff7d5;
3811 border-width : 1px; ".
3812 "padding : 5px; border-style : dashed; border-color : #e7d796;".
3813 "margin-bottom : 1em; color : #9a8c59;";
3815 if (!$limit) $limit = 30;
3817 if (get_pref($link, "SORT_HEADLINES_BY_FEED_DATE", $owner_uid)) {
3818 $date_sort_field = "updated";
3820 $date_sort_field = "date_entered";
3823 $qfh_ret = queryFeedHeadlines($link, $feed,
3824 $limit, $view_mode, $is_cat, $search, $search_mode,
3825 $match_on, "$date_sort_field DESC", 0, $owner_uid);
3827 $result = $qfh_ret[0];
3828 $feed_title = htmlspecialchars($qfh_ret[1]);
3829 $feed_site_url = $qfh_ret[2];
3830 $last_error = $qfh_ret[3];
3832 $feed_self_url = get_self_url_prefix() .
3833 "/public.php?op=rss&id=-2&key=" .
3834 get_feed_access_key($link, -2, false);
3836 if (!$feed_site_url) $feed_site_url = get_self_url_prefix();
3838 $tpl = new MiniTemplator;
3840 $tpl->readTemplateFromFile("templates/generated_feed.txt");
3842 $tpl->setVariable('FEED_TITLE', $feed_title);
3843 $tpl->setVariable('VERSION', VERSION);
3844 $tpl->setVariable('FEED_URL', htmlspecialchars($feed_self_url));
3846 if (PUBSUBHUBBUB_HUB && $feed == -2) {
3847 $tpl->setVariable('HUB_URL', htmlspecialchars(PUBSUBHUBBUB_HUB));
3848 $tpl->addBlock('feed_hub');
3851 $tpl->setVariable('SELF_URL', htmlspecialchars(get_self_url_prefix()));
3853 while ($line = db_fetch_assoc($result)) {
3854 $tpl->setVariable('ARTICLE_ID', htmlspecialchars($line['link']));
3855 $tpl->setVariable('ARTICLE_LINK', htmlspecialchars($line['link']));
3856 $tpl->setVariable('ARTICLE_TITLE', htmlspecialchars($line['title']));
3857 $tpl->setVariable('ARTICLE_EXCERPT',
3858 truncate_string(strip_tags($line["content_preview"]), 100, '...'));
3860 $content = sanitize_rss($link, $line["content_preview"], false, $owner_uid);
3862 if ($line['note']) {
3863 $content = "<div style=\"$note_style\">Article note: " . $line['note'] . "</div>" .
3867 $tpl->setVariable('ARTICLE_CONTENT', $content);
3869 $tpl->setVariable('ARTICLE_UPDATED', date('c', strtotime($line["updated"])));
3870 $tpl->setVariable('ARTICLE_AUTHOR', htmlspecialchars($line['author']));
3872 $tags = get_article_tags($link, $line["id"], $owner_uid);
3874 foreach ($tags as $tag) {
3875 $tpl->setVariable('ARTICLE_CATEGORY', htmlspecialchars($tag));
3876 $tpl->addBlock('category');
3879 $enclosures = get_article_enclosures($link, $line["id"]);
3881 foreach ($enclosures as $e) {
3882 $type = htmlspecialchars($e['content_type']);
3883 $url = htmlspecialchars($e['content_url']);
3884 $length = $e['duration'];
3886 $tpl->setVariable('ARTICLE_ENCLOSURE_URL', $url);
3887 $tpl->setVariable('ARTICLE_ENCLOSURE_TYPE', $type);
3888 $tpl->setVariable('ARTICLE_ENCLOSURE_LENGTH', $length);
3890 $tpl->addBlock('enclosure');
3893 $tpl->addBlock('entry');
3898 $tpl->addBlock('feed');
3899 $tpl->generateOutputToString($tmp);
3904 function getCategoryTitle($link, $cat_id) {
3906 if ($cat_id == -1) {
3907 return __("Special");
3908 } else if ($cat_id == -2) {
3909 return __("Labels");
3912 $result = db_query($link, "SELECT title FROM ttrss_feed_categories WHERE
3915 if (db_num_rows($result) == 1) {
3916 return db_fetch_result($result, 0, "title");
3918 return "Uncategorized";
3923 function sanitize_rss($link, $str, $force_strip_tags = false, $owner = false, $site_url = false) {
3926 if (!$owner) $owner = $_SESSION["uid"];
3928 $res = trim($str); if (!$res) return '';
3930 // if (get_pref($link, "STRIP_UNSAFE_TAGS", $owner) || $force_strip_tags) {
3931 $res = $purifier->purify($res);
3934 if (get_pref($link, "STRIP_IMAGES", $owner)) {
3935 $res = preg_replace('/<img[^>]+>/is', '', $res);
3938 if (strpos($res, "href=") === false)
3939 $res = rewrite_urls($res);
3941 $charset_hack = '<head>
3942 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
3945 $res = trim($res); if (!$res) return '';
3947 libxml_use_internal_errors(true);
3949 $doc = new DOMDocument();
3950 $doc->loadHTML($charset_hack . $res);
3951 $xpath = new DOMXPath($doc);
3953 $entries = $xpath->query('(//a[@href]|//img[@src])');
3956 foreach ($entries as $entry) {
3960 if ($entry->hasAttribute('href'))
3961 $entry->setAttribute('href',
3962 rewrite_relative_url($site_url, $entry->getAttribute('href')));
3964 if ($entry->hasAttribute('src'))
3965 if (preg_match('/^image.php\?i=[a-z0-9]+$/', $entry->getAttribute('src')) == 0)
3966 $entry->setAttribute('src',
3967 rewrite_relative_url($site_url, $entry->getAttribute('src')));
3970 if (strtolower($entry->nodeName) == "a") {
3971 $entry->setAttribute("target", "_blank");
3974 if (strtolower($entry->nodeName) == "img" && !$br_inserted) {
3975 $br = $doc->createElement("br");
3977 if ($entry->parentNode->nextSibling) {
3978 $entry->parentNode->insertBefore($br, $entry->nextSibling);
3985 $node = $doc->getElementsByTagName('body')->item(0);
3987 return $doc->saveXML($node);
3991 * Send by mail a digest of last articles.
3993 * @param mixed $link The database connection.
3994 * @param integer $limit The maximum number of articles by digest.
3995 * @return boolean Return false if digests are not enabled.
3997 function send_headlines_digests($link, $limit = 100) {
3999 if (!DIGEST_ENABLE) return false;
4001 $user_limit = DIGEST_EMAIL_LIMIT;
4004 print "Sending digests, batch of max $user_limit users, days = $days, headline limit = $limit\n\n";
4006 if (DB_TYPE == "pgsql") {
4007 $interval_query = "last_digest_sent < NOW() - INTERVAL '$days days'";
4008 } else if (DB_TYPE == "mysql") {
4009 $interval_query = "last_digest_sent < DATE_SUB(NOW(), INTERVAL $days DAY)";
4012 $result = db_query($link, "SELECT id,email FROM ttrss_users
4013 WHERE email != '' AND (last_digest_sent IS NULL OR $interval_query)");
4015 while ($line = db_fetch_assoc($result)) {
4017 if (get_pref($link, 'DIGEST_ENABLE', $line['id'], false)) {
4018 print "Sending digest for UID:" . $line['id'] . " - " . $line["email"] . " ... ";
4020 $do_catchup = get_pref($link, 'DIGEST_CATCHUP', $line['id'], false);
4022 $tuple = prepare_headlines_digest($link, $line["id"], $days, $limit);
4023 $digest = $tuple[0];
4024 $headlines_count = $tuple[1];
4025 $affected_ids = $tuple[2];
4026 $digest_text = $tuple[3];
4028 if ($headlines_count > 0) {
4030 $mail = new PHPMailer();
4032 $mail->PluginDir = "lib/phpmailer/";
4033 $mail->SetLanguage("en", "lib/phpmailer/language/");
4035 $mail->CharSet = "UTF-8";
4037 $mail->From = DIGEST_FROM_ADDRESS;
4038 $mail->FromName = DIGEST_FROM_NAME;
4039 $mail->AddAddress($line["email"], $line["login"]);
4041 if (DIGEST_SMTP_HOST) {
4042 $mail->Host = DIGEST_SMTP_HOST;
4043 $mail->Mailer = "smtp";
4044 $mail->SMTPAuth = DIGEST_SMTP_LOGIN != '';
4045 $mail->Username = DIGEST_SMTP_LOGIN;
4046 $mail->Password = DIGEST_SMTP_PASSWORD;
4049 $mail->IsHTML(true);
4050 $mail->Subject = DIGEST_SUBJECT;
4051 $mail->Body = $digest;
4052 $mail->AltBody = $digest_text;
4054 $rc = $mail->Send();
4056 if (!$rc) print "ERROR: " . $mail->ErrorInfo;
4060 if ($rc && $do_catchup) {
4061 print "Marking affected articles as read...\n";
4062 catchupArticlesById($link, $affected_ids, 0, $line["id"]);
4065 print "No headlines\n";
4068 db_query($link, "UPDATE ttrss_users SET last_digest_sent = NOW()
4069 WHERE id = " . $line["id"]);
4073 print "All done.\n";
4077 function prepare_headlines_digest($link, $user_id, $days = 1, $limit = 100) {
4079 require_once "lib/MiniTemplator.class.php";
4081 $tpl = new MiniTemplator;
4082 $tpl_t = new MiniTemplator;
4084 $tpl->readTemplateFromFile("templates/digest_template_html.txt");
4085 $tpl_t->readTemplateFromFile("templates/digest_template.txt");
4087 $tpl->setVariable('CUR_DATE', date('Y/m/d'));
4088 $tpl->setVariable('CUR_TIME', date('G:i'));
4090 $tpl_t->setVariable('CUR_DATE', date('Y/m/d'));
4091 $tpl_t->setVariable('CUR_TIME', date('G:i'));
4093 $affected_ids = array();
4095 if (DB_TYPE == "pgsql") {
4096 $interval_query = "ttrss_entries.date_updated > NOW() - INTERVAL '$days days'";
4097 } else if (DB_TYPE == "mysql") {
4098 $interval_query = "ttrss_entries.date_updated > DATE_SUB(NOW(), INTERVAL $days DAY)";
4101 $result = db_query($link, "SELECT ttrss_entries.title,
4102 ttrss_feeds.title AS feed_title,
4104 ttrss_user_entries.ref_id,
4106 SUBSTRING(content, 1, 120) AS excerpt,
4107 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
4109 ttrss_user_entries,ttrss_entries,ttrss_feeds
4111 ref_id = ttrss_entries.id AND feed_id = ttrss_feeds.id
4112 AND include_in_digest = true
4114 AND ttrss_user_entries.owner_uid = $user_id
4116 ORDER BY ttrss_feeds.title, date_updated DESC
4119 $cur_feed_title = "";
4121 $headlines_count = db_num_rows($result);
4123 $headlines = array();
4125 while ($line = db_fetch_assoc($result)) {
4126 array_push($headlines, $line);
4129 for ($i = 0; $i < sizeof($headlines); $i++) {
4131 $line = $headlines[$i];
4133 array_push($affected_ids, $line["ref_id"]);
4135 $updated = make_local_datetime($link, $line['last_updated'], false,
4138 $tpl->setVariable('FEED_TITLE', $line["feed_title"]);
4139 $tpl->setVariable('ARTICLE_TITLE', $line["title"]);
4140 $tpl->setVariable('ARTICLE_LINK', $line["link"]);
4141 $tpl->setVariable('ARTICLE_UPDATED', $updated);
4142 $tpl->setVariable('ARTICLE_EXCERPT',
4143 truncate_string(strip_tags($line["excerpt"]), 100));
4145 $tpl->addBlock('article');
4147 $tpl_t->setVariable('FEED_TITLE', $line["feed_title"]);
4148 $tpl_t->setVariable('ARTICLE_TITLE', $line["title"]);
4149 $tpl_t->setVariable('ARTICLE_LINK', $line["link"]);
4150 $tpl_t->setVariable('ARTICLE_UPDATED', $updated);
4151 // $tpl_t->setVariable('ARTICLE_EXCERPT',
4152 // truncate_string(strip_tags($line["excerpt"]), 100));
4154 $tpl_t->addBlock('article');
4156 if ($headlines[$i]['feed_title'] != $headlines[$i+1]['feed_title']) {
4157 $tpl->addBlock('feed');
4158 $tpl_t->addBlock('feed');
4163 $tpl->addBlock('digest');
4164 $tpl->generateOutputToString($tmp);
4166 $tpl_t->addBlock('digest');
4167 $tpl_t->generateOutputToString($tmp_t);
4169 return array($tmp, $headlines_count, $affected_ids, $tmp_t);
4172 function check_for_update($link) {
4173 if (CHECK_FOR_NEW_VERSION && $_SESSION['access_level'] >= 10) {
4174 $version_url = "http://tt-rss.org/version.php?ver=" . VERSION;
4176 $version_data = @fetch_file_contents($version_url);
4178 if ($version_data) {
4179 $version_data = json_decode($version_data, true);
4180 if ($version_data && $version_data['version']) {
4182 if (version_compare(VERSION, $version_data['version']) == -1) {
4183 return $version_data;
4191 function markArticlesById($link, $ids, $cmode) {
4195 foreach ($ids as $id) {
4196 array_push($tmp_ids, "ref_id = '$id'");
4199 $ids_qpart = join(" OR ", $tmp_ids);
4202 db_query($link, "UPDATE ttrss_user_entries SET
4203 marked = false,last_read = NOW()
4204 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4205 } else if ($cmode == 1) {
4206 db_query($link, "UPDATE ttrss_user_entries SET
4208 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4210 db_query($link, "UPDATE ttrss_user_entries SET
4211 marked = NOT marked,last_read = NOW()
4212 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4216 function publishArticlesById($link, $ids, $cmode) {
4220 foreach ($ids as $id) {
4221 array_push($tmp_ids, "ref_id = '$id'");
4224 $ids_qpart = join(" OR ", $tmp_ids);
4227 db_query($link, "UPDATE ttrss_user_entries SET
4228 published = false,last_read = NOW()
4229 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4230 } else if ($cmode == 1) {
4231 db_query($link, "UPDATE ttrss_user_entries SET
4233 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4235 db_query($link, "UPDATE ttrss_user_entries SET
4236 published = NOT published,last_read = NOW()
4237 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
4240 if (PUBSUBHUBBUB_HUB) {
4241 $rss_link = get_self_url_prefix() .
4242 "/public.php?op=rss&id=-2&key=" .
4243 get_feed_access_key($link, -2, false);
4245 $p = new Publisher(PUBSUBHUBBUB_HUB);
4247 $pubsub_result = $p->publish_update($rss_link);
4251 function catchupArticlesById($link, $ids, $cmode, $owner_uid = false) {
4253 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
4254 if (count($ids) == 0) return;
4258 foreach ($ids as $id) {
4259 array_push($tmp_ids, "ref_id = '$id'");
4262 $ids_qpart = join(" OR ", $tmp_ids);
4265 db_query($link, "UPDATE ttrss_user_entries SET
4266 unread = false,last_read = NOW()
4267 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
4268 } else if ($cmode == 1) {
4269 db_query($link, "UPDATE ttrss_user_entries SET
4271 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
4273 db_query($link, "UPDATE ttrss_user_entries SET
4274 unread = NOT unread,last_read = NOW()
4275 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
4280 $result = db_query($link, "SELECT DISTINCT feed_id FROM ttrss_user_entries
4281 WHERE ($ids_qpart) AND owner_uid = $owner_uid");
4283 while ($line = db_fetch_assoc($result)) {
4284 ccache_update($link, $line["feed_id"], $owner_uid);
4288 function catchupArticleById($link, $id, $cmode) {
4291 db_query($link, "UPDATE ttrss_user_entries SET
4292 unread = false,last_read = NOW()
4293 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4294 } else if ($cmode == 1) {
4295 db_query($link, "UPDATE ttrss_user_entries SET
4297 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4299 db_query($link, "UPDATE ttrss_user_entries SET
4300 unread = NOT unread,last_read = NOW()
4301 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4304 $feed_id = getArticleFeed($link, $id);
4305 ccache_update($link, $feed_id, $_SESSION["uid"]);
4308 function make_guid_from_title($title) {
4309 return preg_replace("/[ \"\',.:;]/", "-",
4310 mb_strtolower(strip_tags($title), 'utf-8'));
4313 function format_headline_subtoolbar($link, $feed_site_url, $feed_title,
4314 $feed_id, $is_cat, $search, $match_on,
4315 $search_mode, $view_mode, $error) {
4317 $page_prev_link = "viewFeedGoPage(-1)";
4318 $page_next_link = "viewFeedGoPage(1)";
4319 $page_first_link = "viewFeedGoPage(0)";
4321 $catchup_page_link = "catchupPage()";
4322 $catchup_feed_link = "catchupCurrentFeed()";
4323 $catchup_sel_link = "catchupSelection()";
4325 $archive_sel_link = "archiveSelection()";
4326 $delete_sel_link = "deleteSelection()";
4328 $sel_all_link = "selectArticles('all')";
4329 $sel_unread_link = "selectArticles('unread')";
4330 $sel_none_link = "selectArticles('none')";
4331 $sel_inv_link = "selectArticles('invert')";
4333 $tog_unread_link = "selectionToggleUnread()";
4334 $tog_marked_link = "selectionToggleMarked()";
4335 $tog_published_link = "selectionTogglePublished()";
4337 $reply = "<div id=\"subtoolbar_main\">";
4339 $reply .= __('Select:')."
4340 <a href=\"#\" onclick=\"$sel_all_link\">".__('All')."</a>,
4341 <a href=\"#\" onclick=\"$sel_unread_link\">".__('Unread')."</a>,
4342 <a href=\"#\" onclick=\"$sel_inv_link\">".__('Invert')."</a>,
4343 <a href=\"#\" onclick=\"$sel_none_link\">".__('None')."</a></li>";
4347 $reply .= "<select dojoType=\"dijit.form.Select\"
4348 onchange=\"headlineActionsChange(this)\">";
4349 $reply .= "<option value=\"false\">".__('Actions...')."</option>";
4351 $reply .= "<option value=\"0\" disabled=\"1\">".__('Selection toggle:')."</option>";
4353 $reply .= "<option value=\"$tog_unread_link\">".__('Unread')."</option>
4354 <option value=\"$tog_marked_link\">".__('Starred')."</option>
4355 <option value=\"$tog_published_link\">".__('Published')."</option>";
4357 $reply .= "<option value=\"0\" disabled=\"1\">".__('Selection:')."</option>";
4359 $reply .= "<option value=\"$catchup_sel_link\">".__('Mark as read')."</option>";
4361 if ($feed_id != "0") {
4362 $reply .= "<option value=\"$archive_sel_link\">".__('Archive')."</option>";
4364 $reply .= "<option value=\"$archive_sel_link\">".__('Move back')."</option>";
4365 $reply .= "<option value=\"$delete_sel_link\">".__('Delete')."</option>";
4369 $reply .= "<option value=\"emailArticle(false)\">".__('Forward by email').
4372 if ($is_cat) $cat_q = "&is_cat=$is_cat";
4375 $search_q = "&q=$search&m=$match_on&smode=$search_mode";
4380 $rss_link = htmlspecialchars(get_self_url_prefix() .
4381 "/public.php?op=rss&id=$feed_id$cat_q$search_q");
4383 $reply .= "<option value=\"0\" disabled=\"1\">".__('Feed:')."</option>";
4385 $reply .= "<option value=\"catchupPage()\">".__('Mark as read')."</option>";
4387 $reply .= "<option value=\"displayDlg('generatedFeed', '$feed_id:$is_cat:$rss_link')\">".__('View as RSS')."</option>";
4389 $reply .= "</select>";
4393 $reply .= "<div id=\"subtoolbar_ftitle\">";
4395 if ($feed_site_url) {
4396 $target = "target=\"_blank\"";
4397 $reply .= "<a title=\"".__("Visit the website")."\" $target href=\"$feed_site_url\">".
4398 truncate_string($feed_title,30)."</a>";
4401 $reply .= " (<span class=\"error\" title=\"$error\">Error</span>)";
4405 if ($feed_id < -10) {
4406 $label_id = -11-$feed_id;
4408 $result = db_query($link, "SELECT fg_color, bg_color
4409 FROM ttrss_labels2 WHERE id = '$label_id' AND owner_uid = " .
4412 if (db_num_rows($result) != 0) {
4413 $fg_color = db_fetch_result($result, 0, "fg_color");
4414 $bg_color = db_fetch_result($result, 0, "bg_color");
4416 $reply .= "<span style=\"background : $bg_color; color : $fg_color\" >";
4417 $reply .= $feed_title;
4418 $reply .= "</span>";
4420 $reply .= $feed_title;
4424 $reply .= $feed_title;
4430 title=\"".__("View as RSS feed")."\"
4431 onclick=\"displayDlg('generatedFeed', '$feed_id:$is_cat:$rss_link')\">
4432 <img class=\"noborder\" style=\"vertical-align : middle\" src=\"images/feed-icon-12x12.png\"></a>";
4439 function outputFeedList($link, $special = true) {
4441 $feedlist = array();
4443 $enable_cats = get_pref($link, 'ENABLE_FEED_CATS');
4445 $feedlist['identifier'] = 'id';
4446 $feedlist['label'] = 'name';
4447 $feedlist['items'] = array();
4449 $owner_uid = $_SESSION["uid"];
4456 $cat_hidden = get_pref($link, "_COLLAPSED_SPECIAL");
4457 $cat = feedlist_init_cat($link, -1, $cat_hidden);
4459 $cat['items'] = array();
4462 foreach (array(-4, -3, -1, -2, 0) as $i) {
4463 array_push($cat['items'], feedlist_init_feed($link, $i));
4467 array_push($feedlist['items'], $cat);
4469 $feedlist['items'] = array_merge($feedlist['items'], $cat['items']);
4472 $result = db_query($link, "SELECT * FROM
4473 ttrss_labels2 WHERE owner_uid = '$owner_uid' ORDER by caption");
4475 if (db_num_rows($result) > 0) {
4477 if (get_pref($link, 'ENABLE_FEED_CATS')) {
4478 $cat_hidden = get_pref($link, "_COLLAPSED_LABELS");
4479 $cat = feedlist_init_cat($link, -2, $cat_hidden);
4481 $cat['items'] = array();
4484 while ($line = db_fetch_assoc($result)) {
4486 $label_id = -$line['id'] - 11;
4487 $count = getFeedUnread($link, $label_id);
4489 $feed = feedlist_init_feed($link, $label_id, false, $count);
4491 $feed['fg_color'] = $line['fg_color'];
4492 $feed['bg_color'] = $line['bg_color'];
4494 array_push($cat['items'], $feed);
4498 array_push($feedlist['items'], $cat);
4500 $feedlist['items'] = array_merge($feedlist['items'], $cat['items']);
4505 /* if (get_pref($link, 'ENABLE_FEED_CATS')) {
4506 if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
4507 $order_by_qpart = "order_id,category,unread DESC,title";
4509 $order_by_qpart = "order_id,category,title";
4512 if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
4513 $order_by_qpart = "unread DESC,title";
4515 $order_by_qpart = "title";
4522 $order_by_qpart = "ttrss_feed_categories.order_id,category,
4523 ttrss_feeds.order_id,title";
4525 $order_by_qpart = "title";
4527 $age_qpart = getMaxAgeSubquery();
4529 $query = "SELECT ttrss_feeds.id, ttrss_feeds.title,
4530 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated_noms,
4532 ttrss_feed_categories.title AS category,
4533 ttrss_feed_categories.collapsed,
4535 FROM ttrss_feeds LEFT JOIN ttrss_feed_categories
4536 ON (ttrss_feed_categories.id = cat_id)
4537 LEFT JOIN ttrss_counters_cache
4539 (ttrss_feeds.id = feed_id)
4541 ttrss_feeds.owner_uid = '$owner_uid'
4542 ORDER BY $order_by_qpart";
4544 $result = db_query($link, $query);
4546 $actid = $_REQUEST["actid"];
4548 if (db_num_rows($result) > 0) {
4553 $cat['items'] = array();
4557 while ($line = db_fetch_assoc($result)) {
4559 $feed = htmlspecialchars(trim($line["title"]));
4561 if (!$feed) $feed = "[Untitled]";
4563 $feed_id = $line["id"];
4564 $unread = $line["unread"];
4566 $cat_id = $line["cat_id"];
4567 $tmp_category = $line["category"];
4568 if (!$tmp_category) $tmp_category = __("Uncategorized");
4570 if ($category != $tmp_category && $enable_cats) {
4572 $category = $tmp_category;
4574 $collapsed = sql_bool_to_bool($line["collapsed"]);
4576 // workaround for NULL category
4577 if ($category == __("Uncategorized")) {
4578 $collapsed = get_pref($link, "_COLLAPSED_UNCAT");
4581 if ($cat) array_push($feedlist['items'], $cat);
4583 $cat = feedlist_init_cat($link, $cat_id, $collapsed);
4586 $updated = make_local_datetime($link, $line["updated_noms"], false);
4588 array_push($cat['items'], feedlist_init_feed($link, $feed_id,
4589 $feed, $unread, $line['last_error'], $updated));
4593 array_push($feedlist['items'], $cat);
4595 $feedlist['items'] = array_merge($feedlist['items'], $cat['items']);
4603 function get_article_tags($link, $id, $owner_uid = 0, $tag_cache = false) {
4607 $a_id = db_escape_string($id);
4609 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
4611 $query = "SELECT DISTINCT tag_name,
4612 owner_uid as owner FROM
4613 ttrss_tags WHERE post_int_id = (SELECT int_id FROM ttrss_user_entries WHERE
4614 ref_id = '$a_id' AND owner_uid = '$owner_uid' LIMIT 1) ORDER BY tag_name";
4616 $obj_id = md5("TAGS:$owner_uid:$id");
4619 if ($memcache && $obj = $memcache->get($obj_id)) {
4622 /* check cache first */
4624 if ($tag_cache === false) {
4625 $result = db_query($link, "SELECT tag_cache FROM ttrss_user_entries
4626 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4628 $tag_cache = db_fetch_result($result, 0, "tag_cache");
4632 $tags = explode(",", $tag_cache);
4635 /* do it the hard way */
4637 $tmp_result = db_query($link, $query);
4639 while ($tmp_line = db_fetch_assoc($tmp_result)) {
4640 array_push($tags, $tmp_line["tag_name"]);
4643 /* update the cache */
4645 $tags_str = db_escape_string(join(",", $tags));
4647 db_query($link, "UPDATE ttrss_user_entries
4648 SET tag_cache = '$tags_str' WHERE ref_id = '$id'
4649 AND owner_uid = " . $_SESSION["uid"]);
4652 if ($memcache) $memcache->add($obj_id, $tags, 0, 3600);
4658 function trim_value(&$value) {
4659 $value = trim($value);
4662 function trim_array($array) {
4664 array_walk($tmp, 'trim_value');
4668 function tag_is_valid($tag) {
4669 if ($tag == '') return false;
4670 if (preg_match("/^[0-9]*$/", $tag)) return false;
4671 if (mb_strlen($tag) > 250) return false;
4673 if (function_exists('iconv')) {
4674 $tag = iconv("utf-8", "utf-8", $tag);
4677 if (!$tag) return false;
4682 function render_login_form($link, $mobile = 0) {
4685 require_once "login_form.php";
4688 require_once "mobile/login_form.php";
4691 require_once "mobile/classic/login_form.php";
4695 // from http://developer.apple.com/internet/safari/faq.html
4696 function no_cache_incantation() {
4697 header("Expires: Mon, 22 Dec 1980 00:00:00 GMT"); // Happy birthday to me :)
4698 header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // always modified
4699 header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); // HTTP/1.1
4700 header("Cache-Control: post-check=0, pre-check=0", false);
4701 header("Pragma: no-cache"); // HTTP/1.0
4704 function format_warning($msg, $id = "") {
4706 return "<div class=\"warning\" id=\"$id\">
4707 <img src=\"".theme_image($link, "images/sign_excl.png")."\">$msg</div>";
4710 function format_notice($msg, $id = "") {
4712 return "<div class=\"notice\" id=\"$id\">
4713 <img src=\"".theme_image($link, "images/sign_info.png")."\">$msg</div>";
4716 function format_error($msg, $id = "") {
4718 return "<div class=\"error\" id=\"$id\">
4719 <img src=\"".theme_image($link, "images/sign_excl.png")."\">$msg</div>";
4722 function print_notice($msg) {
4723 return print format_notice($msg);
4726 function print_warning($msg) {
4727 return print format_warning($msg);
4730 function print_error($msg) {
4731 return print format_error($msg);
4735 function T_sprintf() {
4736 $args = func_get_args();
4737 return vsprintf(__(array_shift($args)), $args);
4740 function format_inline_player($link, $url, $ctype) {
4744 if (strpos($ctype, "audio/") === 0) {
4746 if ($_SESSION["hasAudio"] && (strpos($ctype, "ogg") !== false ||
4747 strpos($_SERVER['HTTP_USER_AGENT'], "Chrome") !== false ||
4748 strpos($_SERVER['HTTP_USER_AGENT'], "Safari") !== false )) {
4750 $id = 'AUDIO-' . uniqid();
4752 $entry .= "<audio id=\"$id\"\">
4753 <source src=\"$url\"></source>
4756 $entry .= "<span onclick=\"player(this)\"
4757 title=\"".__("Click to play")."\" status=\"0\"
4758 class=\"player\" audio-id=\"$id\">".__("Play")."</span>";
4762 $entry .= "<object type=\"application/x-shockwave-flash\"
4763 data=\"lib/button/musicplayer.swf?song_url=$url\"
4764 width=\"17\" height=\"17\" style='float : left; margin-right : 5px;'>
4765 <param name=\"movie\"
4766 value=\"lib/button/musicplayer.swf?song_url=$url\" />
4771 $filename = substr($url, strrpos($url, "/")+1);
4773 $entry .= " <a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
4774 $filename . " (" . $ctype . ")" . "</a>";
4779 function format_article($link, $id, $mark_as_read = true, $zoom_mode = false) {
4785 /* we can figure out feed_id from article id anyway, why do we
4786 * pass feed_id here? let's ignore the argument :( */
4788 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
4789 WHERE ref_id = '$id'");
4791 $feed_id = (int) db_fetch_result($result, 0, "feed_id");
4793 $rv['feed_id'] = $feed_id;
4795 //if (!$zoom_mode) { print "<article id='$id'><![CDATA["; };
4797 $result = db_query($link, "SELECT rtl_content, always_display_enclosures FROM ttrss_feeds
4798 WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
4800 if (db_num_rows($result) == 1) {
4801 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
4802 $always_display_enclosures = sql_bool_to_bool(db_fetch_result($result, 0, "always_display_enclosures"));
4804 $rtl_content = false;
4805 $always_display_enclosures = false;
4809 $rtl_tag = "dir=\"RTL\"";
4816 if ($mark_as_read) {
4817 $result = db_query($link, "UPDATE ttrss_user_entries
4818 SET unread = false,last_read = NOW()
4819 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
4821 ccache_update($link, $feed_id, $_SESSION["uid"]);
4824 $result = db_query($link, "SELECT title,link,content,feed_id,comments,int_id,
4825 ".SUBSTRING_FOR_DATE."(updated,1,16) as updated,
4826 (SELECT icon_url FROM ttrss_feeds WHERE id = feed_id) as icon_url,
4827 (SELECT site_url FROM ttrss_feeds WHERE id = feed_id) as site_url,
4833 FROM ttrss_entries,ttrss_user_entries
4834 WHERE id = '$id' AND ref_id = id AND owner_uid = " . $_SESSION["uid"]);
4838 $line = db_fetch_assoc($result);
4840 if ($line["icon_url"]) {
4841 $feed_icon = "<img src=\"" . $line["icon_url"] . "\">";
4843 $feed_icon = " ";
4846 $feed_site_url = $line['site_url'];
4848 $num_comments = $line["num_comments"];
4849 $entry_comments = "";
4851 if ($num_comments > 0) {
4852 if ($line["comments"]) {
4853 $comments_url = $line["comments"];
4855 $comments_url = $line["link"];
4857 $entry_comments = "<a target='_blank' href=\"$comments_url\">$num_comments comments</a>";
4859 if ($line["comments"] && $line["link"] != $line["comments"]) {
4860 $entry_comments = "<a target='_blank' href=\"".$line["comments"]."\">comments</a>";
4865 header("Content-Type: text/html");
4866 $rv['content'] .= "<html><head>
4867 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
4868 <title>Tiny Tiny RSS - ".$line["title"]."</title>
4869 <link rel=\"stylesheet\" type=\"text/css\" href=\"tt-rss.css\">
4873 $rv['content'] .= "<div id=\"PTITLE-$id\" style=\"display : none\">" .
4874 truncate_string(strip_tags($line['title']), 15) . "</div>";
4876 $rv['content'] .= "<div class=\"postReply\" id=\"POST-$id\">";
4878 $rv['content'] .= "<div onclick=\"return postClicked(event, $id)\"
4879 class=\"postHeader\" id=\"POSTHDR-$id\">";
4881 $entry_author = $line["author"];
4883 if ($entry_author) {
4884 $entry_author = __(" - ") . $entry_author;
4887 $parsed_updated = make_local_datetime($link, $line["updated"], true,
4890 $rv['content'] .= "<div class=\"postDate$rtl_class\">$parsed_updated</div>";
4892 if ($line["link"]) {
4893 $rv['content'] .= "<div clear='both'><a target='_blank'
4894 title=\"".htmlspecialchars($line['title'])."\"
4896 $line["link"] . "\">" .
4897 truncate_string($line["title"], 100) .
4898 "<span class='author'>$entry_author</span></a></div>";
4900 $rv['content'] .= "<div clear='both'>" . $line["title"] . "$entry_author</div>";
4903 $tag_cache = $line["tag_cache"];
4906 $tags = get_article_tags($link, $id);
4908 $tags = explode(",", $tag_cache);
4910 $tags_str = format_tags_string($tags, $id);
4911 $tags_str_full = join(", ", $tags);
4913 if (!$tags_str_full) $tags_str_full = __("no tags");
4915 if (!$entry_comments) $entry_comments = " "; # placeholder
4917 $rv['content'] .= "<div style='float : right'>
4918 <img src='".theme_image($link, 'images/tag.png')."'
4919 class='tagsPic' alt='Tags' title='Tags'> ";
4922 $rv['content'] .= "<span id=\"ATSTR-$id\">$tags_str</span>
4923 <a title=\"".__('Edit tags for this article')."\"
4924 href=\"#\" onclick=\"editArticleTags($id, $feed_id)\">(+)</a>";
4926 $rv['content'] .= "<div dojoType=\"dijit.Tooltip\"
4927 id=\"ATSTRTIP-$id\" connectId=\"ATSTR-$id\"
4928 position=\"below\">$tags_str_full</div>";
4930 $rv['content'] .= "<img src=\"".theme_image($link, 'images/art-zoom.png')."\"
4931 class='tagsPic' style=\"cursor : pointer\"
4932 onclick=\"postOpenInNewTab(event, $id)\"
4933 alt='Zoom' title='".__('Open article in new tab')."'>";
4935 //$note_escaped = htmlspecialchars($line['note'], ENT_QUOTES);
4937 $rv['content'] .= "<img src=\"".theme_image($link, 'images/art-pub-note.png')."\"
4938 class='tagsPic' style=\"cursor : pointer\"
4939 onclick=\"editArticleNote($id)\"
4940 alt='PubNote' title='".__('Edit article note')."'>";
4942 if (DIGEST_ENABLE) {
4943 $rv['content'] .= "<img src=\"".theme_image($link, 'images/art-email.png')."\"
4944 class='tagsPic' style=\"cursor : pointer\"
4945 onclick=\"emailArticle($id)\"
4946 alt='Zoom' title='".__('Forward by email')."'>";
4949 if (ENABLE_TWEET_BUTTON) {
4950 $rv['content'] .= "<img src=\"".theme_image($link, 'images/art-tweet.png')."\"
4951 class='tagsPic' style=\"cursor : pointer\"
4952 onclick=\"tweetArticle($id)\"
4953 alt='Zoom' title='".__('Share on Twitter')."'>";
4956 $rv['content'] .= "<img src=\"".theme_image($link, 'images/art-share.png')."\"
4957 class='tagsPic' style=\"cursor : pointer\"
4958 onclick=\"shareArticle(".$line['int_id'].")\"
4959 alt='Zoom' title='".__('Share by URL')."'>";
4961 $rv['content'] .= "<img src=\"".theme_image($link, 'images/digest_checkbox.png')."\"
4962 class='tagsPic' style=\"cursor : pointer\"
4963 onclick=\"closeArticlePanel($id)\"
4964 alt='Zoom' title='".__('Close this panel')."'>";
4967 $tags_str = strip_tags($tags_str);
4968 $rv['content'] .= "<span id=\"ATSTR-$id\">$tags_str</span>";
4970 $rv['content'] .= "</div>";
4971 $rv['content'] .= "<div clear='both'>$entry_comments</div>";
4973 if ($line["orig_feed_id"]) {
4975 $tmp_result = db_query($link, "SELECT * FROM ttrss_archived_feeds
4976 WHERE id = ".$line["orig_feed_id"]);
4978 if (db_num_rows($tmp_result) != 0) {
4980 $rv['content'] .= "<div clear='both'>";
4981 $rv['content'] .= __("Originally from:");
4983 $rv['content'] .= " ";
4985 $tmp_line = db_fetch_assoc($tmp_result);
4987 $rv['content'] .= "<a target='_blank'
4988 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
4989 $tmp_line['title'] . "</a>";
4991 $rv['content'] .= " ";
4993 $rv['content'] .= "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
4994 $rv['content'] .= "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_set.gif'></a>";
4996 $rv['content'] .= "</div>";
5000 $rv['content'] .= "</div>";
5002 $rv['content'] .= "<div id=\"POSTNOTE-$id\">";
5003 if ($line['note']) {
5004 $rv['content'] .= format_article_note($id, $line['note']);
5006 $rv['content'] .= "</div>";
5008 $rv['content'] .= "<div class=\"postIcon\">" .
5009 "<a target=\"_blank\" title=\"".__("Visit the website")."\"$
5010 href=\"".htmlspecialchars($feed_site_url)."\">".
5011 $feed_icon . "</a></div>";
5013 $rv['content'] .= "<div class=\"postContent\">";
5015 $article_content = sanitize_rss($link, $line["content"], false, false,
5018 $rv['content'] .= $article_content;
5020 $rv['content'] .= format_article_enclosures($link, $id,
5021 $always_display_enclosures, $article_content);
5023 $rv['content'] .= "</div>";
5025 $rv['content'] .= "</div>";
5031 <div style=\"text-align : center\">
5032 <button onclick=\"return window.close()\">".
5033 __("Close this window")."</button></div>";
5034 $rv['content'] .= "</body></html>";
5041 function format_headlines_list($link, $feed, $subop, $view_mode, $limit, $cat_view,
5042 $next_unread_feed, $offset, $vgr_last_feed = false,
5043 $override_order = false) {
5045 $disable_cache = false;
5049 $timing_info = getmicrotime();
5051 $topmost_article_ids = array();
5053 if (!$offset) $offset = 0;
5054 if ($subop == "undefined") $subop = "";
5056 $subop_split = explode(":", $subop);
5058 /* if ($subop == "CatchupSelected") {
5059 $ids = explode(",", db_escape_string($_REQUEST["ids"]));
5060 $cmode = sprintf("%d", $_REQUEST["cmode"]);
5062 catchupArticlesById($link, $ids, $cmode);
5065 if ($subop == "ForceUpdate" && $feed && is_numeric($feed) > 0) {
5066 update_rss_feed($link, $feed, true);
5069 if ($subop == "MarkAllRead") {
5070 catchup_feed($link, $feed, $cat_view);
5072 if (get_pref($link, 'ON_CATCHUP_SHOW_NEXT_FEED')) {
5073 if ($next_unread_feed) {
5074 $feed = $next_unread_feed;
5079 if ($subop_split[0] == "MarkAllReadGR") {
5080 catchup_feed($link, $subop_split[1], false);
5083 // FIXME: might break tag display?
5085 if (is_numeric($feed) && $feed > 0 && !$cat_view) {
5086 $result = db_query($link,
5087 "SELECT id FROM ttrss_feeds WHERE id = '$feed' LIMIT 1");
5089 if (db_num_rows($result) == 0) {
5090 $reply['content'] = "<div align='center'>".__('Feed not found.')."</div>";
5094 if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) {
5096 $result = db_query($link, "SELECT rtl_content FROM ttrss_feeds
5097 WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
5099 if (db_num_rows($result) == 1) {
5100 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
5102 $rtl_content = false;
5106 $rtl_tag = "dir=\"RTL\"";
5112 $rtl_content = false;
5115 @$search = db_escape_string($_REQUEST["query"]);
5118 $disable_cache = true;
5121 @$search_mode = db_escape_string($_REQUEST["search_mode"]);
5122 @$match_on = db_escape_string($_REQUEST["match_on"]);
5128 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H0", $timing_info);
5130 // error_log("format_headlines_list: [" . $feed . "] subop [" . $subop . "]");
5131 if( $search_mode == '' && $subop != '' ){
5132 $search_mode = $subop;
5134 // error_log("search_mode: " . $search_mode);
5135 $qfh_ret = queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view,
5136 $search, $search_mode, $match_on, $override_order, $offset);
5138 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H1", $timing_info);
5140 $result = $qfh_ret[0];
5141 $feed_title = $qfh_ret[1];
5142 $feed_site_url = $qfh_ret[2];
5143 $last_error = $qfh_ret[3];
5145 $vgroup_last_feed = $vgr_last_feed;
5149 if (db_num_rows($result) > 0) {
5150 $reply['toolbar'] = format_headline_subtoolbar($link, $feed_site_url,
5152 $feed, $cat_view, $search, $match_on, $search_mode, $view_mode,
5157 $headlines_count = db_num_rows($result);
5159 if (db_num_rows($result) > 0) {
5164 $cur_feed_title = '';
5166 $fresh_intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE") * 60 * 60;
5168 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("PS", $timing_info);
5170 while ($line = db_fetch_assoc($result)) {
5172 $class = ($lnum % 2) ? "even" : "odd";
5175 $feed_id = $line["feed_id"];
5176 $label_cache = $line["label_cache"];
5180 $label_cache = json_decode($label_cache, true);
5183 if ($label_cache["no-labels"] == 1)
5186 $labels = $label_cache;
5190 if (!is_array($labels)) $labels = get_article_labels($link, $id);
5192 $labels_str = "<span id=\"HLLCTR-$id\">";
5193 $labels_str .= format_article_labels($labels, $id);
5194 $labels_str .= "</span>";
5196 if (count($topmost_article_ids) < 3) {
5197 array_push($topmost_article_ids, $id);
5200 if ($line["last_read"] == "" && !sql_bool_to_bool($line["unread"])) {
5202 $update_pic = "<img id='FUPDPIC-$id' src=\"".
5203 theme_image($link, 'images/updated.png')."\"
5206 $update_pic = "<img id='FUPDPIC-$id' src=\"images/blank_icon.gif\"
5210 if (sql_bool_to_bool($line["unread"]) &&
5211 time() - strtotime($line["updated_noms"]) < $fresh_intl) {
5213 $update_pic = "<img id='FUPDPIC-$id' src=\"".
5214 theme_image($link, 'images/fresh_sign.png')."\" alt=\"Fresh\">";
5217 if ($line["unread"] == "t" || $line["unread"] == "1") {
5218 $class .= " Unread";
5225 if ($line["marked"] == "t" || $line["marked"] == "1") {
5226 $marked_pic = "<img id=\"FMPIC-$id\"
5227 src=\"".theme_image($link, 'images/mark_set.png')."\"
5228 class=\"markedPic\" alt=\"Unstar article\"
5229 onclick='javascript:tMark($id)'>";
5231 $marked_pic = "<img id=\"FMPIC-$id\"
5232 src=\"".theme_image($link, 'images/mark_unset.png')."\"
5233 class=\"markedPic\" alt=\"Star article\"
5234 onclick='javascript:tMark($id)'>";
5237 if ($line["published"] == "t" || $line["published"] == "1") {
5238 $published_pic = "<img id=\"FPPIC-$id\" src=\"".theme_image($link,
5239 'images/pub_set.png')."\"
5241 alt=\"Unpublish article\" onclick='javascript:tPub($id)'>";
5243 $published_pic = "<img id=\"FPPIC-$id\" src=\"".theme_image($link,
5244 'images/pub_unset.png')."\"
5246 alt=\"Publish article\" onclick='javascript:tPub($id)'>";
5249 # $content_link = "<a target=\"_blank\" href=\"".$line["link"]."\">" .
5250 # $line["title"] . "</a>";
5252 # $content_link = "<a
5253 # href=\"" . htmlspecialchars($line["link"]) . "\"
5254 # onclick=\"view($id,$feed_id);\">" .
5255 # $line["title"] . "</a>";
5257 # $content_link = "<a href=\"javascript:viewContentUrl('".$line["link"]."');\">" .
5258 # $line["title"] . "</a>";
5260 $updated_fmt = make_local_datetime($link, $line["updated_noms"], false);
5262 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
5263 $content_preview = truncate_string(strip_tags($line["content_preview"]),
5267 $score = $line["score"];
5269 $score_pic = theme_image($link,
5270 "images/" . get_score_pic($score));
5272 /* $score_title = __("(Click to change)");
5273 $score_pic = "<img class='hlScorePic' src=\"images/$score_pic\"
5274 onclick=\"adjustArticleScore($id, $score)\" title=\"$score $score_title\">"; */
5276 $score_pic = "<img class='hlScorePic' src=\"$score_pic\"
5281 } else if ($score < -100) {
5287 $entry_author = $line["author"];
5289 if ($entry_author) {
5290 $entry_author = " - $entry_author";
5293 $has_feed_icon = feed_has_icon($feed_id);
5295 if ($has_feed_icon) {
5296 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
5298 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/feed-icon-12x12.png\" alt=\"\">";
5301 if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
5303 if (get_pref($link, 'VFEED_GROUP_BY_FEED')) {
5304 if ($feed_id != $vgroup_last_feed && $line["feed_title"]) {
5306 $cur_feed_title = $line["feed_title"];
5307 $vgroup_last_feed = $feed_id;
5309 $cur_feed_title = htmlspecialchars($cur_feed_title);
5311 $vf_catchup_link = "(<a onclick='javascript:catchupFeedInGroup($feed_id);' href='#'>".__('mark as read')."</a>)";
5313 $reply['content'] .= "<div class='cdmFeedTitle'>".
5314 "<div style=\"float : right\">$feed_icon_img</div>".
5315 "<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
5316 $line["feed_title"]."</a> $vf_catchup_link</div>";
5321 $mouseover_attrs = "onmouseover='postMouseIn($id)'
5322 onmouseout='postMouseOut($id)'";
5324 $reply['content'] .= "<div class='$class' id='RROW-$id' $mouseover_attrs>";
5326 $reply['content'] .= "<div class='hlUpdPic'>$update_pic</div>";
5328 $reply['content'] .= "<div class='hlLeft'>";
5330 $reply['content'] .= "<input type=\"checkbox\" onclick=\"tSR(this)\"
5333 $reply['content'] .= "$marked_pic";
5334 $reply['content'] .= "$published_pic";
5336 $reply['content'] .= "</div>";
5338 $reply['content'] .= "<div onclick='return hlClicked(event, $id)'
5339 class=\"hlTitle\"><span class='hlContent$hlc_suffix'>";
5340 $reply['content'] .= "<a id=\"RTITLE-$id\"
5341 href=\"" . htmlspecialchars($line["link"]) . "\"
5343 truncate_string($line["title"], 200);
5345 if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) {
5346 if ($content_preview) {
5347 $reply['content'] .= "<span class=\"contentPreview\"> - $content_preview</span>";
5351 $reply['content'] .= "</a></span>";
5353 $reply['content'] .= $labels_str;
5355 if (!get_pref($link, 'VFEED_GROUP_BY_FEED') &&
5356 defined('_SHOW_FEED_TITLE_IN_VFEEDS')) {
5357 if (@$line["feed_title"]) {
5358 $reply['content'] .= "<span class=\"hlFeed\">
5359 (<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
5360 $line["feed_title"]."</a>)
5365 $reply['content'] .= "</div>";
5367 $reply['content'] .= "<span class=\"hlUpdated\">$updated_fmt</span>";
5368 $reply['content'] .= "<div class=\"hlRight\">";
5370 $reply['content'] .= $score_pic;
5372 if ($line["feed_title"] && !get_pref($link, 'VFEED_GROUP_BY_FEED')) {
5374 $reply['content'] .= "<span onclick=\"viewfeed($feed_id)\"
5375 style=\"cursor : pointer\"
5376 title=\"".htmlspecialchars($line['feed_title'])."\">
5377 $feed_icon_img<span>";
5380 $reply['content'] .= "</div>";
5381 $reply['content'] .= "</div>";
5385 if (get_pref($link, 'VFEED_GROUP_BY_FEED') && $line["feed_title"]) {
5386 if ($feed_id != $vgroup_last_feed) {
5388 $cur_feed_title = $line["feed_title"];
5389 $vgroup_last_feed = $feed_id;
5391 $cur_feed_title = htmlspecialchars($cur_feed_title);
5393 $vf_catchup_link = "(<a onclick='javascript:catchupFeedInGroup($feed_id);' href='#'>".__('mark as read')."</a>)";
5395 $has_feed_icon = feed_has_icon($feed_id);
5397 if ($has_feed_icon) {
5398 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
5400 //$feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\" alt=\"\">";
5403 $reply['content'] .= "<div class='cdmFeedTitle'>".
5404 "<div style=\"float : right\">$feed_icon_img</div>".
5405 "<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
5406 $line["feed_title"]."</a> $vf_catchup_link</div>";
5410 $expand_cdm = get_pref($link, 'CDM_EXPANDED');
5412 $mouseover_attrs = "onmouseover='postMouseIn($id)'
5413 onmouseout='postMouseOut($id)'";
5415 $reply['content'] .= "<div class=\"$class\"
5416 id=\"RROW-$id\" $mouseover_attrs'>";
5418 $reply['content'] .= "<div class=\"cdmHeader\">";
5420 $reply['content'] .= "<div>";
5422 $reply['content'] .= "<input type=\"checkbox\" onclick=\"toggleSelectRowById(this,
5423 'RROW-$id')\" id=\"RCHK-$id\"/>";
5425 $reply['content'] .= "$marked_pic";
5426 $reply['content'] .= "$published_pic";
5428 $reply['content'] .= "</div>";
5430 $reply['content'] .= "<span id=\"RTITLE-$id\"
5431 onclick=\"return cdmClicked(event, $id);\"
5432 class=\"titleWrap$hlc_suffix\">
5434 title=\"".htmlspecialchars($line['title'])."\"
5435 target=\"_blank\" href=\"".
5436 htmlspecialchars($line["link"])."\">".
5437 truncate_string($line["title"], 100) .
5438 " $entry_author</a>";
5440 $reply['content'] .= $labels_str;
5442 if (!get_pref($link, 'VFEED_GROUP_BY_FEED') &&
5443 defined('_SHOW_FEED_TITLE_IN_VFEEDS')) {
5444 if (@$line["feed_title"]) {
5445 $reply['content'] .= "<span class=\"hlFeed\">
5446 (<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
5447 $line["feed_title"]."</a>)
5453 $content_hidden = "style=\"display : none\"";
5455 $excerpt_hidden = "style=\"display : none\"";
5457 $reply['content'] .= "<span $excerpt_hidden
5458 id=\"CEXC-$id\" class=\"cdmExcerpt\"> - $content_preview</span>";
5460 $reply['content'] .= "</span>";
5462 $reply['content'] .= "<div>";
5463 $reply['content'] .= "<span class='updated'>$updated_fmt</span>";
5464 $reply['content'] .= "$score_pic";
5466 if (!get_pref($link, "VFEED_GROUP_BY_FEED") && $line["feed_title"]) {
5467 $reply['content'] .= "<span style=\"cursor : pointer\"
5468 title=\"".htmlspecialchars($line["feed_title"])."\"
5469 onclick=\"viewfeed($feed_id)\">$feed_icon_img</span>";
5471 $reply['content'] .= "<div class=\"updPic\">$update_pic</div>";
5472 $reply['content'] .= "</div>";
5474 $reply['content'] .= "</div>";
5476 $reply['content'] .= "<div class=\"cdmContent\" $content_hidden
5477 onclick=\"return cdmClicked(event, $id);\"
5480 $reply['content'] .= "<div class=\"cdmContentInner\">";
5482 if ($line["orig_feed_id"]) {
5484 $tmp_result = db_query($link, "SELECT * FROM ttrss_archived_feeds
5485 WHERE id = ".$line["orig_feed_id"]);
5487 if (db_num_rows($tmp_result) != 0) {
5489 $reply['content'] .= "<div clear='both'>";
5490 $reply['content'] .= __("Originally from:");
5492 $reply['content'] .= " ";
5494 $tmp_line = db_fetch_assoc($tmp_result);
5496 $reply['content'] .= "<a target='_blank'
5497 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
5498 $tmp_line['title'] . "</a>";
5500 $reply['content'] .= " ";
5502 $reply['content'] .= "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
5503 $reply['content'] .= "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_set.gif'></a>";
5505 $reply['content'] .= "</div>";
5509 $feed_site_url = $line["site_url"];
5511 $article_content = sanitize_rss($link, $line["content_preview"],
5512 false, false, $feed_site_url);
5514 $reply['content'] .= "<div id=\"POSTNOTE-$id\">";
5515 if ($line['note']) {
5516 $reply['content'] .= format_article_note($id, $line['note']);
5518 $reply['content'] .= "</div>";
5520 $reply['content'] .= "<span id=\"CWRAP-$id\">";
5521 $reply['content'] .= $expand_cdm ? $article_content : '';
5522 $reply['content'] .= "</span>";
5524 /* $tmp_result = db_query($link, "SELECT always_display_enclosures FROM
5525 ttrss_feeds WHERE id = ".
5526 (($line['feed_id'] == null) ? $line['orig_feed_id'] :
5527 $line['feed_id'])." AND owner_uid = ".$_SESSION["uid"]);
5529 $always_display_enclosures = sql_bool_to_bool(db_fetch_result($tmp_result,
5530 0, "always_display_enclosures")); */
5532 $always_display_enclosures = sql_bool_to_bool($line["always_display_enclosures"]);
5534 $reply['content'] .= format_article_enclosures($link, $id, $always_display_enclosures,
5537 $reply['content'] .= "</div>";
5539 $reply['content'] .= "<div class=\"cdmFooter\">";
5541 $tag_cache = $line["tag_cache"];
5543 $tags_str = format_tags_string(
5544 get_article_tags($link, $id, $_SESSION["uid"], $tag_cache),
5547 $reply['content'] .= "<img src='".theme_image($link,
5548 'images/tag.png')."' alt='Tags' title='Tags'>
5549 <span id=\"ATSTR-$id\">$tags_str</span>
5550 <a title=\"".__('Edit tags for this article')."\"
5551 href=\"#\" onclick=\"editArticleTags($id, $feed_id, true)\">(+)</a>";
5553 $num_comments = $line["num_comments"];
5554 $entry_comments = "";
5556 if ($num_comments > 0) {
5557 if ($line["comments"]) {
5558 $comments_url = $line["comments"];
5560 $comments_url = $line["link"];
5562 $entry_comments = "<a target='_blank' href=\"$comments_url\">$num_comments comments</a>";
5564 if ($line["comments"] && $line["link"] != $line["comments"]) {
5565 $entry_comments = "<a target='_blank' href=\"".$line["comments"]."\">comments</a>";
5569 if ($entry_comments) $reply['content'] .= " ($entry_comments)";
5571 $reply['content'] .= "<div style=\"float : right\">";
5573 $reply['content'] .= "<img src=\"images/art-zoom.png\"
5574 onclick=\"zoomToArticle(event, $id)\"
5575 style=\"cursor : pointer\"
5577 title='".__('Open article in new tab')."'>";
5579 //$note_escaped = htmlspecialchars($line['note'], ENT_QUOTES);
5581 $reply['content'] .= "<img src=\"images/art-pub-note.png\"
5582 style=\"cursor : pointer\" style=\"cursor : pointer\"
5583 onclick=\"editArticleNote($id)\"
5584 alt='PubNote' title='".__('Edit article note')."'>";
5586 if (DIGEST_ENABLE) {
5587 $reply['content'] .= "<img src=\"".theme_image($link, 'images/art-email.png')."\"
5588 style=\"cursor : pointer\"
5589 onclick=\"emailArticle($id)\"
5590 alt='Zoom' title='".__('Forward by email')."'>";
5593 if (ENABLE_TWEET_BUTTON) {
5594 $reply['content'] .= "<img src=\"".theme_image($link, 'images/art-tweet.png')."\"
5595 class='tagsPic' style=\"cursor : pointer\"
5596 onclick=\"tweetArticle($id)\"
5597 alt='Zoom' title='".__('Share on Twitter')."'>";
5600 $reply['content'] .= "<img src=\"images/digest_checkbox.png\"
5601 style=\"cursor : pointer\" style=\"cursor : pointer\"
5602 onclick=\"dismissArticle($id)\"
5603 alt='Dismiss' title='".__('Dismiss article')."'>";
5605 $reply['content'] .= "</div>";
5606 $reply['content'] .= "</div>";
5608 $reply['content'] .= "</div>";
5610 $reply['content'] .= "</div>";
5617 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("PE", $timing_info);
5622 switch ($view_mode) {
5624 $message = __("No unread articles found to display.");
5627 $message = __("No updated articles found to display.");
5630 $message = __("No starred articles found to display.");
5634 $message = __("No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter.");
5636 $message = __("No articles found to display.");
5640 if (!$offset && $message) {
5641 $reply['content'] .= "<div class='whiteBox'>$message";
5643 $reply['content'] .= "<p class=\"small\"><span class=\"insensitive\">";
5645 $result = db_query($link, "SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
5646 WHERE owner_uid = " . $_SESSION['uid']);
5648 $last_updated = db_fetch_result($result, 0, "last_updated");
5649 $last_updated = make_local_datetime($link, $last_updated, false);
5651 $reply['content'] .= sprintf(__("Feeds last updated at %s"), $last_updated);
5653 $result = db_query($link, "SELECT COUNT(id) AS num_errors
5654 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
5656 $num_errors = db_fetch_result($result, 0, "num_errors");
5658 if ($num_errors > 0) {
5659 $reply['content'] .= "<br/>";
5660 $reply['content'] .= "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
5661 __('Some feeds have update errors (click for details)')."</a>";
5663 $reply['content'] .= "</span></p></div>";
5667 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H2", $timing_info);
5669 return array($topmost_article_ids, $headlines_count, $feed, $disable_cache,
5670 $vgroup_last_feed, $reply);
5673 // from here: http://www.roscripts.com/Create_tag_cloud-71.html
5675 function printTagCloud($link) {
5677 $query = "SELECT tag_name, COUNT(post_int_id) AS count
5678 FROM ttrss_tags WHERE owner_uid = ".$_SESSION["uid"]."
5679 GROUP BY tag_name ORDER BY count DESC LIMIT 50";
5681 $result = db_query($link, $query);
5685 while ($line = db_fetch_assoc($result)) {
5686 $tags[$line["tag_name"]] = $line["count"];
5689 if( count($tags) == 0 ){ return; }
5693 $max_size = 32; // max font size in pixels
5694 $min_size = 11; // min font size in pixels
5696 // largest and smallest array values
5697 $max_qty = max(array_values($tags));
5698 $min_qty = min(array_values($tags));
5700 // find the range of values
5701 $spread = $max_qty - $min_qty;
5702 if ($spread == 0) { // we don't want to divide by zero
5706 // set the font-size increment
5707 $step = ($max_size - $min_size) / ($spread);
5709 // loop through the tag array
5710 foreach ($tags as $key => $value) {
5711 // calculate font-size
5712 // find the $value in excess of $min_qty
5713 // multiply by the font-size increment ($size)
5714 // and add the $min_size set above
5715 $size = round($min_size + (($value - $min_qty) * $step));
5717 $key_escaped = str_replace("'", "\\'", $key);
5719 echo "<a href=\"javascript:viewfeed('$key_escaped') \" style=\"font-size: " .
5720 $size . "px\" title=\"$value articles tagged with " .
5721 $key . '">' . $key . '</a> ';
5725 function print_checkpoint($n, $s) {
5726 $ts = getmicrotime();
5727 echo sprintf("<!-- CP[$n] %.4f seconds -->", $ts - $s);
5731 function sanitize_tag($tag) {
5734 $tag = mb_strtolower($tag, 'utf-8');
5736 $tag = preg_replace('/[\'\"\+\>\<]/', "", $tag);
5738 // $tag = str_replace('"', "", $tag);
5739 // $tag = str_replace("+", " ", $tag);
5740 $tag = str_replace("technorati tag: ", "", $tag);
5745 function get_self_url_prefix() {
5746 return SELF_URL_PATH;
5749 function opml_publish_url($link){
5751 $url_path = get_self_url_prefix();
5752 $url_path .= "/opml.php?op=publish&key=" .
5753 get_feed_access_key($link, 'OPML:Publish', false, $_SESSION["uid"]);
5759 * Purge a feed contents, marked articles excepted.
5761 * @param mixed $link The database connection.
5762 * @param integer $id The id of the feed to purge.
5765 function clear_feed_articles($link, $id) {
5768 $result = db_query($link, "DELETE FROM ttrss_user_entries
5769 WHERE feed_id = '$id' AND marked = false AND owner_uid = " . $_SESSION["uid"]);
5771 $result = db_query($link, "DELETE FROM ttrss_user_entries
5772 WHERE feed_id IS NULL AND marked = false AND owner_uid = " . $_SESSION["uid"]);
5775 $result = db_query($link, "DELETE FROM ttrss_entries WHERE
5776 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
5778 ccache_update($link, $id, $_SESSION['uid']);
5779 } // function clear_feed_articles
5782 * Compute the Mozilla Firefox feed adding URL from server HOST and REQUEST_URI.
5784 * @return string The Mozilla Firefox feed adding URL.
5786 function add_feed_url() {
5787 //$url_path = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
5789 $url_path = get_self_url_prefix() .
5790 "/backend.php?op=pref-feeds&quiet=1&subop=add&feed_url=%s";
5792 } // function add_feed_url
5795 * Encrypt a password in SHA1.
5797 * @param string $pass The password to encrypt.
5798 * @param string $login A optionnal login.
5799 * @return string The encrypted password.
5801 function encrypt_password($pass, $login = '') {
5803 return "SHA1X:" . sha1("$login:$pass");
5805 return "SHA1:" . sha1($pass);
5807 } // function encrypt_password
5810 * Update a feed batch.
5811 * Used by daemons to update n feeds by run.
5812 * Only update feed needing a update, and not being processed
5813 * by another process.
5815 * @param mixed $link Database link
5816 * @param integer $limit Maximum number of feeds in update batch. Default to DAEMON_FEED_LIMIT.
5817 * @param boolean $from_http Set to true if you call this function from http to disable cli specific code.
5818 * @param boolean $debug Set to false to disable debug output. Default to true.
5821 function update_daemon_common($link, $limit = DAEMON_FEED_LIMIT, $from_http = false, $debug = true) {
5822 // Process all other feeds using last_updated and interval parameters
5824 // Test if the user has loggued in recently. If not, it does not update its feeds.
5825 if (DAEMON_UPDATE_LOGIN_LIMIT > 0) {
5826 if (DB_TYPE == "pgsql") {
5827 $login_thresh_qpart = "AND ttrss_users.last_login >= NOW() - INTERVAL '".DAEMON_UPDATE_LOGIN_LIMIT." days'";
5829 $login_thresh_qpart = "AND ttrss_users.last_login >= DATE_SUB(NOW(), INTERVAL ".DAEMON_UPDATE_LOGIN_LIMIT." DAY)";
5832 $login_thresh_qpart = "";
5835 // Test if the feed need a update (update interval exceded).
5836 if (DB_TYPE == "pgsql") {
5837 $update_limit_qpart = "AND ((
5838 ttrss_feeds.update_interval = 0
5839 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_user_prefs.value || ' minutes') AS INTERVAL)
5841 ttrss_feeds.update_interval > 0
5842 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_feeds.update_interval || ' minutes') AS INTERVAL)
5843 ) OR ttrss_feeds.last_updated IS NULL)";
5845 $update_limit_qpart = "AND ((
5846 ttrss_feeds.update_interval = 0
5847 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL CONVERT(ttrss_user_prefs.value, SIGNED INTEGER) MINUTE)
5849 ttrss_feeds.update_interval > 0
5850 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL ttrss_feeds.update_interval MINUTE)
5851 ) OR ttrss_feeds.last_updated IS NULL)";
5854 // Test if feed is currently being updated by another process.
5855 if (DB_TYPE == "pgsql") {
5856 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < NOW() - INTERVAL '5 minutes')";
5858 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 5 MINUTE))";
5861 // Test if there is a limit to number of updated feeds
5863 if($limit) $query_limit = sprintf("LIMIT %d", $limit);
5865 $random_qpart = sql_random_function();
5867 // We search for feed needing update.
5868 $result = db_query($link, "SELECT ttrss_feeds.feed_url,ttrss_feeds.id, ttrss_feeds.owner_uid,
5869 ".SUBSTRING_FOR_DATE."(ttrss_feeds.last_updated,1,19) AS last_updated,
5870 ttrss_feeds.update_interval
5872 ttrss_feeds, ttrss_users, ttrss_user_prefs
5874 ttrss_feeds.owner_uid = ttrss_users.id
5875 AND ttrss_users.id = ttrss_user_prefs.owner_uid
5876 AND ttrss_user_prefs.pref_name = 'DEFAULT_UPDATE_INTERVAL'
5877 $login_thresh_qpart $update_limit_qpart
5878 $updstart_thresh_qpart
5879 ORDER BY $random_qpart $query_limit");
5881 $user_prefs_cache = array();
5883 if($debug) _debug(sprintf("Scheduled %d feeds to update...\n", db_num_rows($result)));
5885 // Here is a little cache magic in order to minimize risk of double feed updates.
5886 $feeds_to_update = array();
5887 while ($line = db_fetch_assoc($result)) {
5888 $feeds_to_update[$line['id']] = $line;
5891 // We update the feed last update started date before anything else.
5892 // There is no lag due to feed contents downloads
5893 // It prevent an other process to update the same feed.
5894 $feed_ids = array_keys($feeds_to_update);
5896 db_query($link, sprintf("UPDATE ttrss_feeds SET last_update_started = NOW()
5897 WHERE id IN (%s)", implode(',', $feed_ids)));
5900 // For each feed, we call the feed update function.
5901 while ($line = array_pop($feeds_to_update)) {
5903 if($debug) _debug("Feed: " . $line["feed_url"] . ", " . $line["last_updated"]);
5905 update_rss_feed($link, $line["id"], true);
5907 sleep(1); // prevent flood (FIXME make this an option?)
5910 // Send feed digests by email if needed.
5911 if (DAEMON_SENDS_DIGESTS) send_headlines_digests($link);
5913 } // function update_daemon_common
5915 function sanitize_article_content($text) {
5916 # we don't support CDATA sections in articles, they break our own escaping
5917 $text = preg_replace("/\[\[CDATA/", "", $text);
5918 $text = preg_replace("/\]\]\>/", "", $text);
5922 function load_filters($link, $feed, $owner_uid, $action_id = false) {
5927 $obj_id = md5("FILTER:$feed:$owner_uid:$action_id");
5929 if ($memcache && $obj = $memcache->get($obj_id)) {
5935 if ($action_id) $ftype_query_part = "action_id = '$action_id' AND";
5937 $result = db_query($link, "SELECT reg_exp,
5938 ttrss_filter_types.name AS name,
5939 ttrss_filter_actions.name AS action,
5943 FROM ttrss_filters,ttrss_filter_types,ttrss_filter_actions WHERE
5946 owner_uid = $owner_uid AND
5947 ttrss_filter_types.id = filter_type AND
5948 ttrss_filter_actions.id = action_id AND
5949 (feed_id IS NULL OR feed_id = '$feed') ORDER BY reg_exp");
5951 while ($line = db_fetch_assoc($result)) {
5952 if (!$filters[$line["name"]]) $filters[$line["name"]] = array();
5953 $filter["reg_exp"] = $line["reg_exp"];
5954 $filter["action"] = $line["action"];
5955 $filter["action_param"] = $line["action_param"];
5956 $filter["filter_param"] = $line["filter_param"];
5957 $filter["inverse"] = sql_bool_to_bool($line["inverse"]);
5959 array_push($filters[$line["name"]], $filter);
5962 if ($memcache) $memcache->add($obj_id, $filters, 0, 3600*8);
5968 function get_score_pic($score) {
5970 return "score_high.png";
5971 } else if ($score > 0) {
5972 return "score_half_high.png";
5973 } else if ($score < -100) {
5974 return "score_low.png";
5975 } else if ($score < 0) {
5976 return "score_half_low.png";
5978 return "score_neutral.png";
5982 function feed_has_icon($id) {
5983 return is_file(ICONS_DIR . "/$id.ico") && filesize(ICONS_DIR . "/$id.ico") > 0;
5986 function init_connection($link) {
5987 if (DB_TYPE == "pgsql") {
5988 pg_query($link, "set client_encoding = 'UTF-8'");
5989 pg_set_client_encoding("UNICODE");
5990 pg_query($link, "set datestyle = 'ISO, european'");
5991 pg_query($link, "set TIME ZONE 0");
5993 db_query($link, "SET time_zone = '+0:0'");
5995 if (defined('MYSQL_CHARSET') && MYSQL_CHARSET) {
5996 db_query($link, "SET NAMES " . MYSQL_CHARSET);
5997 // db_query($link, "SET CHARACTER SET " . MYSQL_CHARSET);
6002 function update_feedbrowser_cache($link) {
6004 $result = db_query($link, "SELECT feed_url, site_url, title, COUNT(id) AS subscribers
6005 FROM ttrss_feeds WHERE (SELECT COUNT(id) = 0 FROM ttrss_feeds AS tf
6006 WHERE tf.feed_url = ttrss_feeds.feed_url
6007 AND (private IS true OR auth_login != '' OR auth_pass != '' OR feed_url LIKE '%:%@%/%'))
6008 GROUP BY feed_url, site_url, title ORDER BY subscribers DESC LIMIT 1000");
6010 db_query($link, "BEGIN");
6012 db_query($link, "DELETE FROM ttrss_feedbrowser_cache");
6016 while ($line = db_fetch_assoc($result)) {
6017 $subscribers = db_escape_string($line["subscribers"]);
6018 $feed_url = db_escape_string($line["feed_url"]);
6019 $title = db_escape_string($line["title"]);
6020 $site_url = db_escape_string($line["site_url"]);
6022 $tmp_result = db_query($link, "SELECT subscribers FROM
6023 ttrss_feedbrowser_cache WHERE feed_url = '$feed_url'");
6025 if (db_num_rows($tmp_result) == 0) {
6027 db_query($link, "INSERT INTO ttrss_feedbrowser_cache
6028 (feed_url, site_url, title, subscribers) VALUES ('$feed_url',
6029 '$site_url', '$title', '$subscribers')");
6037 db_query($link, "COMMIT");
6043 function ccache_zero($link, $feed_id, $owner_uid) {
6044 db_query($link, "UPDATE ttrss_counters_cache SET
6045 value = 0, updated = NOW() WHERE
6046 feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
6049 function ccache_zero_all($link, $owner_uid) {
6050 db_query($link, "UPDATE ttrss_counters_cache SET
6051 value = 0 WHERE owner_uid = '$owner_uid'");
6053 db_query($link, "UPDATE ttrss_cat_counters_cache SET
6054 value = 0 WHERE owner_uid = '$owner_uid'");
6057 function ccache_remove($link, $feed_id, $owner_uid, $is_cat = false) {
6060 $table = "ttrss_counters_cache";
6062 $table = "ttrss_cat_counters_cache";
6065 db_query($link, "DELETE FROM $table WHERE
6066 feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
6070 function ccache_update_all($link, $owner_uid) {
6072 if (get_pref($link, 'ENABLE_FEED_CATS', $owner_uid)) {
6074 $result = db_query($link, "SELECT feed_id FROM ttrss_cat_counters_cache
6075 WHERE feed_id > 0 AND owner_uid = '$owner_uid'");
6077 while ($line = db_fetch_assoc($result)) {
6078 ccache_update($link, $line["feed_id"], $owner_uid, true);
6081 /* We have to manually include category 0 */
6083 ccache_update($link, 0, $owner_uid, true);
6086 $result = db_query($link, "SELECT feed_id FROM ttrss_counters_cache
6087 WHERE feed_id > 0 AND owner_uid = '$owner_uid'");
6089 while ($line = db_fetch_assoc($result)) {
6090 print ccache_update($link, $line["feed_id"], $owner_uid);
6097 function ccache_find($link, $feed_id, $owner_uid, $is_cat = false,
6098 $no_update = false) {
6100 if (!is_numeric($feed_id)) return;
6103 $table = "ttrss_counters_cache";
6105 $tmp_result = db_query($link, "SELECT owner_uid FROM ttrss_feeds
6106 WHERE id = '$feed_id'");
6107 $owner_uid = db_fetch_result($tmp_result, 0, "owner_uid");
6110 $table = "ttrss_cat_counters_cache";
6113 if (DB_TYPE == "pgsql") {
6114 $date_qpart = "updated > NOW() - INTERVAL '15 minutes'";
6115 } else if (DB_TYPE == "mysql") {
6116 $date_qpart = "updated > DATE_SUB(NOW(), INTERVAL 15 MINUTE)";
6119 $result = db_query($link, "SELECT value FROM $table
6120 WHERE owner_uid = '$owner_uid' AND feed_id = '$feed_id'
6123 if (db_num_rows($result) == 1) {
6124 return db_fetch_result($result, 0, "value");
6129 return ccache_update($link, $feed_id, $owner_uid, $is_cat);
6135 function ccache_update($link, $feed_id, $owner_uid, $is_cat = false,
6136 $update_pcat = true) {
6138 if (!is_numeric($feed_id)) return;
6140 if (!$is_cat && $feed_id > 0) {
6141 $tmp_result = db_query($link, "SELECT owner_uid FROM ttrss_feeds
6142 WHERE id = '$feed_id'");
6143 $owner_uid = db_fetch_result($tmp_result, 0, "owner_uid");
6146 $prev_unread = ccache_find($link, $feed_id, $owner_uid, $is_cat, true);
6148 /* When updating a label, all we need to do is recalculate feed counters
6149 * because labels are not cached */
6152 ccache_update_all($link, $owner_uid);
6157 $table = "ttrss_counters_cache";
6159 $table = "ttrss_cat_counters_cache";
6162 if ($is_cat && $feed_id >= 0) {
6163 if ($feed_id != 0) {
6164 $cat_qpart = "cat_id = '$feed_id'";
6166 $cat_qpart = "cat_id IS NULL";
6169 /* Recalculate counters for child feeds */
6171 $result = db_query($link, "SELECT id FROM ttrss_feeds
6172 WHERE owner_uid = '$owner_uid' AND $cat_qpart");
6174 while ($line = db_fetch_assoc($result)) {
6175 ccache_update($link, $line["id"], $owner_uid, false, false);
6178 $result = db_query($link, "SELECT SUM(value) AS sv
6179 FROM ttrss_counters_cache, ttrss_feeds
6180 WHERE id = feed_id AND $cat_qpart AND
6181 ttrss_feeds.owner_uid = '$owner_uid'");
6183 $unread = (int) db_fetch_result($result, 0, "sv");
6186 $unread = (int) getFeedArticles($link, $feed_id, $is_cat, true, $owner_uid);
6189 db_query($link, "BEGIN");
6191 $result = db_query($link, "SELECT feed_id FROM $table
6192 WHERE owner_uid = '$owner_uid' AND feed_id = '$feed_id' LIMIT 1");
6194 if (db_num_rows($result) == 1) {
6195 db_query($link, "UPDATE $table SET
6196 value = '$unread', updated = NOW() WHERE
6197 feed_id = '$feed_id' AND owner_uid = '$owner_uid'");
6200 db_query($link, "INSERT INTO $table
6201 (feed_id, value, owner_uid, updated)
6203 ($feed_id, $unread, $owner_uid, NOW())");
6206 db_query($link, "COMMIT");
6208 if ($feed_id > 0 && $prev_unread != $unread) {
6212 /* Update parent category */
6216 $result = db_query($link, "SELECT cat_id FROM ttrss_feeds
6217 WHERE owner_uid = '$owner_uid' AND id = '$feed_id'");
6219 $cat_id = (int) db_fetch_result($result, 0, "cat_id");
6221 ccache_update($link, $cat_id, $owner_uid, true);
6225 } else if ($feed_id < 0) {
6226 ccache_update_all($link, $owner_uid);
6232 function ccache_cleanup($link, $owner_uid) {
6234 if (DB_TYPE == "pgsql") {
6235 db_query($link, "DELETE FROM ttrss_counters_cache AS c1 WHERE
6236 (SELECT count(*) FROM ttrss_counters_cache AS c2
6237 WHERE c1.feed_id = c2.feed_id AND c2.owner_uid = c1.owner_uid) > 1
6238 AND owner_uid = '$owner_uid'");
6240 db_query($link, "DELETE FROM ttrss_cat_counters_cache AS c1 WHERE
6241 (SELECT count(*) FROM ttrss_cat_counters_cache AS c2
6242 WHERE c1.feed_id = c2.feed_id AND c2.owner_uid = c1.owner_uid) > 1
6243 AND owner_uid = '$owner_uid'");
6245 db_query($link, "DELETE c1 FROM
6246 ttrss_counters_cache AS c1,
6247 ttrss_counters_cache AS c2
6249 c1.owner_uid = '$owner_uid' AND
6250 c1.owner_uid = c2.owner_uid AND
6251 c1.feed_id = c2.feed_id");
6253 db_query($link, "DELETE c1 FROM
6254 ttrss_cat_counters_cache AS c1,
6255 ttrss_cat_counters_cache AS c2
6257 c1.owner_uid = '$owner_uid' AND
6258 c1.owner_uid = c2.owner_uid AND
6259 c1.feed_id = c2.feed_id");
6264 function label_find_id($link, $label, $owner_uid) {
6265 $result = db_query($link,
6266 "SELECT id FROM ttrss_labels2 WHERE caption = '$label'
6267 AND owner_uid = '$owner_uid' LIMIT 1");
6269 if (db_num_rows($result) == 1) {
6270 return db_fetch_result($result, 0, "id");
6276 function get_article_labels($link, $id) {
6279 $obj_id = md5("LABELS:$id:" . $_SESSION["uid"]);
6283 if ($memcache && $obj = $memcache->get($obj_id)) {
6287 $result = db_query($link, "SELECT label_cache FROM
6288 ttrss_user_entries WHERE ref_id = '$id' AND owner_uid = " .
6291 $label_cache = db_fetch_result($result, 0, "label_cache");
6295 $label_cache = json_decode($label_cache, true);
6297 if ($label_cache["no-labels"] == 1)
6300 return $label_cache;
6303 $result = db_query($link,
6304 "SELECT DISTINCT label_id,caption,fg_color,bg_color
6305 FROM ttrss_labels2, ttrss_user_labels2
6307 AND article_id = '$id'
6308 AND owner_uid = ".$_SESSION["uid"] . "
6311 while ($line = db_fetch_assoc($result)) {
6312 $rk = array($line["label_id"], $line["caption"], $line["fg_color"],
6314 array_push($rv, $rk);
6316 if ($memcache) $memcache->add($obj_id, $rv, 0, 3600);
6319 label_update_cache($link, $id, $rv);
6321 label_update_cache($link, $id, array("no-labels" => 1));
6328 function label_find_caption($link, $label, $owner_uid) {
6329 $result = db_query($link,
6330 "SELECT caption FROM ttrss_labels2 WHERE id = '$label'
6331 AND owner_uid = '$owner_uid' LIMIT 1");
6333 if (db_num_rows($result) == 1) {
6334 return db_fetch_result($result, 0, "caption");
6340 function label_update_cache($link, $id, $labels = false, $force = false) {
6343 label_clear_cache($link, $id);
6346 $labels = get_article_labels($link, $id);
6348 $labels = db_escape_string(json_encode($labels));
6350 db_query($link, "UPDATE ttrss_user_entries SET
6351 label_cache = '$labels' WHERE ref_id = '$id'");
6355 function label_clear_cache($link, $id) {
6357 db_query($link, "UPDATE ttrss_user_entries SET
6358 label_cache = '' WHERE ref_id = '$id'");
6362 function label_remove_article($link, $id, $label, $owner_uid) {
6364 $label_id = label_find_id($link, $label, $owner_uid);
6366 if (!$label_id) return;
6368 $result = db_query($link,
6369 "DELETE FROM ttrss_user_labels2
6371 label_id = '$label_id' AND
6372 article_id = '$id'");
6374 label_clear_cache($link, $id);
6377 function label_add_article($link, $id, $label, $owner_uid) {
6382 $obj_id = md5("LABELS:$id:$owner_uid");
6383 $memcache->delete($obj_id);
6386 $label_id = label_find_id($link, $label, $owner_uid);
6388 if (!$label_id) return;
6390 $result = db_query($link,
6392 article_id FROM ttrss_labels2, ttrss_user_labels2
6395 label_id = '$label_id' AND
6396 article_id = '$id' AND owner_uid = '$owner_uid'
6399 if (db_num_rows($result) == 0) {
6400 db_query($link, "INSERT INTO ttrss_user_labels2
6401 (label_id, article_id) VALUES ('$label_id', '$id')");
6404 label_clear_cache($link, $id);
6408 function label_remove($link, $id, $owner_uid) {
6411 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
6414 $obj_id = md5("LABELS:$id:$owner_uid");
6415 $memcache->delete($obj_id);
6418 db_query($link, "BEGIN");
6420 $result = db_query($link, "SELECT caption FROM ttrss_labels2
6423 $caption = db_fetch_result($result, 0, "caption");
6425 $result = db_query($link, "DELETE FROM ttrss_labels2 WHERE id = '$id'
6426 AND owner_uid = " . $owner_uid);
6428 if (db_affected_rows($link, $result) != 0 && $caption) {
6430 /* Remove access key for the label */
6432 $ext_id = -11 - $id;
6434 db_query($link, "DELETE FROM ttrss_access_keys WHERE
6435 feed_id = '$ext_id' AND owner_uid = $owner_uid");
6437 /* Disable filters that reference label being removed */
6439 db_query($link, "UPDATE ttrss_filters SET
6440 enabled = false WHERE action_param = '$caption'
6442 AND owner_uid = " . $owner_uid);
6444 /* Remove cached data */
6446 db_query($link, "UPDATE ttrss_user_entries SET label_cache = ''
6447 WHERE label_cache LIKE '%$caption%' AND owner_uid = " . $owner_uid);
6451 db_query($link, "COMMIT");
6454 function label_create($link, $caption) {
6456 db_query($link, "BEGIN");
6460 $result = db_query($link, "SELECT id FROM ttrss_labels2
6461 WHERE caption = '$caption' AND owner_uid = ". $_SESSION["uid"]);
6463 if (db_num_rows($result) == 0) {
6464 $result = db_query($link,
6465 "INSERT INTO ttrss_labels2 (caption,owner_uid)
6466 VALUES ('$caption', '".$_SESSION["uid"]."')");
6468 $result = db_affected_rows($link, $result) != 0;
6471 db_query($link, "COMMIT");
6476 function print_labels_headlines_dropdown($link, $feed_id) {
6477 print "<option value=\"addLabel()\">".__("Create label...")."</option>";
6479 $result = db_query($link, "SELECT id, caption FROM ttrss_labels2 WHERE
6480 owner_uid = '".$_SESSION["uid"]."' ORDER BY caption");
6482 while ($line = db_fetch_assoc($result)) {
6484 $label_id = $line["id"];
6485 $label_caption = $line["caption"];
6488 if ($feed_id < -10 && $feed_id == -11-$label_id) {
6489 print "<option id=\"LHDL-$id\"
6490 value=\"selectionRemoveLabel($label_id)\">".
6491 __('Remove:') . " $label_caption</option>";
6493 print "<option id=\"LHDL-$id\"
6494 value=\"selectionAssignLabel($label_id)\">".
6495 __('Assign:') . " $label_caption</option>";
6500 function format_tags_string($tags, $id) {
6503 $tags_nolinks_str = "";
6509 $formatted_tags = array();
6511 foreach ($tags as $tag) {
6513 $tag_escaped = str_replace("'", "\\'", $tag);
6515 if (mb_strlen($tag) > 30) {
6516 $tag = truncate_string($tag, 30);
6519 $tag_str = "<a href=\"javascript:viewfeed('$tag_escaped')\">$tag</a>";
6521 array_push($formatted_tags, $tag_str);
6523 $tmp_tags_str = implode(", ", $formatted_tags);
6525 if ($num_tags == $tag_limit || mb_strlen($tmp_tags_str) > 150) {
6530 $tags_str = implode(", ", $formatted_tags);
6532 if ($num_tags < count($tags)) {
6533 $tags_str .= ", …";
6536 if ($num_tags == 0) {
6537 $tags_str = __("no tags");
6544 function format_article_labels($labels, $id) {
6548 foreach ($labels as $l) {
6549 $labels_str .= sprintf("<span class='hlLabelRef'
6550 style='color : %s; background-color : %s'>%s</span>",
6551 $l[2], $l[3], $l[1]);
6558 function format_article_note($id, $note) {
6560 $str = "<div class='articleNote' onclick=\"editArticleNote($id)\">
6561 <div class='noteEdit' onclick=\"editArticleNote($id)\">".
6562 __('(edit note)')."</div>$note</div>";
6567 function toggle_collapse_cat($link, $cat_id, $mode) {
6569 $mode = bool_to_sql_bool($mode);
6571 db_query($link, "UPDATE ttrss_feed_categories SET
6572 collapsed = $mode WHERE id = '$cat_id' AND owner_uid = " .
6579 $pref_name = '_COLLAPSED_SPECIAL';
6582 $pref_name = '_COLLAPSED_LABELS';
6585 $pref_name = '_COLLAPSED_UNCAT';
6591 set_pref($link, $pref_name, 'true');
6593 set_pref($link, $pref_name, 'false');
6599 function remove_feed($link, $id, $owner_uid) {
6603 /* save starred articles in Archived feed */
6605 db_query($link, "BEGIN");
6607 /* prepare feed if necessary */
6609 $result = db_query($link, "SELECT id FROM ttrss_archived_feeds
6612 if (db_num_rows($result) == 0) {
6613 db_query($link, "INSERT INTO ttrss_archived_feeds
6614 (id, owner_uid, title, feed_url, site_url)
6615 SELECT id, owner_uid, title, feed_url, site_url from ttrss_feeds
6619 db_query($link, "UPDATE ttrss_user_entries SET feed_id = NULL,
6620 orig_feed_id = '$id' WHERE feed_id = '$id' AND
6621 marked = true AND owner_uid = $owner_uid");
6623 /* Remove access key for the feed */
6625 db_query($link, "DELETE FROM ttrss_access_keys WHERE
6626 feed_id = '$id' AND owner_uid = $owner_uid");
6628 /* remove the feed */
6630 db_query($link, "DELETE FROM ttrss_feeds
6631 WHERE id = '$id' AND owner_uid = $owner_uid");
6633 db_query($link, "COMMIT");
6635 if (file_exists(ICONS_DIR . "/$id.ico")) {
6636 unlink(ICONS_DIR . "/$id.ico");
6639 ccache_remove($link, $id, $owner_uid);
6642 label_remove($link, -11-$id, $owner_uid);
6643 ccache_remove($link, -11-$id, $owner_uid);
6647 function add_feed_category($link, $feed_cat) {
6649 if (!$feed_cat) return false;
6651 db_query($link, "BEGIN");
6653 $result = db_query($link,
6654 "SELECT id FROM ttrss_feed_categories
6655 WHERE title = '$feed_cat' AND owner_uid = ".$_SESSION["uid"]);
6657 if (db_num_rows($result) == 0) {
6659 $result = db_query($link,
6660 "INSERT INTO ttrss_feed_categories (owner_uid,title)
6661 VALUES ('".$_SESSION["uid"]."', '$feed_cat')");
6663 db_query($link, "COMMIT");
6671 function remove_feed_category($link, $id, $owner_uid) {
6673 db_query($link, "DELETE FROM ttrss_feed_categories
6674 WHERE id = '$id' AND owner_uid = $owner_uid");
6676 ccache_remove($link, $id, $owner_uid, true);
6679 function archive_article($link, $id, $owner_uid) {
6680 db_query($link, "BEGIN");
6682 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
6683 WHERE ref_id = '$id' AND owner_uid = $owner_uid");
6685 if (db_num_rows($result) != 0) {
6687 /* prepare the archived table */
6689 $feed_id = (int) db_fetch_result($result, 0, "feed_id");
6692 $result = db_query($link, "SELECT id FROM ttrss_archived_feeds
6693 WHERE id = '$feed_id'");
6695 if (db_num_rows($result) == 0) {
6696 db_query($link, "INSERT INTO ttrss_archived_feeds
6697 (id, owner_uid, title, feed_url, site_url)
6698 SELECT id, owner_uid, title, feed_url, site_url from ttrss_feeds
6699 WHERE id = '$feed_id'");
6702 db_query($link, "UPDATE ttrss_user_entries
6703 SET orig_feed_id = feed_id, feed_id = NULL
6704 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
6708 db_query($link, "COMMIT");
6711 function getArticleFeed($link, $id) {
6712 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
6713 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
6715 if (db_num_rows($result) != 0) {
6716 return db_fetch_result($result, 0, "feed_id");
6722 function make_url_from_parts($parts) {
6723 $url = $parts['scheme'] . '://' . $parts['host'];
6725 if ($parts['path']) $url .= $parts['path'];
6726 if ($parts['query']) $url .= '?' . $parts['query'];
6732 * Fixes incomplete URLs by prepending "http://".
6733 * Also replaces feed:// with http://, and
6734 * prepends a trailing slash if the url is a domain name only.
6736 * @param string $url Possibly incomplete URL
6738 * @return string Fixed URL.
6740 function fix_url($url) {
6741 if (strpos($url, '://') === false) {
6742 $url = 'http://' . $url;
6743 } else if (substr($url, 0, 5) == 'feed:') {
6744 $url = 'http:' . substr($url, 5);
6747 //prepend slash if the URL has no slash in it
6748 // "http://www.example" -> "http://www.example/"
6749 if (strpos($url, '/', strpos($url, ':') + 3) === false) {
6753 if ($url != "http:///")
6759 function validate_feed_url($url) {
6760 $parts = parse_url($url);
6762 return ($parts['scheme'] == 'http' || $parts['scheme'] == 'feed' || $parts['scheme'] == 'https');
6766 function get_article_enclosures($link, $id) {
6770 $query = "SELECT * FROM ttrss_enclosures
6771 WHERE post_id = '$id' AND content_url != ''";
6773 $obj_id = md5("ENCLOSURES:$id");
6777 if ($memcache && $obj = $memcache->get($obj_id)) {
6780 $result = db_query($link, $query);
6782 if (db_num_rows($result) > 0) {
6783 while ($line = db_fetch_assoc($result)) {
6784 array_push($rv, $line);
6786 if ($memcache) $memcache->add($obj_id, $rv, 0, 3600);
6793 function api_get_feeds($link, $cat_id, $unread_only, $limit, $offset) {
6799 if ($cat_id == -4 || $cat_id == -2) {
6800 $counters = getLabelCounters($link, true);
6802 foreach (array_values($counters) as $cv) {
6804 $unread = $cv["counter"];
6806 if ($unread || !$unread_only) {
6810 "title" => $cv["description"],
6811 "unread" => $cv["counter"],
6815 array_push($feeds, $row);
6822 if ($cat_id == -4 || $cat_id == -1) {
6823 foreach (array(-1, -2, -3, -4, 0) as $i) {
6824 $unread = getFeedUnread($link, $i);
6826 if ($unread || !$unread_only) {
6827 $title = getFeedTitle($link, $i);
6832 "unread" => $unread,
6835 array_push($feeds, $row);
6844 $limit_qpart = "LIMIT $limit OFFSET $offset";
6849 if ($cat_id == -4 || $cat_id == -3) {
6850 $result = db_query($link, "SELECT
6851 id, feed_url, cat_id, title, ".
6852 SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
6853 FROM ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"] .
6854 " ORDER BY cat_id, title " . $limit_qpart);
6858 $cat_qpart = "cat_id = '$cat_id'";
6860 $cat_qpart = "cat_id IS NULL";
6862 $result = db_query($link, "SELECT
6863 id, feed_url, cat_id, title, ".
6864 SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
6865 FROM ttrss_feeds WHERE
6866 $cat_qpart AND owner_uid = " . $_SESSION["uid"] .
6867 " ORDER BY cat_id, title " . $limit_qpart);
6870 while ($line = db_fetch_assoc($result)) {
6872 $unread = getFeedUnread($link, $line["id"]);
6874 $has_icon = feed_has_icon($line['id']);
6876 if ($unread || !$unread_only) {
6879 "feed_url" => $line["feed_url"],
6880 "title" => $line["title"],
6881 "id" => (int)$line["id"],
6882 "unread" => (int)$unread,
6883 "has_icon" => $has_icon,
6884 "cat_id" => (int)$line["cat_id"],
6885 "last_updated" => strtotime($line["last_updated"])
6888 array_push($feeds, $row);
6895 function api_get_headlines($link, $feed_id, $limit, $offset,
6896 $filter, $is_cat, $show_excerpt, $show_content, $view_mode, $order,
6897 $include_attachments, $since_id) {
6899 /* do not rely on params below */
6901 $search = db_escape_string($_REQUEST["search"]);
6902 $search_mode = db_escape_string($_REQUEST["search_mode"]);
6903 $match_on = db_escape_string($_REQUEST["match_on"]);
6905 $qfh_ret = queryFeedHeadlines($link, $feed_id, $limit,
6906 $view_mode, $is_cat, $search, $search_mode, $match_on,
6907 $order, $offset, 0, false, $since_id);
6909 $result = $qfh_ret[0];
6910 $feed_title = $qfh_ret[1];
6912 $headlines = array();
6914 while ($line = db_fetch_assoc($result)) {
6915 $is_updated = ($line["last_read"] == "" &&
6916 ($line["unread"] != "t" && $line["unread"] != "1"));
6918 $headline_row = array(
6919 "id" => (int)$line["id"],
6920 "unread" => sql_bool_to_bool($line["unread"]),
6921 "marked" => sql_bool_to_bool($line["marked"]),
6922 "published" => sql_bool_to_bool($line["published"]),
6923 "updated" => strtotime($line["updated"]),
6924 "is_updated" => $is_updated,
6925 "title" => $line["title"],
6926 "link" => $line["link"],
6927 "feed_id" => $line["feed_id"],
6928 "tags" => get_article_tags($link, $line["id"]),
6931 if ($include_attachments)
6932 $headline_row['attachments'] = get_article_enclosures($link,
6935 if ($show_excerpt) {
6936 $excerpt = truncate_string(strip_tags($line["content_preview"]), 100);
6937 $headline_row["excerpt"] = $excerpt;
6940 if ($show_content) {
6941 $headline_row["content"] = $line["content_preview"];
6944 array_push($headlines, $headline_row);
6950 function generate_error_feed($link, $error) {
6953 $reply['headlines']['id'] = -6;
6954 $reply['headlines']['is_cat'] = false;
6956 $reply['headlines']['toolbar'] = '';
6957 $reply['headlines']['content'] = "<div class='whiteBox'>". $error . "</div>";
6959 $reply['headlines-info'] = array("count" => 0,
6960 "vgroup_last_feed" => '',
6962 "disable_cache" => true);
6968 function generate_dashboard_feed($link) {
6971 $reply['headlines']['id'] = -5;
6972 $reply['headlines']['is_cat'] = false;
6974 $reply['headlines']['toolbar'] = '';
6975 $reply['headlines']['content'] = "<div class='whiteBox'>".__('No feed selected.');
6977 $reply['headlines']['content'] .= "<p class=\"small\"><span class=\"insensitive\">";
6979 $result = db_query($link, "SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
6980 WHERE owner_uid = " . $_SESSION['uid']);
6982 $last_updated = db_fetch_result($result, 0, "last_updated");
6983 $last_updated = make_local_datetime($link, $last_updated, false);
6985 $reply['headlines']['content'] .= sprintf(__("Feeds last updated at %s"), $last_updated);
6987 $result = db_query($link, "SELECT COUNT(id) AS num_errors
6988 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
6990 $num_errors = db_fetch_result($result, 0, "num_errors");
6992 if ($num_errors > 0) {
6993 $reply['headlines']['content'] .= "<br/>";
6994 $reply['headlines']['content'] .= "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
6995 __('Some feeds have update errors (click for details)')."</a>";
6997 $reply['headlines']['content'] .= "</span></p>";
6999 $reply['headlines-info'] = array("count" => 0,
7000 "vgroup_last_feed" => '',
7002 "disable_cache" => true);
7007 function save_email_address($link, $email) {
7008 // FIXME: implement persistent storage of emails
7010 if (!$_SESSION['stored_emails'])
7011 $_SESSION['stored_emails'] = array();
7013 if (!in_array($email, $_SESSION['stored_emails']))
7014 array_push($_SESSION['stored_emails'], $email);
7017 function update_feed_access_key($link, $feed_id, $is_cat, $owner_uid = false) {
7018 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
7020 $sql_is_cat = bool_to_sql_bool($is_cat);
7022 $result = db_query($link, "SELECT access_key FROM ttrss_access_keys
7023 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
7024 AND owner_uid = " . $owner_uid);
7026 if (db_num_rows($result) == 1) {
7027 $key = db_escape_string(sha1(uniqid(rand(), true)));
7029 db_query($link, "UPDATE ttrss_access_keys SET access_key = '$key'
7030 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
7031 AND owner_uid = " . $owner_uid);
7036 return get_feed_access_key($link, $feed_id, $is_cat, $owner_uid);
7040 function get_feed_access_key($link, $feed_id, $is_cat, $owner_uid = false) {
7042 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
7044 $sql_is_cat = bool_to_sql_bool($is_cat);
7046 $result = db_query($link, "SELECT access_key FROM ttrss_access_keys
7047 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
7048 AND owner_uid = " . $owner_uid);
7050 if (db_num_rows($result) == 1) {
7051 return db_fetch_result($result, 0, "access_key");
7053 $key = db_escape_string(sha1(uniqid(rand(), true)));
7055 $result = db_query($link, "INSERT INTO ttrss_access_keys
7056 (access_key, feed_id, is_cat, owner_uid)
7057 VALUES ('$key', '$feed_id', $sql_is_cat, '$owner_uid')");
7065 * Extracts RSS/Atom feed URLs from the given HTML URL.
7067 * @param string $url HTML page URL
7069 * @return array Array of feeds. Key is the full URL, value the title
7071 function get_feeds_from_html($url, $login = false, $pass = false)
7073 $url = fix_url($url);
7074 $baseUrl = substr($url, 0, strrpos($url, '/') + 1);
7076 libxml_use_internal_errors(true);
7078 $content = @fetch_file_contents($url, false, $login, $pass);
7080 $doc = new DOMDocument();
7081 $doc->loadHTML($content);
7082 $xpath = new DOMXPath($doc);
7083 $entries = $xpath->query('/html/head/link[@rel="alternate"]');
7084 $feedUrls = array();
7085 foreach ($entries as $entry) {
7086 if ($entry->hasAttribute('href')) {
7087 $title = $entry->getAttribute('title');
7089 $title = $entry->getAttribute('type');
7091 $feedUrl = rewrite_relative_url(
7092 $baseUrl, $entry->getAttribute('href')
7094 $feedUrls[$feedUrl] = $title;
7101 * Checks if the content behind the given URL is a HTML file
7103 * @param string $url URL to check
7105 * @return boolean True if the URL contains HTML content
7107 function url_is_html($url, $login = false, $pass = false) {
7108 $content = substr(fetch_file_contents($url, false, $login, $pass), 0, 1000);
7110 if (stripos($content, '<html>') === false
7111 && stripos($content, '<html ') === false
7119 function print_label_select($link, $name, $value, $attributes = "") {
7121 $result = db_query($link, "SELECT caption FROM ttrss_labels2
7122 WHERE owner_uid = '".$_SESSION["uid"]."' ORDER BY caption");
7124 print "<select default=\"$value\" name=\"" . htmlspecialchars($name) .
7125 "\" $attributes onchange=\"labelSelectOnChange(this)\" >";
7127 while ($line = db_fetch_assoc($result)) {
7129 $issel = ($line["caption"] == $value) ? "selected=\"1\"" : "";
7131 print "<option value=\"".htmlspecialchars($line["caption"])."\"
7132 $issel>" . htmlspecialchars($line["caption"]) . "</option>";
7136 # print "<option value=\"ADD_LABEL\">" .__("Add label...") . "</option>";
7143 function format_article_enclosures($link, $id, $always_display_enclosures,
7146 $result = get_article_enclosures($link, $id);
7149 if (count($result) > 0) {
7151 $entries_html = array();
7154 foreach ($result as $line) {
7156 $url = $line["content_url"];
7157 $ctype = $line["content_type"];
7159 if (!$ctype) $ctype = __("unknown type");
7161 # $filename = substr($url, strrpos($url, "/")+1);
7163 $entry = format_inline_player($link, $url, $ctype);
7165 # $entry .= " <a target=\"_blank\" href=\"" . htmlspecialchars($url) . "\">" .
7166 # $filename . " (" . $ctype . ")" . "</a>";
7168 array_push($entries_html, $entry);
7172 $entry["type"] = $ctype;
7173 $entry["filename"] = $filename;
7174 $entry["url"] = $url;
7176 array_push($entries, $entry);
7179 $rv .= "<div class=\"postEnclosures\">";
7181 if (!get_pref($link, "STRIP_IMAGES")) {
7182 if ($always_display_enclosures ||
7183 !preg_match("/<img/i", $article_content)) {
7185 foreach ($entries as $entry) {
7187 if (preg_match("/image/", $entry["type"]) ||
7188 preg_match("/\.(jpg|png|gif|bmp)/i", $entry["filename"])) {
7191 alt=\"".htmlspecialchars($entry["filename"])."\"
7192 src=\"" .htmlspecialchars($entry["url"]) . "\"/></p>";
7198 if (count($entries) == 1) {
7199 $rv .= __("Attachment:") . " ";
7201 $rv .= __("Attachments:") . " ";
7204 $rv .= join(", ", $entries_html);
7212 function getLastArticleId($link) {
7213 $result = db_query($link, "SELECT MAX(ref_id) AS id FROM ttrss_user_entries
7214 WHERE owner_uid = " . $_SESSION["uid"]);
7216 if (db_num_rows($result) == 1) {
7217 return db_fetch_result($result, 0, "id");
7223 function build_url($parts) {
7224 return $parts['scheme'] . "://" . $parts['host'] . $parts['path'];
7228 * Converts a (possibly) relative URL to a absolute one.
7230 * @param string $url Base URL (i.e. from where the document is)
7231 * @param string $rel_url Possibly relative URL in the document
7233 * @return string Absolute URL
7235 function rewrite_relative_url($url, $rel_url) {
7236 if (strpos($rel_url, "://") !== false) {
7238 } else if (strpos($rel_url, "/") === 0)
7240 $parts = parse_url($url);
7241 $parts['path'] = $rel_url;
7243 return build_url($parts);
7246 $parts = parse_url($url);
7247 if (!isset($parts['path'])) {
7248 $parts['path'] = '/';
7250 $dir = $parts['path'];
7251 if (substr($dir, -1) !== '/') {
7252 $dir = dirname($parts['path']);
7253 $dir !== '/' && $dir .= '/';
7255 $parts['path'] = $dir . $rel_url;
7257 return build_url($parts);
7261 function sphinx_search($query, $offset = 0, $limit = 30) {
7262 $sphinxClient = new SphinxClient();
7264 $sphinxClient->SetServer('localhost', 9312);
7265 $sphinxClient->SetConnectTimeout(1);
7267 $sphinxClient->SetFieldWeights(array('title' => 70, 'content' => 30,
7268 'feed_title' => 20));
7270 $sphinxClient->SetMatchMode(SPH_MATCH_EXTENDED2);
7271 $sphinxClient->SetRankingMode(SPH_RANK_PROXIMITY_BM25);
7272 $sphinxClient->SetLimits($offset, $limit, 1000);
7273 $sphinxClient->SetArrayResult(false);
7274 $sphinxClient->SetFilter('owner_uid', array($_SESSION['uid']));
7276 $result = $sphinxClient->Query($query, SPHINX_INDEX);
7280 if (is_array($result['matches'])) {
7281 foreach (array_keys($result['matches']) as $int_id) {
7282 $ref_id = $result['matches'][$int_id]['attrs']['ref_id'];
7283 array_push($ids, $ref_id);
7290 function cleanup_tags($link, $days = 14, $limit = 1000) {
7292 if (DB_TYPE == "pgsql") {
7293 $interval_query = "date_updated < NOW() - INTERVAL '$days days'";
7294 } else if (DB_TYPE == "mysql") {
7295 $interval_query = "date_updated < DATE_SUB(NOW(), INTERVAL $days DAY)";
7300 while ($limit > 0) {
7303 $query = "SELECT ttrss_tags.id AS id
7304 FROM ttrss_tags, ttrss_user_entries, ttrss_entries
7305 WHERE post_int_id = int_id AND $interval_query AND
7306 ref_id = ttrss_entries.id AND tag_cache != '' LIMIT $limit_part";
7308 $result = db_query($link, $query);
7312 while ($line = db_fetch_assoc($result)) {
7313 array_push($ids, $line['id']);
7316 if (count($ids) > 0) {
7317 $ids = join(",", $ids);
7320 $tmp_result = db_query($link, "DELETE FROM ttrss_tags WHERE id IN ($ids)");
7321 $tags_deleted += db_affected_rows($link, $tmp_result);
7326 $limit -= $limit_part;
7331 return $tags_deleted;
7334 function feedlist_init_cat($link, $cat_id, $hidden = false) {
7336 $cat_id = (int) $cat_id;
7339 $cat_unread = ccache_find($link, $cat_id, $_SESSION["uid"], true);
7340 } else if ($cat_id == 0 || $cat_id == -2) {
7341 $cat_unread = getCategoryUnread($link, $cat_id);
7344 $obj['id'] = 'CAT:' . $cat_id;
7345 $obj['items'] = array();
7346 $obj['name'] = getCategoryTitle($link, $cat_id);
7347 $obj['type'] = 'feed';
7348 $obj['unread'] = (int) $cat_unread;
7349 $obj['hidden'] = $hidden;
7350 $obj['bare_id'] = $cat_id;
7355 function feedlist_init_feed($link, $feed_id, $title = false, $unread = false, $error = '', $updated = '') {
7357 $feed_id = (int) $feed_id;
7360 $title = getFeedTitle($link, $feed_id, false);
7362 if ($unread === false)
7363 $unread = getFeedUnread($link, $feed_id, false);
7365 $obj['id'] = 'FEED:' . $feed_id;
7366 $obj['name'] = $title;
7367 $obj['unread'] = (int) $unread;
7368 $obj['type'] = 'feed';
7369 $obj['error'] = $error;
7370 $obj['updated'] = $updated;
7371 $obj['icon'] = getFeedIcon($feed_id);
7372 $obj['bare_id'] = $feed_id;
7378 function fetch_twitter_rss($link, $url, $owner_uid) {
7379 $result = db_query($link, "SELECT twitter_oauth FROM ttrss_users
7380 WHERE id = $owner_uid");
7382 $access_token = json_decode(db_fetch_result($result, 0, 'twitter_oauth'), true);
7383 $url_escaped = db_escape_string($url);
7385 if ($access_token) {
7387 $tmhOAuth = new tmhOAuth(array(
7388 'consumer_key' => CONSUMER_KEY,
7389 'consumer_secret' => CONSUMER_SECRET,
7390 'user_token' => $access_token['oauth_token'],
7391 'user_secret' => $access_token['oauth_token_secret'],
7394 $code = $tmhOAuth->request('GET', $url);
7398 $content = $tmhOAuth->response['response'];
7400 define('MAGPIE_CACHE_ON', false);
7402 $rss = new MagpieRSS($content, MAGPIE_OUTPUT_ENCODING,
7403 MAGPIE_INPUT_ENCODING, MAGPIE_DETECT_ENCODING );
7409 db_query($link, "UPDATE ttrss_feeds
7410 SET last_error = 'OAuth authorization failed ($code).'
7411 WHERE feed_url = '$url_escaped' AND owner_uid = $owner_uid");
7416 db_query($link, "UPDATE ttrss_feeds
7417 SET last_error = 'OAuth information not found.'
7418 WHERE feed_url = '$url_escaped' AND owner_uid = $owner_uid");
7424 function print_user_stylesheet($link) {
7425 $value = get_pref($link, 'USER_STYLESHEET');
7428 print "<style type=\"text/css\">";
7429 print str_replace("<br/>", "\n", $value);
7435 function rewrite_urls($line) {
7440 $result = preg_replace("/((?<!=.)((http|https|ftp)+):\/\/[^ ,!]+)/i",
7441 "<a target=\"_blank\" href=\"\\1\">\\1</a>", $line);
7446 function filter_to_sql($filter) {
7449 if (DB_TYPE == "pgsql")
7452 $reg_qpart = "REGEXP";
7454 switch ($filter["type"]) {
7456 $query = "LOWER(ttrss_entries.title) $reg_qpart LOWER('".
7457 $filter['reg_exp'] . "')";
7460 $query = "LOWER(ttrss_entries.content) $reg_qpart LOWER('".
7461 $filter['reg_exp'] . "')";
7464 $query = "LOWER(ttrss_entries.title) $reg_qpart LOWER('".
7465 $filter['reg_exp'] . "') OR LOWER(" .
7466 "ttrss_entries.content) $reg_qpart LOWER('" . $filter['reg_exp'] . "')";
7469 $query = "LOWER(ttrss_user_entries.tag_cache) $reg_qpart LOWER('".
7470 $filter['reg_exp'] . "')";
7473 $query = "LOWER(ttrss_entries.link) $reg_qpart LOWER('".
7474 $filter['reg_exp'] . "')";
7478 if ($filter["filter_param"] == "before")
7483 $timestamp = date("Y-m-d H:N:s", strtotime($filter["reg_exp"]));
7484 $query = "ttrss_entries.date_entered $cmp_qpart '$timestamp'";
7487 $query = "LOWER(ttrss_entries.author) $reg_qpart LOWER('".
7488 $filter['reg_exp'] . "')";
7492 if ($filter["inverse"])
7493 $query = "NOT ($query)";
7496 if (DB_TYPE == "pgsql") {
7497 $query = " ($query) AND ttrss_entries.date_entered > NOW() - INTERVAL '14 days'";
7499 $query = " ($query) AND ttrss_entries.date_entered > DATE_SUB(NOW(), INTERVAL 14 DAY)";
7509 // -1 - never connected
7510 // 0 - no data received
7511 // 1 - data received successfully
7512 // 2 - did not receive valid data
7513 // >10 - server error, code + 10 (e.g. 16 means server error 6)
7515 function get_linked_feeds($link, $instance_id = false) {
7517 $instance_qpart = "id = '$instance_id' AND ";
7519 $instance_qpart = "";
7521 if (DB_TYPE == "pgsql") {
7522 $date_qpart = "last_connected < NOW() - INTERVAL '6 hours'";
7524 $date_qpart = "last_connected < DATE_SUB(NOW(), INTERVAL 6 HOUR)";
7527 $result = db_query($link, "SELECT id, access_key, access_url FROM ttrss_linked_instances
7528 WHERE $instance_qpart $date_qpart ORDER BY last_connected");
7530 while ($line = db_fetch_assoc($result)) {
7533 _debug("Updating: " . $line['access_url'] . " ($id)");
7535 $fetch_url = $line['access_url'] . '/public.php?op=fbexport';
7536 $post_query = 'key=' . $line['access_key'];
7538 $feeds = fetch_file_contents($fetch_url, false, false, false, $post_query);
7540 // try doing it the old way
7542 $fetch_url = $line['access_url'] . '/backend.php?op=fbexport';
7543 $feeds = fetch_file_contents($fetch_url, false, false, false, $post_query);
7547 $feeds = json_decode($feeds, true);
7550 if ($feeds['error']) {
7551 $status = $feeds['error']['code'] + 10;
7555 if (count($feeds['feeds']) > 0) {
7557 db_query($link, "DELETE FROM ttrss_linked_feeds
7558 WHERE instance_id = '$id'");
7560 foreach ($feeds['feeds'] as $feed) {
7561 $feed_url = db_escape_string($feed['feed_url']);
7562 $title = db_escape_string($feed['title']);
7563 $subscribers = db_escape_string($feed['subscribers']);
7564 $site_url = db_escape_string($feed['site_url']);
7566 db_query($link, "INSERT INTO ttrss_linked_feeds
7567 (feed_url, site_url, title, subscribers, instance_id, created, updated)
7569 ('$feed_url', '$site_url', '$title', '$subscribers', '$id', NOW(), NOW())");
7572 // received 0 feeds, this might indicate that
7573 // the instance on the other hand is rebuilding feedbrowser cache
7574 // we will try again later
7576 // TODO: maybe perform expiration based on updated here?
7579 _debug("Processed " . count($feeds['feeds']) . " feeds.");
7589 _debug("Status: $status");
7591 db_query($link, "UPDATE ttrss_linked_instances SET
7592 last_status_out = '$status', last_connected = NOW() WHERE id = '$id'");
7597 function handle_public_request($link, $op) {
7601 $login = db_escape_string($_REQUEST["login"]);
7602 $fresh = $_REQUEST["fresh"] == "1";
7604 $result = db_query($link, "SELECT id FROM ttrss_users WHERE login = '$login'");
7606 if (db_num_rows($result) == 1) {
7607 $uid = db_fetch_result($result, 0, "id");
7609 print getGlobalUnread($link, $uid);
7613 print getFeedArticles($link, -3, false, true, $uid);
7617 print "-1;User not found";
7623 $login = db_escape_string($_REQUEST["login"]);
7624 $password = db_escape_string($_REQUEST["password"]);
7626 if (authenticate_user($link, $login, $password)) {
7627 $result = db_query($link, "SELECT * FROM ttrss_settings_profiles
7628 WHERE owner_uid = " . $_SESSION["uid"] . " ORDER BY title");
7630 print "<select style='width: 100%' name='profile'>";
7632 print "<option value='0'>" . __("Default profile") . "</option>";
7634 while ($line = db_fetch_assoc($result)) {
7636 $title = $line["title"];
7638 print "<option value='$id'>$title</option>";
7643 $_SESSION = array();
7645 break; // getprofiles
7648 $mode = db_escape_string($_REQUEST['hub_mode']);
7649 $feed_id = (int) db_escape_string($_REQUEST['id']);
7650 $feed_url = db_escape_string($_REQUEST['hub_topic']);
7652 if (!PUBSUBHUBBUB_ENABLED) {
7653 header('HTTP/1.0 404 Not Found');
7654 echo "404 Not found";
7658 // TODO: implement hub_verifytoken checking
7660 $result = db_query($link, "SELECT feed_url FROM ttrss_feeds
7661 WHERE id = '$feed_id'");
7663 if (db_num_rows($result) != 0) {
7665 $check_feed_url = db_fetch_result($result, 0, "feed_url");
7667 if ($check_feed_url && ($check_feed_url == $feed_url || !$feed_url)) {
7668 if ($mode == "subscribe") {
7670 db_query($link, "UPDATE ttrss_feeds SET pubsub_state = 2
7671 WHERE id = '$feed_id'");
7673 print $_REQUEST['hub_challenge'];
7676 } else if ($mode == "unsubscribe") {
7678 db_query($link, "UPDATE ttrss_feeds SET pubsub_state = 0
7679 WHERE id = '$feed_id'");
7681 print $_REQUEST['hub_challenge'];
7684 } else if (!$mode) {
7686 // Received update ping, schedule feed update.
7687 //update_rss_feed($link, $feed_id, true, true);
7689 db_query($link, "UPDATE ttrss_feeds SET
7690 last_update_started = '1970-01-01',
7691 last_updated = '1970-01-01' WHERE id = '$feed_id' AND
7692 owner_uid = ".$_SESSION["uid"]);
7696 header('HTTP/1.0 404 Not Found');
7697 echo "404 Not found";
7700 header('HTTP/1.0 404 Not Found');
7701 echo "404 Not found";
7708 header("Location: tt-rss.php");
7713 $access_key = db_escape_string($_POST["key"]);
7715 // TODO: rate limit checking using last_connected
7716 $result = db_query($link, "SELECT id FROM ttrss_linked_instances
7717 WHERE access_key = '$access_key'");
7719 if (db_num_rows($result) == 1) {
7721 $instance_id = db_fetch_result($result, 0, "id");
7723 $result = db_query($link, "SELECT feed_url, site_url, title, subscribers
7724 FROM ttrss_feedbrowser_cache ORDER BY subscribers DESC LIMIT 100");
7728 while ($line = db_fetch_assoc($result)) {
7729 array_push($feeds, $line);
7732 db_query($link, "UPDATE ttrss_linked_instances SET
7733 last_status_in = 1 WHERE id = '$instance_id'");
7735 print json_encode(array("feeds" => $feeds));
7737 print json_encode(array("error" => array("code" => 6)));
7742 $uuid = db_escape_string($_REQUEST["key"]);
7744 $result = db_query($link, "SELECT ref_id, owner_uid FROM ttrss_user_entries WHERE
7747 if (db_num_rows($result) != 0) {
7748 header("Content-Type: text/html");
7750 $id = db_fetch_result($result, 0, "ref_id");
7751 $owner_uid = db_fetch_result($result, 0, "owner_uid");
7753 $_SESSION["uid"] = $owner_uid;
7754 $article = format_article($link, $id, false, true);
7755 $_SESSION["uid"] = "";
7757 print_r($article['content']);
7760 print "Article not found.";
7766 $feed = db_escape_string($_REQUEST["id"]);
7767 $key = db_escape_string($_REQUEST["key"]);
7768 $is_cat = $_REQUEST["is_cat"] != false;
7769 $limit = (int)db_escape_string($_REQUEST["limit"]);
7771 $search = db_escape_string($_REQUEST["q"]);
7772 $match_on = db_escape_string($_REQUEST["m"]);
7773 $search_mode = db_escape_string($_REQUEST["smode"]);
7774 $view_mode = db_escape_string($_REQUEST["view-mode"]);
7776 if (SINGLE_USER_MODE) {
7777 authenticate_user($link, "admin", null);
7783 $result = db_query($link, "SELECT owner_uid FROM
7784 ttrss_access_keys WHERE access_key = '$key' AND feed_id = '$feed'");
7786 if (db_num_rows($result) == 1)
7787 $owner_id = db_fetch_result($result, 0, "owner_uid");
7791 $_SESSION['uid'] = $owner_id;
7793 generate_syndicated_feed($link, 0, $feed, $is_cat, $limit,
7794 $search, $search_mode, $match_on, $view_mode);
7796 header('HTTP/1.1 403 Forbidden');
7801 case "globalUpdateFeeds":
7802 // Update all feeds needing a update.
7803 update_daemon_common($link, 0, true, true);
7804 break; // globalUpdateFeeds
7808 header("Content-Type: text/plain");
7809 print json_encode(array("error" => array("code" => 7)));