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