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