summaryrefslogtreecommitdiff
path: root/scripts/triminboxes.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-06-22 16:34:56 -0700
committerEvan Prodromou <evan@controlyourself.ca>2009-06-22 16:34:56 -0700
commit0582381c6631cb8b8e914cebbcf2e387b947c83f (patch)
tree620e84f15a7316d1d0272c877a2908fd9397bca3 /scripts/triminboxes.php
parent1951246d67dfe41f2dfa722d1487baedf74c3081 (diff)
triminboxes.php uses commandline.inc
Diffstat (limited to 'scripts/triminboxes.php')
-rw-r--r--scripts/triminboxes.php40
1 files changed, 23 insertions, 17 deletions
diff --git a/scripts/triminboxes.php b/scripts/triminboxes.php
index 0d545b326..5575dd4fc 100644
--- a/scripts/triminboxes.php
+++ b/scripts/triminboxes.php
@@ -18,31 +18,37 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-# Abort if called from a web server
-if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
- print "This script must be run from the command line\n";
- exit(1);
-}
+define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
-ini_set("max_execution_time", "0");
-ini_set("max_input_time", "0");
-set_time_limit(0);
-mb_internal_encoding('UTF-8');
+$shortoptions = 'u::';
+$longoptions = array('start-user-id::');
-define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
-define('LACONICA', true);
+$helptext = <<<END_OF_TRIM_HELP
+Batch script for trimming notice inboxes to a reasonable size.
-// Preset the server at the command line
+ -u <id>
+ --start-user-id=<id> User ID to start after. Default is all.
-$server = ($argc > 2) ? $argv[2] : null;
-$path = ($argc > 3) ? $argv[3] : null;
+END_OF_TRIM_HELP;
-require_once(INSTALLDIR . '/lib/common.php');
+require_once INSTALLDIR.'/scripts/commandline.inc';
+
+$id = null;
+
+if (have_option('-u')) {
+ $id = get_option_value('-u');
+} else if (have_option('--start-user-id')) {
+ $id = get_option_value('--start-user-id');
+} else {
+ $id = null;
+}
$user = new User();
-if ($argc > 1) {
- $user->whereAdd('id > ' . $argv[1]);
+
+if (!empty($id)) {
+ $user->whereAdd('id > ' . $id);
}
+
$cnt = $user->find();
while ($user->fetch()) {