]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OStatus/scripts/resub-feed.php
Merge branch '1.0.x' into testing
[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';
38
39 if (empty($args[0]) || !Validate::uri($args[0])) {
40     print "$helptext";
41     exit(1);
42 }
43
44 $feedurl = $args[0];
45
46
47 $sub = FeedSub::staticGet('uri', $feedurl);
48 if (!$sub) {
49     print "Feed $feedurl is not subscribed.\n";
50     exit(1);
51 }
52
53 print "Old state:\n";
54 showSub($sub);
55
56 print "\n";
57
58 if (have_option('u') || have_option('--unsub')) {
59     print "Pinging hub $sub->huburi with unsubscription for $sub->uri\n";
60     $ok = $sub->unsubscribe();
61 } else {
62     print "Pinging hub $sub->huburi with new subscription for $sub->uri\n";
63     $ok = $sub->subscribe();
64 }
65
66 if ($ok) {
67     print "ok\n";
68 } else {
69     print "Could not confirm.\n";
70 }
71
72 $sub2 = FeedSub::staticGet('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 }