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