]> git.wh0rd.org - tt-rss.git/blame - include/rssfuncs.php
Store size of enclosure to database
[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);
cc85704f
AD
690 }
691
19b3992b 692 $entry_tags = $article["tags"];
a42c55f0
AD
693 $entry_guid = db_escape_string($entry_guid);
694 $entry_title = db_escape_string($article["title"]);
695 $entry_author = db_escape_string($article["author"]);
696 $entry_link = db_escape_string($article["link"]);
697 $entry_plugin_data = db_escape_string($article["plugin_data"]);
f935d98e
AD
698 $entry_content = $article["content"]; // escaped below
699
b30abdad 700
68cccafc 701 _debug("plugin data: $entry_plugin_data", $debug_enabled);
2bbd6994 702
0a3fd79b 703 if ($cache_images && is_writable(CACHE_DIR . '/images'))
f0bd8e65 704 cache_images($entry_content, $site_url, $debug_enabled);
0a3fd79b 705
a42c55f0 706 $entry_content = db_escape_string($entry_content, false);
1f45c857 707
9e222305 708 $content_hash = "SHA1:" . sha1($entry_content);
cc85704f 709
a42c55f0 710 db_query("BEGIN");
2c08214a 711
a42c55f0 712 $result = db_query("SELECT id FROM ttrss_entries
5e3d5480 713 WHERE (guid = '$entry_guid' OR guid = '$entry_guid_hashed')");
9e222305 714
2c08214a
AD
715 if (db_num_rows($result) == 0) {
716
68cccafc 717 _debug("base guid [$entry_guid] not found", $debug_enabled);
2c08214a
AD
718
719 // base post entry does not exist, create it
720
6322ac79 721 $result = db_query(
2c08214a
AD
722 "INSERT INTO ttrss_entries
723 (title,
724 guid,
725 link,
726 updated,
727 content,
728 content_hash,
729 no_orig_date,
730 date_updated,
731 date_entered,
732 comments,
733 num_comments,
b30abdad 734 plugin_data,
6b461797 735 lang,
2c08214a
AD
736 author)
737 VALUES
738 ('$entry_title',
5e3d5480 739 '$entry_guid_hashed',
2c08214a
AD
740 '$entry_link',
741 '$entry_timestamp_fmt',
742 '$entry_content',
743 '$content_hash',
5ba1ddd4 744 false,
2c08214a 745 NOW(),
be574731 746 '$date_feed_processed',
2c08214a
AD
747 '$entry_comments',
748 '$num_comments',
b30abdad 749 '$entry_plugin_data',
6b461797 750 '$entry_language',
2c08214a 751 '$entry_author')");
e8291805
AD
752
753 $article_labels = array();
754
2c08214a
AD
755 } else {
756 // we keep encountering the entry in feeds, so we need to
757 // update date_updated column so that we don't get horrible
758 // dupes when the entry gets purged and reinserted again e.g.
759 // in the case of SLOW SLOW OMG SLOW updating feeds
760
761 $base_entry_id = db_fetch_result($result, 0, "id");
762
a42c55f0 763 db_query("UPDATE ttrss_entries SET date_updated = NOW()
2c08214a 764 WHERE id = '$base_entry_id'");
e8291805 765
a42c55f0 766 $article_labels = get_article_labels($base_entry_id, $owner_uid);
2c08214a
AD
767 }
768
769 // now it should exist, if not - bad luck then
770
a42c55f0 771 $result = db_query("SELECT
5ba1ddd4 772 id,content_hash,title,plugin_data,guid,
0a3fd79b 773 num_comments
2c08214a
AD
774 FROM
775 ttrss_entries
5e3d5480 776 WHERE guid = '$entry_guid' OR guid = '$entry_guid_hashed'");
2c08214a
AD
777
778 $entry_ref_id = 0;
779 $entry_int_id = 0;
780
781 if (db_num_rows($result) == 1) {
782
68cccafc 783 _debug("base guid found, checking for user record", $debug_enabled);
2c08214a
AD
784
785 // this will be used below in update handler
786 $orig_content_hash = db_fetch_result($result, 0, "content_hash");
787 $orig_title = db_fetch_result($result, 0, "title");
788 $orig_num_comments = db_fetch_result($result, 0, "num_comments");
b30abdad 789 $orig_plugin_data = db_fetch_result($result, 0, "plugin_data");
2c08214a
AD
790
791 $ref_id = db_fetch_result($result, 0, "id");
792 $entry_ref_id = $ref_id;
793
5e3d5480
AD
794 /* $stored_guid = db_fetch_result($result, 0, "guid");
795 if ($stored_guid != $entry_guid_hashed) {
68cccafc 796 if ($debug_enabled) _debug("upgrading compat guid to hashed one", $debug_enabled);
5e3d5480 797
a42c55f0 798 db_query("UPDATE ttrss_entries SET guid = '$entry_guid_hashed' WHERE
5e3d5480
AD
799 id = '$ref_id'");
800 } */
801
2c08214a
AD
802 // check for user post link to main table
803
804 // do we allow duplicate posts with same GUID in different feeds?
a42c55f0 805 if (get_pref("ALLOW_DUPLICATE_POSTS", $owner_uid, false)) {
2c08214a
AD
806 $dupcheck_qpart = "AND (feed_id = '$feed' OR feed_id IS NULL)";
807 } else {
808 $dupcheck_qpart = "";
809 }
810
811 /* Collect article tags here so we could filter by them: */
812
813 $article_filters = get_article_filters($filters, $entry_title,
4021d61a 814 $entry_content, $entry_link, $entry_timestamp, $entry_author,
2c08214a
AD
815 $entry_tags);
816
817 if ($debug_enabled) {
68cccafc 818 _debug("article filters: ", $debug_enabled);
2c08214a
AD
819 if (count($article_filters) != 0) {
820 print_r($article_filters);
821 }
822 }
823
824 if (find_article_filter($article_filters, "filter")) {
a42c55f0 825 db_query("COMMIT"); // close transaction in progress
2c08214a
AD
826 continue;
827 }
828
829 $score = calculate_article_score($article_filters);
830
68cccafc 831 _debug("initial score: $score", $debug_enabled);
2c08214a
AD
832
833 $query = "SELECT ref_id, int_id FROM ttrss_user_entries WHERE
834 ref_id = '$ref_id' AND owner_uid = '$owner_uid'
835 $dupcheck_qpart";
836
837// if ($_REQUEST["xdebug"]) print "$query\n";
838
a42c55f0 839 $result = db_query($query);
2c08214a
AD
840
841 // okay it doesn't exist - create user entry
842 if (db_num_rows($result) == 0) {
843
68cccafc 844 _debug("user record not found, creating...", $debug_enabled);
2c08214a
AD
845
846 if ($score >= -500 && !find_article_filter($article_filters, 'catchup')) {
847 $unread = 'true';
848 $last_read_qpart = 'NULL';
849 } else {
850 $unread = 'false';
851 $last_read_qpart = 'NOW()';
852 }
853
854 if (find_article_filter($article_filters, 'mark') || $score > 1000) {
855 $marked = 'true';
856 } else {
857 $marked = 'false';
858 }
859
860 if (find_article_filter($article_filters, 'publish')) {
861 $published = 'true';
862 } else {
863 $published = 'false';
864 }
865
2ea9bbfd
AD
866 // N-grams
867
868 if (DB_TYPE == "pgsql" and defined('_NGRAM_TITLE_DUPLICATE_THRESHOLD')) {
869
a42c55f0 870 $result = db_query("SELECT COUNT(*) AS similar FROM
2ea9bbfd
AD
871 ttrss_entries,ttrss_user_entries
872 WHERE ref_id = id AND updated >= NOW() - INTERVAL '7 day'
873 AND similarity(title, '$entry_title') >= "._NGRAM_TITLE_DUPLICATE_THRESHOLD."
874 AND owner_uid = $owner_uid");
875
876 $ngram_similar = db_fetch_result($result, 0, "similar");
877
68cccafc 878 _debug("N-gram similar results: $ngram_similar", $debug_enabled);
2ea9bbfd
AD
879
880 if ($ngram_similar > 0) {
881 $unread = 'false';
882 }
883 }
884
7873d588
AD
885 $last_marked = ($marked == 'true') ? 'NOW()' : 'NULL';
886 $last_published = ($published == 'true') ? 'NOW()' : 'NULL';
887
6322ac79 888 $result = db_query(
2c08214a
AD
889 "INSERT INTO ttrss_user_entries
890 (ref_id, owner_uid, feed_id, unread, last_read, marked,
7873d588
AD
891 published, score, tag_cache, label_cache, uuid,
892 last_marked, last_published)
2c08214a 893 VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
7873d588
AD
894 $last_read_qpart, $marked, $published, '$score', '', '',
895 '', $last_marked, $last_published)");
2c08214a
AD
896
897 if (PUBSUBHUBBUB_HUB && $published == 'true') {
898 $rss_link = get_self_url_prefix() .
899 "/public.php?op=rss&id=-2&key=" .
a42c55f0 900 get_feed_access_key(-2, false, $owner_uid);
2c08214a
AD
901
902 $p = new Publisher(PUBSUBHUBBUB_HUB);
903
5ba1ddd4 904 /* $pubsub_result = */ $p->publish_update($rss_link);
2c08214a
AD
905 }
906
6322ac79 907 $result = db_query(
2c08214a
AD
908 "SELECT int_id FROM ttrss_user_entries WHERE
909 ref_id = '$ref_id' AND owner_uid = '$owner_uid' AND
910 feed_id = '$feed' LIMIT 1");
911
912 if (db_num_rows($result) == 1) {
913 $entry_int_id = db_fetch_result($result, 0, "int_id");
914 }
915 } else {
68cccafc 916 _debug("user record FOUND", $debug_enabled);
2c08214a
AD
917
918 $entry_ref_id = db_fetch_result($result, 0, "ref_id");
919 $entry_int_id = db_fetch_result($result, 0, "int_id");
920 }
921
68cccafc 922 _debug("RID: $entry_ref_id, IID: $entry_int_id", $debug_enabled);
2c08214a
AD
923
924 $post_needs_update = false;
925 $update_insignificant = false;
926
927 if ($orig_num_comments != $num_comments) {
928 $post_needs_update = true;
929 $update_insignificant = true;
930 }
931
b30abdad
AD
932 if ($entry_plugin_data != $orig_plugin_data) {
933 $post_needs_update = true;
934 $update_insignificant = true;
935 }
936
2c08214a
AD
937 if ($content_hash != $orig_content_hash) {
938 $post_needs_update = true;
939 $update_insignificant = false;
940 }
941
a42c55f0 942 if (db_escape_string($orig_title) != $entry_title) {
2c08214a
AD
943 $post_needs_update = true;
944 $update_insignificant = false;
945 }
946
947 // if post needs update, update it and mark all user entries
948 // linking to this post as updated
949 if ($post_needs_update) {
950
951 if (defined('DAEMON_EXTENDED_DEBUG')) {
68cccafc 952 _debug("post $entry_guid_hashed needs update...", $debug_enabled);
2c08214a
AD
953 }
954
955// print "<!-- post $orig_title needs update : $post_needs_update -->";
956
a42c55f0 957 db_query("UPDATE ttrss_entries
2c08214a
AD
958 SET title = '$entry_title', content = '$entry_content',
959 content_hash = '$content_hash',
960 updated = '$entry_timestamp_fmt',
b30abdad
AD
961 num_comments = '$num_comments',
962 plugin_data = '$entry_plugin_data'
2c08214a
AD
963 WHERE id = '$ref_id'");
964
965 if (!$update_insignificant) {
966 if ($mark_unread_on_update) {
a42c55f0 967 db_query("UPDATE ttrss_user_entries
2c08214a 968 SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
2c08214a
AD
969 }
970 }
971 }
972 }
973
a42c55f0 974 db_query("COMMIT");
2c08214a 975
68cccafc 976 _debug("assigning labels...", $debug_enabled);
2c08214a 977
a42c55f0 978 assign_article_to_label_filters($entry_ref_id, $article_filters,
b24504b1 979 $owner_uid, $article_labels);
2c08214a 980
68cccafc 981 _debug("looking for enclosures...", $debug_enabled);
2c08214a
AD
982
983 // enclosures
984
985 $enclosures = array();
986
19b3992b 987 $encs = $item->get_enclosures();
2c08214a 988
19b3992b
AD
989 if (is_array($encs)) {
990 foreach ($encs as $e) {
991 $e_item = array(
523bd90b 992 $e->link, $e->type, $e->length, $e->title, $e->width, $e->height);
2c08214a 993 array_push($enclosures, $e_item);
2c08214a
AD
994 }
995 }
996
2c08214a 997 if ($debug_enabled) {
68cccafc 998 _debug("article enclosures:", $debug_enabled);
2c08214a
AD
999 print_r($enclosures);
1000 }
1001
a42c55f0 1002 db_query("BEGIN");
2c08214a 1003
5c54e683
AD
1004// debugging
1005// db_query("DELETE FROM ttrss_enclosures WHERE post_id = '$entry_ref_id'");
1006
2c08214a 1007 foreach ($enclosures as $enc) {
a42c55f0
AD
1008 $enc_url = db_escape_string($enc[0]);
1009 $enc_type = db_escape_string($enc[1]);
1010 $enc_dur = db_escape_string($enc[2]);
5c54e683 1011 $enc_title = db_escape_string($enc[3]);
523bd90b
FE
1012 $enc_width = intval($enc[4]);
1013 $enc_height = intval($enc[5]);
2c08214a 1014
a42c55f0 1015 $result = db_query("SELECT id FROM ttrss_enclosures
2c08214a
AD
1016 WHERE content_url = '$enc_url' AND post_id = '$entry_ref_id'");
1017
1018 if (db_num_rows($result) == 0) {
a42c55f0 1019 db_query("INSERT INTO ttrss_enclosures
523bd90b
FE
1020 (content_url, content_type, title, duration, post_id, width, height) VALUES
1021 ('$enc_url', '$enc_type', '$enc_title', '$enc_dur', '$entry_ref_id', $enc_width, $enc_height)");
2c08214a
AD
1022 }
1023 }
1024
a42c55f0 1025 db_query("COMMIT");
2c08214a
AD
1026
1027 // check for manual tags (we have to do it here since they're loaded from filters)
1028
1029 foreach ($article_filters as $f) {
6aff7845 1030 if ($f["type"] == "tag") {
2c08214a 1031
6aff7845 1032 $manual_tags = trim_array(explode(",", $f["param"]));
2c08214a
AD
1033
1034 foreach ($manual_tags as $tag) {
1035 if (tag_is_valid($tag)) {
1036 array_push($entry_tags, $tag);
1037 }
1038 }
1039 }
1040 }
1041
1042 // Skip boring tags
1043
6322ac79 1044 $boring_tags = trim_array(explode(",", mb_strtolower(get_pref(
2c08214a
AD
1045 'BLACKLISTED_TAGS', $owner_uid, ''), 'utf-8')));
1046
1047 $filtered_tags = array();
1048 $tags_to_cache = array();
1049
1050 if ($entry_tags && is_array($entry_tags)) {
1051 foreach ($entry_tags as $tag) {
1052 if (array_search($tag, $boring_tags) === false) {
1053 array_push($filtered_tags, $tag);
1054 }
1055 }
1056 }
1057
1058 $filtered_tags = array_unique($filtered_tags);
1059
1060 if ($debug_enabled) {
68cccafc 1061 _debug("filtered article tags:", $debug_enabled);
2c08214a
AD
1062 print_r($filtered_tags);
1063 }
1064
1065 // Save article tags in the database
1066
1067 if (count($filtered_tags) > 0) {
1068
a42c55f0 1069 db_query("BEGIN");
2c08214a
AD
1070
1071 foreach ($filtered_tags as $tag) {
1072
1073 $tag = sanitize_tag($tag);
a42c55f0 1074 $tag = db_escape_string($tag);
2c08214a
AD
1075
1076 if (!tag_is_valid($tag)) continue;
1077
a42c55f0 1078 $result = db_query("SELECT id FROM ttrss_tags
2c08214a
AD
1079 WHERE tag_name = '$tag' AND post_int_id = '$entry_int_id' AND
1080 owner_uid = '$owner_uid' LIMIT 1");
1081
1082 if ($result && db_num_rows($result) == 0) {
1083
a42c55f0 1084 db_query("INSERT INTO ttrss_tags
2c08214a
AD
1085 (owner_uid,tag_name,post_int_id)
1086 VALUES ('$owner_uid','$tag', '$entry_int_id')");
1087 }
1088
1089 array_push($tags_to_cache, $tag);
1090 }
1091
1092 /* update the cache */
1093
1094 $tags_to_cache = array_unique($tags_to_cache);
1095
a42c55f0 1096 $tags_str = db_escape_string(join(",", $tags_to_cache));
2c08214a 1097
a42c55f0 1098 db_query("UPDATE ttrss_user_entries
2c08214a
AD
1099 SET tag_cache = '$tags_str' WHERE ref_id = '$entry_ref_id'
1100 AND owner_uid = $owner_uid");
1101
a42c55f0 1102 db_query("COMMIT");
2c08214a
AD
1103 }
1104
a42c55f0 1105 if (get_pref("AUTO_ASSIGN_LABELS", $owner_uid, false)) {
68cccafc 1106 _debug("auto-assigning labels...", $debug_enabled);
b24504b1
AD
1107
1108 foreach ($labels as $label) {
227d5e41 1109 $caption = preg_quote($label["caption"]);
b24504b1 1110
9811276d 1111 if ($caption && preg_match("/\b$caption\b/i", "$tags_str " . strip_tags($entry_content) . " $entry_title")) {
b24504b1 1112 if (!labels_contains_caption($article_labels, $caption)) {
a42c55f0 1113 label_add_article($entry_ref_id, $caption, $owner_uid);
b24504b1
AD
1114 }
1115 }
1116 }
1117 }
1118
68cccafc 1119 _debug("article processed", $debug_enabled);
2c08214a
AD
1120 }
1121
68cccafc 1122 _debug("purging feed...", $debug_enabled);
2c08214a 1123
a42c55f0 1124 purge_feed($feed, 0, $debug_enabled);
2c08214a 1125
a42c55f0 1126 db_query("UPDATE ttrss_feeds
f2798eb6 1127 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
2c08214a 1128
a42c55f0 1129// db_query("COMMIT");
2c08214a
AD
1130
1131 } else {
1132
a42c55f0 1133 $error_msg = db_escape_string(mb_substr($rss->error(), 0, 245));
2c08214a 1134
4ad04ee2
AD
1135 _debug("fetch error: $error_msg", $debug_enabled);
1136
1137 if (count($rss->errors()) > 1) {
1138 foreach ($rss->errors() as $error) {
1139 _debug("+ $error");
1140 }
1141 }
2c08214a 1142
6322ac79 1143 db_query(
2c08214a 1144 "UPDATE ttrss_feeds SET last_error = '$error_msg',
88edaa93 1145 last_updated = NOW() WHERE id = '$feed'");
2c08214a 1146
88edaa93
AD
1147 unset($rss);
1148 }
2c08214a 1149
68cccafc 1150 _debug("done", $debug_enabled);
88edaa93
AD
1151
1152 return $rss;
2c08214a
AD
1153 }
1154
3c696512 1155 function cache_images($html, $site_url, $debug) {
3c696512
AD
1156 libxml_use_internal_errors(true);
1157
1158 $charset_hack = '<head>
1159 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
1160 </head>';
1161
1162 $doc = new DOMDocument();
1163 $doc->loadHTML($charset_hack . $html);
1164 $xpath = new DOMXPath($doc);
1165
1166 $entries = $xpath->query('(//img[@src])');
1167
1168 foreach ($entries as $entry) {
1169 if ($entry->hasAttribute('src')) {
1170 $src = rewrite_relative_url($site_url, $entry->getAttribute('src'));
1171
1172 $local_filename = CACHE_DIR . "/images/" . sha1($src) . ".png";
1173
1174 if ($debug) _debug("cache_images: downloading: $src to $local_filename");
1175
1176 if (!file_exists($local_filename)) {
1177 $file_content = fetch_file_contents($src);
1178
a3d50184 1179 if ($file_content && strlen($file_content) > _MIN_CACHE_IMAGE_SIZE) {
3c696512
AD
1180 file_put_contents($local_filename, $file_content);
1181 }
1182 }
1183
2fc4d981 1184 /* if (file_exists($local_filename)) {
3c696512 1185 $entry->setAttribute('src', SELF_URL_PATH . '/image.php?url=' .
487f0750 1186 base64_encode($src));
2fc4d981 1187 } */
3c696512
AD
1188 }
1189 }
1190
2fc4d981
AD
1191 //$node = $doc->getElementsByTagName('body')->item(0);
1192 //return $doc->saveXML($node);
3c696512
AD
1193 }
1194
a42c55f0 1195 function expire_error_log($debug) {
e2261e17
AD
1196 if ($debug) _debug("Removing old error log entries...");
1197
1198 if (DB_TYPE == "pgsql") {
a42c55f0 1199 db_query("DELETE FROM ttrss_error_log
e2261e17
AD
1200 WHERE created_at < NOW() - INTERVAL '7 days'");
1201 } else {
a42c55f0 1202 db_query("DELETE FROM ttrss_error_log
e2261e17
AD
1203 WHERE created_at < DATE_SUB(NOW(), INTERVAL 7 DAY)");
1204 }
1205
1206 }
1207
2a91b6ff 1208 function expire_lock_files($debug) {
65465085 1209 //if ($debug) _debug("Removing old lock files...");
2a91b6ff
AD
1210
1211 $num_deleted = 0;
1212
1213 if (is_writable(LOCK_DIRECTORY)) {
1214 $files = glob(LOCK_DIRECTORY . "/*.lock");
1215
1216 if ($files) {
1217 foreach ($files as $file) {
11344971 1218 if (!file_is_locked(basename($file)) && time() - filemtime($file) > 86400*2) {
2a91b6ff
AD
1219 unlink($file);
1220 ++$num_deleted;
1221 }
1222 }
1223 }
1224 }
1225
65465085 1226 if ($debug) _debug("Removed $num_deleted old lock files.");
2a91b6ff
AD
1227 }
1228
3c696512 1229 function expire_cached_files($debug) {
3306daec 1230 foreach (array("simplepie", "images", "export", "upload") as $dir) {
3c696512 1231 $cache_dir = CACHE_DIR . "/$dir";
2c08214a 1232
65465085 1233// if ($debug) _debug("Expiring $cache_dir");
2c08214a 1234
3c696512
AD
1235 $num_deleted = 0;
1236
1237 if (is_writable($cache_dir)) {
1238 $files = glob("$cache_dir/*");
1239
2a91b6ff 1240 if ($files) {
2ab20c31
AD
1241 foreach ($files as $file) {
1242 if (time() - filemtime($file) > 86400*7) {
1243 unlink($file);
3c696512 1244
2ab20c31
AD
1245 ++$num_deleted;
1246 }
3c696512
AD
1247 }
1248 }
2a91b6ff 1249 }
3c696512 1250
65465085 1251 if ($debug) _debug("$cache_dir: removed $num_deleted files.");
3c696512
AD
1252 }
1253 }
2c08214a 1254
a3e0bdcf
AD
1255 /**
1256 * Source: http://www.php.net/manual/en/function.parse-url.php#104527
1257 * Returns the url query as associative array
1258 *
1259 * @param string query
1260 * @return array params
1261 */
1262 function convertUrlQuery($query) {
1263 $queryParts = explode('&', $query);
1264
1265 $params = array();
1266
1267 foreach ($queryParts as $param) {
1268 $item = explode('=', $param);
1269 $params[$item[0]] = $item[1];
1270 }
1271
1272 return $params;
1273 }
92c14e9d 1274
48cb2536 1275 function get_article_filters($filters, $title, $content, $link, $timestamp, $author, $tags) {
92c14e9d
AD
1276 $matches = array();
1277
1278 foreach ($filters as $filter) {
1279 $match_any_rule = $filter["match_any_rule"];
a3a896a1 1280 $inverse = $filter["inverse"];
92c14e9d
AD
1281 $filter_match = false;
1282
1283 foreach ($filter["rules"] as $rule) {
1284 $match = false;
ffa1bd7b 1285 $reg_exp = str_replace('/', '\/', $rule["reg_exp"]);
a3a896a1 1286 $rule_inverse = $rule["inverse"];
92c14e9d
AD
1287
1288 if (!$reg_exp)
1289 continue;
1290
1291 switch ($rule["type"]) {
1292 case "title":
1293 $match = @preg_match("/$reg_exp/i", $title);
1294 break;
1295 case "content":
d03ae73e
AD
1296 // we don't need to deal with multiline regexps
1297 $content = preg_replace("/[\r\n\t]/", "", $content);
1298
92c14e9d
AD
1299 $match = @preg_match("/$reg_exp/i", $content);
1300 break;
1301 case "both":
d03ae73e
AD
1302 // we don't need to deal with multiline regexps
1303 $content = preg_replace("/[\r\n\t]/", "", $content);
1304
72d1d067 1305 $match = (@preg_match("/$reg_exp/i", $title) || @preg_match("/$reg_exp/i", $content));
92c14e9d
AD
1306 break;
1307 case "link":
1308 $match = @preg_match("/$reg_exp/i", $link);
1309 break;
1310 case "author":
1311 $match = @preg_match("/$reg_exp/i", $author);
1312 break;
1313 case "tag":
7b80b5e1
DK
1314 foreach ($tags as $tag) {
1315 if (@preg_match("/$reg_exp/i", $tag)) {
1316 $match = true;
1317 break;
1318 }
1319 }
92c14e9d
AD
1320 break;
1321 }
1322
a3a896a1
AD
1323 if ($rule_inverse) $match = !$match;
1324
92c14e9d
AD
1325 if ($match_any_rule) {
1326 if ($match) {
1327 $filter_match = true;
1328 break;
1329 }
1330 } else {
1331 $filter_match = $match;
1332 if (!$match) {
1333 break;
1334 }
1335 }
1336 }
1337
a3a896a1
AD
1338 if ($inverse) $filter_match = !$filter_match;
1339
92c14e9d
AD
1340 if ($filter_match) {
1341 foreach ($filter["actions"] AS $action) {
1342 array_push($matches, $action);
5e736e45
AD
1343
1344 // if Stop action encountered, perform no further processing
1345 if ($action["type"] == "stop") return $matches;
92c14e9d
AD
1346 }
1347 }
1348 }
1349
1350 return $matches;
1351 }
1352
1353 function find_article_filter($filters, $filter_name) {
1354 foreach ($filters as $f) {
1355 if ($f["type"] == $filter_name) {
1356 return $f;
1357 };
1358 }
1359 return false;
1360 }
1361
1362 function find_article_filters($filters, $filter_name) {
1363 $results = array();
1364
1365 foreach ($filters as $f) {
1366 if ($f["type"] == $filter_name) {
1367 array_push($results, $f);
1368 };
1369 }
1370 return $results;
1371 }
1372
1373 function calculate_article_score($filters) {
1374 $score = 0;
1375
1376 foreach ($filters as $f) {
1377 if ($f["type"] == "score") {
1378 $score += $f["param"];
1379 };
1380 }
1381 return $score;
1382 }
1383
b24504b1
AD
1384 function labels_contains_caption($labels, $caption) {
1385 foreach ($labels as $label) {
1386 if ($label[1] == $caption) {
1387 return true;
1388 }
1389 }
1390
1391 return false;
1392 }
1393
a42c55f0 1394 function assign_article_to_label_filters($id, $filters, $owner_uid, $article_labels) {
92c14e9d
AD
1395 foreach ($filters as $f) {
1396 if ($f["type"] == "label") {
b24504b1 1397 if (!labels_contains_caption($article_labels, $f["param"])) {
a42c55f0 1398 label_add_article($id, $f["param"], $owner_uid);
b24504b1
AD
1399 }
1400 }
92c14e9d
AD
1401 }
1402 }
87764a50 1403
87d7e850
AD
1404 function make_guid_from_title($title) {
1405 return preg_replace("/[ \"\',.:;]/", "-",
1406 mb_strtolower(strip_tags($title), 'utf-8'));
1407 }
1408
d1f3fa97 1409 /* function verify_feed_xml($feed_data) {
ebec81a6
AD
1410 libxml_use_internal_errors(true);
1411 $doc = new DOMDocument();
1412 $doc->loadXML($feed_data);
1413 $error = libxml_get_last_error();
1414 libxml_clear_errors();
1415 return $error;
d1f3fa97 1416 } */
87d7e850 1417
e2cf81e2
AD
1418 function housekeeping_common($debug) {
1419 expire_cached_files($debug);
1420 expire_lock_files($debug);
1421 expire_error_log($debug);
1422
1423 $count = update_feedbrowser_cache();
1424 _debug("Feedbrowser updated, $count feeds processed.");
1425
1426 purge_orphans( true);
1427 $rc = cleanup_tags( 14, 50000);
1428
1429 _debug("Cleaned $rc cached tags.");
8e470220 1430
00f22824 1431 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_HOUSE_KEEPING, "hook_house_keeping", "");
8e470220 1432
e2cf81e2 1433 }
2c08214a 1434?>