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