Update analytics.php
[clinton/MarylandElectronicPetitionSignature.git] / admin / analytics.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}
28de89d0
PM
10if (isset($_GET['clear_php_session_id'])){
11 $id = $_GET['clear_php_session_id'];
12 $petition->query("update presign set presign_status = 'DONE' where php_session_id = '$id' ");
cdaa5f15 13 header('Location: analytics.php');
28de89d0 14}
9e6d5e27
PM
15if (isset($_GET['sign_php_session_id'])){
16 $id = $_GET['sign_php_session_id'];
17 $petition->query("update presign set presign_status = 'SIGNED' where php_session_id = '$id' ");
cdaa5f15 18 header('Location: analytics.php');
9e6d5e27 19}
5623205d
PM
20if ($_COOKIE['level'] == 'manager'){
21 slack_general('ADMIN: Redirect Manager Home ('.$_COOKIE['name'].') ('.$_COOKIE['level'].')','md-petition');
22 header('Location: manager_home.php');
23}
73a94d3f 24if (isset($_GET['flag_invalid_signature'])){
68e387b9 25 $id = $_GET['flag_invalid_signature'];
73a94d3f 26 $petition->query("update signatures set signature_status = 'flag_invalid_signature' where id = '$id' ");
cdaa5f15 27 header('Location: analytics.php');
73a94d3f 28}
68e387b9
PM
29if (isset($_GET['flag_duplicate'])){
30 $id = $_GET['flag_duplicate'];
31 $petition->query("update signatures set signature_status = 'flag_duplicate' where id = '$id' ");
cdaa5f15 32 header('Location: analytics.php');
68e387b9
PM
33}
34if (isset($_GET['flag_ip_address'])){
35 $ip = $_GET['flag_ip_address'];
36 $petition->query("update signatures set signature_status = 'flag_ip_address' where ip_address = '$ip' ");
cdaa5f15 37 header('Location: analytics.php');
68e387b9 38}
dcc3fc26
PM
39if (isset($_GET['resign_requested'])){
40 $id = $_GET['resign_requested'];
41 $petition->query("update signatures set signature_status = 'resign_requested' where id = '$id' ");
cdaa5f15 42 header('Location: analytics.php');
dcc3fc26 43}
3f8c226b
PM
44if (isset($_GET['bot'])){
45 $id = $_GET['bot'];
46 $petition->query("update signatures set signature_status = 'bot' where id = '$id' ");
cdaa5f15 47 header('Location: analytics.php');
3f8c226b 48}
68e387b9
PM
49if (isset($_GET['flag_VTRID'])){
50 $VTRID = $_GET['flag_VTRID'];
51 $petition->query("update signatures set signature_status = 'flag_VTRID' where VTRID = '$VTRID' ");
cdaa5f15 52 header('Location: analytics.php');
68e387b9 53}
587d1da3
PM
54if (isset($_GET['flag_phone'])){
55 $flag_phone = $_GET['flag_phone'];
56 $petition->query("update signatures set signature_status = 'flag_phone' where contact_phone = '$flag_phone' ");
cdaa5f15 57 header('Location: analytics.php');
587d1da3 58}
c7d45ac6 59include_once('header.php');
f49d1b19
PM
60if (isset($_GET['ip_address'])){
61 $ip = $_GET['ip_address'];
68e387b9 62 echo "<h1>Review $ip</h1><table width='100%' border='1' cellpadding='5' cellspacing='5'>";
6c50c9f6 63 $q = "SELECT * FROM signatures where ip_address = '$ip' order by signature_status desc ";
45bc6a1e 64 $r = $petition->query($q);
7ce3d9ec 65 while($d = mysqli_fetch_array($r)){
4fca24b9
PM
66 $color = 'white';
67 $pos = strpos($d['date_time_signed'], date('Y-m-d'));
68 if ($pos !== false) {
69 $color= 'yellow';
70 }
71 echo "<tr style='background-color:$color;'>
68e387b9
PM
72 <td><b>$d[date_time_signed]</b></td>
73 <td><a href='?VTRID=$d[VTRID]'>$d[VTRID]</a></td>
6c9432fc 74 <td>".id2petition($d['petition_id'])."</td>
68e387b9
PM
75 <td>$d[signed_name_as]</td>
76 <td>$d[signed_name_as_circulator]</td>
77 <td>$d[contact_phone]</td>
78 <td>$d[signature_status]</td>
79 <td>$d[printed_status]</td>
dcc3fc26
PM
80 <td><a href='?flag_invalid_signature=$d[id]'>flag invalid signature</a></td>
81 <td><a href='?flag_VTRID=$d[VTRID]'>flag VTRID</a></td>
82 <td><a href='?flag_ip_address=$d[ip_address]'>flag ip address</a></td>
83 <td><a href='?flag_duplicate=$d[id]'>flag duplicate</a></td>
84 <td><a href='?flag_phone=$d[contact_phone]'>contact phone</a></td>
ff3013b8 85 <td><a href='?resign_requested=$d[id]'>resign requested</a></td>
3f8c226b 86 <td><a href='?bot=$d[id]'>bot</a></td>
68e387b9 87 </tr>";
7ce3d9ec 88 }
3a0177c8 89 echo "</table>";
d6495122
PM
90}elseif(isset($_GET['email'])){
91 $email = $_GET['email'];
92 echo "<h1>Review $email</h1><table width='100%' border='1' cellpadding='5' cellspacing='5'>";
93 $q = "SELECT * FROM presign where email_for_follow_up = '$email' order by id desc ";
94 $r = $petition->query($q);
95 while($d = mysqli_fetch_array($r)){
96 $color = 'white';
97 $test = date('Y-m-d',strtotime($d['action_on']));
98 $pos = strpos($test, date('Y-m-d'));
99 if ($pos !== false) {
100 $color= 'yellow';
101 }
102 echo "<tr style='background-color:$color;'>
103 <td style='white-space:pre;'><b>$d[action_on]</b></td>
617b4302 104 <td style='white-space:pre;'><a href='?php_session_id=$d[php_session_id]'>$d[php_session_id]</a></td>
d6495122
PM
105 <td style='white-space:pre;'>$d[php_page]</td>
106 <td style='white-space:pre;'>".id2petition($d['petition'])."</td>
107 <td style='white-space:pre;'>$d[invite]</td>
108 <td style='white-space:pre;'>$d[invite_error]</td>
109 <td style='white-space:pre;'>$d[name]</td>
110 <td style='white-space:pre;'>$d[email_for_follow_up]</td>
111 <td style='white-space:pre;'>$d[phone_for_validation]</td>
112 <td style='white-space:pre;'>$d[presign_status]</td>
113 <td style='white-space:pre;'>$d[ip_address]</td>
114 <td style='white-space:pre;'>$d[browser_string]</td>
115 </tr>";
116 }
117 echo "</table>";
971585e7 118}elseif(isset($_GET['php_session_id']) && empty($_GET['follow_up'])){
b331a809
PM
119 $php_session_id = $_GET['php_session_id'];
120 echo "<h1>Review $php_session_id</h1><table width='100%' border='1' cellpadding='5' cellspacing='5'>";
121 $q = "SELECT * FROM presign where php_session_id = '$php_session_id' order by id desc ";
122 $r = $petition->query($q);
123 while($d = mysqli_fetch_array($r)){
124 $color = 'white';
eea234c3
PM
125 $test = date('Y-m-d',strtotime($d['action_on']));
126 $pos = strpos($test, date('Y-m-d'));
b331a809
PM
127 if ($pos !== false) {
128 $color= 'yellow';
129 }
130 echo "<tr style='background-color:$color;'>
eea234c3
PM
131 <td style='white-space:pre;'><b>$d[action_on]</b></td>
132 <td style='white-space:pre;'>$d[php_page]</td>
133 <td style='white-space:pre;'>".id2petition($d['petition'])."</td>
134 <td style='white-space:pre;'>$d[invite]</td>
973dd966 135 <td style='white-space:pre;'>$d[invite_error]</td>
eea234c3 136 <td style='white-space:pre;'>$d[name]</td>
d6495122 137 <td style='white-space:pre;'><a href='?email=$d[email_for_follow_up]'>$d[email_for_follow_up]</a></td>
eea234c3
PM
138 <td style='white-space:pre;'>$d[phone_for_validation]</td>
139 <td style='white-space:pre;'>$d[presign_status]</td>
140 <td style='white-space:pre;'>$d[ip_address]</td>
141 <td style='white-space:pre;'>$d[browser_string]</td>
971585e7
PM
142 </tr>";
143 }
e511d315 144 echo "</table><a href='?clear_php_session_id=$php_session_id'>CLEAR ALERT</a> -
707c5a7b
PM
145 <a href='?sign_php_session_id=$php_session_id'>SIGNATURE FOUND</a><br>
146 - <a href='?php_session_id=$php_session_id&follow_up=0'>ADD TO FOLLOW UP LIST Maryland General</a><br>
147 - <a href='?php_session_id=$php_session_id&follow_up=1'>ADD TO FOLLOW UP LIST MGP</a><br>
148 - <a href='?php_session_id=$php_session_id&follow_up=2'>ADD TO FOLLOW UP LIST MLP</a><br>
149 - <a href='?php_session_id=$php_session_id&follow_up=3'>ADD TO FOLLOW UP LIST BTEC</a><br>
150 - <a href='?php_session_id=$php_session_id&follow_up=7'>ADD TO FOLLOW UP LIST PG</a><br>
e511d315
PM
151 - <a href='?php_session_id=$php_session_id&follow_up=8'>ADD TO FOLLOW UP LIST Ivey</a>
152 ";
971585e7
PM
153}elseif(isset($_GET['php_session_id']) && isset($_GET['follow_up'])){
154 $php_session_id = $_GET['php_session_id'];
155 echo "<h1>Adding Follow up for $php_session_id to $_GET[follow_up]</h1><table width='100%' border='1' cellpadding='5' cellspacing='5'>";
156 $q = "SELECT * FROM presign where php_session_id = '$php_session_id' order by id desc ";
157 $r = $petition->query($q);
971585e7 158 while($d = mysqli_fetch_array($r)){
f8753855 159
971585e7
PM
160 $color = 'white';
161 $test = date('Y-m-d',strtotime($d['action_on']));
162 $pos = strpos($test, date('Y-m-d'));
163 if ($pos !== false) {
164 $color= 'yellow';
165 }
f8753855
PM
166if ($d[name] != ''){
167 $name = $d[name];
168}
169if ($d[email_for_follow_up] != ''){
170 $email = $d[email_for_follow_up];
171}
971585e7
PM
172 echo "<tr style='background-color:$color;'>
173 <td style='white-space:pre;'><b>$d[action_on]</b></td>
174 <td style='white-space:pre;'>$d[php_page]</td>
175 <td style='white-space:pre;'>".id2petition($d['petition'])."</td>
176 <td style='white-space:pre;'>$d[invite]</td>
177 <td style='white-space:pre;'>$d[invite_error]</td>
178 <td style='white-space:pre;'>$d[name]</td>
179 <td style='white-space:pre;'>$d[email_for_follow_up]</td>
180 <td style='white-space:pre;'>$d[phone_for_validation]</td>
181 <td style='white-space:pre;'>$d[presign_status]</td>
182 <td style='white-space:pre;'>$d[ip_address]</td>
183 <td style='white-space:pre;'>$d[browser_string]</td>
b331a809
PM
184 </tr>";
185 }
f8753855 186 $petition->query("insert into follow_up (name, email, php_session, petition_id) values ('$name','$email','$php_session_id','$_GET[follow_up]') ");
b739e778 187 $petition->query("update presign set presign_status = 'DONE' where php_session_id = '$php_session_id' ");
1f0c4bd2 188 echo "</table>";
f49d1b19
PM
189}elseif (isset($_GET['VTRID'])){
190 $VTRID = $_GET['VTRID'];
68e387b9 191 echo "<h1>Review $VTRID</h1><table width='100%' border='1' cellpadding='5' cellspacing='5'>";
783d17ee 192 $q = "SELECT * FROM signatures where VTRID = '$VTRID' and signature_status <> 'deleted' order by petition_id, id DESC ";
45bc6a1e 193 $r = $petition->query($q);
7ce3d9ec 194 while($d = mysqli_fetch_array($r)){
4fca24b9
PM
195 $color = 'white';
196 $pos = strpos($d['date_time_signed'], date('Y-m-d'));
197 if ($pos !== false) {
198 $color= 'yellow';
199 }
200 echo "<tr style='background-color:$color;'>
68e387b9
PM
201 <td><b>$d[date_time_signed]</b></td>
202 <td><a href='?ip_address=$d[ip_address]'>$d[ip_address]</a></td>
b6545efe 203 <td>".id2petition($d['petition_id'])."</td>
68e387b9
PM
204 <td>$d[signed_name_as]</td>
205 <td>$d[signed_name_as_circulator]</td>
206 <td>$d[contact_phone]</td>
207 <td>$d[signature_status]</td>
208 <td>$d[printed_status]</td>
dcc3fc26
PM
209 <td><a href='?flag_invalid_signature=$d[id]'>flag invalid signature</a></td>
210 <td><a href='?flag_VTRID=$d[VTRID]'>flag VTRID</a></td>
211 <td><a href='?flag_ip_address=$d[ip_address]'>flag ip address</a></td>
212 <td><a href='?flag_duplicate=$d[id]'>flag duplicate</a></td>
213 <td><a href='?flag_phone=$d[contact_phone]'>contact phone</a></td>
ff3013b8 214 <td><a href='?resign_requested=$d[id]'>resign requested</a></td>
3f8c226b 215 <td><a href='?bot=$d[id]'>bot</a></td>
68e387b9 216 </tr>";
7ce3d9ec 217 }
3a0177c8 218 echo "</table>";
f49d1b19 219}
5623205d 220?>
4b205268 221
cdaa5f15 222<h1>Signature Analytics</h1>
d5dffc27 223<h2>NEVER NEVER NEVER CALL OR TEXT ANYONE - ONLY EMAIL!!!</h2>
cdaa5f15 224<h3>SysOp Says: Transparency = Trust</h3>
797efc8e 225<table><tr>
d1dcf736
PM
226<tr>
227<td valign="top">
228<h2>Pre-Sign</h2>
617b4302
PM
229<div>Follow up requested - never signed.</div>
230<form method='GET'><input name='email'><input type='submit' value='SEARCH E-MAIL'></form><ol>
d1dcf736
PM
231<?PHP
232$q="SELECT distinct php_session_id FROM presign where presign_status = 'NEW' and email_for_follow_up <> '' order by id desc";
233$r = $petition->query($q);
234while($d = mysqli_fetch_array($r)){
235 $q2="SELECT * FROM presign where php_session_id = '$d[php_session_id]' order by id desc";
236 $r2 = $petition->query($q2);
237 $d2 = mysqli_fetch_array($r2);
238 echo "<li><a href='?php_session_id=$d2[php_session_id]'>$d2[name] $d2[email_for_follow_up] ".id2petition($d2['petition'])." $d2[invite]</a></li>";
239}
240?></ol>
241 </td>
242<td valign="top">
cdaa5f15 243<h2>Signatures</h2>
d1dcf736
PM
244<div>Last 10</div><ol>
245<?PHP
246$q="SELECT * FROM signatures where signature_status = 'verified' order by id desc limit 0, 10";
247$r = $petition->query($q);
248while($d = mysqli_fetch_array($r)){
249 echo "<li>$d[date_time_signed] ".id2petition($d['petition_id'])." $d[signed_name_as]</li>";
250}
251?></ol>
252 </td>
797efc8e 253
d1dcf736 254 </tr>
797efc8e 255 <td valign="top">
e0bd2eda 256<h2>IP Address</h2>
cdaa5f15 257<div>Watching for duplicates.</div><ol>
5623205d 258<?PHP
babf0707 259$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
260$r = $petition->query($q);
261while($d = mysqli_fetch_array($r)){
4b205268 262 if ($d['count'] > 1){
cdaa5f15 263 echo "<li><a href='?ip_address=$d[ip_address]'>$d[ip_address]</a> ".id2petition($d['petition_id'])." <b>$d[count]</b> $d[signed_name_as]</li>";
4b205268 264 }
5623205d 265}
cc84dbb5 266?></ol>
797efc8e 267 </td><td valign="top">
e0bd2eda 268<h2>VTRID</h2>
cdaa5f15 269<div>Watching for duplicates.</div><ol>
1b0319d4 270<?PHP
870eafe2 271$q="SELECT VTRID, petition_id, COUNT(*) as count FROM signatures where signature_status = 'verified' group by VTRID, petition_id";
1b0319d4 272$r = $petition->query($q);
4b205268
PM
273while($d = mysqli_fetch_array($r)){
274 if ($d['count'] > 1){
cdaa5f15 275 echo "<li><a href='?VTRID=$d[VTRID]'>$d[VTRID]</a> ".id2petition($d['petition_id'])." <b>$d[count]</b> $d[signed_name_as]</li>";
4b205268 276 }
1b0319d4 277}
cc84dbb5 278 ?></ol>
e8d1541d 279 </td></tr><tr><td valign="top">
cdaa5f15
PM
280<h2>VTRID Bugs</h2>
281<div>Watching for 0</div><ol>
e0bd2eda 282<?PHP
e8d1541d 283$q="SELECT * FROM signatures where VTRID = '0' and signature_status <> 'bot' and signature_status <> 'flag_invalid_signature' and signature_status <> 'resign_requested'";
e0bd2eda
PM
284$r = $petition->query($q);
285while($d = mysqli_fetch_array($r)){
55fd7459 286 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 287}
cc84dbb5 288?></ol>
797efc8e 289 </td><td valign="top">
cdaa5f15
PM
290<h2>Petition ID Bugs</h2>
291<div>Watching for 0</div><ol>
9b75965d 292<?PHP
e8d1541d 293$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 294$r = $petition->query($q);
4931af50 295while($d = mysqli_fetch_array($r)){
55fd7459 296 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
297}
298?></ol>
e8d1541d 299 </td></tr><tr><td valign="top">
cdaa5f15 300 <?PHP ob_start(); ?>
4931af50 301<h2>resign_requested</h2>
3f8c226b 302<div>These are most likely from early bugs</div><ol>
4931af50 303<?PHP
68fde5b1 304$q="SELECT * FROM signatures where signature_status = 'resign_requested' order by ip_address";
4931af50 305$r = $petition->query($q);
cdaa5f15 306 $show = 0;
9b75965d 307while($d = mysqli_fetch_array($r)){
cdaa5f15 308 $show = 1;
55fd7459 309 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 310}
3f8c226b 311?></ol>
cdaa5f15 312 <?PHP $html = ob_get_clean(); if ( $show == 1 ){ echo $html; } ?>
3f8c226b
PM
313 </td>
314
315 <td valign="top">
cdaa5f15 316 <?PHP ob_start(); ?>
3f8c226b
PM
317<h2>bots</h2>
318<div>These are bots on the site.</div><ol>
319<?PHP
68fde5b1 320$q="SELECT * FROM signatures where signature_status = 'bot' order by ip_address";
3f8c226b 321$r = $petition->query($q);
cdaa5f15 322$show = 0;
3f8c226b 323while($d = mysqli_fetch_array($r)){
cdaa5f15 324 $show = 1;
ab89bfc5 325 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 326}
cc84dbb5 327?></ol>
cdaa5f15
PM
328 <?PHP $html = ob_get_clean(); if ( $show == 1 ){ echo $html; } ?>
329
797efc8e 330 </td>
5623205d 331
9b75965d 332
05fddd22 333</tr>
05fddd22 334
05fddd22 335</table>
9b75965d
PM
336
337
5623205d
PM
338<?PHP
339include_once('footer.php');
340?>