]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/ActivitySpam/scripts/silencespammer.php
Script to silence spammers
[quix0rs-gnu-social.git] / plugins / ActivitySpam / scripts / silencespammer.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2013 StatusNet, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..'));
21
22 $shortoptions = 'i:n:a';
23 $longoptions = array('id=', 'nickname=', 'all');
24
25 $helptext = <<<END_OF_SILENCESPAMMER_HELP
26 silencespammer.php [options]
27 Users who post a lot of spam get silenced
28
29   -i --id       ID of user to test and silence
30   -n --nickname nickname of the user to test and silence
31   -a --all      All users
32 END_OF_SILENCESPAMMER_HELP;
33
34 require_once INSTALLDIR.'/scripts/commandline.inc';
35
36 function testAllUsers($filter, $minimum, $percent) {
37     $found = false;
38     $offset = 0;
39     $limit  = 1000;
40
41     do {
42
43         $user = new User();
44         $user->orderBy('created');
45         $user->limit($offset, $limit);
46
47         $found = $user->find();
48
49         if ($found) {
50             while ($user->fetch()) {
51                 try {
52                     silencespammer($filter, $user, $minimum, $percent);
53                 } catch (Exception $e) {
54                     printfnq("ERROR testing user %s\n: %s", $user->nickname, $e->getMessage());
55                 }
56             }
57             $offset += $found;
58         }
59
60     } while ($found > 0);
61 }
62
63 function silencespammer($filter, $user, $minimum, $percent) {
64
65     printfnq("Testing user %s\n", $user->nickname);
66
67     $profile = Profile::staticGet('id', $user->id);
68
69     $cnt = $profile->noticeCount();
70
71     if ($cnt < $minimum) {
72         printfnq("Only %d notices posted (minimum %d); skipping\n", $cnt, $minimum);
73     }   
74
75     $ss = new Spam_score();
76
77     $ss->query(sprintf("SELECT count(*) as spam_count ".
78                        "FROM notice join spam_score on notice.id = spam_score.notice_id ".
79                        "WHERE notice.profile_id = %d", $profile->id));
80
81     while ($ss->fetch()) {
82         $spam_count = $ss->spam_count;
83     }                 
84
85     $spam_percent = ($spam_count * 100 / $cnt);
86
87     if ($spam_percent > $percent) {
88         printfnq("Silencing user %d (%0.2f%% spam)\n", $user->nickname, $spam_percent);
89         try {
90             $profile->silence();
91         } catch(Exception $e) {
92             printfnq("Error: %s", $e->getMessage());
93         }       
94     }    
95 }
96
97 try {
98     $filter = null;
99     $minimum = 5;
100     $percent = 80;
101     Event::handle('GetSpamFilter', array(&$filter));
102     if (empty($filter)) {
103         throw new Exception(_("No spam filter."));
104     }
105     if (have_option('a', 'all')) {
106         testAllUsers($filter, $minimum, $percent);
107     } else {
108         $user = getUser();
109         silencespammer($filter, $user, $minimum, $percent);
110     }
111 } catch (Exception $e) {
112     print $e->getMessage()."\n";
113     exit(1);
114 }