12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
- define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..'));
- $longoptions = array('unsub');
- $shortoptions = 'u';
- $helptext = <<<END_OF_HELP
- resub-feed.php [options] http://example.com/atom-feed-url
- Reinitialize the WebSub subscription for the given feed. This may help get
- things restarted if we and the hub have gotten our states out of sync.
- Options:
- -u --unsub Unsubscribe instead of subscribing.
- END_OF_HELP;
- require_once INSTALLDIR.'/scripts/commandline.inc';
- $validate = new Validate();
- if (empty($args[0]) || !$validate->uri($args[0])) {
- print "$helptext";
- exit(1);
- }
- $feedurl = $args[0];
- $sub = FeedSub::getKV('uri', $feedurl);
- if (!$sub) {
- print "Feed $feedurl is not subscribed.\n";
- exit(1);
- }
- print "Old state:\n";
- showSub($sub);
- try {
- echo "\n";
- if (have_option('u') || have_option('--unsub')) {
- echo "Pinging hub {$sub->huburi} with unsubscription for {$sub->uri}\n";
- $sub->unsubscribe();
- } else {
- echo "Pinging hub {$sub->huburi} with new subscription for {$sub->uri}\n";
- $sub->subscribe();
- }
- echo "ok\n";
- } catch (Exception $e) {
- echo 'Could not confirm. '.get_class($e).': '.$e->getMessage()."\n";
- }
- $sub2 = FeedSub::getKV('uri', $feedurl);
- print "\n";
- print "New state:\n";
- showSub($sub2);
- function showSub($sub)
- {
- print " Subscription state: $sub->sub_state\n";
- print " Signature secret: $sub->secret\n";
- print " Sub start date: $sub->sub_start\n";
- print " Sub end date: $sub->sub_end\n";
- print " Sub lease remaining: {$sub->getLeaseRemaining()}\n";
- print " Record created: $sub->created\n";
- print " Record modified: $sub->modified\n";
- }
|