4 * StatusNet - a distributed open-source microblogging tool
5 * Copyright (C) 2010, StatusNet, Inc.
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..'));
23 $longoptions = array('skip=', 'count=');
25 $helptext = <<<END_OF_HELP
26 testfeed.php [options] http://example.com/atom-feed-url
27 Pull an Atom feed and run items in it as though they were live PuSH updates.
28 Mainly intended for testing funky feed formats.
30 --skip=N Ignore the first N items in the feed.
31 --count=N Only process up to N items from the feed, after skipping.
36 require_once INSTALLDIR.'/scripts/commandline.inc';
38 if (empty($args[0]) || !Validate::uri($args[0])) {
44 $skip = have_option('skip') ? intval(get_option_value('skip')) : 0;
45 $count = have_option('count') ? intval(get_option_value('count')) : 0;
48 $sub = FeedSub::staticGet('topic', $feedurl);
50 print "Feed $feedurl is not subscribed.\n";
54 $xml = file_get_contents($feedurl);
60 $feed = new DOMDocument();
61 if (!$feed->loadXML($xml)) {
66 if ($skip || $count) {
67 $entries = $feed->getElementsByTagNameNS(ActivityUtils::ATOM, 'entry');
69 for ($i = 0; $i < $skip && $i < $entries->length; $i++) {
70 $item = $entries->item($i);
76 for ($i = $skip + $count; $i < $entries->length; $i++) {
77 $item = $entries->item($i);
83 foreach ($remove as $item) {
84 $item->parentNode->removeChild($item);
88 Event::handle('StartFeedSubReceive', array($sub, $feed));