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