summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-04-09 11:36:02 -0700
committerBrion Vibber <brion@pobox.com>2010-04-09 11:36:02 -0700
commit9cfc5c0f5ad248a8b594f95a8bcbe5adfdbf6925 (patch)
tree58d641702ff5a35aa6208821a2514484aaf82673 /scripts
parentf5b00404d8dc6d10c0f2a8a7d8858cf225303e8d (diff)
Fix for strip_geo's decaching; also added --all option to run over all notices by given profile to help in fixing up cache inconsistencies
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/strip_geo.php16
1 files changed, 11 insertions, 5 deletions
diff --git a/scripts/strip_geo.php b/scripts/strip_geo.php
index 010fb31f5..b3f27be61 100755
--- a/scripts/strip_geo.php
+++ b/scripts/strip_geo.php
@@ -21,7 +21,7 @@
define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
$shortoptions = 'i::n::y';
-$longoptions = array('id=', 'nickname=', 'yes', 'dry-run');
+$longoptions = array('id=', 'nickname=', 'yes', 'dry-run', 'all');
$helptext = <<<END_OF_HELP
strip_geo.php [options]
@@ -31,6 +31,8 @@ Removes geolocation info from the given user's notices.
-n --nickname nickname of the user
-y --yes do not wait for confirmation
--dry-run list affected notices without deleting
+ --all run over and decache all messages, even if they don't
+ have geo data now (helps to fix cache bugs)
END_OF_HELP;
@@ -67,10 +69,14 @@ if (!have_option('y', 'yes') && !have_option('--dry-run')) {
}
// @fixme for a very prolific poster this could be too many.
-print "Finding notices with geolocation data...";
$notice = new Notice();
$notice->profile_id = $profile->id;
-$notice->whereAdd("lat != ''");
+if (have_option('--all')) {
+ print "Finding all notices by $profile->nickname...";
+} else {
+ print "Finding notices by $profile->nickname with geolocation data...";
+ $notice->whereAdd("lat != ''");
+}
$notice->find();
if ($notice->N) {
@@ -101,10 +107,10 @@ if ($notice->N) {
$ok = $update->query($query);
if ($ok) {
// And now we decache him manually, as query() doesn't know what we're doing...
- $orig->blow();
+ $orig->decache();
echo "(removed)";
} else {
- echo "(failed?)";
+ echo "(unchanged?)";
}
}
print "\n";