| 
									
										
										
										
											2010-04-22 06:14:40 +02:00
										 |  |  | #!/usr/bin/env php
 | 
					
						
							|  |  |  | <?php | 
					
						
							| 
									
										
										
										
											2019-09-18 17:15:00 +03:00
										 |  |  | // This file is part of GNU social - https://www.gnu.org/software/social
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social is free software: you can redistribute it and/or modify
 | 
					
						
							|  |  |  | // it under the terms of the GNU Affero General Public License as published by
 | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or
 | 
					
						
							|  |  |  | // (at your option) any later version.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social is distributed in the hope that it will be useful,
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
					
						
							|  |  |  | // GNU Affero General Public License for more details.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU Affero General Public License
 | 
					
						
							|  |  |  | // along with GNU social.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * @package   GNUsocial | 
					
						
							|  |  |  |  * @copyright 2010 StatusNet, Inc. | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							| 
									
										
										
										
											2010-04-22 06:14:40 +02:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-18 17:15:00 +03:00
										 |  |  | define('INSTALLDIR', dirname(__DIR__, 3)); | 
					
						
							|  |  |  | define('PUBLICDIR', INSTALLDIR . DIRECTORY_SEPARATOR . 'public'); | 
					
						
							| 
									
										
										
										
											2010-04-22 06:14:40 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-02 12:49:37 -08:00
										 |  |  | $longoptions = array('unsub'); | 
					
						
							|  |  |  | $shortoptions = 'u'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-22 06:14:40 +02:00
										 |  |  | $helptext = <<<END_OF_HELP | 
					
						
							|  |  |  | resub-feed.php [options] http://example.com/atom-feed-url | 
					
						
							| 
									
										
										
										
											2017-05-01 11:04:27 +02:00
										 |  |  | Reinitialize the WebSub subscription for the given feed. This may help get | 
					
						
							| 
									
										
										
										
											2010-04-22 06:14:40 +02:00
										 |  |  | things restarted if we and the hub have gotten our states out of sync. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-02 12:49:37 -08:00
										 |  |  | Options: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    -u --unsub  Unsubscribe instead of subscribing. | 
					
						
							| 
									
										
										
										
											2010-04-22 06:14:40 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | END_OF_HELP; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | require_once INSTALLDIR.'/scripts/commandline.inc'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-08 10:33:41 +01:00
										 |  |  | $validate = new Validate(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if (empty($args[0]) || !$validate->uri($args[0])) { | 
					
						
							| 
									
										
										
										
											2010-04-22 06:14:40 +02:00
										 |  |  |     print "$helptext"; | 
					
						
							|  |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | $feedurl = $args[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-18 13:04:58 +02:00
										 |  |  | $sub = FeedSub::getKV('uri', $feedurl); | 
					
						
							| 
									
										
										
										
											2010-04-22 06:14:40 +02:00
										 |  |  | if (!$sub) { | 
					
						
							|  |  |  |     print "Feed $feedurl is not subscribed.\n"; | 
					
						
							|  |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | print "Old state:\n"; | 
					
						
							|  |  |  | showSub($sub); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-06 15:40:57 +02:00
										 |  |  | 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"; | 
					
						
							| 
									
										
										
										
											2010-04-22 06:14:40 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-18 13:04:58 +02:00
										 |  |  | $sub2 = FeedSub::getKV('uri', $feedurl); | 
					
						
							| 
									
										
										
										
											2010-04-22 06:14:40 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 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"; | 
					
						
							| 
									
										
										
										
											2016-01-13 20:01:00 +01:00
										 |  |  |     print "  Sub end date: $sub->sub_end\n"; | 
					
						
							|  |  |  |     print "  Sub lease remaining: {$sub->getLeaseRemaining()}\n"; | 
					
						
							| 
									
										
										
										
											2010-04-22 06:14:40 +02:00
										 |  |  |     print "  Record created: $sub->created\n"; | 
					
						
							|  |  |  |     print "  Record modified: $sub->modified\n"; | 
					
						
							|  |  |  | } |