]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OStatus/scripts/testfeed.php
Ticket #2242: fix reading of inline XHTML content in Atom feeds for OStatus input.
[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';
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::staticGet('topic', $feedurl);
49 if (!$sub) {
50     print "Feed $feedurl is not subscribed.\n";
51     exit(1);
52 }
53
54 $xml = file_get_contents($feedurl);
55 if ($xml === false) {
56     print "Bad fetch.\n";
57     exit(1);
58 }
59
60 $feed = new DOMDocument();
61 if (!$feed->loadXML($xml)) {
62     print "Bad XML.\n";
63     exit(1);
64 }
65
66 if ($skip || $count) {
67     $entries = $feed->getElementsByTagNameNS(ActivityUtils::ATOM, 'entry');
68     $remove = array();
69     for ($i = 0; $i < $skip && $i < $entries->length; $i++) {
70         $item = $entries->item($i);
71         if ($item) {
72             $remove[] = $item;
73         }
74     }
75     if ($count) {
76         for ($i = $skip + $count; $i < $entries->length; $i++) {
77             $item = $entries->item($i);
78             if ($item) {
79                 $remove[] = $item;
80             }
81         }
82     }
83     foreach ($remove as $item) {
84         $item->parentNode->removeChild($item);
85     }
86 }
87
88 Event::handle('StartFeedSubReceive', array($sub, $feed));
89