]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/ActivitySpam/scripts/silencespammer.php
XSS vulnerability when remote-subscribing
[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::getKV('id', $user->id);
68
69     if ($profile->isSilenced()) {
70         printfnq("Already silenced %s\n", $user->nickname);
71         return;
72     }
73     
74     $cnt = $profile->noticeCount();
75
76     if ($cnt < $minimum) {
77         printfnq("Only %d notices posted (minimum %d); skipping\n", $cnt, $minimum);
78         return;
79     }
80
81     $ss = new Spam_score();
82
83     $ss->query(sprintf("SELECT count(*) as spam_count ".
84                        "FROM notice join spam_score on notice.id = spam_score.notice_id ".
85                        "WHERE notice.profile_id = %d AND spam_score.is_spam = 1", $profile->id));
86
87     while ($ss->fetch()) {
88         $spam_count = $ss->spam_count;
89     }                 
90
91     $spam_percent = ($spam_count * 100.0 / $cnt);
92
93     if ($spam_percent > $percent) {
94         printfnq("Silencing user %s (%d/%d = %0.2f%% spam)\n", $user->nickname, $spam_count, $cnt, $spam_percent);
95         try {
96             $profile->silence();
97         } catch(Exception $e) {
98             printfnq("Error: %s", $e->getMessage());
99         }       
100     }    
101 }
102
103 try {
104     $filter = null;
105     $minimum = 5;
106     $percent = 80;
107     Event::handle('GetSpamFilter', array(&$filter));
108     if (empty($filter)) {
109         throw new Exception(_("No spam filter."));
110     }
111     if (have_option('a', 'all')) {
112         testAllUsers($filter, $minimum, $percent);
113     } else {
114         $user = getUser();
115         silencespammer($filter, $user, $minimum, $percent);
116     }
117 } catch (Exception $e) {
118     print $e->getMessage()."\n";
119     exit(1);
120 }