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