2 define_default('DAEMON_UPDATE_LOGIN_LIMIT', 30);
3 define_default('DAEMON_FEED_LIMIT', 500);
4 define_default('DAEMON_SLEEP_INTERVAL', 120);
6 function update_feedbrowser_cache() {
8 $result = db_query("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");
16 db_query("DELETE FROM ttrss_feedbrowser_cache");
20 while ($line = db_fetch_assoc($result)) {
21 $subscribers = db_escape_string($line["subscribers"]);
22 $feed_url = db_escape_string($line["feed_url"]);
23 $title = db_escape_string($line["title"]);
24 $site_url = db_escape_string($line["site_url"]);
26 $tmp_result = db_query("SELECT subscribers FROM
27 ttrss_feedbrowser_cache WHERE feed_url = '$feed_url'");
29 if (db_num_rows($tmp_result) == 0) {
31 db_query("INSERT INTO ttrss_feedbrowser_cache
32 (feed_url, site_url, title, subscribers) VALUES ('$feed_url',
33 '$site_url', '$title', '$subscribers')");
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($limit = DAEMON_FEED_LIMIT, $from_http = false, $debug = true) {
61 // Process all other feeds using last_updated and interval parameters
63 $schema_version = get_schema_version();
65 if ($schema_version != SCHEMA_VERSION) {
66 die("Schema version is wrong, please upgrade the database.\n");
69 define('PREFS_NO_CACHE', true);
71 // Test if the user has loggued in recently. If not, it does not update its feeds.
72 if (!SINGLE_USER_MODE && DAEMON_UPDATE_LOGIN_LIMIT > 0) {
73 if (DB_TYPE == "pgsql") {
74 $login_thresh_qpart = "AND ttrss_users.last_login >= NOW() - INTERVAL '".DAEMON_UPDATE_LOGIN_LIMIT." days'";
76 $login_thresh_qpart = "AND ttrss_users.last_login >= DATE_SUB(NOW(), INTERVAL ".DAEMON_UPDATE_LOGIN_LIMIT." DAY)";
79 $login_thresh_qpart = "";
82 // Test if the feed need a update (update interval exceded).
83 if (DB_TYPE == "pgsql") {
84 $update_limit_qpart = "AND ((
85 ttrss_feeds.update_interval = 0
86 AND ttrss_user_prefs.value != '-1'
87 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_user_prefs.value || ' minutes') AS INTERVAL)
89 ttrss_feeds.update_interval > 0
90 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_feeds.update_interval || ' minutes') AS INTERVAL)
91 ) OR ttrss_feeds.last_updated IS NULL
92 OR last_updated = '1970-01-01 00:00:00')";
94 $update_limit_qpart = "AND ((
95 ttrss_feeds.update_interval = 0
96 AND ttrss_user_prefs.value != '-1'
97 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL CONVERT(ttrss_user_prefs.value, SIGNED INTEGER) MINUTE)
99 ttrss_feeds.update_interval > 0
100 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL ttrss_feeds.update_interval MINUTE)
101 ) OR ttrss_feeds.last_updated IS NULL
102 OR last_updated = '1970-01-01 00:00:00')";
105 // Test if feed is currently being updated by another process.
106 if (DB_TYPE == "pgsql") {
107 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < NOW() - INTERVAL '10 minutes')";
109 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 10 MINUTE))";
112 // Test if there is a limit to number of updated feeds
114 if($limit) $query_limit = sprintf("LIMIT %d", $limit);
116 $query = "SELECT DISTINCT ttrss_feeds.feed_url, ttrss_feeds.last_updated
118 ttrss_feeds, ttrss_users, ttrss_user_prefs
120 ttrss_feeds.owner_uid = ttrss_users.id
121 AND ttrss_users.id = ttrss_user_prefs.owner_uid
122 AND ttrss_user_prefs.pref_name = 'DEFAULT_UPDATE_INTERVAL'
123 $login_thresh_qpart $update_limit_qpart
124 $updstart_thresh_qpart
125 ORDER BY last_updated $query_limit";
127 // We search for feed needing update.
128 $result = db_query($query);
130 if($debug) _debug(sprintf("Scheduled %d feeds to update...", db_num_rows($result)));
132 // Here is a little cache magic in order to minimize risk of double feed updates.
133 $feeds_to_update = array();
134 while ($line = db_fetch_assoc($result)) {
135 array_push($feeds_to_update, db_escape_string($line['feed_url']));
138 // We update the feed last update started date before anything else.
139 // There is no lag due to feed contents downloads
140 // It prevent an other process to update the same feed.
142 if(count($feeds_to_update) > 0) {
143 $feeds_quoted = array();
145 foreach ($feeds_to_update as $feed) {
146 array_push($feeds_quoted, "'" . db_escape_string($feed) . "'");
149 db_query(sprintf("UPDATE ttrss_feeds SET last_update_started = NOW()
150 WHERE feed_url IN (%s)", implode(',', $feeds_quoted)));
155 // For each feed, we call the feed update function.
156 foreach ($feeds_to_update as $feed) {
157 if($debug) _debug("Base feed: $feed");
159 //update_rss_feed($line["id"], true);
161 // since we have the data cached, we can deal with other feeds with the same url
163 $tmp_result = db_query("SELECT DISTINCT ttrss_feeds.id,last_updated,ttrss_feeds.owner_uid
164 FROM ttrss_feeds, ttrss_users, ttrss_user_prefs WHERE
165 ttrss_user_prefs.owner_uid = ttrss_feeds.owner_uid AND
166 ttrss_users.id = ttrss_user_prefs.owner_uid AND
167 ttrss_user_prefs.pref_name = 'DEFAULT_UPDATE_INTERVAL' AND
168 feed_url = '".db_escape_string($feed)."' AND
169 (ttrss_feeds.update_interval > 0 OR
170 ttrss_user_prefs.value != '-1')
172 ORDER BY ttrss_feeds.id $query_limit");
174 if (db_num_rows($tmp_result) > 0) {
175 while ($tline = db_fetch_assoc($tmp_result)) {
176 if($debug) _debug(" => " . $tline["last_updated"] . ", " . $tline["id"] . " " . $tline["owner_uid"]);
177 update_rss_feed($tline["id"], true);
183 require_once "digest.php";
185 // Send feed digests by email if needed.
186 send_headlines_digests($debug);
190 } // function update_daemon_common
192 // ignore_daemon is not used
193 function update_rss_feed($feed, $ignore_daemon = false, $no_cache = false) {
195 $debug_enabled = defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug'];
197 _debug("start", $debug_enabled);
199 $result = db_query("SELECT id,update_interval,auth_login,
200 feed_url,auth_pass,cache_images,last_updated,
201 mark_unread_on_update, owner_uid,
202 pubsub_state, auth_pass_encrypted,
203 (SELECT max(date_entered) FROM
204 ttrss_entries, ttrss_user_entries where ref_id = id AND feed_id = '$feed') AS last_article_timestamp
205 FROM ttrss_feeds WHERE id = '$feed'");
207 if (db_num_rows($result) == 0) {
208 _debug("feed $feed NOT FOUND/SKIPPED", $debug_enabled);
212 $last_updated = db_fetch_result($result, 0, "last_updated");
213 $last_article_timestamp = @strtotime(db_fetch_result($result, 0, "last_article_timestamp"));
215 if (defined('_DISABLE_HTTP_304'))
216 $last_article_timestamp = 0;
218 $owner_uid = db_fetch_result($result, 0, "owner_uid");
219 $mark_unread_on_update = sql_bool_to_bool(db_fetch_result($result,
220 0, "mark_unread_on_update"));
221 $pubsub_state = db_fetch_result($result, 0, "pubsub_state");
222 $auth_pass_encrypted = sql_bool_to_bool(db_fetch_result($result,
223 0, "auth_pass_encrypted"));
225 db_query("UPDATE ttrss_feeds SET last_update_started = NOW()
226 WHERE id = '$feed'");
228 $auth_login = db_fetch_result($result, 0, "auth_login");
229 $auth_pass = db_fetch_result($result, 0, "auth_pass");
231 if ($auth_pass_encrypted) {
232 require_once "crypt.php";
233 $auth_pass = decrypt_string($auth_pass);
236 $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
237 $fetch_url = db_fetch_result($result, 0, "feed_url");
239 $feed = db_escape_string($feed);
241 $date_feed_processed = date('Y-m-d H:i');
243 $cache_filename = CACHE_DIR . "/simplepie/" . sha1($fetch_url) . ".xml";
245 $pluginhost = new PluginHost();
246 $pluginhost->set_debug($debug_enabled);
247 $user_plugins = get_pref("_ENABLED_PLUGINS", $owner_uid);
249 $pluginhost->load(PLUGINS, PluginHost::KIND_ALL);
250 $pluginhost->load($user_plugins, PluginHost::KIND_USER, $owner_uid);
251 $pluginhost->load_data();
256 $force_refetch = isset($_REQUEST["force_refetch"]);
258 if (file_exists($cache_filename) &&
259 is_readable($cache_filename) &&
260 !$auth_login && !$auth_pass &&
261 filemtime($cache_filename) > time() - 30) {
263 _debug("using local cache.", $debug_enabled);
265 @$feed_data = file_get_contents($cache_filename);
268 $rss_hash = sha1($feed_data);
272 _debug("local cache will not be used for this feed", $debug_enabled);
277 foreach ($pluginhost->get_hooks(PluginHost::HOOK_FETCH_FEED) as $plugin) {
278 $feed_data = $plugin->hook_fetch_feed($feed_data, $fetch_url, $owner_uid, $feed);
282 _debug("fetching [$fetch_url]...", $debug_enabled);
283 _debug("If-Modified-Since: ".gmdate('D, d M Y H:i:s \G\M\T', $last_article_timestamp), $debug_enabled);
285 $feed_data = fetch_file_contents($fetch_url, false,
286 $auth_login, $auth_pass, false,
287 $no_cache ? FEED_FETCH_NO_CACHE_TIMEOUT : FEED_FETCH_TIMEOUT,
288 $force_refetch ? 0 : $last_article_timestamp);
290 global $fetch_curl_used;
292 if (!$fetch_curl_used) {
293 $tmp = @gzdecode($feed_data);
295 if ($tmp) $feed_data = $tmp;
298 $feed_data = trim($feed_data);
300 _debug("fetch done.", $debug_enabled);
303 $error = verify_feed_xml($feed_data);
306 _debug("error verifying XML, code: " . $error->code, $debug_enabled);
308 if ($error->code == 26) {
309 _debug("got error 26, trying to decode entities...", $debug_enabled);
311 $feed_data = html_entity_decode($feed_data, ENT_COMPAT, 'UTF-8');
313 $error = verify_feed_xml($feed_data);
315 if ($error) $feed_data = '';
322 global $fetch_last_error;
323 global $fetch_last_error_code;
325 _debug("unable to fetch: $fetch_last_error [$fetch_last_error_code]", $debug_enabled);
330 if ($fetch_last_error_code != 304) {
331 $error_escaped = db_escape_string($fetch_last_error);
333 _debug("source claims data not modified, nothing to do.", $debug_enabled);
337 "UPDATE ttrss_feeds SET last_error = '$error_escaped',
338 last_updated = NOW() WHERE id = '$feed'");
344 foreach ($pluginhost->get_hooks(PluginHost::HOOK_FEED_FETCHED) as $plugin) {
345 $feed_data = $plugin->hook_feed_fetched($feed_data, $fetch_url, $owner_uid, $feed);
348 // set last update to now so if anything *simplepie* crashes later we won't be
349 // continuously failing on the same feed
350 //db_query("UPDATE ttrss_feeds SET last_updated = NOW() WHERE id = '$feed'");
353 $rss = new FeedParser($feed_data);
357 require_once "lib/languagedetect/LanguageDetect.php";
359 $lang = new Text_LanguageDetect();
360 $lang->setNameMode(2);
364 $feed = db_escape_string($feed);
366 if (!$rss->error()) {
368 // cache data for later
369 if (!$auth_pass && !$auth_login && is_writable(CACHE_DIR . "/simplepie")) {
370 $new_rss_hash = sha1($rss_data);
372 if ($new_rss_hash != $rss_hash && count($rss->get_items()) > 0 ) {
373 _debug("saving $cache_filename", $debug_enabled);
374 @file_put_contents($cache_filename, $feed_data);
378 // We use local pluginhost here because we need to load different per-user feed plugins
379 $pluginhost->run_hooks(PluginHost::HOOK_FEED_PARSED, "hook_feed_parsed", $rss);
381 _debug("processing feed data...", $debug_enabled);
383 // db_query("BEGIN");
385 if (DB_TYPE == "pgsql") {
386 $favicon_interval_qpart = "favicon_last_checked < NOW() - INTERVAL '12 hour'";
388 $favicon_interval_qpart = "favicon_last_checked < DATE_SUB(NOW(), INTERVAL 12 HOUR)";
391 $result = db_query("SELECT title,site_url,owner_uid,favicon_avg_color,
392 (favicon_last_checked IS NULL OR $favicon_interval_qpart) AS
394 FROM ttrss_feeds WHERE id = '$feed'");
396 $registered_title = db_fetch_result($result, 0, "title");
397 $orig_site_url = db_fetch_result($result, 0, "site_url");
398 $favicon_needs_check = sql_bool_to_bool(db_fetch_result($result, 0,
399 "favicon_needs_check"));
400 $favicon_avg_color = db_fetch_result($result, 0, "favicon_avg_color");
402 $owner_uid = db_fetch_result($result, 0, "owner_uid");
404 $site_url = db_escape_string(mb_substr(rewrite_relative_url($fetch_url, $rss->get_link()), 0, 245));
406 _debug("site_url: $site_url", $debug_enabled);
407 _debug("feed_title: " . $rss->get_title(), $debug_enabled);
409 if ($favicon_needs_check || $force_refetch) {
411 /* terrible hack: if we crash on floicon shit here, we won't check
412 * the icon avgcolor again (unless the icon got updated) */
414 $favicon_file = ICONS_DIR . "/$feed.ico";
415 $favicon_modified = @filemtime($favicon_file);
417 _debug("checking favicon...", $debug_enabled);
419 check_feed_favicon($site_url, $feed);
420 $favicon_modified_new = @filemtime($favicon_file);
422 if ($favicon_modified_new > $favicon_modified)
423 $favicon_avg_color = '';
425 if (file_exists($favicon_file) && function_exists("imagecreatefromstring") && $favicon_avg_color == '') {
426 require_once "colors.php";
428 db_query("UPDATE ttrss_feeds SET favicon_avg_color = 'fail' WHERE
431 $favicon_color = db_escape_string(
432 calculate_avg_color($favicon_file));
434 $favicon_colorstring = ",favicon_avg_color = '".$favicon_color."'";
435 } else if ($favicon_avg_color == 'fail') {
436 _debug("floicon failed on this file, not trying to recalculate avg color", $debug_enabled);
439 db_query("UPDATE ttrss_feeds SET favicon_last_checked = NOW()
441 WHERE id = '$feed'");
444 if (!$registered_title || $registered_title == "[Unknown]") {
446 $feed_title = db_escape_string($rss->get_title());
449 _debug("registering title: $feed_title", $debug_enabled);
451 db_query("UPDATE ttrss_feeds SET
452 title = '$feed_title' WHERE id = '$feed'");
456 if ($site_url && $orig_site_url != $site_url) {
457 db_query("UPDATE ttrss_feeds SET
458 site_url = '$site_url' WHERE id = '$feed'");
461 _debug("loading filters & labels...", $debug_enabled);
463 $filters = load_filters($feed, $owner_uid);
464 $labels = get_all_labels($owner_uid);
466 _debug("" . count($filters) . " filters loaded.", $debug_enabled);
468 $items = $rss->get_items();
470 if (!is_array($items)) {
471 _debug("no articles found.", $debug_enabled);
473 db_query("UPDATE ttrss_feeds
474 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
476 return; // no articles
479 if ($pubsub_state != 2 && PUBSUBHUBBUB_ENABLED) {
481 _debug("checking for PUSH hub...", $debug_enabled);
483 $feed_hub_url = false;
485 $links = $rss->get_links('hub');
487 if ($links && is_array($links)) {
488 foreach ($links as $l) {
494 _debug("feed hub url: $feed_hub_url", $debug_enabled);
496 if ($feed_hub_url && function_exists('curl_init') &&
497 !ini_get("open_basedir")) {
499 require_once 'lib/pubsubhubbub/subscriber.php';
501 $callback_url = get_self_url_prefix() .
502 "/public.php?op=pubsub&id=$feed";
504 $s = new Subscriber($feed_hub_url, $callback_url);
506 $rc = $s->subscribe($fetch_url);
508 _debug("feed hub url found, subscribe request sent.", $debug_enabled);
510 db_query("UPDATE ttrss_feeds SET pubsub_state = 1
511 WHERE id = '$feed'");
515 _debug("processing articles...", $debug_enabled);
517 foreach ($items as $item) {
518 if ($_REQUEST['xdebug'] == 3) {
522 $entry_guid = $item->get_id();
523 if (!$entry_guid) $entry_guid = $item->get_link();
524 if (!$entry_guid) $entry_guid = make_guid_from_title($item->get_title());
526 _debug("f_guid $entry_guid", $debug_enabled);
528 if (!$entry_guid) continue;
530 $entry_guid = "$owner_uid,$entry_guid";
532 $entry_guid_hashed = db_escape_string('SHA1:' . sha1($entry_guid));
534 _debug("guid $entry_guid / $entry_guid_hashed", $debug_enabled);
536 $entry_timestamp = "";
538 $entry_timestamp = $item->get_date();
540 _debug("orig date: " . $item->get_date(), $debug_enabled);
542 if ($entry_timestamp == -1 || !$entry_timestamp || $entry_timestamp > time()) {
543 $entry_timestamp = time();
544 $no_orig_date = 'true';
546 $no_orig_date = 'false';
549 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
551 _debug("date $entry_timestamp [$entry_timestamp_fmt]", $debug_enabled);
553 // $entry_title = html_entity_decode($item->get_title(), ENT_COMPAT, 'UTF-8');
554 // $entry_title = decode_numeric_entities($entry_title);
555 $entry_title = $item->get_title();
557 $entry_link = rewrite_relative_url($site_url, $item->get_link());
559 _debug("title $entry_title", $debug_enabled);
560 _debug("link $entry_link", $debug_enabled);
562 if (!$entry_title) $entry_title = date("Y-m-d H:i:s", $entry_timestamp);;
564 $entry_content = $item->get_content();
565 if (!$entry_content) $entry_content = $item->get_description();
567 if ($_REQUEST["xdebug"] == 2) {
569 print $entry_content;
573 $entry_language = $lang->detect($entry_content, 1);
575 if (count($entry_language) > 0) {
576 $entry_language = array_keys($entry_language);
577 $entry_language = db_escape_string(substr($entry_language[0], 0, 2));
579 _debug("detected language: $entry_language", $debug_enabled);
581 $entry_language = "";
584 $entry_comments = $item->get_comments_url();
585 $entry_author = $item->get_author();
587 $entry_guid = db_escape_string(mb_substr($entry_guid, 0, 245));
589 $entry_comments = db_escape_string(mb_substr(trim($entry_comments), 0, 245));
590 $entry_author = db_escape_string(mb_substr(trim($entry_author), 0, 245));
592 $num_comments = (int) $item->get_comments_count();
594 _debug("author $entry_author", $debug_enabled);
595 _debug("num_comments: $num_comments", $debug_enabled);
596 _debug("looking for tags...", $debug_enabled);
598 // parse <category> entries into tags
600 $additional_tags = array();
602 $additional_tags_src = $item->get_categories();
604 if (is_array($additional_tags_src)) {
605 foreach ($additional_tags_src as $tobj) {
606 array_push($additional_tags, $tobj);
610 $entry_tags = array_unique($additional_tags);
612 for ($i = 0; $i < count($entry_tags); $i++)
613 $entry_tags[$i] = mb_strtolower($entry_tags[$i], 'utf-8');
615 _debug("tags found: " . join(",", $entry_tags), $debug_enabled);
617 _debug("done collecting data.", $debug_enabled);
619 // TODO: less memory-hungry implementation
621 _debug("applying plugin filters..", $debug_enabled);
623 // FIXME not sure if owner_uid is a good idea here, we may have a base entry without user entry (?)
624 $result = db_query("SELECT plugin_data,title,content,link,tag_cache,author FROM ttrss_entries, ttrss_user_entries
625 WHERE ref_id = id AND (guid = '".db_escape_string($entry_guid)."' OR guid = '$entry_guid_hashed') AND owner_uid = $owner_uid");
627 if (db_num_rows($result) != 0) {
628 $entry_plugin_data = db_fetch_result($result, 0, "plugin_data");
629 $stored_article = array("title" => db_fetch_result($result, 0, "title"),
630 "content" => db_fetch_result($result, 0, "content"),
631 "link" => db_fetch_result($result, 0, "link"),
632 "tags" => explode(",", db_fetch_result($result, 0, "tag_cache")),
633 "author" => db_fetch_result($result, 0, "author"));
635 $entry_plugin_data = "";
636 $stored_article = array();
639 $article = array("owner_uid" => $owner_uid, // read only
640 "guid" => $entry_guid, // read only
641 "title" => $entry_title,
642 "content" => $entry_content,
643 "link" => $entry_link,
644 "tags" => $entry_tags,
645 "plugin_data" => $entry_plugin_data,
646 "author" => $entry_author,
647 "stored" => $stored_article);
649 foreach ($pluginhost->get_hooks(PluginHost::HOOK_ARTICLE_FILTER) as $plugin) {
650 $article = $plugin->hook_article_filter($article);
653 $entry_tags = $article["tags"];
654 $entry_guid = db_escape_string($entry_guid);
655 $entry_title = db_escape_string($article["title"]);
656 $entry_author = db_escape_string($article["author"]);
657 $entry_link = db_escape_string($article["link"]);
658 $entry_plugin_data = db_escape_string($article["plugin_data"]);
659 $entry_content = $article["content"]; // escaped below
662 _debug("plugin data: $entry_plugin_data", $debug_enabled);
664 if ($cache_images && is_writable(CACHE_DIR . '/images'))
665 cache_images($entry_content, $site_url, $debug_enabled);
667 $entry_content = db_escape_string($entry_content, false);
669 $content_hash = "SHA1:" . sha1($entry_content);
673 $result = db_query("SELECT id FROM ttrss_entries
674 WHERE (guid = '$entry_guid' OR guid = '$entry_guid_hashed')");
676 if (db_num_rows($result) == 0) {
678 _debug("base guid [$entry_guid] not found", $debug_enabled);
680 // base post entry does not exist, create it
683 "INSERT INTO ttrss_entries
700 '$entry_guid_hashed',
702 '$entry_timestamp_fmt',
707 '$date_feed_processed',
710 '$entry_plugin_data',
714 $article_labels = array();
717 // we keep encountering the entry in feeds, so we need to
718 // update date_updated column so that we don't get horrible
719 // dupes when the entry gets purged and reinserted again e.g.
720 // in the case of SLOW SLOW OMG SLOW updating feeds
722 $base_entry_id = db_fetch_result($result, 0, "id");
724 db_query("UPDATE ttrss_entries SET date_updated = NOW()
725 WHERE id = '$base_entry_id'");
727 $article_labels = get_article_labels($base_entry_id, $owner_uid);
730 // now it should exist, if not - bad luck then
732 $result = db_query("SELECT
733 id,content_hash,no_orig_date,title,plugin_data,guid,
734 ".SUBSTRING_FOR_DATE."(date_updated,1,19) as date_updated,
735 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated,
739 WHERE guid = '$entry_guid' OR guid = '$entry_guid_hashed'");
744 if (db_num_rows($result) == 1) {
746 _debug("base guid found, checking for user record", $debug_enabled);
748 // this will be used below in update handler
749 $orig_content_hash = db_fetch_result($result, 0, "content_hash");
750 $orig_title = db_fetch_result($result, 0, "title");
751 $orig_num_comments = db_fetch_result($result, 0, "num_comments");
752 $orig_date_updated = strtotime(db_fetch_result($result,
754 $orig_plugin_data = db_fetch_result($result, 0, "plugin_data");
756 $ref_id = db_fetch_result($result, 0, "id");
757 $entry_ref_id = $ref_id;
759 /* $stored_guid = db_fetch_result($result, 0, "guid");
760 if ($stored_guid != $entry_guid_hashed) {
761 if ($debug_enabled) _debug("upgrading compat guid to hashed one", $debug_enabled);
763 db_query("UPDATE ttrss_entries SET guid = '$entry_guid_hashed' WHERE
767 // check for user post link to main table
769 // do we allow duplicate posts with same GUID in different feeds?
770 if (get_pref("ALLOW_DUPLICATE_POSTS", $owner_uid, false)) {
771 $dupcheck_qpart = "AND (feed_id = '$feed' OR feed_id IS NULL)";
773 $dupcheck_qpart = "";
776 /* Collect article tags here so we could filter by them: */
778 $article_filters = get_article_filters($filters, $entry_title,
779 $entry_content, $entry_link, $entry_timestamp, $entry_author,
782 if ($debug_enabled) {
783 _debug("article filters: ", $debug_enabled);
784 if (count($article_filters) != 0) {
785 print_r($article_filters);
789 if (find_article_filter($article_filters, "filter")) {
790 db_query("COMMIT"); // close transaction in progress
794 $score = calculate_article_score($article_filters);
796 _debug("initial score: $score", $debug_enabled);
798 $query = "SELECT ref_id, int_id FROM ttrss_user_entries WHERE
799 ref_id = '$ref_id' AND owner_uid = '$owner_uid'
802 // if ($_REQUEST["xdebug"]) print "$query\n";
804 $result = db_query($query);
806 // okay it doesn't exist - create user entry
807 if (db_num_rows($result) == 0) {
809 _debug("user record not found, creating...", $debug_enabled);
811 if ($score >= -500 && !find_article_filter($article_filters, 'catchup')) {
813 $last_read_qpart = 'NULL';
816 $last_read_qpart = 'NOW()';
819 if (find_article_filter($article_filters, 'mark') || $score > 1000) {
825 if (find_article_filter($article_filters, 'publish')) {
828 $published = 'false';
833 if (DB_TYPE == "pgsql" and defined('_NGRAM_TITLE_DUPLICATE_THRESHOLD')) {
835 $result = db_query("SELECT COUNT(*) AS similar FROM
836 ttrss_entries,ttrss_user_entries
837 WHERE ref_id = id AND updated >= NOW() - INTERVAL '7 day'
838 AND similarity(title, '$entry_title') >= "._NGRAM_TITLE_DUPLICATE_THRESHOLD."
839 AND owner_uid = $owner_uid");
841 $ngram_similar = db_fetch_result($result, 0, "similar");
843 _debug("N-gram similar results: $ngram_similar", $debug_enabled);
845 if ($ngram_similar > 0) {
850 $last_marked = ($marked == 'true') ? 'NOW()' : 'NULL';
851 $last_published = ($published == 'true') ? 'NOW()' : 'NULL';
854 "INSERT INTO ttrss_user_entries
855 (ref_id, owner_uid, feed_id, unread, last_read, marked,
856 published, score, tag_cache, label_cache, uuid,
857 last_marked, last_published)
858 VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
859 $last_read_qpart, $marked, $published, '$score', '', '',
860 '', $last_marked, $last_published)");
862 if (PUBSUBHUBBUB_HUB && $published == 'true') {
863 $rss_link = get_self_url_prefix() .
864 "/public.php?op=rss&id=-2&key=" .
865 get_feed_access_key(-2, false, $owner_uid);
867 $p = new Publisher(PUBSUBHUBBUB_HUB);
869 $pubsub_result = $p->publish_update($rss_link);
873 "SELECT int_id FROM ttrss_user_entries WHERE
874 ref_id = '$ref_id' AND owner_uid = '$owner_uid' AND
875 feed_id = '$feed' LIMIT 1");
877 if (db_num_rows($result) == 1) {
878 $entry_int_id = db_fetch_result($result, 0, "int_id");
881 _debug("user record FOUND", $debug_enabled);
883 $entry_ref_id = db_fetch_result($result, 0, "ref_id");
884 $entry_int_id = db_fetch_result($result, 0, "int_id");
887 _debug("RID: $entry_ref_id, IID: $entry_int_id", $debug_enabled);
889 $post_needs_update = false;
890 $update_insignificant = false;
892 if ($orig_num_comments != $num_comments) {
893 $post_needs_update = true;
894 $update_insignificant = true;
897 if ($entry_plugin_data != $orig_plugin_data) {
898 $post_needs_update = true;
899 $update_insignificant = true;
902 if ($content_hash != $orig_content_hash) {
903 $post_needs_update = true;
904 $update_insignificant = false;
907 if (db_escape_string($orig_title) != $entry_title) {
908 $post_needs_update = true;
909 $update_insignificant = false;
912 // if post needs update, update it and mark all user entries
913 // linking to this post as updated
914 if ($post_needs_update) {
916 if (defined('DAEMON_EXTENDED_DEBUG')) {
917 _debug("post $entry_guid_hashed needs update...", $debug_enabled);
920 // print "<!-- post $orig_title needs update : $post_needs_update -->";
922 db_query("UPDATE ttrss_entries
923 SET title = '$entry_title', content = '$entry_content',
924 content_hash = '$content_hash',
925 updated = '$entry_timestamp_fmt',
926 num_comments = '$num_comments',
927 plugin_data = '$entry_plugin_data'
928 WHERE id = '$ref_id'");
930 if (!$update_insignificant) {
931 if ($mark_unread_on_update) {
932 db_query("UPDATE ttrss_user_entries
933 SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
941 _debug("assigning labels...", $debug_enabled);
943 assign_article_to_label_filters($entry_ref_id, $article_filters,
944 $owner_uid, $article_labels);
946 _debug("looking for enclosures...", $debug_enabled);
950 $enclosures = array();
952 $encs = $item->get_enclosures();
954 if (is_array($encs)) {
955 foreach ($encs as $e) {
957 $e->link, $e->type, $e->length);
958 array_push($enclosures, $e_item);
962 if ($debug_enabled) {
963 _debug("article enclosures:", $debug_enabled);
964 print_r($enclosures);
969 foreach ($enclosures as $enc) {
970 $enc_url = db_escape_string($enc[0]);
971 $enc_type = db_escape_string($enc[1]);
972 $enc_dur = db_escape_string($enc[2]);
974 $result = db_query("SELECT id FROM ttrss_enclosures
975 WHERE content_url = '$enc_url' AND post_id = '$entry_ref_id'");
977 if (db_num_rows($result) == 0) {
978 db_query("INSERT INTO ttrss_enclosures
979 (content_url, content_type, title, duration, post_id) VALUES
980 ('$enc_url', '$enc_type', '', '$enc_dur', '$entry_ref_id')");
986 // check for manual tags (we have to do it here since they're loaded from filters)
988 foreach ($article_filters as $f) {
989 if ($f["type"] == "tag") {
991 $manual_tags = trim_array(explode(",", $f["param"]));
993 foreach ($manual_tags as $tag) {
994 if (tag_is_valid($tag)) {
995 array_push($entry_tags, $tag);
1003 $boring_tags = trim_array(explode(",", mb_strtolower(get_pref(
1004 'BLACKLISTED_TAGS', $owner_uid, ''), 'utf-8')));
1006 $filtered_tags = array();
1007 $tags_to_cache = array();
1009 if ($entry_tags && is_array($entry_tags)) {
1010 foreach ($entry_tags as $tag) {
1011 if (array_search($tag, $boring_tags) === false) {
1012 array_push($filtered_tags, $tag);
1017 $filtered_tags = array_unique($filtered_tags);
1019 if ($debug_enabled) {
1020 _debug("filtered article tags:", $debug_enabled);
1021 print_r($filtered_tags);
1024 // Save article tags in the database
1026 if (count($filtered_tags) > 0) {
1030 foreach ($filtered_tags as $tag) {
1032 $tag = sanitize_tag($tag);
1033 $tag = db_escape_string($tag);
1035 if (!tag_is_valid($tag)) continue;
1037 $result = db_query("SELECT id FROM ttrss_tags
1038 WHERE tag_name = '$tag' AND post_int_id = '$entry_int_id' AND
1039 owner_uid = '$owner_uid' LIMIT 1");
1041 if ($result && db_num_rows($result) == 0) {
1043 db_query("INSERT INTO ttrss_tags
1044 (owner_uid,tag_name,post_int_id)
1045 VALUES ('$owner_uid','$tag', '$entry_int_id')");
1048 array_push($tags_to_cache, $tag);
1051 /* update the cache */
1053 $tags_to_cache = array_unique($tags_to_cache);
1055 $tags_str = db_escape_string(join(",", $tags_to_cache));
1057 db_query("UPDATE ttrss_user_entries
1058 SET tag_cache = '$tags_str' WHERE ref_id = '$entry_ref_id'
1059 AND owner_uid = $owner_uid");
1064 if (get_pref("AUTO_ASSIGN_LABELS", $owner_uid, false)) {
1065 _debug("auto-assigning labels...", $debug_enabled);
1067 foreach ($labels as $label) {
1068 $caption = preg_quote($label["caption"]);
1070 if ($caption && preg_match("/\b$caption\b/i", "$tags_str " . strip_tags($entry_content) . " $entry_title")) {
1071 if (!labels_contains_caption($article_labels, $caption)) {
1072 label_add_article($entry_ref_id, $caption, $owner_uid);
1078 _debug("article processed", $debug_enabled);
1081 _debug("purging feed...", $debug_enabled);
1083 purge_feed($feed, 0, $debug_enabled);
1085 db_query("UPDATE ttrss_feeds
1086 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
1088 // db_query("COMMIT");
1092 $error_msg = db_escape_string(mb_substr($rss->error(), 0, 245));
1094 _debug("error fetching feed: $error_msg", $debug_enabled);
1097 "UPDATE ttrss_feeds SET last_error = '$error_msg',
1098 last_updated = NOW() WHERE id = '$feed'");
1103 _debug("done", $debug_enabled);
1106 function cache_images($html, $site_url, $debug) {
1107 $cache_dir = CACHE_DIR . "/images";
1109 libxml_use_internal_errors(true);
1111 $charset_hack = '<head>
1112 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
1115 $doc = new DOMDocument();
1116 $doc->loadHTML($charset_hack . $html);
1117 $xpath = new DOMXPath($doc);
1119 $entries = $xpath->query('(//img[@src])');
1121 foreach ($entries as $entry) {
1122 if ($entry->hasAttribute('src')) {
1123 $src = rewrite_relative_url($site_url, $entry->getAttribute('src'));
1125 $local_filename = CACHE_DIR . "/images/" . sha1($src) . ".png";
1127 if ($debug) _debug("cache_images: downloading: $src to $local_filename");
1129 if (!file_exists($local_filename)) {
1130 $file_content = fetch_file_contents($src);
1132 if ($file_content && strlen($file_content) > 1024) {
1133 file_put_contents($local_filename, $file_content);
1137 /* if (file_exists($local_filename)) {
1138 $entry->setAttribute('src', SELF_URL_PATH . '/image.php?url=' .
1139 base64_encode($src));
1144 //$node = $doc->getElementsByTagName('body')->item(0);
1145 //return $doc->saveXML($node);
1148 function expire_error_log($debug) {
1149 if ($debug) _debug("Removing old error log entries...");
1151 if (DB_TYPE == "pgsql") {
1152 db_query("DELETE FROM ttrss_error_log
1153 WHERE created_at < NOW() - INTERVAL '7 days'");
1155 db_query("DELETE FROM ttrss_error_log
1156 WHERE created_at < DATE_SUB(NOW(), INTERVAL 7 DAY)");
1161 function expire_lock_files($debug) {
1162 //if ($debug) _debug("Removing old lock files...");
1166 if (is_writable(LOCK_DIRECTORY)) {
1167 $files = glob(LOCK_DIRECTORY . "/*.lock");
1170 foreach ($files as $file) {
1171 if (!file_is_locked(basename($file)) && time() - filemtime($file) > 86400*2) {
1179 if ($debug) _debug("Removed $num_deleted old lock files.");
1182 function expire_cached_files($debug) {
1183 foreach (array("simplepie", "images", "export", "upload") as $dir) {
1184 $cache_dir = CACHE_DIR . "/$dir";
1186 // if ($debug) _debug("Expiring $cache_dir");
1190 if (is_writable($cache_dir)) {
1191 $files = glob("$cache_dir/*");
1194 foreach ($files as $file) {
1195 if (time() - filemtime($file) > 86400*7) {
1204 if ($debug) _debug("$cache_dir: removed $num_deleted files.");
1209 * Source: http://www.php.net/manual/en/function.parse-url.php#104527
1210 * Returns the url query as associative array
1212 * @param string query
1213 * @return array params
1215 function convertUrlQuery($query) {
1216 $queryParts = explode('&', $query);
1220 foreach ($queryParts as $param) {
1221 $item = explode('=', $param);
1222 $params[$item[0]] = $item[1];
1228 function get_article_filters($filters, $title, $content, $link, $timestamp, $author, $tags) {
1231 foreach ($filters as $filter) {
1232 $match_any_rule = $filter["match_any_rule"];
1233 $inverse = $filter["inverse"];
1234 $filter_match = false;
1236 foreach ($filter["rules"] as $rule) {
1238 $reg_exp = str_replace('/', '\/', $rule["reg_exp"]);
1239 $rule_inverse = $rule["inverse"];
1244 switch ($rule["type"]) {
1246 $match = @preg_match("/$reg_exp/i", $title);
1249 // we don't need to deal with multiline regexps
1250 $content = preg_replace("/[\r\n\t]/", "", $content);
1252 $match = @preg_match("/$reg_exp/i", $content);
1255 // we don't need to deal with multiline regexps
1256 $content = preg_replace("/[\r\n\t]/", "", $content);
1258 $match = (@preg_match("/$reg_exp/i", $title) || @preg_match("/$reg_exp/i", $content));
1261 $match = @preg_match("/$reg_exp/i", $link);
1264 $match = @preg_match("/$reg_exp/i", $author);
1267 foreach ($tags as $tag) {
1268 if (@preg_match("/$reg_exp/i", $tag)) {
1276 if ($rule_inverse) $match = !$match;
1278 if ($match_any_rule) {
1280 $filter_match = true;
1284 $filter_match = $match;
1291 if ($inverse) $filter_match = !$filter_match;
1293 if ($filter_match) {
1294 foreach ($filter["actions"] AS $action) {
1295 array_push($matches, $action);
1297 // if Stop action encountered, perform no further processing
1298 if ($action["type"] == "stop") return $matches;
1306 function find_article_filter($filters, $filter_name) {
1307 foreach ($filters as $f) {
1308 if ($f["type"] == $filter_name) {
1315 function find_article_filters($filters, $filter_name) {
1318 foreach ($filters as $f) {
1319 if ($f["type"] == $filter_name) {
1320 array_push($results, $f);
1326 function calculate_article_score($filters) {
1329 foreach ($filters as $f) {
1330 if ($f["type"] == "score") {
1331 $score += $f["param"];
1337 function labels_contains_caption($labels, $caption) {
1338 foreach ($labels as $label) {
1339 if ($label[1] == $caption) {
1347 function assign_article_to_label_filters($id, $filters, $owner_uid, $article_labels) {
1348 foreach ($filters as $f) {
1349 if ($f["type"] == "label") {
1350 if (!labels_contains_caption($article_labels, $f["param"])) {
1351 label_add_article($id, $f["param"], $owner_uid);
1357 function make_guid_from_title($title) {
1358 return preg_replace("/[ \"\',.:;]/", "-",
1359 mb_strtolower(strip_tags($title), 'utf-8'));
1362 /* function verify_feed_xml($feed_data) {
1363 libxml_use_internal_errors(true);
1364 $doc = new DOMDocument();
1365 $doc->loadXML($feed_data);
1366 $error = libxml_get_last_error();
1367 libxml_clear_errors();
1371 function housekeeping_common($debug) {
1372 expire_cached_files($debug);
1373 expire_lock_files($debug);
1374 expire_error_log($debug);
1376 $count = update_feedbrowser_cache();
1377 _debug("Feedbrowser updated, $count feeds processed.");
1379 purge_orphans( true);
1380 $rc = cleanup_tags( 14, 50000);
1382 _debug("Cleaned $rc cached tags.");
1384 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_HOUSE_KEEPING, "hook_house_keeping", "");