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