]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OStatus/scripts/testfeed.php
Merge remote-tracking branch 'upstream/master'
[quix0rs-gnu-social.git] / plugins / OStatus / scripts / testfeed.php
1 #!/usr/bin/env php
2 <?php
3 /*
4  * StatusNet - a distributed open-source microblogging tool
5  * Copyright (C) 2010, StatusNet, Inc.
6  *
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.
11  *
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.
16  *
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/>.
19  */
20
21 define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..'));
22
23 $longoptions = array('skip=', 'count=');
24
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.
29
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.
32
33
34 END_OF_HELP;
35
36 require_once INSTALLDIR.'/scripts/commandline.inc.php';
37
38 if (empty($args[0]) || !Validate::uri($args[0])) {
39     print "$helptext";
40     exit(1);
41 }
42
43 $feedurl = $args[0];
44 $skip = have_option('skip') ? intval(get_option_value('skip')) : 0;
45 $count = have_option('count') ? intval(get_option_value('count')) : 0;
46
47
48 $sub = FeedSub::getKV('uri', $feedurl);
49 if (!$sub) {
50     print "Feed $feedurl is not subscribed.\n";
51     exit(1);
52 }
53
54 // Fetch the URL
55 try {
56     $xml = HTTPClient::quickGet($feedurl, 'text/html,application/xhtml+xml');
57 } catch (Exception $e) {
58     echo sprintf("Could not fetch feedurl %s (%d).\n", $e->getMessage(), $e->getCode());
59     exit(1);
60 }
61
62 $feed = new DOMDocument();
63 if (!$feed->loadXML($xml)) {
64     print "Bad XML.\n";
65     exit(1);
66 }
67
68 if ($skip || $count) {
69     $entries = $feed->getElementsByTagNameNS(ActivityUtils::ATOM, 'entry');
70     $remove = array();
71     for ($i = 0; $i < $skip && $i < $entries->length; $i++) {
72         $item = $entries->item($i);
73         if ($item) {
74             $remove[] = $item;
75         }
76     }
77     if ($count) {
78         for ($i = $skip + $count; $i < $entries->length; $i++) {
79             $item = $entries->item($i);
80             if ($item) {
81                 $remove[] = $item;
82             }
83         }
84     }
85     foreach ($remove as $item) {
86         $item->parentNode->removeChild($item);
87     }
88 }
89
90 echo "Calling event StartFeedSubReceive\n";
91 Event::handle('StartFeedSubReceive', array($sub, $feed));