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