4 * StatusNet - a distributed open-source microblogging tool
5 * Copyright (C) 2010, StatusNet, Inc.
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.
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.
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/>.
21 define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..'));
23 $longoptions = array('unsub');
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.
33 -u --unsub Unsubscribe instead of subscribing.
37 require_once INSTALLDIR.'/scripts/commandline.inc';
39 $validate = new Validate();
41 if (empty($args[0]) || !$validate->uri($args[0])) {
49 $sub = FeedSub::getKV('uri', $feedurl);
51 print "Feed $feedurl is not subscribed.\n";
60 if (have_option('u') || have_option('--unsub')) {
61 echo "Pinging hub {$sub->huburi} with unsubscription for {$sub->uri}\n";
64 echo "Pinging hub {$sub->huburi} with new subscription for {$sub->uri}\n";
68 } catch (Exception $e) {
69 echo 'Could not confirm. '.get_class($e).': '.$e->getMessage()."\n";
72 $sub2 = FeedSub::getKV('uri', $feedurl);
78 function showSub($sub)
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";