#!/usr/bin/env php . */ define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); $shortoptions = 'i::n::y'; $longoptions = array('id=', 'nickname=', 'yes', 'dry-run', 'all'); $helptext = <<getProfile(); } else { print "You must provide either an ID or a nickname.\n\n"; show_help(); exit(1); } if (!have_option('y', 'yes') && !have_option('--dry-run')) { print "About to PERMANENTLY remove geolocation data from user '{$profile->nickname}' ({$profile->id})'s notices. Are you sure? [y/N] "; $response = fgets(STDIN); if (strtolower(trim($response)) != 'y') { print "Aborting.\n"; exit(0); } } // @fixme for a very prolific poster this could be too many. $notice = new Notice(); $notice->profile_id = $profile->id; 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) { print " $notice->N found.\n"; while ($notice->fetch()) { print "notice id $notice->id "; if (have_option('v') || have_option('--verbose')) { print "({$notice->lat},{$notice->lon}) "; if ($notice->location_ns) { print "ns {$notice->location_ns} id {$notice->location_id} "; } } if (have_option('--dry-run')) { // sucka echo "(skipped)"; } else { // note: setting fields to null and calling update() doesn't save the nulled fields $orig = clone($notice); $update = clone($notice); // In theory we could hit a chunk of notices at once in the UPDATE, // but we're going to have to decache them individually anyway and // it doesn't hurt to make sure we don't hold up replication with // what might be a very slow single UPDATE. $query = sprintf('UPDATE notice ' . 'SET lat=NULL,lon=NULL,location_ns=NULL,location_id=NULL ' . 'WHERE id=%d', $notice->id); $ok = $update->query($query); if ($ok) { // And now we decache him manually, as query() doesn't know what we're doing... $orig->decache(); echo "(removed)"; } else { echo "(unchanged?)"; } } print "\n"; } } else { print " none found.\n"; } print "DONE.\n";