2 define('DAEMON_UPDATE_LOGIN_LIMIT', 30);
3 define('DAEMON_FEED_LIMIT', 100);
4 define('DAEMON_SLEEP_INTERVAL', 60);
6 function update_feedbrowser_cache($link) {
8 $result = db_query($link, "SELECT feed_url, site_url, title, COUNT(id) AS subscribers
9 FROM ttrss_feeds WHERE (SELECT COUNT(id) = 0 FROM ttrss_feeds AS tf
10 WHERE tf.feed_url = ttrss_feeds.feed_url
11 AND (private IS true OR auth_login != '' OR auth_pass != '' OR feed_url LIKE '%:%@%/%'))
12 GROUP BY feed_url, site_url, title ORDER BY subscribers DESC LIMIT 1000");
14 db_query($link, "BEGIN");
16 db_query($link, "DELETE FROM ttrss_feedbrowser_cache");
20 while ($line = db_fetch_assoc($result)) {
21 $subscribers = db_escape_string($link, $line["subscribers"]);
22 $feed_url = db_escape_string($link, $line["feed_url"]);
23 $title = db_escape_string($link, $line["title"]);
24 $site_url = db_escape_string($link, $line["site_url"]);
26 $tmp_result = db_query($link, "SELECT subscribers FROM
27 ttrss_feedbrowser_cache WHERE feed_url = '$feed_url'");
29 if (db_num_rows($tmp_result) == 0) {
31 db_query($link, "INSERT INTO ttrss_feedbrowser_cache
32 (feed_url, site_url, title, subscribers) VALUES ('$feed_url',
33 '$site_url', '$title', '$subscribers')");
41 db_query($link, "COMMIT");
49 * Update a feed batch.
50 * Used by daemons to update n feeds by run.
51 * Only update feed needing a update, and not being processed
54 * @param mixed $link Database link
55 * @param integer $limit Maximum number of feeds in update batch. Default to DAEMON_FEED_LIMIT.
56 * @param boolean $from_http Set to true if you call this function from http to disable cli specific code.
57 * @param boolean $debug Set to false to disable debug output. Default to true.
60 function update_daemon_common($link, $limit = DAEMON_FEED_LIMIT, $from_http = false, $debug = true) {
61 // Process all other feeds using last_updated and interval parameters
63 define('PREFS_NO_CACHE', true);
65 // Test if the user has loggued in recently. If not, it does not update its feeds.
66 if (!SINGLE_USER_MODE && DAEMON_UPDATE_LOGIN_LIMIT > 0) {
67 if (DB_TYPE == "pgsql") {
68 $login_thresh_qpart = "AND ttrss_users.last_login >= NOW() - INTERVAL '".DAEMON_UPDATE_LOGIN_LIMIT." days'";
70 $login_thresh_qpart = "AND ttrss_users.last_login >= DATE_SUB(NOW(), INTERVAL ".DAEMON_UPDATE_LOGIN_LIMIT." DAY)";
73 $login_thresh_qpart = "";
76 // Test if the feed need a update (update interval exceded).
77 if (DB_TYPE == "pgsql") {
78 $update_limit_qpart = "AND ((
79 ttrss_feeds.update_interval = 0
80 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_user_prefs.value || ' minutes') AS INTERVAL)
82 ttrss_feeds.update_interval > 0
83 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_feeds.update_interval || ' minutes') AS INTERVAL)
84 ) OR ttrss_feeds.last_updated IS NULL
85 OR last_updated = '1970-01-01 00:00:00')";
87 $update_limit_qpart = "AND ((
88 ttrss_feeds.update_interval = 0
89 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL CONVERT(ttrss_user_prefs.value, SIGNED INTEGER) MINUTE)
91 ttrss_feeds.update_interval > 0
92 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL ttrss_feeds.update_interval MINUTE)
93 ) OR ttrss_feeds.last_updated IS NULL
94 OR last_updated = '1970-01-01 00:00:00')";
97 // Test if feed is currently being updated by another process.
98 if (DB_TYPE == "pgsql") {
99 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < NOW() - INTERVAL '5 minutes')";
101 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 5 MINUTE))";
104 // Test if there is a limit to number of updated feeds
106 if($limit) $query_limit = sprintf("LIMIT %d", $limit);
108 $random_qpart = sql_random_function();
110 // We search for feed needing update.
111 $result = db_query($link, "SELECT DISTINCT ttrss_feeds.feed_url,$random_qpart
113 ttrss_feeds, ttrss_users, ttrss_user_prefs
115 ttrss_feeds.owner_uid = ttrss_users.id
116 AND ttrss_users.id = ttrss_user_prefs.owner_uid
117 AND ttrss_user_prefs.pref_name = 'DEFAULT_UPDATE_INTERVAL'
118 $login_thresh_qpart $update_limit_qpart
119 $updstart_thresh_qpart
120 ORDER BY $random_qpart $query_limit");
122 $user_prefs_cache = array();
124 if($debug) _debug(sprintf("Scheduled %d feeds to update...", db_num_rows($result)));
126 // Here is a little cache magic in order to minimize risk of double feed updates.
127 $feeds_to_update = array();
128 while ($line = db_fetch_assoc($result)) {
129 array_push($feeds_to_update, db_escape_string($link, $line['feed_url']));
132 // We update the feed last update started date before anything else.
133 // There is no lag due to feed contents downloads
134 // It prevent an other process to update the same feed.
136 if(count($feeds_to_update) > 0) {
137 $feeds_quoted = array();
139 foreach ($feeds_to_update as $feed) {
140 array_push($feeds_quoted, "'" . db_escape_string($link, $feed) . "'");
143 db_query($link, sprintf("UPDATE ttrss_feeds SET last_update_started = NOW()
144 WHERE feed_url IN (%s)", implode(',', $feeds_quoted)));
147 expire_cached_files($debug);
148 expire_lock_files($debug);
152 // For each feed, we call the feed update function.
153 foreach ($feeds_to_update as $feed) {
154 if($debug) _debug("Base feed: $feed");
156 //update_rss_feed($link, $line["id"], true);
158 // since we have the data cached, we can deal with other feeds with the same url
160 $tmp_result = db_query($link, "SELECT ttrss_feeds.feed_url,ttrss_feeds.id,last_updated
161 FROM ttrss_feeds, ttrss_users WHERE
162 ttrss_users.id = ttrss_feeds.owner_uid AND
163 feed_url = '".db_escape_string($link, $feed)."' AND
164 ttrss_feeds.update_interval != -1
166 ORDER BY feed_url $query_limit");
168 if (db_num_rows($tmp_result) > 0) {
169 while ($tline = db_fetch_assoc($tmp_result)) {
170 if($debug) _debug(" => " . $tline["last_updated"] . ", " . $tline["id"]);
171 update_rss_feed($link, $tline["id"], true);
177 require_once "digest.php";
179 // Send feed digests by email if needed.
180 send_headlines_digests($link, $debug);
184 } // function update_daemon_common
186 // ignore_daemon is not used
187 function update_rss_feed($link, $feed, $ignore_daemon = false, $no_cache = false,
188 $override_url = false) {
190 require_once "lib/simplepie/simplepie.inc";
192 $debug_enabled = defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug'];
194 if ($debug_enabled) {
195 _debug("update_rss_feed: start");
198 $result = db_query($link, "SELECT id,update_interval,auth_login,
199 feed_url,auth_pass,cache_images,last_updated,
200 mark_unread_on_update, owner_uid,
202 FROM ttrss_feeds WHERE id = '$feed'");
204 if (db_num_rows($result) == 0) {
205 if ($debug_enabled) {
206 _debug("update_rss_feed: feed $feed NOT FOUND/SKIPPED");
211 $last_updated = db_fetch_result($result, 0, "last_updated");
212 $owner_uid = db_fetch_result($result, 0, "owner_uid");
213 $mark_unread_on_update = sql_bool_to_bool(db_fetch_result($result,
214 0, "mark_unread_on_update"));
215 $pubsub_state = db_fetch_result($result, 0, "pubsub_state");
217 db_query($link, "UPDATE ttrss_feeds SET last_update_started = NOW()
218 WHERE id = '$feed'");
220 $auth_login = db_fetch_result($result, 0, "auth_login");
221 $auth_pass = db_fetch_result($result, 0, "auth_pass");
223 $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
224 $fetch_url = db_fetch_result($result, 0, "feed_url");
226 $feed = db_escape_string($link, $feed);
228 if ($override_url) $fetch_url = $override_url;
230 $date_feed_processed = date('Y-m-d H:i');
232 $cache_filename = CACHE_DIR . "/simplepie/" . sha1($fetch_url) . ".feed";
234 // Ignore cache if new feed or manual update.
235 $cache_age = ($no_cache || is_null($last_updated) || $last_updated == '1970-01-01 00:00:00') ?
236 30 : get_feed_update_interval($link, $feed) * 60;
238 if ($debug_enabled) {
239 _debug("update_rss_feed: cache filename: $cache_filename exists: " . file_exists($cache_filename));
240 _debug("update_rss_feed: cache age: $cache_age; no cache: $no_cache");
243 $cached_feed_data_hash = false;
247 $cache_timestamp = file_exists($cache_filename) ? filemtime($cache_filename) : 0;
248 $last_updated_timestamp = strtotime($last_updated);
250 if (file_exists($cache_filename) &&
251 is_readable($cache_filename) &&
252 !$auth_login && !$auth_pass &&
253 filemtime($cache_filename) > time() - $cache_age) {
255 if ($debug_enabled) {
256 _debug("update_rss_feed: using local cache.");
259 if ($cache_timestamp > $last_updated_timestamp) {
260 @$rss_data = file_get_contents($cache_filename);
263 $rss_hash = sha1($rss_data);
264 @$rss = unserialize($rss_data);
267 if ($debug_enabled) {
268 _debug("update_rss_feed: local cache valid and older than last_updated, nothing to do.");
277 if ($debug_enabled) {
278 _debug("update_rss_feed: fetching [$fetch_url] (ts: $cache_timestamp/$last_updated_timestamp)");
281 $feed_data = fetch_file_contents($fetch_url, false,
282 $auth_login, $auth_pass, false, $no_cache ? 15 : 45,
283 max($last_updated_timestamp, $cache_timestamp));
285 if ($debug_enabled) {
286 _debug("update_rss_feed: fetch done.");
292 global $fetch_last_error;
293 global $fetch_last_error_code;
295 if ($debug_enabled) {
296 _debug("update_rss_feed: unable to fetch: $fetch_last_error [$fetch_last_error_code]");
302 if ($fetch_last_error_code != 304) {
303 $error_escaped = db_escape_string($link, $fetch_last_error);
305 if ($debug_enabled) {
306 _debug("update_rss_feed: source claims data not modified, nothing to do.");
311 "UPDATE ttrss_feeds SET last_error = '$error_escaped',
312 last_updated = NOW() WHERE id = '$feed'");
318 $pluginhost = new PluginHost($link);
319 $pluginhost->set_debug($debug_enabled);
320 $user_plugins = get_pref($link, "_ENABLED_PLUGINS", $owner_uid);
322 $pluginhost->load(PLUGINS, $pluginhost::KIND_ALL);
323 $pluginhost->load($user_plugins, $pluginhost::KIND_USER, $owner_uid);
324 $pluginhost->load_data();
326 foreach ($pluginhost->get_hooks($pluginhost::HOOK_FEED_FETCHED) as $plugin) {
327 $feed_data = $plugin->hook_feed_fetched($feed_data);
331 $rss = new SimplePie();
332 $rss->set_sanitize_class("SanitizeDummy");
333 // simplepie ignores the above and creates default sanitizer anyway,
334 // so let's override it...
335 $rss->sanitize = new SanitizeDummy();
336 $rss->set_output_encoding('UTF-8');
337 $rss->set_raw_data($feed_data);
338 $rss->enable_cache(false);
345 $feed = db_escape_string($link, $feed);
347 if (!$rss->error()) {
349 // cache data for later
350 if (!$auth_pass && !$auth_login && is_writable(CACHE_DIR . "/simplepie")) {
351 $rss_data = serialize($rss);
352 $new_rss_hash = sha1($rss_data);
354 if ($new_rss_hash != $rss_hash) {
355 if ($debug_enabled) {
356 _debug("update_rss_feed: saving $cache_filename");
358 @file_put_contents($cache_filename, serialize($rss));
362 // We use local pluginhost here because we need to load different per-user feed plugins
363 $pluginhost->run_hooks($pluginhost::HOOK_FEED_PARSED, "hook_feed_parsed", $rss);
365 if ($debug_enabled) {
366 _debug("update_rss_feed: processing feed data...");
369 // db_query($link, "BEGIN");
371 if (DB_TYPE == "pgsql") {
372 $favicon_interval_qpart = "favicon_last_checked < NOW() - INTERVAL '12 hour'";
374 $favicon_interval_qpart = "favicon_last_checked < DATE_SUB(NOW(), INTERVAL 12 HOUR)";
377 $result = db_query($link, "SELECT title,site_url,owner_uid,
378 (favicon_last_checked IS NULL OR $favicon_interval_qpart) AS
380 FROM ttrss_feeds WHERE id = '$feed'");
382 $registered_title = db_fetch_result($result, 0, "title");
383 $orig_site_url = db_fetch_result($result, 0, "site_url");
384 $favicon_needs_check = sql_bool_to_bool(db_fetch_result($result, 0,
385 "favicon_needs_check"));
387 $owner_uid = db_fetch_result($result, 0, "owner_uid");
389 $site_url = db_escape_string($link, mb_substr(rewrite_relative_url($fetch_url, $rss->get_link()), 0, 245));
391 if ($debug_enabled) {
392 _debug("update_rss_feed: checking favicon...");
395 if ($favicon_needs_check) {
396 check_feed_favicon($site_url, $feed, $link);
398 db_query($link, "UPDATE ttrss_feeds SET favicon_last_checked = NOW()
399 WHERE id = '$feed'");
402 if (!$registered_title || $registered_title == "[Unknown]") {
404 $feed_title = db_escape_string($link, $rss->get_title());
406 if ($debug_enabled) {
407 _debug("update_rss_feed: registering title: $feed_title");
410 db_query($link, "UPDATE ttrss_feeds SET
411 title = '$feed_title' WHERE id = '$feed'");
414 if ($site_url && $orig_site_url != $site_url) {
415 db_query($link, "UPDATE ttrss_feeds SET
416 site_url = '$site_url' WHERE id = '$feed'");
419 if ($debug_enabled) {
420 _debug("update_rss_feed: loading filters & labels...");
423 $filters = load_filters($link, $feed, $owner_uid);
424 $labels = get_all_labels($link, $owner_uid);
426 if ($debug_enabled) {
428 _debug("update_rss_feed: " . count($filters) . " filters loaded.");
431 $items = $rss->get_items();
433 if (!is_array($items)) {
434 if ($debug_enabled) {
435 _debug("update_rss_feed: no articles found.");
438 db_query($link, "UPDATE ttrss_feeds
439 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
441 return; // no articles
444 if ($pubsub_state != 2 && PUBSUBHUBBUB_ENABLED) {
446 if ($debug_enabled) _debug("update_rss_feed: checking for PUSH hub...");
448 $feed_hub_url = false;
450 $links = $rss->get_links('hub');
452 if ($links && is_array($links)) {
453 foreach ($links as $l) {
459 if ($debug_enabled) _debug("update_rss_feed: feed hub url: $feed_hub_url");
461 if ($feed_hub_url && function_exists('curl_init') &&
462 !ini_get("open_basedir")) {
464 require_once 'lib/pubsubhubbub/subscriber.php';
466 $callback_url = get_self_url_prefix() .
467 "/public.php?op=pubsub&id=$feed";
469 $s = new Subscriber($feed_hub_url, $callback_url);
471 $rc = $s->subscribe($fetch_url);
474 _debug("update_rss_feed: feed hub url found, subscribe request sent.");
476 db_query($link, "UPDATE ttrss_feeds SET pubsub_state = 1
477 WHERE id = '$feed'");
481 if ($debug_enabled) {
482 _debug("update_rss_feed: processing articles...");
485 foreach ($items as $item) {
486 if ($_REQUEST['xdebug'] == 3) {
490 $entry_guid = $item->get_id();
491 if (!$entry_guid) $entry_guid = $item->get_link();
492 if (!$entry_guid) $entry_guid = make_guid_from_title($item->get_title());
494 if ($debug_enabled) {
495 _debug("update_rss_feed: guid $entry_guid");
498 if (!$entry_guid) continue;
500 $entry_guid = "$owner_uid,$entry_guid";
502 $entry_timestamp = "";
504 $entry_timestamp = strtotime($item->get_date());
506 if ($entry_timestamp == -1 || !$entry_timestamp || $entry_timestamp > time()) {
507 $entry_timestamp = time();
508 $no_orig_date = 'true';
510 $no_orig_date = 'false';
513 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
515 if ($debug_enabled) {
516 _debug("update_rss_feed: date $entry_timestamp [$entry_timestamp_fmt]");
519 $entry_title = $item->get_title();
521 $entry_link = rewrite_relative_url($site_url, $item->get_link());
523 if ($debug_enabled) {
524 _debug("update_rss_feed: title $entry_title");
525 _debug("update_rss_feed: link $entry_link");
528 if (!$entry_title) $entry_title = date("Y-m-d H:i:s", $entry_timestamp);;
530 $entry_content = $item->get_content();
531 if (!$entry_content) $entry_content = $item->get_description();
533 if ($_REQUEST["xdebug"] == 2) {
534 print "update_rss_feed: content: ";
535 print $entry_content;
539 $entry_comments = $item->data["comments"];
541 if ($item->get_author()) {
542 $entry_author_item = $item->get_author();
543 $entry_author = $entry_author_item->get_name();
544 if (!$entry_author) $entry_author = $entry_author_item->get_email();
546 $entry_author = db_escape_string($link, $entry_author);
549 $entry_guid = db_escape_string($link, mb_substr($entry_guid, 0, 245));
551 $entry_comments = db_escape_string($link, mb_substr($entry_comments, 0, 245));
552 $entry_author = db_escape_string($link, mb_substr($entry_author, 0, 245));
554 $num_comments = $item->get_item_tags('http://purl.org/rss/1.0/modules/slash/', 'comments');
556 if (is_array($num_comments) && is_array($num_comments[0])) {
557 $num_comments = (int) $num_comments[0]["data"];
562 if ($debug_enabled) {
563 _debug("update_rss_feed: num_comments: $num_comments");
564 _debug("update_rss_feed: looking for tags [1]...");
567 // parse <category> entries into tags
569 $additional_tags = array();
571 $additional_tags_src = $item->get_categories();
573 if (is_array($additional_tags_src)) {
574 foreach ($additional_tags_src as $tobj) {
575 array_push($additional_tags, $tobj->get_term());
579 if ($debug_enabled) {
580 _debug("update_rss_feed: category tags:");
581 print_r($additional_tags);
584 if ($debug_enabled) {
585 _debug("update_rss_feed: looking for tags [2]...");
588 $entry_tags = array_unique($additional_tags);
590 for ($i = 0; $i < count($entry_tags); $i++)
591 $entry_tags[$i] = mb_strtolower($entry_tags[$i], 'utf-8');
593 if ($debug_enabled) {
594 //_debug("update_rss_feed: unfiltered tags found:");
595 //print_r($entry_tags);
598 if ($debug_enabled) {
599 _debug("update_rss_feed: done collecting data.");
602 // TODO: less memory-hungry implementation
604 if ($debug_enabled) {
605 _debug("update_rss_feed: applying plugin filters..");
608 // FIXME not sure if owner_uid is a good idea here, we may have a base entry without user entry (?)
609 $result = db_query($link, "SELECT plugin_data,title,content,link,tag_cache,author FROM ttrss_entries, ttrss_user_entries
610 WHERE ref_id = id AND guid = '".db_escape_string($link, $entry_guid)."' AND owner_uid = $owner_uid");
612 if (db_num_rows($result) != 0) {
613 $entry_plugin_data = db_fetch_result($result, 0, "plugin_data");
614 $stored_article = array("title" => db_fetch_result($result, 0, "title"),
615 "content" => db_fetch_result($result, 0, "content"),
616 "link" => db_fetch_result($result, 0, "link"),
617 "tags" => explode(",", db_fetch_result($result, 0, "tag_cache")),
618 "author" => db_fetch_result($result, 0, "author"));
620 $entry_plugin_data = "";
621 $stored_article = array();
624 $article = array("owner_uid" => $owner_uid, // read only
625 "guid" => $entry_guid, // read only
626 "title" => $entry_title,
627 "content" => $entry_content,
628 "link" => $entry_link,
629 "tags" => $entry_tags,
630 "plugin_data" => $entry_plugin_data,
631 "author" => $entry_author,
632 "stored" => $stored_article);
634 foreach ($pluginhost->get_hooks($pluginhost::HOOK_ARTICLE_FILTER) as $plugin) {
635 $article = $plugin->hook_article_filter($article);
638 $entry_tags = $article["tags"];
639 $entry_guid = db_escape_string($link, $entry_guid);
640 $entry_title = db_escape_string($link, $article["title"]);
641 $entry_author = db_escape_string($link, $article["author"]);
642 $entry_link = db_escape_string($link, $article["link"]);
643 $entry_plugin_data = db_escape_string($link, $article["plugin_data"]);
644 $entry_content = $article["content"]; // escaped below
647 if ($debug_enabled) {
648 _debug("update_rss_feed: plugin data: $entry_plugin_data");
651 if ($cache_images && is_writable(CACHE_DIR . '/images'))
652 cache_images($entry_content, $site_url, $debug_enabled);
654 $entry_content = db_escape_string($link, $entry_content, false);
656 $content_hash = "SHA1:" . sha1($entry_content);
658 db_query($link, "BEGIN");
660 $result = db_query($link, "SELECT id FROM ttrss_entries
661 WHERE guid = '$entry_guid'");
663 if (db_num_rows($result) == 0) {
665 if ($debug_enabled) {
666 _debug("update_rss_feed: base guid [$entry_guid] not found");
669 // base post entry does not exist, create it
671 $result = db_query($link,
672 "INSERT INTO ttrss_entries
691 '$entry_timestamp_fmt',
697 '$date_feed_processed',
700 '$entry_plugin_data',
703 $article_labels = array();
706 // we keep encountering the entry in feeds, so we need to
707 // update date_updated column so that we don't get horrible
708 // dupes when the entry gets purged and reinserted again e.g.
709 // in the case of SLOW SLOW OMG SLOW updating feeds
711 $base_entry_id = db_fetch_result($result, 0, "id");
713 db_query($link, "UPDATE ttrss_entries SET date_updated = NOW()
714 WHERE id = '$base_entry_id'");
716 $article_labels = get_article_labels($link, $base_entry_id, $owner_uid);
719 // now it should exist, if not - bad luck then
721 $result = db_query($link, "SELECT
722 id,content_hash,no_orig_date,title,plugin_data,
723 ".SUBSTRING_FOR_DATE."(date_updated,1,19) as date_updated,
724 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated,
728 WHERE guid = '$entry_guid'");
733 if (db_num_rows($result) == 1) {
735 if ($debug_enabled) {
736 _debug("update_rss_feed: base guid [$entry_guid] found, checking for user record");
739 // this will be used below in update handler
740 $orig_content_hash = db_fetch_result($result, 0, "content_hash");
741 $orig_title = db_fetch_result($result, 0, "title");
742 $orig_num_comments = db_fetch_result($result, 0, "num_comments");
743 $orig_date_updated = strtotime(db_fetch_result($result,
745 $orig_plugin_data = db_fetch_result($result, 0, "plugin_data");
747 $ref_id = db_fetch_result($result, 0, "id");
748 $entry_ref_id = $ref_id;
750 // check for user post link to main table
752 // do we allow duplicate posts with same GUID in different feeds?
753 if (get_pref($link, "ALLOW_DUPLICATE_POSTS", $owner_uid, false)) {
754 $dupcheck_qpart = "AND (feed_id = '$feed' OR feed_id IS NULL)";
756 $dupcheck_qpart = "";
759 /* Collect article tags here so we could filter by them: */
761 $article_filters = get_article_filters($filters, $entry_title,
762 $entry_content, $entry_link, $entry_timestamp, $entry_author,
765 if ($debug_enabled) {
766 _debug("update_rss_feed: article filters: ");
767 if (count($article_filters) != 0) {
768 print_r($article_filters);
772 if (find_article_filter($article_filters, "filter")) {
773 db_query($link, "COMMIT"); // close transaction in progress
777 $score = calculate_article_score($article_filters);
779 if ($debug_enabled) {
780 _debug("update_rss_feed: initial score: $score");
783 $query = "SELECT ref_id, int_id FROM ttrss_user_entries WHERE
784 ref_id = '$ref_id' AND owner_uid = '$owner_uid'
787 // if ($_REQUEST["xdebug"]) print "$query\n";
789 $result = db_query($link, $query);
791 // okay it doesn't exist - create user entry
792 if (db_num_rows($result) == 0) {
794 if ($debug_enabled) {
795 _debug("update_rss_feed: user record not found, creating...");
798 if ($score >= -500 && !find_article_filter($article_filters, 'catchup')) {
800 $last_read_qpart = 'NULL';
803 $last_read_qpart = 'NOW()';
806 if (find_article_filter($article_filters, 'mark') || $score > 1000) {
812 if (find_article_filter($article_filters, 'publish')) {
815 $published = 'false';
820 if (DB_TYPE == "pgsql" and defined('_NGRAM_TITLE_DUPLICATE_THRESHOLD')) {
822 $result = db_query($link, "SELECT COUNT(*) AS similar FROM
823 ttrss_entries,ttrss_user_entries
824 WHERE ref_id = id AND updated >= NOW() - INTERVAL '7 day'
825 AND similarity(title, '$entry_title') >= "._NGRAM_TITLE_DUPLICATE_THRESHOLD."
826 AND owner_uid = $owner_uid");
828 $ngram_similar = db_fetch_result($result, 0, "similar");
830 if ($debug_enabled) {
831 _debug("update_rss_feed: N-gram similar results: $ngram_similar");
834 if ($ngram_similar > 0) {
839 $last_marked = ($marked == 'true') ? 'NOW()' : 'NULL';
840 $last_published = ($published == 'true') ? 'NOW()' : 'NULL';
842 $result = db_query($link,
843 "INSERT INTO ttrss_user_entries
844 (ref_id, owner_uid, feed_id, unread, last_read, marked,
845 published, score, tag_cache, label_cache, uuid,
846 last_marked, last_published)
847 VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
848 $last_read_qpart, $marked, $published, '$score', '', '',
849 '', $last_marked, $last_published)");
851 if (PUBSUBHUBBUB_HUB && $published == 'true') {
852 $rss_link = get_self_url_prefix() .
853 "/public.php?op=rss&id=-2&key=" .
854 get_feed_access_key($link, -2, false, $owner_uid);
856 $p = new Publisher(PUBSUBHUBBUB_HUB);
858 $pubsub_result = $p->publish_update($rss_link);
861 $result = db_query($link,
862 "SELECT int_id FROM ttrss_user_entries WHERE
863 ref_id = '$ref_id' AND owner_uid = '$owner_uid' AND
864 feed_id = '$feed' LIMIT 1");
866 if (db_num_rows($result) == 1) {
867 $entry_int_id = db_fetch_result($result, 0, "int_id");
870 if ($debug_enabled) {
871 _debug("update_rss_feed: user record FOUND");
874 $entry_ref_id = db_fetch_result($result, 0, "ref_id");
875 $entry_int_id = db_fetch_result($result, 0, "int_id");
878 if ($debug_enabled) {
879 _debug("update_rss_feed: RID: $entry_ref_id, IID: $entry_int_id");
882 $post_needs_update = false;
883 $update_insignificant = false;
885 if ($orig_num_comments != $num_comments) {
886 $post_needs_update = true;
887 $update_insignificant = true;
890 if ($entry_plugin_data != $orig_plugin_data) {
891 $post_needs_update = true;
892 $update_insignificant = true;
895 if ($content_hash != $orig_content_hash) {
896 $post_needs_update = true;
897 $update_insignificant = false;
900 if (db_escape_string($link, $orig_title) != $entry_title) {
901 $post_needs_update = true;
902 $update_insignificant = false;
905 // if post needs update, update it and mark all user entries
906 // linking to this post as updated
907 if ($post_needs_update) {
909 if (defined('DAEMON_EXTENDED_DEBUG')) {
910 _debug("update_rss_feed: post $entry_guid needs update...");
913 // print "<!-- post $orig_title needs update : $post_needs_update -->";
915 db_query($link, "UPDATE ttrss_entries
916 SET title = '$entry_title', content = '$entry_content',
917 content_hash = '$content_hash',
918 updated = '$entry_timestamp_fmt',
919 num_comments = '$num_comments',
920 plugin_data = '$entry_plugin_data'
921 WHERE id = '$ref_id'");
923 if (!$update_insignificant) {
924 if ($mark_unread_on_update) {
925 db_query($link, "UPDATE ttrss_user_entries
926 SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
932 db_query($link, "COMMIT");
934 if ($debug_enabled) {
935 _debug("update_rss_feed: assigning labels...");
938 assign_article_to_label_filters($link, $entry_ref_id, $article_filters,
939 $owner_uid, $article_labels);
941 if ($debug_enabled) {
942 _debug("update_rss_feed: looking for enclosures...");
947 $enclosures = array();
949 $encs = $item->get_enclosures();
951 if (is_array($encs)) {
952 foreach ($encs as $e) {
954 $e->link, $e->type, $e->length);
955 array_push($enclosures, $e_item);
959 if ($debug_enabled) {
960 _debug("update_rss_feed: article enclosures:");
961 print_r($enclosures);
964 db_query($link, "BEGIN");
966 foreach ($enclosures as $enc) {
967 $enc_url = db_escape_string($link, $enc[0]);
968 $enc_type = db_escape_string($link, $enc[1]);
969 $enc_dur = db_escape_string($link, $enc[2]);
971 $result = db_query($link, "SELECT id FROM ttrss_enclosures
972 WHERE content_url = '$enc_url' AND post_id = '$entry_ref_id'");
974 if (db_num_rows($result) == 0) {
975 db_query($link, "INSERT INTO ttrss_enclosures
976 (content_url, content_type, title, duration, post_id) VALUES
977 ('$enc_url', '$enc_type', '', '$enc_dur', '$entry_ref_id')");
981 db_query($link, "COMMIT");
983 // check for manual tags (we have to do it here since they're loaded from filters)
985 foreach ($article_filters as $f) {
986 if ($f["type"] == "tag") {
988 $manual_tags = trim_array(explode(",", $f["param"]));
990 foreach ($manual_tags as $tag) {
991 if (tag_is_valid($tag)) {
992 array_push($entry_tags, $tag);
1000 $boring_tags = trim_array(explode(",", mb_strtolower(get_pref($link,
1001 'BLACKLISTED_TAGS', $owner_uid, ''), 'utf-8')));
1003 $filtered_tags = array();
1004 $tags_to_cache = array();
1006 if ($entry_tags && is_array($entry_tags)) {
1007 foreach ($entry_tags as $tag) {
1008 if (array_search($tag, $boring_tags) === false) {
1009 array_push($filtered_tags, $tag);
1014 $filtered_tags = array_unique($filtered_tags);
1016 if ($debug_enabled) {
1017 _debug("update_rss_feed: filtered article tags:");
1018 print_r($filtered_tags);
1021 // Save article tags in the database
1023 if (count($filtered_tags) > 0) {
1025 db_query($link, "BEGIN");
1027 foreach ($filtered_tags as $tag) {
1029 $tag = sanitize_tag($tag);
1030 $tag = db_escape_string($link, $tag);
1032 if (!tag_is_valid($tag)) continue;
1034 $result = db_query($link, "SELECT id FROM ttrss_tags
1035 WHERE tag_name = '$tag' AND post_int_id = '$entry_int_id' AND
1036 owner_uid = '$owner_uid' LIMIT 1");
1038 if ($result && db_num_rows($result) == 0) {
1040 db_query($link, "INSERT INTO ttrss_tags
1041 (owner_uid,tag_name,post_int_id)
1042 VALUES ('$owner_uid','$tag', '$entry_int_id')");
1045 array_push($tags_to_cache, $tag);
1048 /* update the cache */
1050 $tags_to_cache = array_unique($tags_to_cache);
1052 $tags_str = db_escape_string($link, join(",", $tags_to_cache));
1054 db_query($link, "UPDATE ttrss_user_entries
1055 SET tag_cache = '$tags_str' WHERE ref_id = '$entry_ref_id'
1056 AND owner_uid = $owner_uid");
1058 db_query($link, "COMMIT");
1061 if (get_pref($link, "AUTO_ASSIGN_LABELS", $owner_uid, false)) {
1062 if ($debug_enabled) {
1063 _debug("update_rss_feed: auto-assigning labels...");
1066 foreach ($labels as $label) {
1067 $caption = preg_quote($label["caption"]);
1069 if ($caption && preg_match("/\b$caption\b/i", "$tags_str " . strip_tags($entry_content) . " $entry_title")) {
1070 if (!labels_contains_caption($article_labels, $caption)) {
1071 label_add_article($link, $entry_ref_id, $caption, $owner_uid);
1077 if ($debug_enabled) {
1078 _debug("update_rss_feed: article processed");
1082 if (!$last_updated) {
1083 if ($debug_enabled) {
1084 _debug("update_rss_feed: new feed, catching it up...");
1086 catchup_feed($link, $feed, false, $owner_uid);
1089 if ($debug_enabled) {
1090 _debug("purging feed...");
1093 purge_feed($link, $feed, 0, $debug_enabled);
1095 db_query($link, "UPDATE ttrss_feeds
1096 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
1098 // db_query($link, "COMMIT");
1102 $error_msg = db_escape_string($link, mb_substr($rss->error(), 0, 245));
1104 if ($debug_enabled) {
1105 _debug("update_rss_feed: error fetching feed: $error_msg");
1109 "UPDATE ttrss_feeds SET last_error = '$error_msg',
1110 last_updated = NOW() WHERE id = '$feed'");
1115 if ($debug_enabled) {
1116 _debug("update_rss_feed: done");
1121 function cache_images($html, $site_url, $debug) {
1122 $cache_dir = CACHE_DIR . "/images";
1124 libxml_use_internal_errors(true);
1126 $charset_hack = '<head>
1127 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
1130 $doc = new DOMDocument();
1131 $doc->loadHTML($charset_hack . $html);
1132 $xpath = new DOMXPath($doc);
1134 $entries = $xpath->query('(//img[@src])');
1136 foreach ($entries as $entry) {
1137 if ($entry->hasAttribute('src')) {
1138 $src = rewrite_relative_url($site_url, $entry->getAttribute('src'));
1140 $local_filename = CACHE_DIR . "/images/" . sha1($src) . ".png";
1142 if ($debug) _debug("cache_images: downloading: $src to $local_filename");
1144 if (!file_exists($local_filename)) {
1145 $file_content = fetch_file_contents($src);
1147 if ($file_content && strlen($file_content) > 1024) {
1148 file_put_contents($local_filename, $file_content);
1152 if (file_exists($local_filename)) {
1153 $entry->setAttribute('src', SELF_URL_PATH . '/image.php?url=' .
1154 base64_encode($src));
1159 $node = $doc->getElementsByTagName('body')->item(0);
1161 return $doc->saveXML($node);
1164 function expire_lock_files($debug) {
1165 if ($debug) _debug("Removing old lock files...");
1169 if (is_writable(LOCK_DIRECTORY)) {
1170 $files = glob(LOCK_DIRECTORY . "/*.lock");
1173 foreach ($files as $file) {
1174 if (!file_is_locked($file) && time() - filemtime($file) > 86400*2) {
1182 if ($debug) _debug("Removed $num_deleted files.");
1185 function expire_cached_files($debug) {
1186 foreach (array("simplepie", "images", "export") as $dir) {
1187 $cache_dir = CACHE_DIR . "/$dir";
1189 if ($debug) _debug("Expiring $cache_dir");
1193 if (is_writable($cache_dir)) {
1194 $files = glob("$cache_dir/*");
1197 foreach ($files as $file) {
1198 if (time() - filemtime($file) > 86400*7) {
1207 if ($debug) _debug("Removed $num_deleted files.");
1212 * Source: http://www.php.net/manual/en/function.parse-url.php#104527
1213 * Returns the url query as associative array
1215 * @param string query
1216 * @return array params
1218 function convertUrlQuery($query) {
1219 $queryParts = explode('&', $query);
1223 foreach ($queryParts as $param) {
1224 $item = explode('=', $param);
1225 $params[$item[0]] = $item[1];
1231 function get_article_filters($filters, $title, $content, $link, $timestamp, $author, $tags) {
1234 foreach ($filters as $filter) {
1235 $match_any_rule = $filter["match_any_rule"];
1236 $inverse = $filter["inverse"];
1237 $filter_match = false;
1239 foreach ($filter["rules"] as $rule) {
1241 $reg_exp = $rule["reg_exp"];
1242 $rule_inverse = $rule["inverse"];
1247 switch ($rule["type"]) {
1249 $match = @preg_match("/$reg_exp/i", $title);
1252 // we don't need to deal with multiline regexps
1253 $content = preg_replace("/[\r\n\t]/", "", $content);
1255 $match = @preg_match("/$reg_exp/i", $content);
1258 // we don't need to deal with multiline regexps
1259 $content = preg_replace("/[\r\n\t]/", "", $content);
1261 $match = (@preg_match("/$reg_exp/i", $title) || @preg_match("/$reg_exp/i", $content));
1264 $match = @preg_match("/$reg_exp/i", $link);
1267 $match = @preg_match("/$reg_exp/i", $author);
1270 $tag_string = join(",", $tags);
1271 $match = @preg_match("/$reg_exp/i", $tag_string);
1275 if ($rule_inverse) $match = !$match;
1277 if ($match_any_rule) {
1279 $filter_match = true;
1283 $filter_match = $match;
1290 if ($inverse) $filter_match = !$filter_match;
1292 if ($filter_match) {
1293 foreach ($filter["actions"] AS $action) {
1294 array_push($matches, $action);
1302 function find_article_filter($filters, $filter_name) {
1303 foreach ($filters as $f) {
1304 if ($f["type"] == $filter_name) {
1311 function find_article_filters($filters, $filter_name) {
1314 foreach ($filters as $f) {
1315 if ($f["type"] == $filter_name) {
1316 array_push($results, $f);
1322 function calculate_article_score($filters) {
1325 foreach ($filters as $f) {
1326 if ($f["type"] == "score") {
1327 $score += $f["param"];
1333 function labels_contains_caption($labels, $caption) {
1334 foreach ($labels as $label) {
1335 if ($label[1] == $caption) {
1343 function assign_article_to_label_filters($link, $id, $filters, $owner_uid, $article_labels) {
1344 foreach ($filters as $f) {
1345 if ($f["type"] == "label") {
1346 if (!labels_contains_caption($article_labels, $f["param"])) {
1347 label_add_article($link, $id, $f["param"], $owner_uid);
1353 function make_guid_from_title($title) {
1354 return preg_replace("/[ \"\',.:;]/", "-",
1355 mb_strtolower(strip_tags($title), 'utf-8'));