Update abuse.php
[clinton/MarylandElectronicPetitionSignature.git] / admin / abuse.php
CommitLineData
5623205d
PM
1<?PHP
2include_once('../slack.php');
3include_once('security.php');
c7d45ac6 4include_once('/var/www/secure.php'); //outside webserver
6c9432fc 5include_once('functions.php');
5623205d
PM
6if ($_COOKIE['level'] == 'user'){
7 slack_general('ADMIN: Redirect User Home ('.$_COOKIE['name'].') ('.$_COOKIE['level'].')','md-petition');
8 header('Location: user_home.php');
9}
10if ($_COOKIE['level'] == 'manager'){
11 slack_general('ADMIN: Redirect Manager Home ('.$_COOKIE['name'].') ('.$_COOKIE['level'].')','md-petition');
12 header('Location: manager_home.php');
13}
73a94d3f 14if (isset($_GET['flag_invalid_signature'])){
68e387b9 15 $id = $_GET['flag_invalid_signature'];
73a94d3f 16 $petition->query("update signatures set signature_status = 'flag_invalid_signature' where id = '$id' ");
c7d45ac6 17 header('Location: abuse.php');
73a94d3f 18}
68e387b9
PM
19if (isset($_GET['flag_duplicate'])){
20 $id = $_GET['flag_duplicate'];
21 $petition->query("update signatures set signature_status = 'flag_duplicate' where id = '$id' ");
c7d45ac6 22 header('Location: abuse.php');
68e387b9
PM
23}
24if (isset($_GET['flag_ip_address'])){
25 $ip = $_GET['flag_ip_address'];
26 $petition->query("update signatures set signature_status = 'flag_ip_address' where ip_address = '$ip' ");
c7d45ac6 27 header('Location: abuse.php');
68e387b9 28}
dcc3fc26
PM
29if (isset($_GET['resign_requested'])){
30 $id = $_GET['resign_requested'];
31 $petition->query("update signatures set signature_status = 'resign_requested' where id = '$id' ");
32 header('Location: abuse.php');
33}
3f8c226b
PM
34if (isset($_GET['bot'])){
35 $id = $_GET['bot'];
36 $petition->query("update signatures set signature_status = 'bot' where id = '$id' ");
37 header('Location: abuse.php');
38}
68e387b9
PM
39if (isset($_GET['flag_VTRID'])){
40 $VTRID = $_GET['flag_VTRID'];
41 $petition->query("update signatures set signature_status = 'flag_VTRID' where VTRID = '$VTRID' ");
c7d45ac6 42 header('Location: abuse.php');
68e387b9 43}
587d1da3
PM
44if (isset($_GET['flag_phone'])){
45 $flag_phone = $_GET['flag_phone'];
46 $petition->query("update signatures set signature_status = 'flag_phone' where contact_phone = '$flag_phone' ");
47 header('Location: abuse.php');
48}
c7d45ac6 49include_once('header.php');
f49d1b19
PM
50if (isset($_GET['ip_address'])){
51 $ip = $_GET['ip_address'];
68e387b9 52 echo "<h1>Review $ip</h1><table width='100%' border='1' cellpadding='5' cellspacing='5'>";
6c50c9f6 53 $q = "SELECT * FROM signatures where ip_address = '$ip' order by signature_status desc ";
45bc6a1e 54 $r = $petition->query($q);
7ce3d9ec 55 while($d = mysqli_fetch_array($r)){
4fca24b9
PM
56 $color = 'white';
57 $pos = strpos($d['date_time_signed'], date('Y-m-d'));
58 if ($pos !== false) {
59 $color= 'yellow';
60 }
61 echo "<tr style='background-color:$color;'>
68e387b9
PM
62 <td><b>$d[date_time_signed]</b></td>
63 <td><a href='?VTRID=$d[VTRID]'>$d[VTRID]</a></td>
6c9432fc 64 <td>".id2petition($d['petition_id'])."</td>
68e387b9
PM
65 <td>$d[signed_name_as]</td>
66 <td>$d[signed_name_as_circulator]</td>
67 <td>$d[contact_phone]</td>
68 <td>$d[signature_status]</td>
69 <td>$d[printed_status]</td>
dcc3fc26
PM
70 <td><a href='?flag_invalid_signature=$d[id]'>flag invalid signature</a></td>
71 <td><a href='?flag_VTRID=$d[VTRID]'>flag VTRID</a></td>
72 <td><a href='?flag_ip_address=$d[ip_address]'>flag ip address</a></td>
73 <td><a href='?flag_duplicate=$d[id]'>flag duplicate</a></td>
74 <td><a href='?flag_phone=$d[contact_phone]'>contact phone</a></td>
ff3013b8 75 <td><a href='?resign_requested=$d[id]'>resign requested</a></td>
3f8c226b 76 <td><a href='?bot=$d[id]'>bot</a></td>
68e387b9 77 </tr>";
7ce3d9ec 78 }
3a0177c8 79 echo "</table>";
f49d1b19
PM
80}elseif (isset($_GET['VTRID'])){
81 $VTRID = $_GET['VTRID'];
68e387b9 82 echo "<h1>Review $VTRID</h1><table width='100%' border='1' cellpadding='5' cellspacing='5'>";
783d17ee 83 $q = "SELECT * FROM signatures where VTRID = '$VTRID' and signature_status <> 'deleted' order by petition_id, id DESC ";
45bc6a1e 84 $r = $petition->query($q);
7ce3d9ec 85 while($d = mysqli_fetch_array($r)){
4fca24b9
PM
86 $color = 'white';
87 $pos = strpos($d['date_time_signed'], date('Y-m-d'));
88 if ($pos !== false) {
89 $color= 'yellow';
90 }
91 echo "<tr style='background-color:$color;'>
68e387b9
PM
92 <td><b>$d[date_time_signed]</b></td>
93 <td><a href='?ip_address=$d[ip_address]'>$d[ip_address]</a></td>
b6545efe 94 <td>".id2petition($d['petition_id'])."</td>
68e387b9
PM
95 <td>$d[signed_name_as]</td>
96 <td>$d[signed_name_as_circulator]</td>
97 <td>$d[contact_phone]</td>
98 <td>$d[signature_status]</td>
99 <td>$d[printed_status]</td>
dcc3fc26
PM
100 <td><a href='?flag_invalid_signature=$d[id]'>flag invalid signature</a></td>
101 <td><a href='?flag_VTRID=$d[VTRID]'>flag VTRID</a></td>
102 <td><a href='?flag_ip_address=$d[ip_address]'>flag ip address</a></td>
103 <td><a href='?flag_duplicate=$d[id]'>flag duplicate</a></td>
104 <td><a href='?flag_phone=$d[contact_phone]'>contact phone</a></td>
ff3013b8 105 <td><a href='?resign_requested=$d[id]'>resign requested</a></td>
3f8c226b 106 <td><a href='?bot=$d[id]'>bot</a></td>
68e387b9 107 </tr>";
7ce3d9ec 108 }
3a0177c8 109 echo "</table>";
f49d1b19 110}
5623205d 111?>
4b205268 112
5623205d 113<h1>Abuses</h1>
797efc8e
PM
114
115<table><tr>
116
117 <td valign="top">
e0bd2eda 118<h2>IP Address</h2>
cc84dbb5 119<div>Watch for duplicates.</div><ol>
5623205d 120<?PHP
babf0707 121$q="SELECT ip_address, petition_id,VTRID, COUNT(*) as count FROM signatures where signature_status = 'verified' group by ip_address, petition_id, VTRID";
5623205d
PM
122$r = $petition->query($q);
123while($d = mysqli_fetch_array($r)){
4b205268 124 if ($d['count'] > 1){
55fd7459 125 echo "<li><a href='?ip_address=$d[ip_address]'>$d[ip_address]</a> <a target='_Blank' href='https://ipinfo.io/$d[ip_address]'>IP INFO</a> <a href='?VTRID=$d[VTRID]'>$d[VTRID]</a> $d[petition_id] <b>$d[count]</b> $d[signed_name_as]</li>";
4b205268 126 }
5623205d 127}
cc84dbb5 128?></ol>
797efc8e 129 </td><td valign="top">
e0bd2eda 130<h2>VTRID</h2>
cc84dbb5 131<div>Watch for duplicates.</div><ol>
1b0319d4 132<?PHP
870eafe2 133$q="SELECT VTRID, petition_id, COUNT(*) as count FROM signatures where signature_status = 'verified' group by VTRID, petition_id";
1b0319d4 134$r = $petition->query($q);
4b205268
PM
135while($d = mysqli_fetch_array($r)){
136 if ($d['count'] > 1){
ea380aa9 137 echo "<li><a href='?VTRID=$d[VTRID]'>$d[VTRID]</a> $d[petition_id] <b>$d[count]</b> $d[signed_name_as]</li>";
4b205268 138 }
1b0319d4 139}
cc84dbb5 140 ?></ol>
e8d1541d 141 </td></tr><tr><td valign="top">
e0bd2eda 142<h2>VTRID</h2>
cc84dbb5 143<div>Watch for 0</div><ol>
e0bd2eda 144<?PHP
e8d1541d 145$q="SELECT * FROM signatures where VTRID = '0' and signature_status <> 'bot' and signature_status <> 'flag_invalid_signature' and signature_status <> 'resign_requested'";
e0bd2eda
PM
146$r = $petition->query($q);
147while($d = mysqli_fetch_array($r)){
55fd7459 148 echo "<li>$d[date_time_signed] <a href='?ip_address=$d[ip_address]'>$d[ip_address]</a> <a target='_Blank' href='https://ipinfo.io/$d[ip_address]'>IP INFO</a> $d[petition_id] $d[signed_name_as]</li>";
9b75965d 149}
cc84dbb5 150?></ol>
797efc8e 151 </td><td valign="top">
9b75965d 152<h2>petition_id</h2>
cc84dbb5 153<div>Watch for 0</div><ol>
9b75965d 154<?PHP
e8d1541d 155$q="SELECT * FROM signatures where (petition_id = '0' or petition_id = '') and signature_status <> 'bot' and signature_status <> 'flag_invalid_signature' and signature_status <> 'resign_requested'";
9b75965d 156$r = $petition->query($q);
4931af50 157while($d = mysqli_fetch_array($r)){
55fd7459 158 echo "<li>$d[date_time_signed] <a href='?ip_address=$d[ip_address]'>$d[ip_address]</a> <a target='_Blank' href='https://ipinfo.io/$d[ip_address]'>IP INFO</a> $d[petition_id] $d[signed_name_as]</li>";
4931af50
PM
159}
160?></ol>
e8d1541d 161 </td></tr><tr><td valign="top">
4931af50 162<h2>resign_requested</h2>
3f8c226b 163<div>These are most likely from early bugs</div><ol>
4931af50 164<?PHP
68fde5b1 165$q="SELECT * FROM signatures where signature_status = 'resign_requested' order by ip_address";
4931af50 166$r = $petition->query($q);
9b75965d 167while($d = mysqli_fetch_array($r)){
55fd7459 168 echo "<li>$d[date_time_signed] <a href='?ip_address=$d[ip_address]'>$d[ip_address]</a> <a target='_Blank' href='https://ipinfo.io/$d[ip_address]'>IP INFO</a> <a href='?VTRID=$d[VTRID]'>$d[VTRID]</a> $d[petition_id] $d[signed_name_as]</li>";
e0bd2eda 169}
3f8c226b
PM
170?></ol>
171 </td>
172
173 <td valign="top">
174<h2>bots</h2>
175<div>These are bots on the site.</div><ol>
176<?PHP
68fde5b1 177$q="SELECT * FROM signatures where signature_status = 'bot' order by ip_address";
3f8c226b
PM
178$r = $petition->query($q);
179while($d = mysqli_fetch_array($r)){
ab89bfc5 180 echo "<li>$d[date_time_signed] <a href='?ip_address=$d[ip_address]'>$d[ip_address]</a> <a target='_Blank' href='https://ipinfo.io/$d[ip_address]'>IP INFO</a> <a href='?VTRID=$d[VTRID]'>$d[VTRID]</a> $d[petition_id] $d[signed_name_as]</li>";
3f8c226b 181}
cc84dbb5 182?></ol>
797efc8e 183 </td>
5623205d 184
9b75965d 185
05fddd22
PM
186</tr>
187<tr>
188<td valign="top">
bdc1dd01 189<h2>Pre-Sign</h2>
05fddd22
PM
190<div>last 0-10</div><ol>
191<?PHP
bdc1dd01 192$q="SELECT * FROM presign order by id desc limit 0, 10";
05fddd22
PM
193$r = $petition->query($q);
194while($d = mysqli_fetch_array($r)){
bdc1dd01 195 echo "<li>$d[action_on] <a href='?ip_address=$d[ip_address]'>$d[ip_address]</a> <a target='_Blank' href='https://ipinfo.io/$d[ip_address]'>IP INFO</a> $d[name] $d[email_for_follow_up]</li>";
05fddd22
PM
196}
197?></ol>
198 </td>
199<td valign="top">
bdc1dd01
PM
200<h2>Signature</h2>
201<div>Last 10</div><ol>
05fddd22 202<?PHP
bdc1dd01 203$q="SELECT * FROM signatures order by id desc limit 0, 10";
05fddd22
PM
204$r = $petition->query($q);
205while($d = mysqli_fetch_array($r)){
206 echo "<li>$d[date_time_signed] <a href='?ip_address=$d[ip_address]'>$d[ip_address]</a> <a target='_Blank' href='https://ipinfo.io/$d[ip_address]'>IP INFO</a> <a href='?VTRID=$d[VTRID]'>$d[VTRID]</a> ".id2petition($d['petition_id'])." $d[signed_name_as]</li>";
207}
208?></ol>
209 </td>
210
211 </tr>
212</table>
9b75965d
PM
213
214
5623205d
PM
215<?PHP
216include_once('footer.php');
217?>