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