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