]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
triminboxes.php uses commandline.inc
authorEvan Prodromou <evan@controlyourself.ca>
Mon, 22 Jun 2009 23:34:56 +0000 (16:34 -0700)
committerEvan Prodromou <evan@controlyourself.ca>
Mon, 22 Jun 2009 23:34:56 +0000 (16:34 -0700)
scripts/triminboxes.php

index 0d545b3263f5014c78c4ef75056abb14ff08f182..5575dd4fc1251e0def93c554bd7b66ba3cc47a5f 100644 (file)
  * 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()) {