]> git.wh0rd.org - tt-rss.git/blame - include/rssfuncs.php
misc fixes in site_url/icon_url parsing
[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);
4 define('DAEMON_SLEEP_INTERVAL', 120);
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
63 // Test if the user has loggued in recently. If not, it does not update its feeds.
09e8bdfd 64 if (!SINGLE_USER_MODE && DAEMON_UPDATE_LOGIN_LIMIT > 0) {
2c08214a
AD
65 if (DB_TYPE == "pgsql") {
66 $login_thresh_qpart = "AND ttrss_users.last_login >= NOW() - INTERVAL '".DAEMON_UPDATE_LOGIN_LIMIT." days'";
67 } else {
68 $login_thresh_qpart = "AND ttrss_users.last_login >= DATE_SUB(NOW(), INTERVAL ".DAEMON_UPDATE_LOGIN_LIMIT." DAY)";
69 }
70 } else {
71 $login_thresh_qpart = "";
72 }
73
74 // Test if the feed need a update (update interval exceded).
75 if (DB_TYPE == "pgsql") {
76 $update_limit_qpart = "AND ((
77 ttrss_feeds.update_interval = 0
78 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_user_prefs.value || ' minutes') AS INTERVAL)
79 ) OR (
80 ttrss_feeds.update_interval > 0
81 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_feeds.update_interval || ' minutes') AS INTERVAL)
82 ) OR ttrss_feeds.last_updated IS NULL)";
83 } else {
84 $update_limit_qpart = "AND ((
85 ttrss_feeds.update_interval = 0
86 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL CONVERT(ttrss_user_prefs.value, SIGNED INTEGER) MINUTE)
87 ) OR (
88 ttrss_feeds.update_interval > 0
89 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL ttrss_feeds.update_interval MINUTE)
90 ) OR ttrss_feeds.last_updated IS NULL)";
91 }
92
93 // Test if feed is currently being updated by another process.
94 if (DB_TYPE == "pgsql") {
95 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < NOW() - INTERVAL '5 minutes')";
96 } else {
97 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 5 MINUTE))";
98 }
99
100 // Test if there is a limit to number of updated feeds
101 $query_limit = "";
102 if($limit) $query_limit = sprintf("LIMIT %d", $limit);
103
104 $random_qpart = sql_random_function();
105
106 // We search for feed needing update.
107 $result = db_query($link, "SELECT ttrss_feeds.feed_url,ttrss_feeds.id, ttrss_feeds.owner_uid,
108 ".SUBSTRING_FOR_DATE."(ttrss_feeds.last_updated,1,19) AS last_updated,
109 ttrss_feeds.update_interval
110 FROM
111 ttrss_feeds, ttrss_users, ttrss_user_prefs
112 WHERE
113 ttrss_feeds.owner_uid = ttrss_users.id
114 AND ttrss_users.id = ttrss_user_prefs.owner_uid
115 AND ttrss_user_prefs.pref_name = 'DEFAULT_UPDATE_INTERVAL'
116 $login_thresh_qpart $update_limit_qpart
117 $updstart_thresh_qpart
118 ORDER BY $random_qpart $query_limit");
119
120 $user_prefs_cache = array();
121
122 if($debug) _debug(sprintf("Scheduled %d feeds to update...\n", db_num_rows($result)));
123
124 // Here is a little cache magic in order to minimize risk of double feed updates.
125 $feeds_to_update = array();
126 while ($line = db_fetch_assoc($result)) {
127 $feeds_to_update[$line['id']] = $line;
128 }
129
130 // We update the feed last update started date before anything else.
131 // There is no lag due to feed contents downloads
132 // It prevent an other process to update the same feed.
133 $feed_ids = array_keys($feeds_to_update);
134 if($feed_ids) {
135 db_query($link, sprintf("UPDATE ttrss_feeds SET last_update_started = NOW()
136 WHERE id IN (%s)", implode(',', $feed_ids)));
137 }
138
3c696512
AD
139 expire_cached_files($debug);
140
2c08214a
AD
141 // For each feed, we call the feed update function.
142 while ($line = array_pop($feeds_to_update)) {
143
144 if($debug) _debug("Feed: " . $line["feed_url"] . ", " . $line["last_updated"]);
145
146 update_rss_feed($link, $line["id"], true);
147
148 sleep(1); // prevent flood (FIXME make this an option?)
149 }
150
151 // Send feed digests by email if needed.
036cd3a4 152 send_headlines_digests($link, 100, $debug);
2c08214a
AD
153
154 } // function update_daemon_common
155
156 function fetch_twitter_rss($link, $url, $owner_uid) {
157
158 require_once 'lib/tmhoauth/tmhOAuth.php';
159
160 $result = db_query($link, "SELECT twitter_oauth FROM ttrss_users
161 WHERE id = $owner_uid");
162
163 $access_token = json_decode(db_fetch_result($result, 0, 'twitter_oauth'), true);
164 $url_escaped = db_escape_string($url);
165
166 if ($access_token) {
167
168 $tmhOAuth = new tmhOAuth(array(
169 'consumer_key' => CONSUMER_KEY,
170 'consumer_secret' => CONSUMER_SECRET,
171 'user_token' => $access_token['oauth_token'],
172 'user_secret' => $access_token['oauth_token_secret'],
173 ));
174
a3e0bdcf
AD
175 $code = $tmhOAuth->request('GET', $url,
176 convertUrlQuery(parse_url($url, PHP_URL_QUERY)));
2c08214a
AD
177
178 if ($code == 200) {
179
180 $content = $tmhOAuth->response['response'];
181
182 define('MAGPIE_CACHE_ON', false);
183
184 $rss = new MagpieRSS($content, MAGPIE_OUTPUT_ENCODING,
185 MAGPIE_INPUT_ENCODING, MAGPIE_DETECT_ENCODING );
186
187 return $rss;
188
189 } else {
190
191 db_query($link, "UPDATE ttrss_feeds
192 SET last_error = 'OAuth authorization failed ($code).'
193 WHERE feed_url = '$url_escaped' AND owner_uid = $owner_uid");
194 }
195
196 } else {
197
198 db_query($link, "UPDATE ttrss_feeds
199 SET last_error = 'OAuth information not found.'
200 WHERE feed_url = '$url_escaped' AND owner_uid = $owner_uid");
201
202 return false;
203 }
204 }
205
206 function update_rss_feed($link, $feed, $ignore_daemon = false, $no_cache = false) {
207
208 global $memcache;
209
210 /* Update all feeds with the same URL to utilize memcache */
211
212 if ($memcache) {
213 $result = db_query($link, "SELECT f1.id
214 FROM ttrss_feeds AS f1, ttrss_feeds AS f2
215 WHERE f2.feed_url = f1.feed_url AND f2.id = '$feed'");
216
217 while ($line = db_fetch_assoc($result)) {
218 update_rss_feed_real($link, $line["id"], $ignore_daemon, $no_cache);
219 }
220 } else {
221 update_rss_feed_real($link, $feed, $ignore_daemon, $no_cache);
222 }
223 }
224
225 function update_rss_feed_real($link, $feed, $ignore_daemon = false, $no_cache = false,
226 $override_url = false) {
227
228 require_once "lib/simplepie/simplepie.inc";
229 require_once "lib/magpierss/rss_fetch.inc";
230 require_once 'lib/magpierss/rss_utils.inc';
231
232 global $memcache;
233
234 $debug_enabled = defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug'];
235
236 if (!$_REQUEST["daemon"] && !$ignore_daemon) {
237 return false;
238 }
239
240 if ($debug_enabled) {
241 _debug("update_rss_feed: start");
242 }
243
244 if (!$ignore_daemon) {
245
246 if (DB_TYPE == "pgsql") {
247 $updstart_thresh_qpart = "(ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < NOW() - INTERVAL '120 seconds')";
248 } else {
249 $updstart_thresh_qpart = "(ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 120 SECOND))";
250 }
251
252 $result = db_query($link, "SELECT id,update_interval,auth_login,
253 auth_pass,cache_images,update_method
254 FROM ttrss_feeds WHERE id = '$feed' AND $updstart_thresh_qpart");
255
256 } else {
257
258 $result = db_query($link, "SELECT id,update_interval,auth_login,
259 feed_url,auth_pass,cache_images,update_method,last_updated,
260 mark_unread_on_update, owner_uid, update_on_checksum_change,
261 pubsub_state
262 FROM ttrss_feeds WHERE id = '$feed'");
263
264 }
265
266 if (db_num_rows($result) == 0) {
267 if ($debug_enabled) {
268 _debug("update_rss_feed: feed $feed NOT FOUND/SKIPPED");
269 }
270 return false;
271 }
272
273 $update_method = db_fetch_result($result, 0, "update_method");
274 $last_updated = db_fetch_result($result, 0, "last_updated");
275 $owner_uid = db_fetch_result($result, 0, "owner_uid");
276 $mark_unread_on_update = sql_bool_to_bool(db_fetch_result($result,
277 0, "mark_unread_on_update"));
278 $update_on_checksum_change = sql_bool_to_bool(db_fetch_result($result,
279 0, "update_on_checksum_change"));
280 $pubsub_state = db_fetch_result($result, 0, "pubsub_state");
281
282 db_query($link, "UPDATE ttrss_feeds SET last_update_started = NOW()
283 WHERE id = '$feed'");
284
285 $auth_login = db_fetch_result($result, 0, "auth_login");
286 $auth_pass = db_fetch_result($result, 0, "auth_pass");
287
288 if ($update_method == 0)
289 $update_method = DEFAULT_UPDATE_METHOD + 1;
290
291 // 1 - Magpie
292 // 2 - SimplePie
293 // 3 - Twitter OAuth
294
295 if ($update_method == 2)
296 $use_simplepie = true;
297 else
298 $use_simplepie = false;
299
300 if ($debug_enabled) {
301 _debug("update method: $update_method (feed setting: $update_method) (use simplepie: $use_simplepie)\n");
302 }
303
304 if ($update_method == 1) {
305 $auth_login = urlencode($auth_login);
306 $auth_pass = urlencode($auth_pass);
307 }
308
309 $update_interval = db_fetch_result($result, 0, "update_interval");
310 $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
311 $fetch_url = db_fetch_result($result, 0, "feed_url");
312
313 if ($update_interval < 0) { return false; }
314
315 $feed = db_escape_string($feed);
316
317 if ($auth_login && $auth_pass ){
318 $url_parts = array();
319 preg_match("/(^[^:]*):\/\/(.*)/", $fetch_url, $url_parts);
320
321 if ($url_parts[1] && $url_parts[2]) {
322 $fetch_url = $url_parts[1] . "://$auth_login:$auth_pass@" . $url_parts[2];
323 }
324
325 }
326
327 if ($override_url)
328 $fetch_url = $override_url;
329
330 if ($debug_enabled) {
331 _debug("update_rss_feed: fetching [$fetch_url]...");
332 }
333
334 $obj_id = md5("FDATA:$use_simplepie:$fetch_url");
335
336 if ($memcache && $obj = $memcache->get($obj_id)) {
337
338 if ($debug_enabled) {
339 _debug("update_rss_feed: data found in memcache.");
340 }
341
342 $rss = $obj;
343
344 } else {
345
346 if ($update_method == 3) {
347 $rss = fetch_twitter_rss($link, $fetch_url, $owner_uid);
348 } else if ($update_method == 1) {
349
350 define('MAGPIE_CACHE_AGE', get_feed_update_interval($link, $feed) * 60);
351 define('MAGPIE_CACHE_ON', !$no_cache);
352 define('MAGPIE_FETCH_TIME_OUT', 60);
353 define('MAGPIE_CACHE_DIR', CACHE_DIR . "/magpie");
354
355 $rss = @fetch_rss($fetch_url);
356 } else {
357 $simplepie_cache_dir = CACHE_DIR . "/simplepie";
358
359 if (!is_dir($simplepie_cache_dir)) {
360 mkdir($simplepie_cache_dir);
361 }
362
363 $rss = new SimplePie();
364 $rss->set_useragent(SELF_USER_AGENT);
365 # $rss->set_timeout(10);
366 $rss->set_feed_url($fetch_url);
367 $rss->set_output_encoding('UTF-8');
f1e511c8 368 //$rss->force_feed(true);
2c08214a 369
2c08214a
AD
370 if ($debug_enabled) {
371 _debug("feed update interval (sec): " .
372 get_feed_update_interval($link, $feed)*60);
373 }
374
375 $rss->enable_cache(!$no_cache);
376
377 if (!$no_cache) {
378 $rss->set_cache_location($simplepie_cache_dir);
379 $rss->set_cache_duration(get_feed_update_interval($link, $feed) * 60);
380 }
381
382 $rss->init();
383 }
384
385 if ($memcache && $rss) $memcache->add($obj_id, $rss, 0, 300);
386 }
387
388// print_r($rss);
389
390 if ($debug_enabled) {
391 _debug("update_rss_feed: fetch done, parsing...");
392 }
393
394 $feed = db_escape_string($feed);
395
396 if ($update_method == 2) {
397 $fetch_ok = !$rss->error();
398 } else {
399 $fetch_ok = !!$rss;
400 }
401
402 if ($fetch_ok) {
403
404 if ($debug_enabled) {
405 _debug("update_rss_feed: processing feed data...");
406 }
407
408// db_query($link, "BEGIN");
409
410 $result = db_query($link, "SELECT title,icon_url,site_url,owner_uid
411 FROM ttrss_feeds WHERE id = '$feed'");
412
413 $registered_title = db_fetch_result($result, 0, "title");
414 $orig_icon_url = db_fetch_result($result, 0, "icon_url");
415 $orig_site_url = db_fetch_result($result, 0, "site_url");
416
417 $owner_uid = db_fetch_result($result, 0, "owner_uid");
418
419 if ($use_simplepie) {
0cf81637 420 $site_url = db_escape_string(trim($rss->get_link()));
2c08214a 421 } else {
0cf81637
AD
422 $site_url = db_escape_string(trim($rss->channel["link"]));
423 }
424
425 // weird, weird Magpie
426 if (!$use_simplepie) {
427 if (!$site_url) $site_url = db_escape_string($rss->channel["link_"]);
2c08214a
AD
428 }
429
430 $site_url = rewrite_relative_url($fetch_url, $site_url);
0cf81637 431 $site_url = substr($site_url, 0, 250);
2c08214a
AD
432
433 if ($debug_enabled) {
434 _debug("update_rss_feed: checking favicon...");
435 }
436
437 check_feed_favicon($site_url, $feed, $link);
438
439 if (!$registered_title || $registered_title == "[Unknown]") {
440
441 if ($use_simplepie) {
442 $feed_title = db_escape_string($rss->get_title());
443 } else {
444 $feed_title = db_escape_string($rss->channel["title"]);
445 }
446
447 if ($debug_enabled) {
448 _debug("update_rss_feed: registering title: $feed_title");
449 }
450
451 db_query($link, "UPDATE ttrss_feeds SET
452 title = '$feed_title' WHERE id = '$feed'");
453 }
454
0cf81637 455 if ($site_url && $orig_site_url != $site_url) {
2c08214a
AD
456 db_query($link, "UPDATE ttrss_feeds SET
457 site_url = '$site_url' WHERE id = '$feed'");
458 }
459
460// print "I: " . $rss->channel["image"]["url"];
461
462 if (!$use_simplepie) {
0cf81637 463 $icon_url = db_escape_string(trim($rss->image["url"]));
2c08214a 464 } else {
0cf81637 465 $icon_url = db_escape_string(trim($rss->get_image_url()));
2c08214a
AD
466 }
467
0cf81637 468 $icon_url = rewrite_relative_url($fetch_url, $icon_url);
2c08214a
AD
469 $icon_url = substr($icon_url, 0, 250);
470
471 if ($icon_url && $orig_icon_url != $icon_url) {
472 db_query($link, "UPDATE ttrss_feeds SET icon_url = '$icon_url' WHERE id = '$feed'");
473 }
474
475 if ($debug_enabled) {
476 _debug("update_rss_feed: loading filters...");
477 }
478
479 $filters = load_filters($link, $feed, $owner_uid);
480
481// if ($debug_enabled) {
482// print_r($filters);
483// }
484
485 if ($use_simplepie) {
486 $iterator = $rss->get_items();
487 } else {
488 $iterator = $rss->items;
489 if (!$iterator || !is_array($iterator)) $iterator = $rss->entries;
490 if (!$iterator || !is_array($iterator)) $iterator = $rss;
491 }
492
493 if (!is_array($iterator)) {
494 /* db_query($link, "UPDATE ttrss_feeds
495 SET last_error = 'Parse error: can\'t find any articles.'
496 WHERE id = '$feed'"); */
497
498 // clear any errors and mark feed as updated if fetched okay
499 // even if it's blank
500
501 if ($debug_enabled) {
502 _debug("update_rss_feed: entry iterator is not an array, no articles?");
503 }
504
505 db_query($link, "UPDATE ttrss_feeds
506 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
507
508 return; // no articles
509 }
510
511 if ($pubsub_state != 2 && PUBSUBHUBBUB_ENABLED) {
512
513 if ($debug_enabled) _debug("update_rss_feed: checking for PUSH hub...");
514
515 $feed_hub_url = false;
516 if ($use_simplepie) {
517 $links = $rss->get_links('hub');
518
519 if ($links && is_array($links)) {
520 foreach ($links as $l) {
521 $feed_hub_url = $l;
522 break;
523 }
524 }
525
526 } else {
527 $atom = $rss->channel['atom'];
528
529 if ($atom) {
530 if ($atom['link@rel'] == 'hub') {
531 $feed_hub_url = $atom['link@href'];
532 }
533
534 if (!$feed_hub_url && $atom['link#'] > 1) {
535 for ($i = 2; $i <= $atom['link#']; $i++) {
536 if ($atom["link#$i@rel"] == 'hub') {
537 $feed_hub_url = $atom["link#$i@href"];
538 break;
539 }
540 }
541 }
542 } else {
543 $feed_hub_url = $rss->channel['link_hub'];
544 }
545 }
546
547 if ($debug_enabled) _debug("update_rss_feed: feed hub url: $feed_hub_url");
548
549 if ($feed_hub_url && function_exists('curl_init') &&
550 !ini_get("open_basedir")) {
551
552 require_once 'lib/pubsubhubbub/subscriber.php';
553
554 $callback_url = get_self_url_prefix() .
555 "/public.php?op=pubsub&id=$feed";
556
557 $s = new Subscriber($feed_hub_url, $callback_url);
558
559 $rc = $s->subscribe($fetch_url);
560
561 if ($debug_enabled)
562 _debug("update_rss_feed: feed hub url found, subscribe request sent.");
563
564 db_query($link, "UPDATE ttrss_feeds SET pubsub_state = 1
565 WHERE id = '$feed'");
566 }
567 }
568
569 if ($debug_enabled) {
570 _debug("update_rss_feed: processing articles...");
571 }
572
573 foreach ($iterator as $item) {
574
575 if ($_REQUEST['xdebug'] == 2) {
576 print_r($item);
577 }
578
579 if ($use_simplepie) {
580 $entry_guid = $item->get_id();
581 if (!$entry_guid) $entry_guid = $item->get_link();
582 if (!$entry_guid) $entry_guid = make_guid_from_title($item->get_title());
583
584 } else {
585
586 $entry_guid = $item["id"];
587
588 if (!$entry_guid) $entry_guid = $item["guid"];
589 if (!$entry_guid) $entry_guid = $item["about"];
590 if (!$entry_guid) $entry_guid = $item["link"];
591 if (!$entry_guid) $entry_guid = make_guid_from_title($item["title"]);
592 }
593
594 if ($debug_enabled) {
595 _debug("update_rss_feed: guid $entry_guid");
596 }
597
598 if (!$entry_guid) continue;
599
600 $entry_timestamp = "";
601
602 if ($use_simplepie) {
603 $entry_timestamp = strtotime($item->get_date());
604 } else {
605 $rss_2_date = $item['pubdate'];
606 $rss_1_date = $item['dc']['date'];
607 $atom_date = $item['issued'];
608 if (!$atom_date) $atom_date = $item['updated'];
609
610 if ($atom_date != "") $entry_timestamp = parse_w3cdtf($atom_date);
611 if ($rss_1_date != "") $entry_timestamp = parse_w3cdtf($rss_1_date);
612 if ($rss_2_date != "") $entry_timestamp = strtotime($rss_2_date);
613
614 }
615
616 if ($entry_timestamp == "" || $entry_timestamp == -1 || !$entry_timestamp) {
617 $entry_timestamp = time();
618 $no_orig_date = 'true';
619 } else {
620 $no_orig_date = 'false';
621 }
622
623 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
624
625 if ($debug_enabled) {
626 _debug("update_rss_feed: date $entry_timestamp [$entry_timestamp_fmt]");
627 }
628
629 if ($use_simplepie) {
630 $entry_title = $item->get_title();
631 } else {
632 $entry_title = trim(strip_tags($item["title"]));
633 }
634
635 if ($use_simplepie) {
636 $entry_link = $item->get_link();
637 } else {
638 // strange Magpie workaround
639 $entry_link = $item["link_"];
640 if (!$entry_link) $entry_link = $item["link"];
641 }
642
643 $entry_link = rewrite_relative_url($site_url, $entry_link);
644
645 if ($debug_enabled) {
646 _debug("update_rss_feed: title $entry_title");
647 _debug("update_rss_feed: link $entry_link");
648 }
649
650 if (!$entry_title) $entry_title = date("Y-m-d H:i:s", $entry_timestamp);;
651
652 $entry_link = strip_tags($entry_link);
653
654 if ($use_simplepie) {
655 $entry_content = $item->get_content();
656 if (!$entry_content) $entry_content = $item->get_description();
657 } else {
658 $entry_content = $item["content:escaped"];
659
660 if (!$entry_content) $entry_content = $item["content:encoded"];
661 if (!$entry_content) $entry_content = $item["content"]["encoded"];
662 if (!$entry_content) $entry_content = $item["content"];
663
664 if (is_array($entry_content)) $entry_content = $entry_content[0];
665
666 // Magpie bugs are getting ridiculous
667 if (trim($entry_content) == "Array") $entry_content = false;
668
669 if (!$entry_content) $entry_content = $item["atom_content"];
670 if (!$entry_content) $entry_content = $item["summary"];
671
672 if (!$entry_content ||
673 strlen($entry_content) < strlen($item["description"])) {
674 $entry_content = $item["description"];
675 };
676
677 // WTF
678 if (is_array($entry_content)) {
679 $entry_content = $entry_content["encoded"];
680 if (!$entry_content) $entry_content = $entry_content["escaped"];
681 }
682 }
683
c5867798 684 if ($cache_images && is_writable(CACHE_DIR . '/images'))
3c696512
AD
685 $entry_content = cache_images($entry_content, $site_url, $debug_enabled);
686
2c08214a
AD
687 if ($_REQUEST["xdebug"] == 2) {
688 print "update_rss_feed: content: ";
487f0750 689 print $entry_content;
3c696512 690 print "\n";
2c08214a
AD
691 }
692
693 $entry_content_unescaped = $entry_content;
694
695 if ($use_simplepie) {
696 $entry_comments = strip_tags($item->data["comments"]);
697 if ($item->get_author()) {
698 $entry_author_item = $item->get_author();
699 $entry_author = $entry_author_item->get_name();
700 if (!$entry_author) $entry_author = $entry_author_item->get_email();
701
702 $entry_author = db_escape_string($entry_author);
703 }
704 } else {
705 $entry_comments = strip_tags($item["comments"]);
706
707 $entry_author = db_escape_string(strip_tags($item['dc']['creator']));
708
709 if ($item['author']) {
710
711 if (is_array($item['author'])) {
712
713 if (!$entry_author) {
714 $entry_author = db_escape_string(strip_tags($item['author']['name']));
715 }
716
717 if (!$entry_author) {
718 $entry_author = db_escape_string(strip_tags($item['author']['email']));
719 }
720 }
721
722 if (!$entry_author) {
723 $entry_author = db_escape_string(strip_tags($item['author']));
724 }
725 }
726 }
727
728 if (preg_match('/^[\t\n\r ]*$/', $entry_author)) $entry_author = '';
729
730 $entry_guid = db_escape_string(strip_tags($entry_guid));
731 $entry_guid = mb_substr($entry_guid, 0, 250);
732
733 $result = db_query($link, "SELECT id FROM ttrss_entries
734 WHERE guid = '$entry_guid'");
735
736 $entry_content = db_escape_string($entry_content, false);
737
487f0750 738 $content_hash = "SHA1:" . sha1(strip_tags($entry_content));
2c08214a
AD
739
740 $entry_title = db_escape_string($entry_title);
741 $entry_link = db_escape_string($entry_link);
742 $entry_comments = mb_substr(db_escape_string($entry_comments), 0, 250);
743 $entry_author = mb_substr($entry_author, 0, 250);
744
745 if ($use_simplepie) {
746 $num_comments = 0; #FIXME#
747 } else {
748 $num_comments = db_escape_string($item["slash"]["comments"]);
749 }
750
751 if (!$num_comments) $num_comments = 0;
752
753 if ($debug_enabled) {
754 _debug("update_rss_feed: looking for tags [1]...");
755 }
756
757 // parse <category> entries into tags
758
759 $additional_tags = array();
760
761 if ($use_simplepie) {
762
763 $additional_tags_src = $item->get_categories();
764
765 if (is_array($additional_tags_src)) {
766 foreach ($additional_tags_src as $tobj) {
767 array_push($additional_tags, $tobj->get_term());
768 }
769 }
770
771 if ($debug_enabled) {
772 _debug("update_rss_feed: category tags:");
773 print_r($additional_tags);
774 }
775
776 } else {
777
778 $t_ctr = $item['category#'];
779
780 if ($t_ctr == 0) {
781 $additional_tags = array();
782 } else if ($t_ctr > 0) {
783 $additional_tags = array($item['category']);
784
785 if ($item['category@term']) {
786 array_push($additional_tags, $item['category@term']);
787 }
788
789 for ($i = 0; $i <= $t_ctr; $i++ ) {
790 if ($item["category#$i"]) {
791 array_push($additional_tags, $item["category#$i"]);
792 }
793
794 if ($item["category#$i@term"]) {
795 array_push($additional_tags, $item["category#$i@term"]);
796 }
797 }
798 }
799
800 // parse <dc:subject> elements
801
802 $t_ctr = $item['dc']['subject#'];
803
804 if ($t_ctr > 0) {
805 array_push($additional_tags, $item['dc']['subject']);
806
807 for ($i = 0; $i <= $t_ctr; $i++ ) {
808 if ($item['dc']["subject#$i"]) {
809 array_push($additional_tags, $item['dc']["subject#$i"]);
810 }
811 }
812 }
813 }
814
815 if ($debug_enabled) {
816 _debug("update_rss_feed: looking for tags [2]...");
817 }
818
819 /* taaaags */
820 // <a href="..." rel="tag">Xorg</a>, //
821
822 $entry_tags = null;
823
824 preg_match_all("/<a.*?rel=['\"]tag['\"].*?\>([^<]+)<\/a>/i",
825 $entry_content_unescaped, $entry_tags);
826
827 $entry_tags = $entry_tags[1];
828
829 $entry_tags = array_merge($entry_tags, $additional_tags);
830 $entry_tags = array_unique($entry_tags);
831
832 for ($i = 0; $i < count($entry_tags); $i++)
833 $entry_tags[$i] = mb_strtolower($entry_tags[$i], 'utf-8');
834
835 if ($debug_enabled) {
836 _debug("update_rss_feed: unfiltered tags found:");
837 print_r($entry_tags);
838 }
839
840 # sanitize content
841
842 $entry_content = sanitize_article_content($entry_content);
843 $entry_title = sanitize_article_content($entry_title);
844
845 if ($debug_enabled) {
846 _debug("update_rss_feed: done collecting data [TITLE:$entry_title]");
847 }
848
849 db_query($link, "BEGIN");
850
851 if (db_num_rows($result) == 0) {
852
853 if ($debug_enabled) {
854 _debug("update_rss_feed: base guid not found");
855 }
856
857 // base post entry does not exist, create it
858
859 $result = db_query($link,
860 "INSERT INTO ttrss_entries
861 (title,
862 guid,
863 link,
864 updated,
865 content,
866 content_hash,
867 no_orig_date,
868 date_updated,
869 date_entered,
870 comments,
871 num_comments,
872 author)
873 VALUES
874 ('$entry_title',
875 '$entry_guid',
876 '$entry_link',
877 '$entry_timestamp_fmt',
878 '$entry_content',
879 '$content_hash',
880 $no_orig_date,
881 NOW(),
882 NOW(),
883 '$entry_comments',
884 '$num_comments',
885 '$entry_author')");
886 } else {
887 // we keep encountering the entry in feeds, so we need to
888 // update date_updated column so that we don't get horrible
889 // dupes when the entry gets purged and reinserted again e.g.
890 // in the case of SLOW SLOW OMG SLOW updating feeds
891
892 $base_entry_id = db_fetch_result($result, 0, "id");
893
894 db_query($link, "UPDATE ttrss_entries SET date_updated = NOW()
895 WHERE id = '$base_entry_id'");
896 }
897
898 // now it should exist, if not - bad luck then
899
900 $result = db_query($link, "SELECT
901 id,content_hash,no_orig_date,title,
902 ".SUBSTRING_FOR_DATE."(date_updated,1,19) as date_updated,
903 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated,
904 num_comments
905 FROM
906 ttrss_entries
907 WHERE guid = '$entry_guid'");
908
909 $entry_ref_id = 0;
910 $entry_int_id = 0;
911
912 if (db_num_rows($result) == 1) {
913
914 if ($debug_enabled) {
915 _debug("update_rss_feed: base guid found, checking for user record");
916 }
917
918 // this will be used below in update handler
919 $orig_content_hash = db_fetch_result($result, 0, "content_hash");
920 $orig_title = db_fetch_result($result, 0, "title");
921 $orig_num_comments = db_fetch_result($result, 0, "num_comments");
922 $orig_date_updated = strtotime(db_fetch_result($result,
923 0, "date_updated"));
924
925 $ref_id = db_fetch_result($result, 0, "id");
926 $entry_ref_id = $ref_id;
927
928 // check for user post link to main table
929
930 // do we allow duplicate posts with same GUID in different feeds?
931 if (get_pref($link, "ALLOW_DUPLICATE_POSTS", $owner_uid, false)) {
932 $dupcheck_qpart = "AND (feed_id = '$feed' OR feed_id IS NULL)";
933 } else {
934 $dupcheck_qpart = "";
935 }
936
937 /* Collect article tags here so we could filter by them: */
938
939 $article_filters = get_article_filters($filters, $entry_title,
940 $entry_content, $entry_link, $entry_timestamp, $entry_author,
941 $entry_tags);
942
943 if ($debug_enabled) {
944 _debug("update_rss_feed: article filters: ");
945 if (count($article_filters) != 0) {
946 print_r($article_filters);
947 }
948 }
949
950 if (find_article_filter($article_filters, "filter")) {
951 db_query($link, "COMMIT"); // close transaction in progress
952 continue;
953 }
954
955 $score = calculate_article_score($article_filters);
956
957 if ($debug_enabled) {
958 _debug("update_rss_feed: initial score: $score");
959 }
960
961 $query = "SELECT ref_id, int_id FROM ttrss_user_entries WHERE
962 ref_id = '$ref_id' AND owner_uid = '$owner_uid'
963 $dupcheck_qpart";
964
965// if ($_REQUEST["xdebug"]) print "$query\n";
966
967 $result = db_query($link, $query);
968
969 // okay it doesn't exist - create user entry
970 if (db_num_rows($result) == 0) {
971
972 if ($debug_enabled) {
973 _debug("update_rss_feed: user record not found, creating...");
974 }
975
976 if ($score >= -500 && !find_article_filter($article_filters, 'catchup')) {
977 $unread = 'true';
978 $last_read_qpart = 'NULL';
979 } else {
980 $unread = 'false';
981 $last_read_qpart = 'NOW()';
982 }
983
984 if (find_article_filter($article_filters, 'mark') || $score > 1000) {
985 $marked = 'true';
986 } else {
987 $marked = 'false';
988 }
989
990 if (find_article_filter($article_filters, 'publish')) {
991 $published = 'true';
992 } else {
993 $published = 'false';
994 }
995
996 $result = db_query($link,
997 "INSERT INTO ttrss_user_entries
998 (ref_id, owner_uid, feed_id, unread, last_read, marked,
999 published, score, tag_cache, label_cache, uuid)
1000 VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
1001 $last_read_qpart, $marked, $published, '$score', '', '', '')");
1002
1003 if (PUBSUBHUBBUB_HUB && $published == 'true') {
1004 $rss_link = get_self_url_prefix() .
1005 "/public.php?op=rss&id=-2&key=" .
1006 get_feed_access_key($link, -2, false, $owner_uid);
1007
1008 $p = new Publisher(PUBSUBHUBBUB_HUB);
1009
1010 $pubsub_result = $p->publish_update($rss_link);
1011 }
1012
1013 $result = db_query($link,
1014 "SELECT int_id FROM ttrss_user_entries WHERE
1015 ref_id = '$ref_id' AND owner_uid = '$owner_uid' AND
1016 feed_id = '$feed' LIMIT 1");
1017
1018 if (db_num_rows($result) == 1) {
1019 $entry_int_id = db_fetch_result($result, 0, "int_id");
1020 }
1021 } else {
1022 if ($debug_enabled) {
1023 _debug("update_rss_feed: user record FOUND");
1024 }
1025
1026 $entry_ref_id = db_fetch_result($result, 0, "ref_id");
1027 $entry_int_id = db_fetch_result($result, 0, "int_id");
1028 }
1029
1030 if ($debug_enabled) {
1031 _debug("update_rss_feed: RID: $entry_ref_id, IID: $entry_int_id");
1032 }
1033
1034 $post_needs_update = false;
1035 $update_insignificant = false;
1036
1037 if ($orig_num_comments != $num_comments) {
1038 $post_needs_update = true;
1039 $update_insignificant = true;
1040 }
1041
1042 if ($content_hash != $orig_content_hash) {
1043 $post_needs_update = true;
1044 $update_insignificant = false;
1045 }
1046
1047 if (db_escape_string($orig_title) != $entry_title) {
1048 $post_needs_update = true;
1049 $update_insignificant = false;
1050 }
1051
1052 // if post needs update, update it and mark all user entries
1053 // linking to this post as updated
1054 if ($post_needs_update) {
1055
1056 if (defined('DAEMON_EXTENDED_DEBUG')) {
1057 _debug("update_rss_feed: post $entry_guid needs update...");
1058 }
1059
1060// print "<!-- post $orig_title needs update : $post_needs_update -->";
1061
1062 db_query($link, "UPDATE ttrss_entries
1063 SET title = '$entry_title', content = '$entry_content',
1064 content_hash = '$content_hash',
1065 updated = '$entry_timestamp_fmt',
1066 num_comments = '$num_comments'
1067 WHERE id = '$ref_id'");
1068
1069 if (!$update_insignificant) {
1070 if ($mark_unread_on_update) {
1071 db_query($link, "UPDATE ttrss_user_entries
1072 SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
1073 } else if ($update_on_checksum_change) {
1074 db_query($link, "UPDATE ttrss_user_entries
1075 SET last_read = null WHERE ref_id = '$ref_id'
1076 AND unread = false");
1077 }
1078 }
1079 }
1080 }
1081
1082 db_query($link, "COMMIT");
1083
1084 if ($debug_enabled) {
1085 _debug("update_rss_feed: assigning labels...");
1086 }
1087
1088 assign_article_to_labels($link, $entry_ref_id, $article_filters,
1089 $owner_uid);
1090
1091 if ($debug_enabled) {
1092 _debug("update_rss_feed: looking for enclosures...");
1093 }
1094
1095 // enclosures
1096
1097 $enclosures = array();
1098
1099 if ($use_simplepie) {
1100 $encs = $item->get_enclosures();
1101
1102 if (is_array($encs)) {
1103 foreach ($encs as $e) {
1104 $e_item = array(
1105 $e->link, $e->type, $e->length);
1106
1107 array_push($enclosures, $e_item);
1108 }
1109 }
1110
1111 } else {
1112 // <enclosure>
1113
1114 $e_ctr = $item['enclosure#'];
1115
1116 if ($e_ctr > 0) {
1117 $e_item = array($item['enclosure@url'],
1118 $item['enclosure@type'],
1119 $item['enclosure@length']);
1120
1121 array_push($enclosures, $e_item);
1122
1123 for ($i = 0; $i <= $e_ctr; $i++ ) {
1124
1125 if ($item["enclosure#$i@url"]) {
1126 $e_item = array($item["enclosure#$i@url"],
1127 $item["enclosure#$i@type"],
1128 $item["enclosure#$i@length"]);
1129 array_push($enclosures, $e_item);
1130 }
1131 }
1132 }
1133
1134 // <media:content>
1135 // can there be many of those? yes -fox
1136
1137 $m_ctr = $item['media']['content#'];
1138
1139 if ($m_ctr > 0) {
1140 $e_item = array($item['media']['content@url'],
1141 $item['media']['content@medium'],
1142 $item['media']['content@length']);
1143
1144 array_push($enclosures, $e_item);
1145
1146 for ($i = 0; $i <= $m_ctr; $i++ ) {
1147
1148 if ($item["media"]["content#$i@url"]) {
1149 $e_item = array($item["media"]["content#$i@url"],
1150 $item["media"]["content#$i@medium"],
1151 $item["media"]["content#$i@length"]);
1152 array_push($enclosures, $e_item);
1153 }
1154 }
1155
1156 }
1157 }
1158
1159
1160 if ($debug_enabled) {
1161 _debug("update_rss_feed: article enclosures:");
1162 print_r($enclosures);
1163 }
1164
1165 db_query($link, "BEGIN");
1166
1167 foreach ($enclosures as $enc) {
1168 $enc_url = db_escape_string($enc[0]);
1169 $enc_type = db_escape_string($enc[1]);
1170 $enc_dur = db_escape_string($enc[2]);
1171
1172 $result = db_query($link, "SELECT id FROM ttrss_enclosures
1173 WHERE content_url = '$enc_url' AND post_id = '$entry_ref_id'");
1174
1175 if (db_num_rows($result) == 0) {
1176 db_query($link, "INSERT INTO ttrss_enclosures
1177 (content_url, content_type, title, duration, post_id) VALUES
1178 ('$enc_url', '$enc_type', '', '$enc_dur', '$entry_ref_id')");
1179 }
1180 }
1181
1182 db_query($link, "COMMIT");
1183
1184 // check for manual tags (we have to do it here since they're loaded from filters)
1185
1186 foreach ($article_filters as $f) {
1187 if ($f[0] == "tag") {
1188
1189 $manual_tags = trim_array(explode(",", $f[1]));
1190
1191 foreach ($manual_tags as $tag) {
1192 if (tag_is_valid($tag)) {
1193 array_push($entry_tags, $tag);
1194 }
1195 }
1196 }
1197 }
1198
1199 // Skip boring tags
1200
1201 $boring_tags = trim_array(explode(",", mb_strtolower(get_pref($link,
1202 'BLACKLISTED_TAGS', $owner_uid, ''), 'utf-8')));
1203
1204 $filtered_tags = array();
1205 $tags_to_cache = array();
1206
1207 if ($entry_tags && is_array($entry_tags)) {
1208 foreach ($entry_tags as $tag) {
1209 if (array_search($tag, $boring_tags) === false) {
1210 array_push($filtered_tags, $tag);
1211 }
1212 }
1213 }
1214
1215 $filtered_tags = array_unique($filtered_tags);
1216
1217 if ($debug_enabled) {
1218 _debug("update_rss_feed: filtered article tags:");
1219 print_r($filtered_tags);
1220 }
1221
1222 // Save article tags in the database
1223
1224 if (count($filtered_tags) > 0) {
1225
1226 db_query($link, "BEGIN");
1227
1228 foreach ($filtered_tags as $tag) {
1229
1230 $tag = sanitize_tag($tag);
1231 $tag = db_escape_string($tag);
1232
1233 if (!tag_is_valid($tag)) continue;
1234
1235 $result = db_query($link, "SELECT id FROM ttrss_tags
1236 WHERE tag_name = '$tag' AND post_int_id = '$entry_int_id' AND
1237 owner_uid = '$owner_uid' LIMIT 1");
1238
1239 if ($result && db_num_rows($result) == 0) {
1240
1241 db_query($link, "INSERT INTO ttrss_tags
1242 (owner_uid,tag_name,post_int_id)
1243 VALUES ('$owner_uid','$tag', '$entry_int_id')");
1244 }
1245
1246 array_push($tags_to_cache, $tag);
1247 }
1248
1249 /* update the cache */
1250
1251 $tags_to_cache = array_unique($tags_to_cache);
1252
1253 $tags_str = db_escape_string(join(",", $tags_to_cache));
1254
1255 db_query($link, "UPDATE ttrss_user_entries
1256 SET tag_cache = '$tags_str' WHERE ref_id = '$entry_ref_id'
1257 AND owner_uid = $owner_uid");
1258
1259 db_query($link, "COMMIT");
1260 }
1261
1262 if ($debug_enabled) {
1263 _debug("update_rss_feed: article processed");
1264 }
1265 }
1266
1267 if (!$last_updated) {
1268 if ($debug_enabled) {
1269 _debug("update_rss_feed: new feed, catching it up...");
1270 }
1271 catchup_feed($link, $feed, false, $owner_uid);
1272 }
1273
1274 if ($debug_enabled) {
1275 _debug("purging feed...");
1276 }
1277
1278 purge_feed($link, $feed, 0, $debug_enabled);
1279
1280 db_query($link, "UPDATE ttrss_feeds
1281 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
1282
1283// db_query($link, "COMMIT");
1284
1285 } else {
1286
1287 if ($use_simplepie) {
1288 $error_msg = mb_substr($rss->error(), 0, 250);
1289 } else {
1290 $error_msg = mb_substr(magpie_error(), 0, 250);
1291 }
1292
1293 if ($debug_enabled) {
1294 _debug("update_rss_feed: error fetching feed: $error_msg");
1295 }
1296
1297 $error_msg = db_escape_string($error_msg);
1298
1299 db_query($link,
1300 "UPDATE ttrss_feeds SET last_error = '$error_msg',
1301 last_updated = NOW() WHERE id = '$feed'");
1302 }
1303
1304 if ($use_simplepie) {
1305 unset($rss);
1306 }
1307
1308 if ($debug_enabled) {
1309 _debug("update_rss_feed: done");
1310 }
1311
1312 }
1313
3c696512
AD
1314 function cache_images($html, $site_url, $debug) {
1315 $cache_dir = CACHE_DIR . "/images";
1316
1317 libxml_use_internal_errors(true);
1318
1319 $charset_hack = '<head>
1320 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
1321 </head>';
1322
1323 $doc = new DOMDocument();
1324 $doc->loadHTML($charset_hack . $html);
1325 $xpath = new DOMXPath($doc);
1326
1327 $entries = $xpath->query('(//img[@src])');
1328
1329 foreach ($entries as $entry) {
1330 if ($entry->hasAttribute('src')) {
1331 $src = rewrite_relative_url($site_url, $entry->getAttribute('src'));
1332
1333 $local_filename = CACHE_DIR . "/images/" . sha1($src) . ".png";
1334
1335 if ($debug) _debug("cache_images: downloading: $src to $local_filename");
1336
1337 if (!file_exists($local_filename)) {
1338 $file_content = fetch_file_contents($src);
1339
b8379e69 1340 if ($file_content && strlen($file_content) > 1024) {
3c696512
AD
1341 file_put_contents($local_filename, $file_content);
1342 }
1343 }
1344
1345 if (file_exists($local_filename)) {
1346 $entry->setAttribute('src', SELF_URL_PATH . '/image.php?url=' .
487f0750 1347 base64_encode($src));
3c696512
AD
1348 }
1349 }
1350 }
1351
1352 $node = $doc->getElementsByTagName('body')->item(0);
1353
1354 return $doc->saveXML($node);
1355 }
1356
1357 function expire_cached_files($debug) {
1358 foreach (array("magpie", "simplepie", "images") as $dir) {
1359 $cache_dir = CACHE_DIR . "/$dir";
2c08214a 1360
3c696512 1361 if ($debug) _debug("Expiring $cache_dir");
2c08214a 1362
3c696512
AD
1363 $num_deleted = 0;
1364
1365 if (is_writable($cache_dir)) {
1366 $files = glob("$cache_dir/*");
1367
1368 foreach ($files as $file) {
1369 if (time() - filemtime($file) > 86400*7) {
1370 unlink($file);
1371
1372 ++$num_deleted;
1373 }
1374 }
1375 }
1376
1377 if ($debug) _debug("Removed $num_deleted files.");
1378 }
1379 }
2c08214a 1380
a3e0bdcf
AD
1381 /**
1382 * Source: http://www.php.net/manual/en/function.parse-url.php#104527
1383 * Returns the url query as associative array
1384 *
1385 * @param string query
1386 * @return array params
1387 */
1388 function convertUrlQuery($query) {
1389 $queryParts = explode('&', $query);
1390
1391 $params = array();
1392
1393 foreach ($queryParts as $param) {
1394 $item = explode('=', $param);
1395 $params[$item[0]] = $item[1];
1396 }
1397
1398 return $params;
1399 }
2c08214a 1400?>