]> git.wh0rd.org - tt-rss.git/blame - include/rssfuncs.php
remove obsolete stuff from utils/
[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
1bd11fdf 444 check_feed_favicon($site_url, $feed, $link);
2c08214a
AD
445
446 if (!$registered_title || $registered_title == "[Unknown]") {
447
448 if ($use_simplepie) {
449 $feed_title = db_escape_string($rss->get_title());
450 } else {
451 $feed_title = db_escape_string($rss->channel["title"]);
452 }
453
454 if ($debug_enabled) {
455 _debug("update_rss_feed: registering title: $feed_title");
456 }
457
458 db_query($link, "UPDATE ttrss_feeds SET
459 title = '$feed_title' WHERE id = '$feed'");
460 }
461
0cf81637 462 if ($site_url && $orig_site_url != $site_url) {
2c08214a
AD
463 db_query($link, "UPDATE ttrss_feeds SET
464 site_url = '$site_url' WHERE id = '$feed'");
465 }
466
467// print "I: " . $rss->channel["image"]["url"];
468
469 if (!$use_simplepie) {
0cf81637 470 $icon_url = db_escape_string(trim($rss->image["url"]));
2c08214a 471 } else {
0cf81637 472 $icon_url = db_escape_string(trim($rss->get_image_url()));
2c08214a
AD
473 }
474
0cf81637 475 $icon_url = rewrite_relative_url($fetch_url, $icon_url);
2c08214a
AD
476 $icon_url = substr($icon_url, 0, 250);
477
478 if ($icon_url && $orig_icon_url != $icon_url) {
479 db_query($link, "UPDATE ttrss_feeds SET icon_url = '$icon_url' WHERE id = '$feed'");
480 }
481
482 if ($debug_enabled) {
483 _debug("update_rss_feed: loading filters...");
484 }
485
486 $filters = load_filters($link, $feed, $owner_uid);
487
488// if ($debug_enabled) {
489// print_r($filters);
490// }
491
492 if ($use_simplepie) {
493 $iterator = $rss->get_items();
494 } else {
495 $iterator = $rss->items;
496 if (!$iterator || !is_array($iterator)) $iterator = $rss->entries;
497 if (!$iterator || !is_array($iterator)) $iterator = $rss;
498 }
499
500 if (!is_array($iterator)) {
501 /* db_query($link, "UPDATE ttrss_feeds
502 SET last_error = 'Parse error: can\'t find any articles.'
503 WHERE id = '$feed'"); */
504
505 // clear any errors and mark feed as updated if fetched okay
506 // even if it's blank
507
508 if ($debug_enabled) {
509 _debug("update_rss_feed: entry iterator is not an array, no articles?");
510 }
511
512 db_query($link, "UPDATE ttrss_feeds
513 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
514
515 return; // no articles
516 }
517
518 if ($pubsub_state != 2 && PUBSUBHUBBUB_ENABLED) {
519
520 if ($debug_enabled) _debug("update_rss_feed: checking for PUSH hub...");
521
522 $feed_hub_url = false;
523 if ($use_simplepie) {
524 $links = $rss->get_links('hub');
525
526 if ($links && is_array($links)) {
527 foreach ($links as $l) {
528 $feed_hub_url = $l;
529 break;
530 }
531 }
532
533 } else {
534 $atom = $rss->channel['atom'];
535
536 if ($atom) {
537 if ($atom['link@rel'] == 'hub') {
538 $feed_hub_url = $atom['link@href'];
539 }
540
541 if (!$feed_hub_url && $atom['link#'] > 1) {
542 for ($i = 2; $i <= $atom['link#']; $i++) {
543 if ($atom["link#$i@rel"] == 'hub') {
544 $feed_hub_url = $atom["link#$i@href"];
545 break;
546 }
547 }
548 }
549 } else {
550 $feed_hub_url = $rss->channel['link_hub'];
551 }
552 }
553
554 if ($debug_enabled) _debug("update_rss_feed: feed hub url: $feed_hub_url");
555
556 if ($feed_hub_url && function_exists('curl_init') &&
557 !ini_get("open_basedir")) {
558
559 require_once 'lib/pubsubhubbub/subscriber.php';
560
561 $callback_url = get_self_url_prefix() .
562 "/public.php?op=pubsub&id=$feed";
563
564 $s = new Subscriber($feed_hub_url, $callback_url);
565
566 $rc = $s->subscribe($fetch_url);
567
568 if ($debug_enabled)
569 _debug("update_rss_feed: feed hub url found, subscribe request sent.");
570
571 db_query($link, "UPDATE ttrss_feeds SET pubsub_state = 1
572 WHERE id = '$feed'");
573 }
574 }
575
576 if ($debug_enabled) {
577 _debug("update_rss_feed: processing articles...");
578 }
579
580 foreach ($iterator as $item) {
581
582 if ($_REQUEST['xdebug'] == 2) {
583 print_r($item);
584 }
585
586 if ($use_simplepie) {
587 $entry_guid = $item->get_id();
588 if (!$entry_guid) $entry_guid = $item->get_link();
589 if (!$entry_guid) $entry_guid = make_guid_from_title($item->get_title());
590
591 } else {
592
593 $entry_guid = $item["id"];
594
595 if (!$entry_guid) $entry_guid = $item["guid"];
596 if (!$entry_guid) $entry_guid = $item["about"];
597 if (!$entry_guid) $entry_guid = $item["link"];
598 if (!$entry_guid) $entry_guid = make_guid_from_title($item["title"]);
599 }
600
601 if ($debug_enabled) {
602 _debug("update_rss_feed: guid $entry_guid");
603 }
604
605 if (!$entry_guid) continue;
606
607 $entry_timestamp = "";
608
609 if ($use_simplepie) {
610 $entry_timestamp = strtotime($item->get_date());
611 } else {
612 $rss_2_date = $item['pubdate'];
613 $rss_1_date = $item['dc']['date'];
614 $atom_date = $item['issued'];
615 if (!$atom_date) $atom_date = $item['updated'];
616
617 if ($atom_date != "") $entry_timestamp = parse_w3cdtf($atom_date);
618 if ($rss_1_date != "") $entry_timestamp = parse_w3cdtf($rss_1_date);
619 if ($rss_2_date != "") $entry_timestamp = strtotime($rss_2_date);
620
621 }
622
623 if ($entry_timestamp == "" || $entry_timestamp == -1 || !$entry_timestamp) {
624 $entry_timestamp = time();
625 $no_orig_date = 'true';
626 } else {
627 $no_orig_date = 'false';
628 }
629
630 $entry_timestamp_fmt = strftime("%Y/%m/%d %H:%M:%S", $entry_timestamp);
631
632 if ($debug_enabled) {
633 _debug("update_rss_feed: date $entry_timestamp [$entry_timestamp_fmt]");
634 }
635
636 if ($use_simplepie) {
637 $entry_title = $item->get_title();
638 } else {
639 $entry_title = trim(strip_tags($item["title"]));
640 }
641
642 if ($use_simplepie) {
643 $entry_link = $item->get_link();
644 } else {
645 // strange Magpie workaround
646 $entry_link = $item["link_"];
647 if (!$entry_link) $entry_link = $item["link"];
648 }
649
650 $entry_link = rewrite_relative_url($site_url, $entry_link);
651
652 if ($debug_enabled) {
653 _debug("update_rss_feed: title $entry_title");
654 _debug("update_rss_feed: link $entry_link");
655 }
656
657 if (!$entry_title) $entry_title = date("Y-m-d H:i:s", $entry_timestamp);;
658
659 $entry_link = strip_tags($entry_link);
660
661 if ($use_simplepie) {
662 $entry_content = $item->get_content();
663 if (!$entry_content) $entry_content = $item->get_description();
664 } else {
665 $entry_content = $item["content:escaped"];
666
667 if (!$entry_content) $entry_content = $item["content:encoded"];
eb38af4e 668 if (!$entry_content && is_array($entry_content)) $entry_content = $item["content"]["encoded"];
2c08214a
AD
669 if (!$entry_content) $entry_content = $item["content"];
670
671 if (is_array($entry_content)) $entry_content = $entry_content[0];
672
673 // Magpie bugs are getting ridiculous
674 if (trim($entry_content) == "Array") $entry_content = false;
675
676 if (!$entry_content) $entry_content = $item["atom_content"];
677 if (!$entry_content) $entry_content = $item["summary"];
678
679 if (!$entry_content ||
680 strlen($entry_content) < strlen($item["description"])) {
681 $entry_content = $item["description"];
682 };
683
684 // WTF
685 if (is_array($entry_content)) {
686 $entry_content = $entry_content["encoded"];
687 if (!$entry_content) $entry_content = $entry_content["escaped"];
688 }
689 }
690
c5867798 691 if ($cache_images && is_writable(CACHE_DIR . '/images'))
3c696512
AD
692 $entry_content = cache_images($entry_content, $site_url, $debug_enabled);
693
2c08214a
AD
694 if ($_REQUEST["xdebug"] == 2) {
695 print "update_rss_feed: content: ";
487f0750 696 print $entry_content;
3c696512 697 print "\n";
2c08214a
AD
698 }
699
700 $entry_content_unescaped = $entry_content;
701
702 if ($use_simplepie) {
703 $entry_comments = strip_tags($item->data["comments"]);
704 if ($item->get_author()) {
705 $entry_author_item = $item->get_author();
706 $entry_author = $entry_author_item->get_name();
707 if (!$entry_author) $entry_author = $entry_author_item->get_email();
708
709 $entry_author = db_escape_string($entry_author);
710 }
711 } else {
712 $entry_comments = strip_tags($item["comments"]);
713
714 $entry_author = db_escape_string(strip_tags($item['dc']['creator']));
715
716 if ($item['author']) {
717
718 if (is_array($item['author'])) {
719
720 if (!$entry_author) {
721 $entry_author = db_escape_string(strip_tags($item['author']['name']));
722 }
723
724 if (!$entry_author) {
725 $entry_author = db_escape_string(strip_tags($item['author']['email']));
726 }
727 }
728
729 if (!$entry_author) {
730 $entry_author = db_escape_string(strip_tags($item['author']));
731 }
732 }
733 }
734
735 if (preg_match('/^[\t\n\r ]*$/', $entry_author)) $entry_author = '';
736
737 $entry_guid = db_escape_string(strip_tags($entry_guid));
738 $entry_guid = mb_substr($entry_guid, 0, 250);
739
740 $result = db_query($link, "SELECT id FROM ttrss_entries
741 WHERE guid = '$entry_guid'");
742
743 $entry_content = db_escape_string($entry_content, false);
744
487f0750 745 $content_hash = "SHA1:" . sha1(strip_tags($entry_content));
2c08214a
AD
746
747 $entry_title = db_escape_string($entry_title);
748 $entry_link = db_escape_string($entry_link);
749 $entry_comments = mb_substr(db_escape_string($entry_comments), 0, 250);
750 $entry_author = mb_substr($entry_author, 0, 250);
751
752 if ($use_simplepie) {
753 $num_comments = 0; #FIXME#
754 } else {
755 $num_comments = db_escape_string($item["slash"]["comments"]);
756 }
757
758 if (!$num_comments) $num_comments = 0;
759
760 if ($debug_enabled) {
761 _debug("update_rss_feed: looking for tags [1]...");
762 }
763
764 // parse <category> entries into tags
765
766 $additional_tags = array();
767
768 if ($use_simplepie) {
769
770 $additional_tags_src = $item->get_categories();
771
772 if (is_array($additional_tags_src)) {
773 foreach ($additional_tags_src as $tobj) {
774 array_push($additional_tags, $tobj->get_term());
775 }
776 }
777
778 if ($debug_enabled) {
779 _debug("update_rss_feed: category tags:");
780 print_r($additional_tags);
781 }
782
783 } else {
784
785 $t_ctr = $item['category#'];
786
787 if ($t_ctr == 0) {
788 $additional_tags = array();
789 } else if ($t_ctr > 0) {
790 $additional_tags = array($item['category']);
791
792 if ($item['category@term']) {
793 array_push($additional_tags, $item['category@term']);
794 }
795
796 for ($i = 0; $i <= $t_ctr; $i++ ) {
797 if ($item["category#$i"]) {
798 array_push($additional_tags, $item["category#$i"]);
799 }
800
801 if ($item["category#$i@term"]) {
802 array_push($additional_tags, $item["category#$i@term"]);
803 }
804 }
805 }
806
807 // parse <dc:subject> elements
808
809 $t_ctr = $item['dc']['subject#'];
810
811 if ($t_ctr > 0) {
812 array_push($additional_tags, $item['dc']['subject']);
813
814 for ($i = 0; $i <= $t_ctr; $i++ ) {
815 if ($item['dc']["subject#$i"]) {
816 array_push($additional_tags, $item['dc']["subject#$i"]);
817 }
818 }
819 }
820 }
821
822 if ($debug_enabled) {
823 _debug("update_rss_feed: looking for tags [2]...");
824 }
825
826 /* taaaags */
827 // <a href="..." rel="tag">Xorg</a>, //
828
829 $entry_tags = null;
830
831 preg_match_all("/<a.*?rel=['\"]tag['\"].*?\>([^<]+)<\/a>/i",
832 $entry_content_unescaped, $entry_tags);
833
834 $entry_tags = $entry_tags[1];
835
836 $entry_tags = array_merge($entry_tags, $additional_tags);
837 $entry_tags = array_unique($entry_tags);
838
839 for ($i = 0; $i < count($entry_tags); $i++)
840 $entry_tags[$i] = mb_strtolower($entry_tags[$i], 'utf-8');
841
842 if ($debug_enabled) {
843 _debug("update_rss_feed: unfiltered tags found:");
844 print_r($entry_tags);
845 }
846
847 # sanitize content
848
849 $entry_content = sanitize_article_content($entry_content);
850 $entry_title = sanitize_article_content($entry_title);
851
852 if ($debug_enabled) {
853 _debug("update_rss_feed: done collecting data [TITLE:$entry_title]");
854 }
855
856 db_query($link, "BEGIN");
857
858 if (db_num_rows($result) == 0) {
859
860 if ($debug_enabled) {
861 _debug("update_rss_feed: base guid not found");
862 }
863
864 // base post entry does not exist, create it
865
866 $result = db_query($link,
867 "INSERT INTO ttrss_entries
868 (title,
869 guid,
870 link,
871 updated,
872 content,
873 content_hash,
874 no_orig_date,
875 date_updated,
876 date_entered,
877 comments,
878 num_comments,
879 author)
880 VALUES
881 ('$entry_title',
882 '$entry_guid',
883 '$entry_link',
884 '$entry_timestamp_fmt',
885 '$entry_content',
886 '$content_hash',
887 $no_orig_date,
888 NOW(),
889 NOW(),
890 '$entry_comments',
891 '$num_comments',
892 '$entry_author')");
893 } else {
894 // we keep encountering the entry in feeds, so we need to
895 // update date_updated column so that we don't get horrible
896 // dupes when the entry gets purged and reinserted again e.g.
897 // in the case of SLOW SLOW OMG SLOW updating feeds
898
899 $base_entry_id = db_fetch_result($result, 0, "id");
900
901 db_query($link, "UPDATE ttrss_entries SET date_updated = NOW()
902 WHERE id = '$base_entry_id'");
903 }
904
905 // now it should exist, if not - bad luck then
906
907 $result = db_query($link, "SELECT
908 id,content_hash,no_orig_date,title,
909 ".SUBSTRING_FOR_DATE."(date_updated,1,19) as date_updated,
910 ".SUBSTRING_FOR_DATE."(updated,1,19) as updated,
911 num_comments
912 FROM
913 ttrss_entries
914 WHERE guid = '$entry_guid'");
915
916 $entry_ref_id = 0;
917 $entry_int_id = 0;
918
919 if (db_num_rows($result) == 1) {
920
921 if ($debug_enabled) {
922 _debug("update_rss_feed: base guid found, checking for user record");
923 }
924
925 // this will be used below in update handler
926 $orig_content_hash = db_fetch_result($result, 0, "content_hash");
927 $orig_title = db_fetch_result($result, 0, "title");
928 $orig_num_comments = db_fetch_result($result, 0, "num_comments");
929 $orig_date_updated = strtotime(db_fetch_result($result,
930 0, "date_updated"));
931
932 $ref_id = db_fetch_result($result, 0, "id");
933 $entry_ref_id = $ref_id;
934
935 // check for user post link to main table
936
937 // do we allow duplicate posts with same GUID in different feeds?
938 if (get_pref($link, "ALLOW_DUPLICATE_POSTS", $owner_uid, false)) {
939 $dupcheck_qpart = "AND (feed_id = '$feed' OR feed_id IS NULL)";
940 } else {
941 $dupcheck_qpart = "";
942 }
943
944 /* Collect article tags here so we could filter by them: */
945
946 $article_filters = get_article_filters($filters, $entry_title,
947 $entry_content, $entry_link, $entry_timestamp, $entry_author,
948 $entry_tags);
949
950 if ($debug_enabled) {
951 _debug("update_rss_feed: article filters: ");
952 if (count($article_filters) != 0) {
953 print_r($article_filters);
954 }
955 }
956
957 if (find_article_filter($article_filters, "filter")) {
958 db_query($link, "COMMIT"); // close transaction in progress
959 continue;
960 }
961
962 $score = calculate_article_score($article_filters);
963
964 if ($debug_enabled) {
965 _debug("update_rss_feed: initial score: $score");
966 }
967
968 $query = "SELECT ref_id, int_id FROM ttrss_user_entries WHERE
969 ref_id = '$ref_id' AND owner_uid = '$owner_uid'
970 $dupcheck_qpart";
971
972// if ($_REQUEST["xdebug"]) print "$query\n";
973
974 $result = db_query($link, $query);
975
976 // okay it doesn't exist - create user entry
977 if (db_num_rows($result) == 0) {
978
979 if ($debug_enabled) {
980 _debug("update_rss_feed: user record not found, creating...");
981 }
982
983 if ($score >= -500 && !find_article_filter($article_filters, 'catchup')) {
984 $unread = 'true';
985 $last_read_qpart = 'NULL';
986 } else {
987 $unread = 'false';
988 $last_read_qpart = 'NOW()';
989 }
990
991 if (find_article_filter($article_filters, 'mark') || $score > 1000) {
992 $marked = 'true';
993 } else {
994 $marked = 'false';
995 }
996
997 if (find_article_filter($article_filters, 'publish')) {
998 $published = 'true';
999 } else {
1000 $published = 'false';
1001 }
1002
1003 $result = db_query($link,
1004 "INSERT INTO ttrss_user_entries
1005 (ref_id, owner_uid, feed_id, unread, last_read, marked,
1006 published, score, tag_cache, label_cache, uuid)
1007 VALUES ('$ref_id', '$owner_uid', '$feed', $unread,
1008 $last_read_qpart, $marked, $published, '$score', '', '', '')");
1009
1010 if (PUBSUBHUBBUB_HUB && $published == 'true') {
1011 $rss_link = get_self_url_prefix() .
1012 "/public.php?op=rss&id=-2&key=" .
1013 get_feed_access_key($link, -2, false, $owner_uid);
1014
1015 $p = new Publisher(PUBSUBHUBBUB_HUB);
1016
1017 $pubsub_result = $p->publish_update($rss_link);
1018 }
1019
1020 $result = db_query($link,
1021 "SELECT int_id FROM ttrss_user_entries WHERE
1022 ref_id = '$ref_id' AND owner_uid = '$owner_uid' AND
1023 feed_id = '$feed' LIMIT 1");
1024
1025 if (db_num_rows($result) == 1) {
1026 $entry_int_id = db_fetch_result($result, 0, "int_id");
1027 }
1028 } else {
1029 if ($debug_enabled) {
1030 _debug("update_rss_feed: user record FOUND");
1031 }
1032
1033 $entry_ref_id = db_fetch_result($result, 0, "ref_id");
1034 $entry_int_id = db_fetch_result($result, 0, "int_id");
1035 }
1036
1037 if ($debug_enabled) {
1038 _debug("update_rss_feed: RID: $entry_ref_id, IID: $entry_int_id");
1039 }
1040
1041 $post_needs_update = false;
1042 $update_insignificant = false;
1043
1044 if ($orig_num_comments != $num_comments) {
1045 $post_needs_update = true;
1046 $update_insignificant = true;
1047 }
1048
1049 if ($content_hash != $orig_content_hash) {
1050 $post_needs_update = true;
1051 $update_insignificant = false;
1052 }
1053
1054 if (db_escape_string($orig_title) != $entry_title) {
1055 $post_needs_update = true;
1056 $update_insignificant = false;
1057 }
1058
1059 // if post needs update, update it and mark all user entries
1060 // linking to this post as updated
1061 if ($post_needs_update) {
1062
1063 if (defined('DAEMON_EXTENDED_DEBUG')) {
1064 _debug("update_rss_feed: post $entry_guid needs update...");
1065 }
1066
1067// print "<!-- post $orig_title needs update : $post_needs_update -->";
1068
1069 db_query($link, "UPDATE ttrss_entries
1070 SET title = '$entry_title', content = '$entry_content',
1071 content_hash = '$content_hash',
1072 updated = '$entry_timestamp_fmt',
1073 num_comments = '$num_comments'
1074 WHERE id = '$ref_id'");
1075
1076 if (!$update_insignificant) {
1077 if ($mark_unread_on_update) {
1078 db_query($link, "UPDATE ttrss_user_entries
1079 SET last_read = null, unread = true WHERE ref_id = '$ref_id'");
1080 } else if ($update_on_checksum_change) {
1081 db_query($link, "UPDATE ttrss_user_entries
1082 SET last_read = null WHERE ref_id = '$ref_id'
1083 AND unread = false");
1084 }
1085 }
1086 }
1087 }
1088
1089 db_query($link, "COMMIT");
1090
1091 if ($debug_enabled) {
1092 _debug("update_rss_feed: assigning labels...");
1093 }
1094
1095 assign_article_to_labels($link, $entry_ref_id, $article_filters,
1096 $owner_uid);
1097
1098 if ($debug_enabled) {
1099 _debug("update_rss_feed: looking for enclosures...");
1100 }
1101
1102 // enclosures
1103
1104 $enclosures = array();
1105
1106 if ($use_simplepie) {
1107 $encs = $item->get_enclosures();
1108
1109 if (is_array($encs)) {
1110 foreach ($encs as $e) {
1111 $e_item = array(
1112 $e->link, $e->type, $e->length);
1113
1114 array_push($enclosures, $e_item);
1115 }
1116 }
1117
1118 } else {
1119 // <enclosure>
1120
1121 $e_ctr = $item['enclosure#'];
1122
1123 if ($e_ctr > 0) {
1124 $e_item = array($item['enclosure@url'],
1125 $item['enclosure@type'],
1126 $item['enclosure@length']);
1127
1128 array_push($enclosures, $e_item);
1129
1130 for ($i = 0; $i <= $e_ctr; $i++ ) {
1131
1132 if ($item["enclosure#$i@url"]) {
1133 $e_item = array($item["enclosure#$i@url"],
1134 $item["enclosure#$i@type"],
1135 $item["enclosure#$i@length"]);
1136 array_push($enclosures, $e_item);
1137 }
1138 }
1139 }
1140
1141 // <media:content>
1142 // can there be many of those? yes -fox
1143
1144 $m_ctr = $item['media']['content#'];
1145
1146 if ($m_ctr > 0) {
1147 $e_item = array($item['media']['content@url'],
1148 $item['media']['content@medium'],
1149 $item['media']['content@length']);
1150
1151 array_push($enclosures, $e_item);
1152
1153 for ($i = 0; $i <= $m_ctr; $i++ ) {
1154
1155 if ($item["media"]["content#$i@url"]) {
1156 $e_item = array($item["media"]["content#$i@url"],
1157 $item["media"]["content#$i@medium"],
1158 $item["media"]["content#$i@length"]);
1159 array_push($enclosures, $e_item);
1160 }
1161 }
1162
1163 }
1164 }
1165
1166
1167 if ($debug_enabled) {
1168 _debug("update_rss_feed: article enclosures:");
1169 print_r($enclosures);
1170 }
1171
1172 db_query($link, "BEGIN");
1173
1174 foreach ($enclosures as $enc) {
1175 $enc_url = db_escape_string($enc[0]);
1176 $enc_type = db_escape_string($enc[1]);
1177 $enc_dur = db_escape_string($enc[2]);
1178
1179 $result = db_query($link, "SELECT id FROM ttrss_enclosures
1180 WHERE content_url = '$enc_url' AND post_id = '$entry_ref_id'");
1181
1182 if (db_num_rows($result) == 0) {
1183 db_query($link, "INSERT INTO ttrss_enclosures
1184 (content_url, content_type, title, duration, post_id) VALUES
1185 ('$enc_url', '$enc_type', '', '$enc_dur', '$entry_ref_id')");
1186 }
1187 }
1188
1189 db_query($link, "COMMIT");
1190
1191 // check for manual tags (we have to do it here since they're loaded from filters)
1192
1193 foreach ($article_filters as $f) {
1194 if ($f[0] == "tag") {
1195
1196 $manual_tags = trim_array(explode(",", $f[1]));
1197
1198 foreach ($manual_tags as $tag) {
1199 if (tag_is_valid($tag)) {
1200 array_push($entry_tags, $tag);
1201 }
1202 }
1203 }
1204 }
1205
1206 // Skip boring tags
1207
1208 $boring_tags = trim_array(explode(",", mb_strtolower(get_pref($link,
1209 'BLACKLISTED_TAGS', $owner_uid, ''), 'utf-8')));
1210
1211 $filtered_tags = array();
1212 $tags_to_cache = array();
1213
1214 if ($entry_tags && is_array($entry_tags)) {
1215 foreach ($entry_tags as $tag) {
1216 if (array_search($tag, $boring_tags) === false) {
1217 array_push($filtered_tags, $tag);
1218 }
1219 }
1220 }
1221
1222 $filtered_tags = array_unique($filtered_tags);
1223
1224 if ($debug_enabled) {
1225 _debug("update_rss_feed: filtered article tags:");
1226 print_r($filtered_tags);
1227 }
1228
1229 // Save article tags in the database
1230
1231 if (count($filtered_tags) > 0) {
1232
1233 db_query($link, "BEGIN");
1234
1235 foreach ($filtered_tags as $tag) {
1236
1237 $tag = sanitize_tag($tag);
1238 $tag = db_escape_string($tag);
1239
1240 if (!tag_is_valid($tag)) continue;
1241
1242 $result = db_query($link, "SELECT id FROM ttrss_tags
1243 WHERE tag_name = '$tag' AND post_int_id = '$entry_int_id' AND
1244 owner_uid = '$owner_uid' LIMIT 1");
1245
1246 if ($result && db_num_rows($result) == 0) {
1247
1248 db_query($link, "INSERT INTO ttrss_tags
1249 (owner_uid,tag_name,post_int_id)
1250 VALUES ('$owner_uid','$tag', '$entry_int_id')");
1251 }
1252
1253 array_push($tags_to_cache, $tag);
1254 }
1255
1256 /* update the cache */
1257
1258 $tags_to_cache = array_unique($tags_to_cache);
1259
1260 $tags_str = db_escape_string(join(",", $tags_to_cache));
1261
1262 db_query($link, "UPDATE ttrss_user_entries
1263 SET tag_cache = '$tags_str' WHERE ref_id = '$entry_ref_id'
1264 AND owner_uid = $owner_uid");
1265
1266 db_query($link, "COMMIT");
1267 }
1268
1269 if ($debug_enabled) {
1270 _debug("update_rss_feed: article processed");
1271 }
1272 }
1273
1274 if (!$last_updated) {
1275 if ($debug_enabled) {
1276 _debug("update_rss_feed: new feed, catching it up...");
1277 }
1278 catchup_feed($link, $feed, false, $owner_uid);
1279 }
1280
1281 if ($debug_enabled) {
1282 _debug("purging feed...");
1283 }
1284
1285 purge_feed($link, $feed, 0, $debug_enabled);
1286
1287 db_query($link, "UPDATE ttrss_feeds
1288 SET last_updated = NOW(), last_error = '' WHERE id = '$feed'");
1289
1290// db_query($link, "COMMIT");
1291
1292 } else {
1293
1294 if ($use_simplepie) {
1295 $error_msg = mb_substr($rss->error(), 0, 250);
1296 } else {
1297 $error_msg = mb_substr(magpie_error(), 0, 250);
1298 }
1299
1300 if ($debug_enabled) {
1301 _debug("update_rss_feed: error fetching feed: $error_msg");
1302 }
1303
1304 $error_msg = db_escape_string($error_msg);
1305
1306 db_query($link,
1307 "UPDATE ttrss_feeds SET last_error = '$error_msg',
1308 last_updated = NOW() WHERE id = '$feed'");
1309 }
1310
1311 if ($use_simplepie) {
1312 unset($rss);
1313 }
1314
1315 if ($debug_enabled) {
1316 _debug("update_rss_feed: done");
1317 }
1318
1319 }
1320
3c696512
AD
1321 function cache_images($html, $site_url, $debug) {
1322 $cache_dir = CACHE_DIR . "/images";
1323
1324 libxml_use_internal_errors(true);
1325
1326 $charset_hack = '<head>
1327 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
1328 </head>';
1329
1330 $doc = new DOMDocument();
1331 $doc->loadHTML($charset_hack . $html);
1332 $xpath = new DOMXPath($doc);
1333
1334 $entries = $xpath->query('(//img[@src])');
1335
1336 foreach ($entries as $entry) {
1337 if ($entry->hasAttribute('src')) {
1338 $src = rewrite_relative_url($site_url, $entry->getAttribute('src'));
1339
1340 $local_filename = CACHE_DIR . "/images/" . sha1($src) . ".png";
1341
1342 if ($debug) _debug("cache_images: downloading: $src to $local_filename");
1343
1344 if (!file_exists($local_filename)) {
1345 $file_content = fetch_file_contents($src);
1346
b8379e69 1347 if ($file_content && strlen($file_content) > 1024) {
3c696512
AD
1348 file_put_contents($local_filename, $file_content);
1349 }
1350 }
1351
1352 if (file_exists($local_filename)) {
1353 $entry->setAttribute('src', SELF_URL_PATH . '/image.php?url=' .
487f0750 1354 base64_encode($src));
3c696512
AD
1355 }
1356 }
1357 }
1358
1359 $node = $doc->getElementsByTagName('body')->item(0);
1360
7b8ff151 1361 return $doc->saveXML($node, LIBXML_NOEMPTYTAG);
3c696512
AD
1362 }
1363
1364 function expire_cached_files($debug) {
1365 foreach (array("magpie", "simplepie", "images") as $dir) {
1366 $cache_dir = CACHE_DIR . "/$dir";
2c08214a 1367
3c696512 1368 if ($debug) _debug("Expiring $cache_dir");
2c08214a 1369
3c696512
AD
1370 $num_deleted = 0;
1371
1372 if (is_writable($cache_dir)) {
1373 $files = glob("$cache_dir/*");
1374
2ab20c31
AD
1375 if ($files)
1376 foreach ($files as $file) {
1377 if (time() - filemtime($file) > 86400*7) {
1378 unlink($file);
3c696512 1379
2ab20c31
AD
1380 ++$num_deleted;
1381 }
3c696512
AD
1382 }
1383 }
3c696512
AD
1384
1385 if ($debug) _debug("Removed $num_deleted files.");
1386 }
1387 }
2c08214a 1388
a3e0bdcf
AD
1389 /**
1390 * Source: http://www.php.net/manual/en/function.parse-url.php#104527
1391 * Returns the url query as associative array
1392 *
1393 * @param string query
1394 * @return array params
1395 */
1396 function convertUrlQuery($query) {
1397 $queryParts = explode('&', $query);
1398
1399 $params = array();
1400
1401 foreach ($queryParts as $param) {
1402 $item = explode('=', $param);
1403 $params[$item[0]] = $item[1];
1404 }
1405
1406 return $params;
1407 }
2c08214a 1408?>