]> git.wh0rd.org - tt-rss.git/blob - include/rssfuncs.php
remove simplepie
[tt-rss.git] / include / rssfuncs.php
1 <?php
2 define_default('DAEMON_UPDATE_LOGIN_LIMIT', 30);
3 define_default('DAEMON_FEED_LIMIT', 500);
4 define_default('DAEMON_SLEEP_INTERVAL', 120);
5
6 function update_feedbrowser_cache() {
7
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");
13
14 db_query("BEGIN");
15
16 db_query("DELETE FROM ttrss_feedbrowser_cache");
17
18 $count = 0;
19
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"]);
25
26 $tmp_result = db_query("SELECT subscribers FROM
27 ttrss_feedbrowser_cache WHERE feed_url = '$feed_url'");
28
29 if (db_num_rows($tmp_result) == 0) {
30
31 db_query("INSERT INTO ttrss_feedbrowser_cache
32 (feed_url, site_url, title, subscribers) VALUES ('$feed_url',
33 '$site_url', '$title', '$subscribers')");
34
35 ++$count;
36
37 }
38
39 }
40
41 db_query("COMMIT");
42
43 return $count;
44
45 }
46
47
48 /**
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
52 * by another process.
53 *
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.
58 * @return void
59 */
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
62
63 $schema_version = get_schema_version();
64
65 if ($schema_version != SCHEMA_VERSION) {
66 die("Schema version is wrong, please upgrade the database.\n");
67 }
68
69 define('PREFS_NO_CACHE', true);
70
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'";
75 } else {
76 $login_thresh_qpart = "AND ttrss_users.last_login >= DATE_SUB(NOW(), INTERVAL ".DAEMON_UPDATE_LOGIN_LIMIT." DAY)";
77 }
78 } else {
79 $login_thresh_qpart = "";
80 }
81
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)
88 ) OR (
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')";
93 } else {
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)
98 ) OR (
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')";
103 }
104
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')";
108 } else {
109 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 10 MINUTE))";
110 }
111
112 // Test if there is a limit to number of updated feeds
113 $query_limit = "";
114 if($limit) $query_limit = sprintf("LIMIT %d", $limit);
115
116 $query = "SELECT DISTINCT ttrss_feeds.feed_url, ttrss_feeds.last_updated
117 FROM
118 ttrss_feeds, ttrss_users, ttrss_user_prefs
119 WHERE
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";
126
127 // We search for feed needing update.
128 $result = db_query($query);
129
130 if($debug) _debug(sprintf("Scheduled %d feeds to update...", db_num_rows($result)));
131
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']));
136 }
137
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.
141
142 if(count($feeds_to_update) > 0) {
143 $feeds_quoted = array();
144
145 foreach ($feeds_to_update as $feed) {
146 array_push($feeds_quoted, "'" . db_escape_string($feed) . "'");
147 }
148
149 db_query(sprintf("UPDATE ttrss_feeds SET last_update_started = NOW()
150 WHERE feed_url IN (%s)", implode(',', $feeds_quoted)));
151 }
152
153 $nf = 0;
154
155 // For each feed, we call the feed update function.
156 foreach ($feeds_to_update as $feed) {
157 if($debug) _debug("Base feed: $feed");
158
159 //update_rss_feed($line["id"], true);
160
161 // since we have the data cached, we can deal with other feeds with the same url
162
163 $tmp_result = db_query("SELECT DISTINCT ttrss_feeds.id,last_updated
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')
171 $login_thresh_qpart
172 ORDER BY ttrss_feeds.id $query_limit");
173
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"]);
177 update_rss_feed($tline["id"], true);
178 ++$nf;
179 }
180 }
181 }
182
183 require_once "digest.php";
184
185 // Send feed digests by email if needed.
186 send_headlines_digests($debug);
187
188 return $nf;
189
190 } // function update_daemon_common
191
192 // ignore_daemon is not used
193 function update_rss_feed($feed, $ignore_daemon = false, $no_cache = false,
194 $override_url = false) {
195
196 $debug_enabled = defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug'];
197
198 _debug("start", $debug_enabled);
199
200 $result = db_query("SELECT id,update_interval,auth_login,
201 feed_url,auth_pass,cache_images,last_updated,
202 mark_unread_on_update, owner_uid,
203 pubsub_state, auth_pass_encrypted,
204 (SELECT max(date_entered) FROM
205 ttrss_entries, ttrss_user_entries where ref_id = id AND feed_id = '$feed') AS last_article_timestamp
206 FROM ttrss_feeds WHERE id = '$feed'");
207
208 if (db_num_rows($result) == 0) {
209 _debug("feed $feed NOT FOUND/SKIPPED", $debug_enabled);
210 return false;
211 }
212
213 // set last update to now so if anything *simplepie* crashes later we won't be
214 // continuously failing on the same feed
215 db_query("UPDATE ttrss_feeds SET last_updated = NOW() WHERE id = '$feed'");
216
217 $last_updated = db_fetch_result($result, 0, "last_updated");
218 $last_article_timestamp = @strtotime(db_fetch_result($result, 0, "last_article_timestamp"));
219 $owner_uid = db_fetch_result($result, 0, "owner_uid");
220 $mark_unread_on_update = sql_bool_to_bool(db_fetch_result($result,
221 0, "mark_unread_on_update"));
222 $pubsub_state = db_fetch_result($result, 0, "pubsub_state");
223 $auth_pass_encrypted = sql_bool_to_bool(db_fetch_result($result,
224 0, "auth_pass_encrypted"));
225
226 db_query("UPDATE ttrss_feeds SET last_update_started = NOW()
227 WHERE id = '$feed'");
228
229 $auth_login = db_fetch_result($result, 0, "auth_login");
230 $auth_pass = db_fetch_result($result, 0, "auth_pass");
231
232 if ($auth_pass_encrypted) {
233 require_once "crypt.php";
234 $auth_pass = decrypt_string($auth_pass);
235 }
236
237 $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
238 $fetch_url = db_fetch_result($result, 0, "feed_url");
239
240 $feed = db_escape_string($feed);
241
242 if ($override_url) $fetch_url = $override_url;
243
244 $date_feed_processed = date('Y-m-d H:i');
245
246 $cache_filename = CACHE_DIR . "/simplepie/" . sha1($fetch_url) . ".feed2";
247
248 // Ignore cache if new feed or manual update.
249 $cache_age = ($no_cache || is_null($last_updated) || strpos($last_updated, '1970-01-01') === 0) ? 30 : get_feed_update_interval($feed) * 60;
250
251 _debug("cache filename: $cache_filename exists: " . file_exists($cache_filename), $debug_enabled);
252 _debug("cache age: $cache_age; no cache: $no_cache", $debug_enabled);
253
254 $cached_feed_data_hash = false;
255
256 $rss = false;
257 $rss_hash = false;
258 $cache_timestamp = file_exists($cache_filename) ? filemtime($cache_filename) : 0;
259
260 $force_refetch = isset($_REQUEST["force_refetch"]);
261
262 if (file_exists($cache_filename) &&
263 is_readable($cache_filename) &&
264 !$auth_login && !$auth_pass &&
265 filemtime($cache_filename) > time() - $cache_age) {
266
267 _debug("using local cache.", $debug_enabled);
268
269 if ($cache_timestamp > $last_article_timestamp) {
270 @$feed_data = file_get_contents($cache_filename);
271
272 if ($feed_data) {
273 $rss_hash = sha1($feed_data);
274 }
275 } else if (!$force_refetch) {
276 _debug("local cache valid and older than last_updated, nothing to do.", $debug_enabled);
277 return;
278 }
279 } else {
280 _debug("local cache will not be used for this feed", $debug_enabled);
281 }
282
283 if (!$rss) {
284
285 if (!$feed_data) {
286 _debug("fetching [$fetch_url]...", $debug_enabled);
287 _debug("If-Modified-Since: ".gmdate('D, d M Y H:i:s \G\M\T', $last_article_timestamp), $debug_enabled);
288
289 $feed_data = fetch_file_contents($fetch_url, false,
290 $auth_login, $auth_pass, false,
291 $no_cache ? FEED_FETCH_NO_CACHE_TIMEOUT : FEED_FETCH_TIMEOUT,
292 $force_refetch ? 0 : $last_article_timestamp);
293
294 global $fetch_curl_used;
295
296 if (!$fetch_curl_used) {
297 $tmp = @gzdecode($feed_data);
298
299 if ($tmp) $feed_data = $tmp;
300 }
301
302 $feed_data = trim($feed_data);
303
304 _debug("fetch done.", $debug_enabled);
305
306 if ($feed_data) {
307 $error = verify_feed_xml($feed_data);
308
309 if ($error) {
310 _debug("error verifying XML, code: " . $error->code, $debug_enabled);
311
312 if ($error->code == 26) {
313 _debug("got error 26, trying to decode entities...", $debug_enabled);
314
315 $feed_data = html_entity_decode($feed_data, ENT_COMPAT, 'UTF-8');
316
317 $error = verify_feed_xml($feed_data);
318
319 if ($error) $feed_data = '';
320 }
321 }
322 }
323 }
324
325 if (!$feed_data) {
326 global $fetch_last_error;
327 global $fetch_last_error_code;
328
329 _debug("unable to fetch: $fetch_last_error [$fetch_last_error_code]", $debug_enabled);
330
331 $error_escaped = '';
332
333 // If-Modified-Since
334 if ($fetch_last_error_code != 304) {
335 $error_escaped = db_escape_string($fetch_last_error);
336 } else {
337 _debug("source claims data not modified, nothing to do.", $debug_enabled);
338 }
339
340 db_query(
341 "UPDATE ttrss_feeds SET last_error = '$error_escaped',
342 last_updated = NOW() WHERE id = '$feed'");
343
344 return;
345 }
346 }
347
348 $pluginhost = new PluginHost();
349 $pluginhost->set_debug($debug_enabled, $debug_enabled);
350 $user_plugins = get_pref("_ENABLED_PLUGINS", $owner_uid);
351
352 $pluginhost->load(PLUGINS, PluginHost::KIND_ALL);
353 $pluginhost->load($user_plugins, PluginHost::KIND_USER, $owner_uid);
354 $pluginhost->load_data();
355
356 foreach ($pluginhost->get_hooks(PluginHost::HOOK_FEED_FETCHED) as $plugin) {
357 $feed_data = $plugin->hook_feed_fetched($feed_data);
358 }
359
360 if (!$rss) {
361 $rss = new FeedParser($feed_data);
362 $rss->init();
363 }
364
365 // print_r($rss);
366
367 $feed = db_escape_string($feed);
368
369 if (!$rss->error()) {
370
371 // cache data for later
372 if (!$auth_pass && !$auth_login && is_writable(CACHE_DIR . "/simplepie")) {
373 $new_rss_hash = sha1($rss_data);
374
375 if ($new_rss_hash != $rss_hash && count($rss->get_items()) > 0 ) {
376 _debug("saving $cache_filename", $debug_enabled);
377 @file_put_contents($cache_filename, $feed_data);
378 }
379 }
380
381 // We use local pluginhost here because we need to load different per-user feed plugins
382 $pluginhost->run_hooks(PluginHost::HOOK_FEED_PARSED, "hook_feed_parsed", $rss);
383
384 _debug("processing feed data...", $debug_enabled);
385
386 // db_query("BEGIN");
387
388 if (DB_TYPE == "pgsql") {
389 $favicon_interval_qpart = "favicon_last_checked < NOW() - INTERVAL '12 hour'";
390 } else {
391 $favicon_interval_qpart = "favicon_last_checked < DATE_SUB(NOW(), INTERVAL 12 HOUR)";
392 }
393
394 $result = db_query("SELECT title,site_url,owner_uid,favicon_avg_color,
395 (favicon_last_checked IS NULL OR $favicon_interval_qpart) AS
396 favicon_needs_check
397 FROM ttrss_feeds WHERE id = '$feed'");
398
399 $registered_title = db_fetch_result($result, 0, "title");
400 $orig_site_url = db_fetch_result($result, 0, "site_url");
401 $favicon_needs_check = sql_bool_to_bool(db_fetch_result($result, 0,
402 "favicon_needs_check"));
403 $favicon_avg_color = db_fetch_result($result, 0, "favicon_avg_color");
404
405 $owner_uid = db_fetch_result($result, 0, "owner_uid");
406
407 $site_url = db_escape_string(mb_substr(rewrite_relative_url($fetch_url, $rss->get_link()), 0, 245));
408
409 _debug("site_url: $site_url", $debug_enabled);
410 _debug("feed_title: " . $rss->get_title(), $debug_enabled);
411
412 if ($favicon_needs_check || $force_refetch) {
413
414 /* terrible hack: if we crash on floicon shit here, we won't check
415 * the icon avgcolor again (unless the icon got updated) */
416
417 $favicon_file = ICONS_DIR . "/$feed.ico";
418 $favicon_modified = @filemtime($favicon_file);
419
420 _debug("checking favicon...", $debug_enabled);
421
422 check_feed_favicon($site_url, $feed, $link);
423 $favicon_modified_new = @filemtime($favicon_file);
424
425 if ($favicon_modified_new > $favicon_modified)
426 $favicon_avg_color = '';
427
428 if (file_exists($favicon_file) && function_exists("imagecreatefromstring") && $favicon_avg_color == '') {
429 require_once "colors.php";
430
431 db_query("UPDATE ttrss_feeds SET favicon_avg_color = 'fail' WHERE
432 id = '$feed'");
433
434 $favicon_color = db_escape_string(
435 calculate_avg_color($favicon_file));
436
437 $favicon_colorstring = ",favicon_avg_color = '".$favicon_color."'";
438 } else if ($favicon_avg_color == 'fail') {
439 _debug("floicon failed on this file, not trying to recalculate avg color", $debug_enabled);
440 }
441
442 db_query("UPDATE ttrss_feeds SET favicon_last_checked = NOW()
443 $favicon_colorstring
444 WHERE id = '$feed'");
445 }
446
447 if (!$registered_title || $registered_title == "[Unknown]") {
448
449 $feed_title = db_escape_string($rss->get_title());
450
451 _debug("registering title: $feed_title", $debug_enabled);
452
453 db_query("UPDATE ttrss_feeds SET
454 title = '$feed_title' WHERE id = '$feed'");
455 }
456
457 if ($site_url && $orig_site_url != $site_url) {
458 db_query("UPDATE ttrss_feeds SET
459 site_url = '$site_url' WHERE id = '$feed'");
460 }
461
462 _debug("loading filters & labels...", $debug_enabled);
463
464 $filters = load_filters($feed, $owner_uid);
465 $labels = get_all_labels($owner_uid);
466
467 _debug("" . count($filters) . " filters loaded.", $debug_enabled);
468
469 $items = $rss->get_items();
470
471 if (!is_array($items)) {
472 _debug("no articles found.", $debug_enabled);
473
474 db_query("UPDATE ttrss_feeds
475 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
476
477 return; // no articles
478 }
479
480 if ($pubsub_state != 2 && PUBSUBHUBBUB_ENABLED) {
481
482 _debug("checking for PUSH hub...", $debug_enabled);
483
484 $feed_hub_url = false;
485
486 $links = $rss->get_links('hub');
487
488 if ($links && is_array($links)) {
489 foreach ($links as $l) {
490 $feed_hub_url = $l;
491 break;
492 }
493 }
494
495 _debug("feed hub url: $feed_hub_url", $debug_enabled);
496
497 if ($feed_hub_url && function_exists('curl_init') &&
498 !ini_get("open_basedir")) {
499
500 require_once 'lib/pubsubhubbub/subscriber.php';
501
502 $callback_url = get_self_url_prefix() .
503 "/public.php?op=pubsub&id=$feed";
504
505 $s = new Subscriber($feed_hub_url, $callback_url);
506
507 $rc = $s->subscribe($fetch_url);
508
509 _debug("feed hub url found, subscribe request sent.", $debug_enabled);
510
511 db_query("UPDATE ttrss_feeds SET pubsub_state = 1
512 WHERE id = '$feed'");
513 }
514 }
515
516 _debug("processing articles...", $debug_enabled);
517
518 foreach ($items as $item) {
519 if ($_REQUEST['xdebug'] == 3) {
520 print_r($item);
521 }
522
523 $entry_guid = $item->get_id();
524 if (!$entry_guid) $entry_guid = $item->get_link();
525 if (!$entry_guid) $entry_guid = make_guid_from_title($item->get_title());
526
527 _debug("f_guid $entry_guid", $debug_enabled);
528
529 if (!$entry_guid) continue;
530
531 $entry_guid = "$owner_uid,$entry_guid";
532
533 $entry_guid_hashed = db_escape_string('SHA1:' . sha1($entry_guid));
534
535 _debug("guid $entry_guid / $entry_guid_hashed", $debug_enabled);
536
537 $entry_timestamp = "";
538
539 $entry_timestamp = $item->get_date();
540
541 _debug("orig date: " . $item->get_date(), $debug_enabled);
542
543 if ($entry_timestamp == -1 || !$entry_timestamp || $entry_timestamp > time()) {
544 $entry_timestamp = time();
545 $no_orig_date = 'true';
546 } else {
547 $no_orig_date = 'false';
548 }
549
550 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
551
552 _debug("date $entry_timestamp [$entry_timestamp_fmt]", $debug_enabled);
553
554 // $entry_title = html_entity_decode($item->get_title(), ENT_COMPAT, 'UTF-8');
555 // $entry_title = decode_numeric_entities($entry_title);
556 $entry_title = $item->get_title();
557
558 $entry_link = rewrite_relative_url($site_url, $item->get_link());
559
560 _debug("title $entry_title", $debug_enabled);
561 _debug("link $entry_link", $debug_enabled);
562
563 if (!$entry_title) $entry_title = date("Y-m-d H:i:s", $entry_timestamp);;
564
565 $entry_content = $item->get_content();
566 if (!$entry_content) $entry_content = $item->get_description();
567
568 if ($_REQUEST["xdebug"] == 2) {
569 print "content: ";
570 print $entry_content;
571 print "\n";
572 }
573
574 $entry_comments = $item->get_comments_url();
575 $entry_author = $item->get_author();
576
577 $entry_guid = db_escape_string(mb_substr($entry_guid, 0, 245));
578
579 $entry_comments = db_escape_string(mb_substr(trim($entry_comments), 0, 245));
580 $entry_author = db_escape_string(mb_substr(trim($entry_author), 0, 245));
581
582 $num_comments = $item->get_comments_count();
583
584 if (is_array($num_comments) && is_array($num_comments[0])) {
585 $num_comments = (int) $num_comments[0]["data"];
586 } else {
587 $num_comments = 0;
588 }
589
590 _debug("author $entry_author", $debug_enabled);
591 _debug("num_comments: $num_comments", $debug_enabled);
592 _debug("looking for tags [1]...", $debug_enabled);
593
594 // parse <category> entries into tags
595
596 $additional_tags = array();
597
598 $additional_tags_src = $item->get_categories();
599
600 if (is_array($additional_tags_src)) {
601 foreach ($additional_tags_src as $tobj) {
602 array_push($additional_tags, $tobj);
603 }
604 }
605
606 _debug("category tags:", $debug_enabled);
607 _debug("looking for tags [2]...", $debug_enabled);
608
609 $entry_tags = array_unique($additional_tags);
610
611 for ($i = 0; $i < count($entry_tags); $i++)
612 $entry_tags[$i] = mb_strtolower($entry_tags[$i], 'utf-8');
613
614 _debug("done collecting data.", $debug_enabled);
615
616 // TODO: less memory-hungry implementation
617
618 _debug("applying plugin filters..", $debug_enabled);
619
620 // FIXME not sure if owner_uid is a good idea here, we may have a base entry without user entry (?)
621 $result = db_query("SELECT plugin_data,title,content,link,tag_cache,author FROM ttrss_entries, ttrss_user_entries
622 WHERE ref_id = id AND (guid = '".db_escape_string($entry_guid)."' OR guid = '$entry_guid_hashed') AND owner_uid = $owner_uid");
623
624 if (db_num_rows($result) != 0) {
625 $entry_plugin_data = db_fetch_result($result, 0, "plugin_data");
626 $stored_article = array("title" => db_fetch_result($result, 0, "title"),
627 "content" => db_fetch_result($result, 0, "content"),
628 "link" => db_fetch_result($result, 0, "link"),
629 "tags" => explode(",", db_fetch_result($result, 0, "tag_cache")),
630 "author" => db_fetch_result($result, 0, "author"));
631 } else {
632 $entry_plugin_data = "";
633 $stored_article = array();
634 }
635
636 $article = array("owner_uid" => $owner_uid, // read only
637 "guid" => $entry_guid, // read only
638 "title" => $entry_title,
639 "content" => $entry_content,
640 "link" => $entry_link,
641 "tags" => $entry_tags,
642 "plugin_data" => $entry_plugin_data,
643 "author" => $entry_author,
644 "stored" => $stored_article);
645
646 foreach ($pluginhost->get_hooks(PluginHost::HOOK_ARTICLE_FILTER) as $plugin) {
647 $article = $plugin->hook_article_filter($article);
648 }
649
650 $entry_tags = $article["tags"];
651 $entry_guid = db_escape_string($entry_guid);
652 $entry_title = db_escape_string($article["title"]);
653 $entry_author = db_escape_string($article["author"]);
654 $entry_link = db_escape_string($article["link"]);
655 $entry_plugin_data = db_escape_string($article["plugin_data"]);
656 $entry_content = $article["content"]; // escaped below
657
658
659 _debug("plugin data: $entry_plugin_data", $debug_enabled);
660
661 if ($cache_images && is_writable(CACHE_DIR . '/images'))
662 cache_images($entry_content, $site_url, $debug_enabled);
663
664 $entry_content = db_escape_string($entry_content, false);
665
666 $content_hash = "SHA1:" . sha1($entry_content);
667
668 db_query("BEGIN");
669
670 $result = db_query("SELECT id FROM ttrss_entries
671 WHERE (guid = '$entry_guid' OR guid = '$entry_guid_hashed')");
672
673 if (db_num_rows($result) == 0) {
674
675 _debug("base guid [$entry_guid] not found", $debug_enabled);
676
677 // base post entry does not exist, create it
678
679 $result = db_query(
680 "INSERT INTO ttrss_entries
681 (title,
682 guid,
683 link,
684 updated,
685 content,
686 content_hash,
687 cached_content,
688 no_orig_date,
689 date_updated,
690 date_entered,
691 comments,
692 num_comments,
693 plugin_data,
694 author)
695 VALUES
696 ('$entry_title',
697 '$entry_guid_hashed',
698 '$entry_link',
699 '$entry_timestamp_fmt',
700 '$entry_content',
701 '$content_hash',
702 '',
703 $no_orig_date,
704 NOW(),
705 '$date_feed_processed',
706 '$entry_comments',
707 '$num_comments',
708 '$entry_plugin_data',
709 '$entry_author')");
710
711 $article_labels = array();
712
713 } else {
714 // we keep encountering the entry in feeds, so we need to
715 // update date_updated column so that we don't get horrible
716 // dupes when the entry gets purged and reinserted again e.g.
717 // in the case of SLOW SLOW OMG SLOW updating feeds
718
719 $base_entry_id = db_fetch_result($result, 0, "id");
720
721 db_query("UPDATE ttrss_entries SET date_updated = NOW()
722 WHERE id = '$base_entry_id'");
723
724 $article_labels = get_article_labels($base_entry_id, $owner_uid);
725 }
726
727 // now it should exist, if not - bad luck then
728
729 $result = db_query("SELECT
730 id,content_hash,no_orig_date,title,plugin_data,guid,
731 ".SUBSTRING_FOR_DATE."(date_updated,1,19) as date_updated,
732 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated,
733 num_comments
734 FROM
735 ttrss_entries
736 WHERE guid = '$entry_guid' OR guid = '$entry_guid_hashed'");
737
738 $entry_ref_id = 0;
739 $entry_int_id = 0;
740
741 if (db_num_rows($result) == 1) {
742
743 _debug("base guid found, checking for user record", $debug_enabled);
744
745 // this will be used below in update handler
746 $orig_content_hash = db_fetch_result($result, 0, "content_hash");
747 $orig_title = db_fetch_result($result, 0, "title");
748 $orig_num_comments = db_fetch_result($result, 0, "num_comments");
749 $orig_date_updated = strtotime(db_fetch_result($result,
750 0, "date_updated"));
751 $orig_plugin_data = db_fetch_result($result, 0, "plugin_data");
752
753 $ref_id = db_fetch_result($result, 0, "id");
754 $entry_ref_id = $ref_id;
755
756 /* $stored_guid = db_fetch_result($result, 0, "guid");
757 if ($stored_guid != $entry_guid_hashed) {
758 if ($debug_enabled) _debug("upgrading compat guid to hashed one", $debug_enabled);
759
760 db_query("UPDATE ttrss_entries SET guid = '$entry_guid_hashed' WHERE
761 id = '$ref_id'");
762 } */
763
764 // check for user post link to main table
765
766 // do we allow duplicate posts with same GUID in different feeds?
767 if (get_pref("ALLOW_DUPLICATE_POSTS", $owner_uid, false)) {
768 $dupcheck_qpart = "AND (feed_id = '$feed' OR feed_id IS NULL)";
769 } else {
770 $dupcheck_qpart = "";
771 }
772
773 /* Collect article tags here so we could filter by them: */
774
775 $article_filters = get_article_filters($filters, $entry_title,
776 $entry_content, $entry_link, $entry_timestamp, $entry_author,
777 $entry_tags);
778
779 if ($debug_enabled) {
780 _debug("article filters: ", $debug_enabled);
781 if (count($article_filters) != 0) {
782 print_r($article_filters);
783 }
784 }
785
786 if (find_article_filter($article_filters, "filter")) {
787 db_query("COMMIT"); // close transaction in progress
788 continue;
789 }
790
791 $score = calculate_article_score($article_filters);
792
793 _debug("initial score: $score", $debug_enabled);
794
795 $query = "SELECT ref_id, int_id FROM ttrss_user_entries WHERE
796 ref_id = '$ref_id' AND owner_uid = '$owner_uid'
797 $dupcheck_qpart";
798
799 // if ($_REQUEST["xdebug"]) print "$query\n";
800
801 $result = db_query($query);
802
803 // okay it doesn't exist - create user entry
804 if (db_num_rows($result) == 0) {
805
806 _debug("user record not found, creating...", $debug_enabled);
807
808 if ($score >= -500 && !find_article_filter($article_filters, 'catchup')) {
809 $unread = 'true';
810 $last_read_qpart = 'NULL';
811 } else {
812 $unread = 'false';
813 $last_read_qpart = 'NOW()';
814 }
815
816 if (find_article_filter($article_filters, 'mark') || $score > 1000) {
817 $marked = 'true';
818 } else {
819 $marked = 'false';
820 }
821
822 if (find_article_filter($article_filters, 'publish')) {
823 $published = 'true';
824 } else {
825 $published = 'false';
826 }
827
828 // N-grams
829
830 if (DB_TYPE == "pgsql" and defined('_NGRAM_TITLE_DUPLICATE_THRESHOLD')) {
831
832 $result = db_query("SELECT COUNT(*) AS similar FROM
833 ttrss_entries,ttrss_user_entries
834 WHERE ref_id = id AND updated >= NOW() - INTERVAL '7 day'
835 AND similarity(title, '$entry_title') >= "._NGRAM_TITLE_DUPLICATE_THRESHOLD."
836 AND owner_uid = $owner_uid");
837
838 $ngram_similar = db_fetch_result($result, 0, "similar");
839
840 _debug("N-gram similar results: $ngram_similar", $debug_enabled);
841
842 if ($ngram_similar > 0) {
843 $unread = 'false';
844 }
845 }
846
847 $last_marked = ($marked == 'true') ? 'NOW()' : 'NULL';
848 $last_published = ($published == 'true') ? 'NOW()' : 'NULL';
849
850 $result = db_query(
851 "INSERT INTO ttrss_user_entries
852 (ref_id, owner_uid, feed_id, unread, last_read, marked,
853 published, score, tag_cache, label_cache, uuid,
854 last_marked, last_published)
855 VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
856 $last_read_qpart, $marked, $published, '$score', '', '',
857 '', $last_marked, $last_published)");
858
859 if (PUBSUBHUBBUB_HUB && $published == 'true') {
860 $rss_link = get_self_url_prefix() .
861 "/public.php?op=rss&id=-2&key=" .
862 get_feed_access_key(-2, false, $owner_uid);
863
864 $p = new Publisher(PUBSUBHUBBUB_HUB);
865
866 $pubsub_result = $p->publish_update($rss_link);
867 }
868
869 $result = db_query(
870 "SELECT int_id FROM ttrss_user_entries WHERE
871 ref_id = '$ref_id' AND owner_uid = '$owner_uid' AND
872 feed_id = '$feed' LIMIT 1");
873
874 if (db_num_rows($result) == 1) {
875 $entry_int_id = db_fetch_result($result, 0, "int_id");
876 }
877 } else {
878 _debug("user record FOUND", $debug_enabled);
879
880 $entry_ref_id = db_fetch_result($result, 0, "ref_id");
881 $entry_int_id = db_fetch_result($result, 0, "int_id");
882 }
883
884 _debug("RID: $entry_ref_id, IID: $entry_int_id", $debug_enabled);
885
886 $post_needs_update = false;
887 $update_insignificant = false;
888
889 if ($orig_num_comments != $num_comments) {
890 $post_needs_update = true;
891 $update_insignificant = true;
892 }
893
894 if ($entry_plugin_data != $orig_plugin_data) {
895 $post_needs_update = true;
896 $update_insignificant = true;
897 }
898
899 if ($content_hash != $orig_content_hash) {
900 $post_needs_update = true;
901 $update_insignificant = false;
902 }
903
904 if (db_escape_string($orig_title) != $entry_title) {
905 $post_needs_update = true;
906 $update_insignificant = false;
907 }
908
909 // if post needs update, update it and mark all user entries
910 // linking to this post as updated
911 if ($post_needs_update) {
912
913 if (defined('DAEMON_EXTENDED_DEBUG')) {
914 _debug("post $entry_guid_hashed needs update...", $debug_enabled);
915 }
916
917 // print "<!-- post $orig_title needs update : $post_needs_update -->";
918
919 db_query("UPDATE ttrss_entries
920 SET title = '$entry_title', content = '$entry_content',
921 content_hash = '$content_hash',
922 updated = '$entry_timestamp_fmt',
923 num_comments = '$num_comments',
924 plugin_data = '$entry_plugin_data'
925 WHERE id = '$ref_id'");
926
927 if (!$update_insignificant) {
928 if ($mark_unread_on_update) {
929 db_query("UPDATE ttrss_user_entries
930 SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
931 }
932 }
933 }
934 }
935
936 db_query("COMMIT");
937
938 _debug("assigning labels...", $debug_enabled);
939
940 assign_article_to_label_filters($entry_ref_id, $article_filters,
941 $owner_uid, $article_labels);
942
943 _debug("looking for enclosures...", $debug_enabled);
944
945 // enclosures
946
947 $enclosures = array();
948
949 $encs = $item->get_enclosures();
950
951 if (is_array($encs)) {
952 foreach ($encs as $e) {
953 $e_item = array(
954 $e->link, $e->type, $e->length);
955 array_push($enclosures, $e_item);
956 }
957 }
958
959 if ($debug_enabled) {
960 _debug("article enclosures:", $debug_enabled);
961 print_r($enclosures);
962 }
963
964 db_query("BEGIN");
965
966 foreach ($enclosures as $enc) {
967 $enc_url = db_escape_string($enc[0]);
968 $enc_type = db_escape_string($enc[1]);
969 $enc_dur = db_escape_string($enc[2]);
970
971 $result = db_query("SELECT id FROM ttrss_enclosures
972 WHERE content_url = '$enc_url' AND post_id = '$entry_ref_id'");
973
974 if (db_num_rows($result) == 0) {
975 db_query("INSERT INTO ttrss_enclosures
976 (content_url, content_type, title, duration, post_id) VALUES
977 ('$enc_url', '$enc_type', '', '$enc_dur', '$entry_ref_id')");
978 }
979 }
980
981 db_query("COMMIT");
982
983 // check for manual tags (we have to do it here since they're loaded from filters)
984
985 foreach ($article_filters as $f) {
986 if ($f["type"] == "tag") {
987
988 $manual_tags = trim_array(explode(",", $f["param"]));
989
990 foreach ($manual_tags as $tag) {
991 if (tag_is_valid($tag)) {
992 array_push($entry_tags, $tag);
993 }
994 }
995 }
996 }
997
998 // Skip boring tags
999
1000 $boring_tags = trim_array(explode(",", mb_strtolower(get_pref(
1001 'BLACKLISTED_TAGS', $owner_uid, ''), 'utf-8')));
1002
1003 $filtered_tags = array();
1004 $tags_to_cache = array();
1005
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);
1010 }
1011 }
1012 }
1013
1014 $filtered_tags = array_unique($filtered_tags);
1015
1016 if ($debug_enabled) {
1017 _debug("filtered article tags:", $debug_enabled);
1018 print_r($filtered_tags);
1019 }
1020
1021 // Save article tags in the database
1022
1023 if (count($filtered_tags) > 0) {
1024
1025 db_query("BEGIN");
1026
1027 foreach ($filtered_tags as $tag) {
1028
1029 $tag = sanitize_tag($tag);
1030 $tag = db_escape_string($tag);
1031
1032 if (!tag_is_valid($tag)) continue;
1033
1034 $result = db_query("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");
1037
1038 if ($result && db_num_rows($result) == 0) {
1039
1040 db_query("INSERT INTO ttrss_tags
1041 (owner_uid,tag_name,post_int_id)
1042 VALUES ('$owner_uid','$tag', '$entry_int_id')");
1043 }
1044
1045 array_push($tags_to_cache, $tag);
1046 }
1047
1048 /* update the cache */
1049
1050 $tags_to_cache = array_unique($tags_to_cache);
1051
1052 $tags_str = db_escape_string(join(",", $tags_to_cache));
1053
1054 db_query("UPDATE ttrss_user_entries
1055 SET tag_cache = '$tags_str' WHERE ref_id = '$entry_ref_id'
1056 AND owner_uid = $owner_uid");
1057
1058 db_query("COMMIT");
1059 }
1060
1061 if (get_pref("AUTO_ASSIGN_LABELS", $owner_uid, false)) {
1062 _debug("auto-assigning labels...", $debug_enabled);
1063
1064 foreach ($labels as $label) {
1065 $caption = preg_quote($label["caption"]);
1066
1067 if ($caption && preg_match("/\b$caption\b/i", "$tags_str " . strip_tags($entry_content) . " $entry_title")) {
1068 if (!labels_contains_caption($article_labels, $caption)) {
1069 label_add_article($entry_ref_id, $caption, $owner_uid);
1070 }
1071 }
1072 }
1073 }
1074
1075 _debug("article processed", $debug_enabled);
1076 }
1077
1078 if (!$last_updated) {
1079 _debug("new feed, catching it up...", $debug_enabled);
1080 catchup_feed($feed, false, $owner_uid);
1081 }
1082
1083 _debug("purging feed...", $debug_enabled);
1084
1085 purge_feed($feed, 0, $debug_enabled);
1086
1087 db_query("UPDATE ttrss_feeds
1088 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
1089
1090 // db_query("COMMIT");
1091
1092 } else {
1093
1094 $error_msg = db_escape_string(mb_substr($rss->error(), 0, 245));
1095
1096 _debug("error fetching feed: $error_msg", $debug_enabled);
1097
1098 db_query(
1099 "UPDATE ttrss_feeds SET last_error = '$error_msg',
1100 last_updated = NOW() WHERE id = '$feed'");
1101 }
1102
1103 unset($rss);
1104
1105 _debug("done", $debug_enabled);
1106 }
1107
1108 function cache_images($html, $site_url, $debug) {
1109 $cache_dir = CACHE_DIR . "/images";
1110
1111 libxml_use_internal_errors(true);
1112
1113 $charset_hack = '<head>
1114 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
1115 </head>';
1116
1117 $doc = new DOMDocument();
1118 $doc->loadHTML($charset_hack . $html);
1119 $xpath = new DOMXPath($doc);
1120
1121 $entries = $xpath->query('(//img[@src])');
1122
1123 foreach ($entries as $entry) {
1124 if ($entry->hasAttribute('src')) {
1125 $src = rewrite_relative_url($site_url, $entry->getAttribute('src'));
1126
1127 $local_filename = CACHE_DIR . "/images/" . sha1($src) . ".png";
1128
1129 if ($debug) _debug("cache_images: downloading: $src to $local_filename");
1130
1131 if (!file_exists($local_filename)) {
1132 $file_content = fetch_file_contents($src);
1133
1134 if ($file_content && strlen($file_content) > 1024) {
1135 file_put_contents($local_filename, $file_content);
1136 }
1137 }
1138
1139 if (file_exists($local_filename)) {
1140 $entry->setAttribute('src', SELF_URL_PATH . '/image.php?url=' .
1141 base64_encode($src));
1142 }
1143 }
1144 }
1145
1146 $node = $doc->getElementsByTagName('body')->item(0);
1147
1148 return $doc->saveXML($node);
1149 }
1150
1151 function expire_error_log($debug) {
1152 if ($debug) _debug("Removing old error log entries...");
1153
1154 if (DB_TYPE == "pgsql") {
1155 db_query("DELETE FROM ttrss_error_log
1156 WHERE created_at < NOW() - INTERVAL '7 days'");
1157 } else {
1158 db_query("DELETE FROM ttrss_error_log
1159 WHERE created_at < DATE_SUB(NOW(), INTERVAL 7 DAY)");
1160 }
1161
1162 }
1163
1164 function expire_lock_files($debug) {
1165 //if ($debug) _debug("Removing old lock files...");
1166
1167 $num_deleted = 0;
1168
1169 if (is_writable(LOCK_DIRECTORY)) {
1170 $files = glob(LOCK_DIRECTORY . "/*.lock");
1171
1172 if ($files) {
1173 foreach ($files as $file) {
1174 if (!file_is_locked(basename($file)) && time() - filemtime($file) > 86400*2) {
1175 unlink($file);
1176 ++$num_deleted;
1177 }
1178 }
1179 }
1180 }
1181
1182 if ($debug) _debug("Removed $num_deleted old lock files.");
1183 }
1184
1185 function expire_cached_files($debug) {
1186 foreach (array("simplepie", "images", "export", "upload") as $dir) {
1187 $cache_dir = CACHE_DIR . "/$dir";
1188
1189 // if ($debug) _debug("Expiring $cache_dir");
1190
1191 $num_deleted = 0;
1192
1193 if (is_writable($cache_dir)) {
1194 $files = glob("$cache_dir/*");
1195
1196 if ($files) {
1197 foreach ($files as $file) {
1198 if (time() - filemtime($file) > 86400*7) {
1199 unlink($file);
1200
1201 ++$num_deleted;
1202 }
1203 }
1204 }
1205 }
1206
1207 if ($debug) _debug("$cache_dir: removed $num_deleted files.");
1208 }
1209 }
1210
1211 /**
1212 * Source: http://www.php.net/manual/en/function.parse-url.php#104527
1213 * Returns the url query as associative array
1214 *
1215 * @param string query
1216 * @return array params
1217 */
1218 function convertUrlQuery($query) {
1219 $queryParts = explode('&', $query);
1220
1221 $params = array();
1222
1223 foreach ($queryParts as $param) {
1224 $item = explode('=', $param);
1225 $params[$item[0]] = $item[1];
1226 }
1227
1228 return $params;
1229 }
1230
1231 function get_article_filters($filters, $title, $content, $link, $timestamp, $author, $tags) {
1232 $matches = array();
1233
1234 foreach ($filters as $filter) {
1235 $match_any_rule = $filter["match_any_rule"];
1236 $inverse = $filter["inverse"];
1237 $filter_match = false;
1238
1239 foreach ($filter["rules"] as $rule) {
1240 $match = false;
1241 $reg_exp = str_replace('/', '\/', $rule["reg_exp"]);
1242 $rule_inverse = $rule["inverse"];
1243
1244 if (!$reg_exp)
1245 continue;
1246
1247 switch ($rule["type"]) {
1248 case "title":
1249 $match = @preg_match("/$reg_exp/i", $title);
1250 break;
1251 case "content":
1252 // we don't need to deal with multiline regexps
1253 $content = preg_replace("/[\r\n\t]/", "", $content);
1254
1255 $match = @preg_match("/$reg_exp/i", $content);
1256 break;
1257 case "both":
1258 // we don't need to deal with multiline regexps
1259 $content = preg_replace("/[\r\n\t]/", "", $content);
1260
1261 $match = (@preg_match("/$reg_exp/i", $title) || @preg_match("/$reg_exp/i", $content));
1262 break;
1263 case "link":
1264 $match = @preg_match("/$reg_exp/i", $link);
1265 break;
1266 case "author":
1267 $match = @preg_match("/$reg_exp/i", $author);
1268 break;
1269 case "tag":
1270 foreach ($tags as $tag) {
1271 if (@preg_match("/$reg_exp/i", $tag)) {
1272 $match = true;
1273 break;
1274 }
1275 }
1276 break;
1277 }
1278
1279 if ($rule_inverse) $match = !$match;
1280
1281 if ($match_any_rule) {
1282 if ($match) {
1283 $filter_match = true;
1284 break;
1285 }
1286 } else {
1287 $filter_match = $match;
1288 if (!$match) {
1289 break;
1290 }
1291 }
1292 }
1293
1294 if ($inverse) $filter_match = !$filter_match;
1295
1296 if ($filter_match) {
1297 foreach ($filter["actions"] AS $action) {
1298 array_push($matches, $action);
1299
1300 // if Stop action encountered, perform no further processing
1301 if ($action["type"] == "stop") return $matches;
1302 }
1303 }
1304 }
1305
1306 return $matches;
1307 }
1308
1309 function find_article_filter($filters, $filter_name) {
1310 foreach ($filters as $f) {
1311 if ($f["type"] == $filter_name) {
1312 return $f;
1313 };
1314 }
1315 return false;
1316 }
1317
1318 function find_article_filters($filters, $filter_name) {
1319 $results = array();
1320
1321 foreach ($filters as $f) {
1322 if ($f["type"] == $filter_name) {
1323 array_push($results, $f);
1324 };
1325 }
1326 return $results;
1327 }
1328
1329 function calculate_article_score($filters) {
1330 $score = 0;
1331
1332 foreach ($filters as $f) {
1333 if ($f["type"] == "score") {
1334 $score += $f["param"];
1335 };
1336 }
1337 return $score;
1338 }
1339
1340 function labels_contains_caption($labels, $caption) {
1341 foreach ($labels as $label) {
1342 if ($label[1] == $caption) {
1343 return true;
1344 }
1345 }
1346
1347 return false;
1348 }
1349
1350 function assign_article_to_label_filters($id, $filters, $owner_uid, $article_labels) {
1351 foreach ($filters as $f) {
1352 if ($f["type"] == "label") {
1353 if (!labels_contains_caption($article_labels, $f["param"])) {
1354 label_add_article($id, $f["param"], $owner_uid);
1355 }
1356 }
1357 }
1358 }
1359
1360 function make_guid_from_title($title) {
1361 return preg_replace("/[ \"\',.:;]/", "-",
1362 mb_strtolower(strip_tags($title), 'utf-8'));
1363 }
1364
1365 function verify_feed_xml($feed_data) {
1366 libxml_use_internal_errors(true);
1367 $doc = new DOMDocument();
1368 $doc->loadXML($feed_data);
1369 $error = libxml_get_last_error();
1370 libxml_clear_errors();
1371 return $error;
1372 }
1373
1374 function housekeeping_common($debug) {
1375 expire_cached_files($debug);
1376 expire_lock_files($debug);
1377 expire_error_log($debug);
1378
1379 $count = update_feedbrowser_cache();
1380 _debug("Feedbrowser updated, $count feeds processed.");
1381
1382 purge_orphans( true);
1383 $rc = cleanup_tags( 14, 50000);
1384
1385 _debug("Cleaned $rc cached tags.");
1386 }
1387 ?>