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