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