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