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