]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Script to delete bad OStatus hub URIs (until we have better error handling for broken...
authorZach Copley <zach@status.net>
Tue, 12 Apr 2011 09:29:02 +0000 (02:29 -0700)
committerZach Copley <zach@status.net>
Tue, 12 Apr 2011 09:29:02 +0000 (02:29 -0700)
plugins/OStatus/scripts/rm_bad_feedsubs.php [new file with mode: 0644]

diff --git a/plugins/OStatus/scripts/rm_bad_feedsubs.php b/plugins/OStatus/scripts/rm_bad_feedsubs.php
new file mode 100644 (file)
index 0000000..ce1698a
--- /dev/null
@@ -0,0 +1,83 @@
+#!/usr/bin/env php
+<?php
+/*
+ * StatusNet - a distributed open-source microblogging tool
+ * Copyright (C) 2010 StatusNet, Inc.
+ *
+ * This program 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.
+ *
+ * This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+/* 
+ *  Run this from INSTALLDIR/plugins/OStatus/scripts
+ */
+
+define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..'));
+
+
+$shortoptions = 'd';
+$longoptions = array('dry-run');
+
+$helptext = <<<END_OF_HELP
+rm_bad_feedsubs.php [options]
+Deletes feedsub records that are in the inconsistent state of "subscribe"
+and are older than one hour. If the hub hasn't answered back in an hour
+the hub is probably either broken or doesn't exist.'
+
+      Options:
+
+    -d --dry-run look but don't mess with it
+
+
+END_OF_HELP;
+
+require_once INSTALLDIR . '/scripts/commandline.inc';
+
+$dry = false;
+
+if (have_option('d') || have_option('dry-run')) {
+    $dry = true;
+}
+
+echo "Looking for feed subscriptions with dirty no good huburis...\n";
+
+$feedsub = new FeedSub();
+$feedsub->sub_state = 'subscribe';
+$feedsub->whereAdd('created < DATE_SUB(NOW(), INTERVAL 1 HOUR)');
+$feedsub->find();
+$cnt = 0;
+
+while ($feedsub->fetch()) {
+    echo "----------------------------------------------------------------------------------------\n";
+    echo  '           feed: '
+        . $feedsub->uri . "\n"
+        . '        hub uri: '
+        . $feedsub->huburi ."\n"
+        . ' subscribe date: '
+        . date('r', strtotime($feedsub->created)) . "\n";
+
+    if (!$dry) {
+        $feedsub->delete();
+        echo "                 (DELETED)\n";
+    } else {
+        echo "                 (WOULD BE DELETED)\n";
+    }
+    echo "----------------------------------------------------------------------------------------\n";
+    $cnt++;
+}
+if ($cnt == 0) {
+    echo "None found.\n";
+} else {
+    echo "Deleted $cnt bogus hub URIs.\n";
+}
+echo "Done.\n";