]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - scripts/triminboxes.php
schema changes for user support of designs
[quix0rs-gnu-social.git] / scripts / triminboxes.php
1 #!/usr/bin/env php
2 <?php
3 /*
4  * Laconica - a distributed open-source microblogging tool
5  * Copyright (C) 2009, Control Yourself, 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 # 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";
24     exit(1);
25 }
26
27 ini_set("max_execution_time", "0");
28 ini_set("max_input_time", "0");
29 set_time_limit(0);
30 mb_internal_encoding('UTF-8');
31
32 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
33 define('LACONICA', true);
34
35 require_once(INSTALLDIR . '/lib/common.php');
36
37 $user = new User();
38 if ($argc > 1) {
39     $user->whereAdd('id > ' . $argv[1]);
40 }
41 $cnt = $user->find();
42
43 while ($user->fetch()) {
44
45     $inbox_entry = new Notice_inbox();
46     $inbox_entry->user_id = $user->id;
47     $inbox_entry->orderBy('created DESC');
48     $inbox_entry->limit(1000, 1);
49
50     $id = null;
51
52     if ($inbox_entry->find(true)) {
53         $id = $inbox_entry->notice_id;
54     }
55
56     $inbox_entry->free();
57     unset($inbox_entry);
58
59     if (is_null($id)) {
60         continue;
61     }
62
63     $start = microtime(true);
64
65     $old_inbox = new Notice_inbox();
66     $cnt = $old_inbox->query('DELETE from notice_inbox WHERE user_id = ' . $user->id . ' AND notice_id < ' . $id);
67     $old_inbox->free();
68     unset($old_inbox);
69
70     print "Deleted $cnt notices for $user->nickname ($user->id).\n";
71
72     $finish = microtime(true);
73
74     $delay = 3.0 * ($finish - $start);
75
76     print "Delaying $delay seconds...";
77     
78     // Wait to let slaves catch up
79
80     usleep($delay * 1000000);
81     
82     print "DONE.\n";
83 }