]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OStatus/scripts/resub-feed.php
Merge remote-tracking branch 'upstream/master' into social-master
[quix0rs-gnu-social.git] / plugins / OStatus / scripts / resub-feed.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('unsub');
24 $shortoptions = 'u';
25
26 $helptext = <<<END_OF_HELP
27 resub-feed.php [options] http://example.com/atom-feed-url
28 Reinitialize the PuSH subscription for the given feed. This may help get
29 things restarted if we and the hub have gotten our states out of sync.
30
31 Options:
32
33    -u --unsub  Unsubscribe instead of subscribing.
34
35 END_OF_HELP;
36
37 require_once INSTALLDIR.'/scripts/commandline.inc.php';
38
39 $validate = new Validate();
40
41 if (empty($args[0]) || !$validate->uri($args[0])) {
42     print "$helptext";
43     exit(1);
44 }
45
46 $feedurl = $args[0];
47
48
49 $sub = FeedSub::getKV('uri', $feedurl);
50 if (!$sub) {
51     print "Feed $feedurl is not subscribed.\n";
52     exit(1);
53 }
54
55 print "Old state:\n";
56 showSub($sub);
57
58 try {
59     echo "\n";
60     if (have_option('u') || have_option('--unsub')) {
61         echo "Pinging hub {$sub->huburi} with unsubscription for {$sub->uri}\n";
62         $sub->unsubscribe();
63     } else {
64         echo "Pinging hub {$sub->huburi} with new subscription for {$sub->uri}\n";
65         $sub->subscribe();
66     }
67     echo "ok\n";
68 } catch (Exception $e) {
69     echo 'Could not confirm. '.get_class($e).': '.$e->getMessage()."\n";
70 }
71
72 $sub2 = FeedSub::getKV('uri', $feedurl);
73
74 print "\n";
75 print "New state:\n";
76 showSub($sub2);
77
78 function showSub($sub)
79 {
80     print "  Subscription state: $sub->sub_state\n";
81     print "  Verify token: $sub->verify_token\n";
82     print "  Signature secret: $sub->secret\n";
83     print "  Sub start date: $sub->sub_start\n";
84     print "  Record created: $sub->created\n";
85     print "  Record modified: $sub->modified\n";
86 }