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