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
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 feed_url $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);
150 // For each feed, we call the feed update function.
151 foreach ($feeds_to_update as $feed) {
152 if($debug) _debug("Base feed: $feed");
154 //update_rss_feed($link, $line["id"], true);
156 // since we have the data cached, we can deal with other feeds with the same url
158 $tmp_result = db_query($link, "SELECT ttrss_feeds.feed_url,ttrss_feeds.id,last_updated
159 FROM ttrss_feeds, ttrss_users WHERE
160 ttrss_users.id = ttrss_feeds.owner_uid AND
161 feed_url = '".db_escape_string($link, $feed)."' AND
162 ttrss_feeds.update_interval != -1
164 ORDER BY feed_url $query_limit");
166 if (db_num_rows($tmp_result) > 0) {
167 while ($tline = db_fetch_assoc($tmp_result)) {
168 if($debug) _debug(" => " . $tline["last_updated"] . ", " . $tline["id"]);
169 update_rss_feed($link, $tline["id"], true);
174 require_once "digest.php";
176 // Send feed digests by email if needed.
177 send_headlines_digests($link, $debug);
179 } // function update_daemon_common
181 // ignore_daemon is not used
182 function update_rss_feed($link, $feed, $ignore_daemon = false, $no_cache = false,
183 $override_url = false) {
185 require_once "lib/simplepie/simplepie.inc";
187 $debug_enabled = defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug'];
189 if ($debug_enabled) {
190 _debug("update_rss_feed: start");
193 $result = db_query($link, "SELECT id,update_interval,auth_login,
194 feed_url,auth_pass,cache_images,last_updated,
195 mark_unread_on_update, owner_uid,
197 FROM ttrss_feeds WHERE id = '$feed'");
199 if (db_num_rows($result) == 0) {
200 if ($debug_enabled) {
201 _debug("update_rss_feed: feed $feed NOT FOUND/SKIPPED");
206 $last_updated = db_fetch_result($result, 0, "last_updated");
207 $owner_uid = db_fetch_result($result, 0, "owner_uid");
208 $mark_unread_on_update = sql_bool_to_bool(db_fetch_result($result,
209 0, "mark_unread_on_update"));
210 $pubsub_state = db_fetch_result($result, 0, "pubsub_state");
212 db_query($link, "UPDATE ttrss_feeds SET last_update_started = NOW()
213 WHERE id = '$feed'");
215 $auth_login = db_fetch_result($result, 0, "auth_login");
216 $auth_pass = db_fetch_result($result, 0, "auth_pass");
218 $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
219 $fetch_url = db_fetch_result($result, 0, "feed_url");
221 $feed = db_escape_string($link, $feed);
223 if ($override_url) $fetch_url = $override_url;
225 $date_feed_processed = date('Y-m-d H:i');
227 $cache_filename = CACHE_DIR . "/simplepie/" . sha1($fetch_url) . ".feed";
229 // Ignore cache if new feed or manual update.
230 $cache_age = ($no_cache || is_null($last_updated) || $last_updated == '1970-01-01 00:00:00') ?
231 30 : get_feed_update_interval($link, $feed) * 60;
233 if ($debug_enabled) {
234 _debug("update_rss_feed: cache filename: $cache_filename exists: " . file_exists($cache_filename));
235 _debug("update_rss_feed: cache age: $cache_age; no cache: $no_cache");
238 $cached_feed_data_hash = false;
242 $cache_timestamp = file_exists($cache_filename) ? filemtime($cache_filename) : 0;
243 $last_updated_timestamp = strtotime($last_updated);
245 if (file_exists($cache_filename) &&
246 is_readable($cache_filename) &&
247 !$auth_login && !$auth_pass &&
248 filemtime($cache_filename) > time() - $cache_age) {
250 if ($debug_enabled) {
251 _debug("update_rss_feed: using local cache.");
254 if ($cache_timestamp > $last_updated_timestamp) {
255 @$rss_data = file_get_contents($cache_filename);
258 $rss_hash = sha1($rss_data);
259 @$rss = unserialize($rss_data);
262 if ($debug_enabled) {
263 _debug("update_rss_feed: local cache valid and older than last_updated, nothing to do.");
272 if ($debug_enabled) {
273 _debug("update_rss_feed: fetching [$fetch_url] (ts: $cache_timestamp/$last_updated_timestamp)");
276 $feed_data = fetch_file_contents($fetch_url, false,
277 $auth_login, $auth_pass, false, $no_cache ? 15 : 45,
278 max($last_updated_timestamp, $cache_timestamp));
280 if ($debug_enabled) {
281 _debug("update_rss_feed: fetch done.");
287 global $fetch_last_error;
288 global $fetch_last_error_code;
290 if ($debug_enabled) {
291 _debug("update_rss_feed: unable to fetch: $fetch_last_error [$fetch_last_error_code]");
297 if ($fetch_last_error_code != 304) {
298 $error_escaped = db_escape_string($link, $fetch_last_error);
300 if ($debug_enabled) {
301 _debug("update_rss_feed: source claims data not modified, nothing to do.");
306 "UPDATE ttrss_feeds SET last_error = '$error_escaped',
307 last_updated = NOW() WHERE id = '$feed'");
313 $pluginhost = new PluginHost($link);
314 $pluginhost->set_debug($debug_enabled);
315 $user_plugins = get_pref($link, "_ENABLED_PLUGINS", $owner_uid);
317 $pluginhost->load(PLUGINS, $pluginhost::KIND_ALL);
318 $pluginhost->load($user_plugins, $pluginhost::KIND_USER, $owner_uid);
319 $pluginhost->load_data();
321 foreach ($pluginhost->get_hooks($pluginhost::HOOK_FEED_FETCHED) as $plugin) {
322 $feed_data = $plugin->hook_feed_fetched($feed_data);
326 $rss = new SimplePie();
327 $rss->set_sanitize_class("SanitizeDummy");
328 // simplepie ignores the above and creates default sanitizer anyway,
329 // so let's override it...
330 $rss->sanitize = new SanitizeDummy();
331 $rss->set_output_encoding('UTF-8');
332 $rss->set_raw_data($feed_data);
333 $rss->enable_cache(false);
340 $feed = db_escape_string($link, $feed);
342 if (!$rss->error()) {
344 // cache data for later
345 if (!$auth_pass && !$auth_login && is_writable(CACHE_DIR . "/simplepie")) {
346 $rss_data = serialize($rss);
347 $new_rss_hash = sha1($rss_data);
349 if ($new_rss_hash != $rss_hash) {
350 if ($debug_enabled) {
351 _debug("update_rss_feed: saving $cache_filename");
353 @file_put_contents($cache_filename, serialize($rss));
357 // We use local pluginhost here because we need to load different per-user feed plugins
358 $pluginhost->run_hooks($pluginhost::HOOK_FEED_PARSED, "hook_feed_parsed", $rss);
360 if ($debug_enabled) {
361 _debug("update_rss_feed: processing feed data...");
364 // db_query($link, "BEGIN");
366 if (DB_TYPE == "pgsql") {
367 $favicon_interval_qpart = "favicon_last_checked < NOW() - INTERVAL '12 hour'";
369 $favicon_interval_qpart = "favicon_last_checked < DATE_SUB(NOW(), INTERVAL 12 HOUR)";
372 $result = db_query($link, "SELECT title,site_url,owner_uid,
373 (favicon_last_checked IS NULL OR $favicon_interval_qpart) AS
375 FROM ttrss_feeds WHERE id = '$feed'");
377 $registered_title = db_fetch_result($result, 0, "title");
378 $orig_site_url = db_fetch_result($result, 0, "site_url");
379 $favicon_needs_check = sql_bool_to_bool(db_fetch_result($result, 0,
380 "favicon_needs_check"));
382 $owner_uid = db_fetch_result($result, 0, "owner_uid");
384 $site_url = db_escape_string($link, mb_substr(rewrite_relative_url($fetch_url, $rss->get_link()), 0, 245));
386 if ($debug_enabled) {
387 _debug("update_rss_feed: checking favicon...");
390 if ($favicon_needs_check) {
391 check_feed_favicon($site_url, $feed, $link);
393 db_query($link, "UPDATE ttrss_feeds SET favicon_last_checked = NOW()
394 WHERE id = '$feed'");
397 if (!$registered_title || $registered_title == "[Unknown]") {
399 $feed_title = db_escape_string($link, $rss->get_title());
401 if ($debug_enabled) {
402 _debug("update_rss_feed: registering title: $feed_title");
405 db_query($link, "UPDATE ttrss_feeds SET
406 title = '$feed_title' WHERE id = '$feed'");
409 if ($site_url && $orig_site_url != $site_url) {
410 db_query($link, "UPDATE ttrss_feeds SET
411 site_url = '$site_url' WHERE id = '$feed'");
414 if ($debug_enabled) {
415 _debug("update_rss_feed: loading filters & labels...");
418 $filters = load_filters($link, $feed, $owner_uid);
419 $labels = get_all_labels($link, $owner_uid);
421 if ($debug_enabled) {
423 _debug("update_rss_feed: " . count($filters) . " filters loaded.");
426 $items = $rss->get_items();
428 if (!is_array($items)) {
429 if ($debug_enabled) {
430 _debug("update_rss_feed: no articles found.");
433 db_query($link, "UPDATE ttrss_feeds
434 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
436 return; // no articles
439 if ($pubsub_state != 2 && PUBSUBHUBBUB_ENABLED) {
441 if ($debug_enabled) _debug("update_rss_feed: checking for PUSH hub...");
443 $feed_hub_url = false;
445 $links = $rss->get_links('hub');
447 if ($links && is_array($links)) {
448 foreach ($links as $l) {
454 if ($debug_enabled) _debug("update_rss_feed: feed hub url: $feed_hub_url");
456 if ($feed_hub_url && function_exists('curl_init') &&
457 !ini_get("open_basedir")) {
459 require_once 'lib/pubsubhubbub/subscriber.php';
461 $callback_url = get_self_url_prefix() .
462 "/public.php?op=pubsub&id=$feed";
464 $s = new Subscriber($feed_hub_url, $callback_url);
466 $rc = $s->subscribe($fetch_url);
469 _debug("update_rss_feed: feed hub url found, subscribe request sent.");
471 db_query($link, "UPDATE ttrss_feeds SET pubsub_state = 1
472 WHERE id = '$feed'");
476 if ($debug_enabled) {
477 _debug("update_rss_feed: processing articles...");
480 foreach ($items as $item) {
481 if ($_REQUEST['xdebug'] == 3) {
485 $entry_guid = $item->get_id();
486 if (!$entry_guid) $entry_guid = $item->get_link();
487 if (!$entry_guid) $entry_guid = make_guid_from_title($item->get_title());
489 if ($debug_enabled) {
490 _debug("update_rss_feed: guid $entry_guid");
493 if (!$entry_guid) continue;
495 $entry_guid = "$owner_uid,$entry_guid";
497 $entry_timestamp = "";
499 $entry_timestamp = strtotime($item->get_date());
501 if ($entry_timestamp == -1 || !$entry_timestamp || $entry_timestamp > time()) {
502 $entry_timestamp = time();
503 $no_orig_date = 'true';
505 $no_orig_date = 'false';
508 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
510 if ($debug_enabled) {
511 _debug("update_rss_feed: date $entry_timestamp [$entry_timestamp_fmt]");
514 $entry_title = $item->get_title();
516 $entry_link = rewrite_relative_url($site_url, $item->get_link());
518 if ($debug_enabled) {
519 _debug("update_rss_feed: title $entry_title");
520 _debug("update_rss_feed: link $entry_link");
523 if (!$entry_title) $entry_title = date("Y-m-d H:i:s", $entry_timestamp);;
525 $entry_content = $item->get_content();
526 if (!$entry_content) $entry_content = $item->get_description();
528 if ($_REQUEST["xdebug"] == 2) {
529 print "update_rss_feed: content: ";
530 print $entry_content;
534 $entry_comments = $item->data["comments"];
536 if ($item->get_author()) {
537 $entry_author_item = $item->get_author();
538 $entry_author = $entry_author_item->get_name();
539 if (!$entry_author) $entry_author = $entry_author_item->get_email();
541 $entry_author = db_escape_string($link, $entry_author);
544 $entry_guid = db_escape_string($link, mb_substr($entry_guid, 0, 245));
546 $entry_comments = db_escape_string($link, mb_substr($entry_comments, 0, 245));
547 $entry_author = db_escape_string($link, mb_substr($entry_author, 0, 245));
549 $num_comments = $item->get_item_tags('http://purl.org/rss/1.0/modules/slash/', 'comments');
551 if (is_array($num_comments) && is_array($num_comments[0])) {
552 $num_comments = (int) $num_comments[0]["data"];
557 if ($debug_enabled) {
558 _debug("update_rss_feed: num_comments: $num_comments");
559 _debug("update_rss_feed: looking for tags [1]...");
562 // parse <category> entries into tags
564 $additional_tags = array();
566 $additional_tags_src = $item->get_categories();
568 if (is_array($additional_tags_src)) {
569 foreach ($additional_tags_src as $tobj) {
570 array_push($additional_tags, $tobj->get_term());
574 if ($debug_enabled) {
575 _debug("update_rss_feed: category tags:");
576 print_r($additional_tags);
579 if ($debug_enabled) {
580 _debug("update_rss_feed: looking for tags [2]...");
583 $entry_tags = array_unique($additional_tags);
585 for ($i = 0; $i < count($entry_tags); $i++)
586 $entry_tags[$i] = mb_strtolower($entry_tags[$i], 'utf-8');
588 if ($debug_enabled) {
589 //_debug("update_rss_feed: unfiltered tags found:");
590 //print_r($entry_tags);
593 if ($debug_enabled) {
594 _debug("update_rss_feed: done collecting data.");
597 // TODO: less memory-hungry implementation
599 if ($debug_enabled) {
600 _debug("update_rss_feed: applying plugin filters..");
603 // FIXME not sure if owner_uid is a good idea here, we may have a base entry without user entry (?)
604 $result = db_query($link, "SELECT plugin_data,title,content,link,tag_cache,author FROM ttrss_entries, ttrss_user_entries
605 WHERE ref_id = id AND guid = '".db_escape_string($link, $entry_guid)."' AND owner_uid = $owner_uid");
607 if (db_num_rows($result) != 0) {
608 $entry_plugin_data = db_fetch_result($result, 0, "plugin_data");
609 $stored_article = array("title" => db_fetch_result($result, 0, "title"),
610 "content" => db_fetch_result($result, 0, "content"),
611 "link" => db_fetch_result($result, 0, "link"),
612 "tags" => explode(",", db_fetch_result($result, 0, "tag_cache")),
613 "author" => db_fetch_result($result, 0, "author"));
615 $entry_plugin_data = "";
616 $stored_article = array();
619 $article = array("owner_uid" => $owner_uid, // read only
620 "guid" => $entry_guid, // read only
621 "title" => $entry_title,
622 "content" => $entry_content,
623 "link" => $entry_link,
624 "tags" => $entry_tags,
625 "plugin_data" => $entry_plugin_data,
626 "author" => $entry_author,
627 "stored" => $stored_article);
629 foreach ($pluginhost->get_hooks($pluginhost::HOOK_ARTICLE_FILTER) as $plugin) {
630 $article = $plugin->hook_article_filter($article);
633 $entry_tags = $article["tags"];
634 $entry_guid = db_escape_string($link, $entry_guid);
635 $entry_title = db_escape_string($link, $article["title"]);
636 $entry_author = db_escape_string($link, $article["author"]);
637 $entry_link = db_escape_string($link, $article["link"]);
638 $entry_plugin_data = db_escape_string($link, $article["plugin_data"]);
639 $entry_content = $article["content"]; // escaped below
642 if ($debug_enabled) {
643 _debug("update_rss_feed: plugin data: $entry_plugin_data");
646 if ($cache_images && is_writable(CACHE_DIR . '/images'))
647 cache_images($entry_content, $site_url, $debug_enabled);
649 $entry_content = db_escape_string($link, $entry_content, false);
651 $content_hash = "SHA1:" . sha1($entry_content);
653 db_query($link, "BEGIN");
655 $result = db_query($link, "SELECT id FROM ttrss_entries
656 WHERE guid = '$entry_guid'");
658 if (db_num_rows($result) == 0) {
660 if ($debug_enabled) {
661 _debug("update_rss_feed: base guid [$entry_guid] not found");
664 // base post entry does not exist, create it
666 $result = db_query($link,
667 "INSERT INTO ttrss_entries
686 '$entry_timestamp_fmt',
692 '$date_feed_processed',
695 '$entry_plugin_data',
698 $article_labels = array();
701 // we keep encountering the entry in feeds, so we need to
702 // update date_updated column so that we don't get horrible
703 // dupes when the entry gets purged and reinserted again e.g.
704 // in the case of SLOW SLOW OMG SLOW updating feeds
706 $base_entry_id = db_fetch_result($result, 0, "id");
708 db_query($link, "UPDATE ttrss_entries SET date_updated = NOW()
709 WHERE id = '$base_entry_id'");
711 $article_labels = get_article_labels($link, $base_entry_id, $owner_uid);
714 // now it should exist, if not - bad luck then
716 $result = db_query($link, "SELECT
717 id,content_hash,no_orig_date,title,plugin_data,
718 ".SUBSTRING_FOR_DATE."(date_updated,1,19) as date_updated,
719 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated,
723 WHERE guid = '$entry_guid'");
728 if (db_num_rows($result) == 1) {
730 if ($debug_enabled) {
731 _debug("update_rss_feed: base guid [$entry_guid] found, checking for user record");
734 // this will be used below in update handler
735 $orig_content_hash = db_fetch_result($result, 0, "content_hash");
736 $orig_title = db_fetch_result($result, 0, "title");
737 $orig_num_comments = db_fetch_result($result, 0, "num_comments");
738 $orig_date_updated = strtotime(db_fetch_result($result,
740 $orig_plugin_data = db_fetch_result($result, 0, "plugin_data");
742 $ref_id = db_fetch_result($result, 0, "id");
743 $entry_ref_id = $ref_id;
745 // check for user post link to main table
747 // do we allow duplicate posts with same GUID in different feeds?
748 if (get_pref($link, "ALLOW_DUPLICATE_POSTS", $owner_uid, false)) {
749 $dupcheck_qpart = "AND (feed_id = '$feed' OR feed_id IS NULL)";
751 $dupcheck_qpart = "";
754 /* Collect article tags here so we could filter by them: */
756 $article_filters = get_article_filters($filters, $entry_title,
757 $entry_content, $entry_link, $entry_timestamp, $entry_author,
760 if ($debug_enabled) {
761 _debug("update_rss_feed: article filters: ");
762 if (count($article_filters) != 0) {
763 print_r($article_filters);
767 if (find_article_filter($article_filters, "filter")) {
768 db_query($link, "COMMIT"); // close transaction in progress
772 $score = calculate_article_score($article_filters);
774 if ($debug_enabled) {
775 _debug("update_rss_feed: initial score: $score");
778 $query = "SELECT ref_id, int_id FROM ttrss_user_entries WHERE
779 ref_id = '$ref_id' AND owner_uid = '$owner_uid'
782 // if ($_REQUEST["xdebug"]) print "$query\n";
784 $result = db_query($link, $query);
786 // okay it doesn't exist - create user entry
787 if (db_num_rows($result) == 0) {
789 if ($debug_enabled) {
790 _debug("update_rss_feed: user record not found, creating...");
793 if ($score >= -500 && !find_article_filter($article_filters, 'catchup')) {
795 $last_read_qpart = 'NULL';
798 $last_read_qpart = 'NOW()';
801 if (find_article_filter($article_filters, 'mark') || $score > 1000) {
807 if (find_article_filter($article_filters, 'publish')) {
810 $published = 'false';
815 if (DB_TYPE == "pgsql" and defined('_NGRAM_TITLE_DUPLICATE_THRESHOLD')) {
817 $result = db_query($link, "SELECT COUNT(*) AS similar FROM
818 ttrss_entries,ttrss_user_entries
819 WHERE ref_id = id AND updated >= NOW() - INTERVAL '7 day'
820 AND similarity(title, '$entry_title') >= "._NGRAM_TITLE_DUPLICATE_THRESHOLD."
821 AND owner_uid = $owner_uid");
823 $ngram_similar = db_fetch_result($result, 0, "similar");
825 if ($debug_enabled) {
826 _debug("update_rss_feed: N-gram similar results: $ngram_similar");
829 if ($ngram_similar > 0) {
834 $last_marked = ($marked == 'true') ? 'NOW()' : 'NULL';
835 $last_published = ($published == 'true') ? 'NOW()' : 'NULL';
837 $result = db_query($link,
838 "INSERT INTO ttrss_user_entries
839 (ref_id, owner_uid, feed_id, unread, last_read, marked,
840 published, score, tag_cache, label_cache, uuid,
841 last_marked, last_published)
842 VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
843 $last_read_qpart, $marked, $published, '$score', '', '',
844 '', $last_marked, $last_published)");
846 if (PUBSUBHUBBUB_HUB && $published == 'true') {
847 $rss_link = get_self_url_prefix() .
848 "/public.php?op=rss&id=-2&key=" .
849 get_feed_access_key($link, -2, false, $owner_uid);
851 $p = new Publisher(PUBSUBHUBBUB_HUB);
853 $pubsub_result = $p->publish_update($rss_link);
856 $result = db_query($link,
857 "SELECT int_id FROM ttrss_user_entries WHERE
858 ref_id = '$ref_id' AND owner_uid = '$owner_uid' AND
859 feed_id = '$feed' LIMIT 1");
861 if (db_num_rows($result) == 1) {
862 $entry_int_id = db_fetch_result($result, 0, "int_id");
865 if ($debug_enabled) {
866 _debug("update_rss_feed: user record FOUND");
869 $entry_ref_id = db_fetch_result($result, 0, "ref_id");
870 $entry_int_id = db_fetch_result($result, 0, "int_id");
873 if ($debug_enabled) {
874 _debug("update_rss_feed: RID: $entry_ref_id, IID: $entry_int_id");
877 $post_needs_update = false;
878 $update_insignificant = false;
880 if ($orig_num_comments != $num_comments) {
881 $post_needs_update = true;
882 $update_insignificant = true;
885 if ($entry_plugin_data != $orig_plugin_data) {
886 $post_needs_update = true;
887 $update_insignificant = true;
890 if ($content_hash != $orig_content_hash) {
891 $post_needs_update = true;
892 $update_insignificant = false;
895 if (db_escape_string($link, $orig_title) != $entry_title) {
896 $post_needs_update = true;
897 $update_insignificant = false;
900 // if post needs update, update it and mark all user entries
901 // linking to this post as updated
902 if ($post_needs_update) {
904 if (defined('DAEMON_EXTENDED_DEBUG')) {
905 _debug("update_rss_feed: post $entry_guid needs update...");
908 // print "<!-- post $orig_title needs update : $post_needs_update -->";
910 db_query($link, "UPDATE ttrss_entries
911 SET title = '$entry_title', content = '$entry_content',
912 content_hash = '$content_hash',
913 updated = '$entry_timestamp_fmt',
914 num_comments = '$num_comments',
915 plugin_data = '$entry_plugin_data'
916 WHERE id = '$ref_id'");
918 if (!$update_insignificant) {
919 if ($mark_unread_on_update) {
920 db_query($link, "UPDATE ttrss_user_entries
921 SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
927 db_query($link, "COMMIT");
929 if ($debug_enabled) {
930 _debug("update_rss_feed: assigning labels...");
933 assign_article_to_label_filters($link, $entry_ref_id, $article_filters,
934 $owner_uid, $article_labels);
936 if ($debug_enabled) {
937 _debug("update_rss_feed: looking for enclosures...");
942 $enclosures = array();
944 $encs = $item->get_enclosures();
946 if (is_array($encs)) {
947 foreach ($encs as $e) {
949 $e->link, $e->type, $e->length);
950 array_push($enclosures, $e_item);
954 if ($debug_enabled) {
955 _debug("update_rss_feed: article enclosures:");
956 print_r($enclosures);
959 db_query($link, "BEGIN");
961 foreach ($enclosures as $enc) {
962 $enc_url = db_escape_string($link, $enc[0]);
963 $enc_type = db_escape_string($link, $enc[1]);
964 $enc_dur = db_escape_string($link, $enc[2]);
966 $result = db_query($link, "SELECT id FROM ttrss_enclosures
967 WHERE content_url = '$enc_url' AND post_id = '$entry_ref_id'");
969 if (db_num_rows($result) == 0) {
970 db_query($link, "INSERT INTO ttrss_enclosures
971 (content_url, content_type, title, duration, post_id) VALUES
972 ('$enc_url', '$enc_type', '', '$enc_dur', '$entry_ref_id')");
976 db_query($link, "COMMIT");
978 // check for manual tags (we have to do it here since they're loaded from filters)
980 foreach ($article_filters as $f) {
981 if ($f["type"] == "tag") {
983 $manual_tags = trim_array(explode(",", $f["param"]));
985 foreach ($manual_tags as $tag) {
986 if (tag_is_valid($tag)) {
987 array_push($entry_tags, $tag);
995 $boring_tags = trim_array(explode(",", mb_strtolower(get_pref($link,
996 'BLACKLISTED_TAGS', $owner_uid, ''), 'utf-8')));
998 $filtered_tags = array();
999 $tags_to_cache = array();
1001 if ($entry_tags && is_array($entry_tags)) {
1002 foreach ($entry_tags as $tag) {
1003 if (array_search($tag, $boring_tags) === false) {
1004 array_push($filtered_tags, $tag);
1009 $filtered_tags = array_unique($filtered_tags);
1011 if ($debug_enabled) {
1012 _debug("update_rss_feed: filtered article tags:");
1013 print_r($filtered_tags);
1016 // Save article tags in the database
1018 if (count($filtered_tags) > 0) {
1020 db_query($link, "BEGIN");
1022 foreach ($filtered_tags as $tag) {
1024 $tag = sanitize_tag($tag);
1025 $tag = db_escape_string($link, $tag);
1027 if (!tag_is_valid($tag)) continue;
1029 $result = db_query($link, "SELECT id FROM ttrss_tags
1030 WHERE tag_name = '$tag' AND post_int_id = '$entry_int_id' AND
1031 owner_uid = '$owner_uid' LIMIT 1");
1033 if ($result && db_num_rows($result) == 0) {
1035 db_query($link, "INSERT INTO ttrss_tags
1036 (owner_uid,tag_name,post_int_id)
1037 VALUES ('$owner_uid','$tag', '$entry_int_id')");
1040 array_push($tags_to_cache, $tag);
1043 /* update the cache */
1045 $tags_to_cache = array_unique($tags_to_cache);
1047 $tags_str = db_escape_string($link, join(",", $tags_to_cache));
1049 db_query($link, "UPDATE ttrss_user_entries
1050 SET tag_cache = '$tags_str' WHERE ref_id = '$entry_ref_id'
1051 AND owner_uid = $owner_uid");
1053 db_query($link, "COMMIT");
1056 if (get_pref($link, "AUTO_ASSIGN_LABELS", $owner_uid, false)) {
1057 if ($debug_enabled) {
1058 _debug("update_rss_feed: auto-assigning labels...");
1061 foreach ($labels as $label) {
1062 $caption = preg_quote($label["caption"]);
1064 if ($caption && preg_match("/\b$caption\b/i", "$tags_str " . strip_tags($entry_content) . " $entry_title")) {
1065 if (!labels_contains_caption($article_labels, $caption)) {
1066 label_add_article($link, $entry_ref_id, $caption, $owner_uid);
1072 if ($debug_enabled) {
1073 _debug("update_rss_feed: article processed");
1077 if (!$last_updated) {
1078 if ($debug_enabled) {
1079 _debug("update_rss_feed: new feed, catching it up...");
1081 catchup_feed($link, $feed, false, $owner_uid);
1084 if ($debug_enabled) {
1085 _debug("purging feed...");
1088 purge_feed($link, $feed, 0, $debug_enabled);
1090 db_query($link, "UPDATE ttrss_feeds
1091 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
1093 // db_query($link, "COMMIT");
1097 $error_msg = db_escape_string($link, mb_substr($rss->error(), 0, 245));
1099 if ($debug_enabled) {
1100 _debug("update_rss_feed: error fetching feed: $error_msg");
1104 "UPDATE ttrss_feeds SET last_error = '$error_msg',
1105 last_updated = NOW() WHERE id = '$feed'");
1110 if ($debug_enabled) {
1111 _debug("update_rss_feed: done");
1116 function cache_images($html, $site_url, $debug) {
1117 $cache_dir = CACHE_DIR . "/images";
1119 libxml_use_internal_errors(true);
1121 $charset_hack = '<head>
1122 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
1125 $doc = new DOMDocument();
1126 $doc->loadHTML($charset_hack . $html);
1127 $xpath = new DOMXPath($doc);
1129 $entries = $xpath->query('(//img[@src])');
1131 foreach ($entries as $entry) {
1132 if ($entry->hasAttribute('src')) {
1133 $src = rewrite_relative_url($site_url, $entry->getAttribute('src'));
1135 $local_filename = CACHE_DIR . "/images/" . sha1($src) . ".png";
1137 if ($debug) _debug("cache_images: downloading: $src to $local_filename");
1139 if (!file_exists($local_filename)) {
1140 $file_content = fetch_file_contents($src);
1142 if ($file_content && strlen($file_content) > 1024) {
1143 file_put_contents($local_filename, $file_content);
1147 if (file_exists($local_filename)) {
1148 $entry->setAttribute('src', SELF_URL_PATH . '/image.php?url=' .
1149 base64_encode($src));
1154 $node = $doc->getElementsByTagName('body')->item(0);
1156 return $doc->saveXML($node);
1159 function expire_lock_files($debug) {
1160 if ($debug) _debug("Removing old lock files...");
1164 if (is_writable(LOCK_DIRECTORY)) {
1165 $files = glob(LOCK_DIRECTORY . "/*.lock");
1168 foreach ($files as $file) {
1169 if (!file_is_locked($file) && time() - filemtime($file) > 86400*2) {
1177 if ($debug) _debug("Removed $num_deleted files.");
1180 function expire_cached_files($debug) {
1181 foreach (array("simplepie", "images", "export") as $dir) {
1182 $cache_dir = CACHE_DIR . "/$dir";
1184 if ($debug) _debug("Expiring $cache_dir");
1188 if (is_writable($cache_dir)) {
1189 $files = glob("$cache_dir/*");
1192 foreach ($files as $file) {
1193 if (time() - filemtime($file) > 86400*7) {
1202 if ($debug) _debug("Removed $num_deleted files.");
1207 * Source: http://www.php.net/manual/en/function.parse-url.php#104527
1208 * Returns the url query as associative array
1210 * @param string query
1211 * @return array params
1213 function convertUrlQuery($query) {
1214 $queryParts = explode('&', $query);
1218 foreach ($queryParts as $param) {
1219 $item = explode('=', $param);
1220 $params[$item[0]] = $item[1];
1226 function get_article_filters($filters, $title, $content, $link, $timestamp, $author, $tags) {
1229 foreach ($filters as $filter) {
1230 $match_any_rule = $filter["match_any_rule"];
1231 $inverse = $filter["inverse"];
1232 $filter_match = false;
1234 foreach ($filter["rules"] as $rule) {
1236 $reg_exp = $rule["reg_exp"];
1237 $rule_inverse = $rule["inverse"];
1242 switch ($rule["type"]) {
1244 $match = @preg_match("/$reg_exp/i", $title);
1247 // we don't need to deal with multiline regexps
1248 $content = preg_replace("/[\r\n\t]/", "", $content);
1250 $match = @preg_match("/$reg_exp/i", $content);
1253 // we don't need to deal with multiline regexps
1254 $content = preg_replace("/[\r\n\t]/", "", $content);
1256 $match = (@preg_match("/$reg_exp/i", $title) || @preg_match("/$reg_exp/i", $content));
1259 $match = @preg_match("/$reg_exp/i", $link);
1262 $match = @preg_match("/$reg_exp/i", $author);
1265 $tag_string = join(",", $tags);
1266 $match = @preg_match("/$reg_exp/i", $tag_string);
1270 if ($rule_inverse) $match = !$match;
1272 if ($match_any_rule) {
1274 $filter_match = true;
1278 $filter_match = $match;
1285 if ($inverse) $filter_match = !$filter_match;
1287 if ($filter_match) {
1288 foreach ($filter["actions"] AS $action) {
1289 array_push($matches, $action);
1297 function find_article_filter($filters, $filter_name) {
1298 foreach ($filters as $f) {
1299 if ($f["type"] == $filter_name) {
1306 function find_article_filters($filters, $filter_name) {
1309 foreach ($filters as $f) {
1310 if ($f["type"] == $filter_name) {
1311 array_push($results, $f);
1317 function calculate_article_score($filters) {
1320 foreach ($filters as $f) {
1321 if ($f["type"] == "score") {
1322 $score += $f["param"];
1328 function labels_contains_caption($labels, $caption) {
1329 foreach ($labels as $label) {
1330 if ($label[1] == $caption) {
1338 function assign_article_to_label_filters($link, $id, $filters, $owner_uid, $article_labels) {
1339 foreach ($filters as $f) {
1340 if ($f["type"] == "label") {
1341 if (!labels_contains_caption($article_labels, $f["param"])) {
1342 label_add_article($link, $id, $f["param"], $owner_uid);
1348 function make_guid_from_title($title) {
1349 return preg_replace("/[ \"\',.:;]/", "-",
1350 mb_strtolower(strip_tags($title), 'utf-8'));