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