]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/FeedPoller/scripts/pollfeed.php
Groups can now be server-specific with !osm@gnusocial.de vs. !osm@sn.jonkman.ca
[quix0rs-gnu-social.git] / plugins / FeedPoller / scripts / pollfeed.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 $helptext = <<<END_OF_HELP
24 pollfeed.php feeduri
25
26 Poll the feed, assuming it has sub_state 'nohub'.
27
28 END_OF_HELP;
29
30 require_once INSTALLDIR.'/scripts/commandline.inc';
31
32 require_once(__DIR__ . '/../lib/feedpoll.php');
33
34 if (empty($args[0]) || !Validate::uri($args[0])) {
35     echo "$helptext\n";
36     exit(1);
37 }
38
39 $uri = $args[0];
40
41
42 $feedsub = FeedSub::getKV('uri', $uri);
43
44 if (!$feedsub instanceof FeedSub) {
45     echo "No FeedSub feed known for URI $uri\n";
46     exit(1);
47 }
48
49 if ($feedsub->sub_state != 'nohub') {
50     echo "Feed is a WebSub feed, so we will not poll it.\n";
51     exit(1);
52 }
53
54 showSub($feedsub);
55
56 try {
57     FeedPoll::checkUpdates($feedsub);
58 } catch (Exception $e) {
59     echo "Could not check updates for feed: ".$e->getMessage();
60     echo $e->getTraceAsString();
61     exit(1);
62 }
63
64 function showSub(FeedSub $sub)
65 {
66     echo "  Subscription state: $sub->sub_state\n";
67     echo "  Signature secret: $sub->secret\n";
68     echo "  Sub start date: $sub->sub_start\n";
69     echo "  Record created: $sub->created\n";
70     echo "  Record modified: $sub->modified\n";
71 }