]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - scripts/triminboxes.php
* L10n updates: consistent puctuation
[quix0rs-gnu-social.git] / scripts / triminboxes.php
1 #!/usr/bin/env php
2 <?php
3 /*
4  * StatusNet - the distributed open-source microblogging tool
5  * Copyright (C) 2009, StatusNet, Inc.
6  *
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.
11  *
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.
16  *
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/>.
19  */
20
21 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
22
23 $shortoptions = 'u::';
24 $longoptions = array('start-user-id=', 'sleep-time=');
25
26 $helptext = <<<END_OF_TRIM_HELP
27 Batch script for trimming notice inboxes to a reasonable size.
28
29     -u <id>
30     --start-user-id=<id>   User ID to start after. Default is all.
31     --sleep-time=<integer> Amount of time to wait (in seconds) between trims. Default is zero.
32
33 END_OF_TRIM_HELP;
34
35 require_once INSTALLDIR.'/scripts/commandline.inc';
36
37 $id = null;
38 $sleep_time = 0;
39
40 if (have_option('u')) {
41     $id = get_option_value('u');
42 } else if (have_option('--start-user-id')) {
43     $id = get_option_value('--start-user-id');
44 } else {
45     $id = null;
46 }
47
48 if (have_option('--sleep-time')) {
49     $sleep_time = intval(get_option_value('--sleep-time'));
50 }
51
52 $quiet = have_option('q') || have_option('--quiet');
53
54 $user = new User();
55
56 if (!empty($id)) {
57     $user->whereAdd('id > ' . $id);
58 }
59
60 $cnt = $user->find();
61
62 while ($user->fetch()) {
63     if (!$quiet) {
64         print "Trimming inbox for user $user->id";
65     }
66     $count = Notice_inbox::gc($user->id);
67     if ($count) {
68         if (!$quiet) {
69             print ": $count trimmed...";
70         }
71         sleep($sleep_time);
72     }
73     if (!$quiet) {
74         print "\n";
75     }
76 }