4 * Laconica - a distributed open-source microblogging tool
5 * Copyright (C) 2009, Control Yourself, Inc.
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 # Abort if called from a web server
22 if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
23 print "This script must be run from the command line\n";
27 ini_set("max_execution_time", "0");
28 ini_set("max_input_time", "0");
30 mb_internal_encoding('UTF-8');
32 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
33 define('LACONICA', true);
35 // Preset the server at the command line
37 $server = ($argc > 2) ? $argv[2] : null;
38 $path = ($argc > 3) ? $argv[3] : null;
40 require_once(INSTALLDIR . '/lib/common.php');
44 $user->whereAdd('id > ' . $argv[1]);
48 while ($user->fetch()) {
50 $inbox_entry = new Notice_inbox();
51 $inbox_entry->user_id = $user->id;
52 $inbox_entry->orderBy('created DESC');
53 $inbox_entry->limit(1000, 1);
57 if ($inbox_entry->find(true)) {
58 $id = $inbox_entry->notice_id;
68 $start = microtime(true);
70 $old_inbox = new Notice_inbox();
71 $cnt = $old_inbox->query('DELETE from notice_inbox WHERE user_id = ' . $user->id . ' AND notice_id < ' . $id);
75 print "Deleted $cnt notices for $user->nickname ($user->id).\n";
77 $finish = microtime(true);
79 $delay = 3.0 * ($finish - $start);
81 print "Delaying $delay seconds...";
83 // Wait to let slaves catch up
85 usleep($delay * 1000000);