6d3ac74a46a18bc15c1e244c9f0b414a83902bc8
[brisk.git] / web / briskin5 / stat-day.php
1 <?php
2 /*
3  *  brisk - stat-day.php
4  *
5  *  Copyright (C) 2009-2012 Matteo Nastasi
6  *                          mailto: nastasi@alternativeoutput.it
7  *                                  matteo.nastasi@milug.org
8  *                          web: http://www.alternativeoutput.it
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful, but
16  * WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABLILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  * General Public License for more details. You should have received a
19  * copy of the GNU General Public License along with this program; if
20  * not, write to the Free Software Foundation, Inc, 59 Temple Place -
21  * Suite 330, Boston, MA 02111-1307, USA.
22  *
23  */
24
25 /*
26   call example:
27 wget -O daily.txt dodo.birds.van/brisk/briskin5/stat-day.php?pazz=yourpasswd&from=1000&to=1380308086
28
29 now="$(date +%s)"
30
31 to="$(date +"%Y-%m-%d+%H:%M:%S" -d @$(echo "($now / 86400) * 86400 + 7200 " | bc))"
32 from="$(date +"%Y-%m-%d+%H:%M:%S" -d @$(echo "($now / 86400) * 86400 + 7200 - 86400" | bc))"
33 # to="$(date +"%Y-%m-%d+%H:%M:%S" -d @$(echo "$now + 7200 " | bc))"
34 # from="$(date +"%Y-%m-%d+%H:%M:%S" -d @$(echo "$now - 9200 " | bc))"
35
36 curl -d 'pazz=simbaalarm' "http://www.alternativeoutput.it/brisk/briskin5/stat-day.php?from=$from&to=$to"
37
38 */
39
40 $G_base = "../";
41
42 $mlang_stat_day = array( 'normal match'=> array( 'it' => 'Partite normali',
43                                                  'en' => 'Normal matches' ),
44                          'special match' => array( 'it' => 'Partite speciali',
45                                                    'en' => 'Special matches')
46                          );
47
48
49 ini_set("max_execution_time",  "240");
50
51 require_once("../Obj/brisk.phh");
52 require_once("../Obj/user.phh");
53 require_once("../Obj/auth.phh");
54 require_once("../Obj/dbase_${G_dbasetype}.phh");
55 require_once("Obj/briskin5.phh");
56 require_once("Obj/placing.phh");
57
58 function main_file($curtime)
59 {
60     GLOBAL $G_lang, $G_alarm_passwd;
61   $tri = array();
62   $mon = array();
63   $wee = array();
64
65   if (($fp = @fopen(LEGAL_PATH."/points.log", 'r')) == FALSE) {
66     echo "Open data file error";
67     exit;
68   }
69   echo "prima<br>";
70
71   if (($fp_start = @fopen(LEGAL_PATH."/points.start", 'r')) != FALSE) {
72     $skip = intval(fgets($fp_start));
73     if ($skip > 0)
74       fseek($fp, $skip, SEEK_SET);
75     fclose($fp_start);
76   }
77
78   if (($bdb = BriskDB::create()) == FALSE) {
79     echo "database connection failed";
80     exit;
81   }
82
83   $bdb->users_load();
84
85   for ($i = 0 ; $i < $bdb->count() ; $i++) {
86     $login = $bdb->getlogin_byidx($i);
87     $tri[$i] = new Ptsgam($login);
88     $mon[$i] = new Ptsgam($login);
89     $wee[$i] = new Ptsgam($login);
90   }
91
92   // recalculate all the placings
93   // 1246428948|492e4e9e856b0|N|tre|172.22.1.90|STAT:BRISKIN5:FINISH_GAME|4a4afd4983039|6|3|tre|1|due|2|uno|-1|
94   while (!feof($fp)) {
95     $p = 0;
96     $bf = fgets($fp, 4096);
97     $ar = csplitter($bf, '|');
98     // if not auth table, continue
99     if (count($ar) < 15)
100       continue;
101
102     // echo $p++."<br>";
103     if ($ar[7] >= TABLES_AUTH_N)
104       continue;
105     // echo $p++." ".$ar[5]."<br>";
106     // if not FINISH_GAME line, continue
107     if ($ar[5] != "STAT:BRISKIN5:FINISH_GAME")
108       continue;
109     // echo $p++."<br>";
110     // if to much old points, continue
111     if ($ar[0] < $curtime - TRI_LIMIT) {
112       if (($fp_start = @fopen(LEGAL_PATH."/points.start", 'w')) != FALSE) {
113         $curpos = ftell($fp);
114         fwrite($fp_start, sprintf("%d\n", $curpos));
115         fclose($fp_start);
116       }
117
118       continue;
119     }
120     // echo $p++." ".BIN5_PLAYERS_N."<br>";
121
122     $found = FALSE;
123     $mult = 1;
124     for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
125       for ($e = $i + 1 ; $e < BIN5_PLAYERS_N ; $e++) {
126         if ($ar[10+($i*2)] == $ar[10+($e*2)]) {
127           $mult = abs($ar[10+($i*2)]);
128           $found = TRUE;
129         }
130       }
131       if ($found)
132         break;
133     }
134
135     if ($mult == 0)
136        continue;
137     for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
138       // echo $p." i) ".$i."<br>";
139       $username = $ar[9+($i*2)];
140       if (($item = $bdb->getitem_bylogin($username, &$id)) == FALSE) {
141         echo "WARNING: the user [".$username."] NOT EXISTS!<br>";
142         continue;
143       }
144
145       // echo $item->login." id)".$id."  ".$ar[10+($i*2)]." mult: ".$mult."<br>";
146       $tri[$id]->add($ar[10+($i*2)] / $mult);
147       if ($ar[0] >= $curtime - MON_LIMIT)
148         $mon[$id]->add($ar[10+($i*2)] / $mult);
149       if ($ar[0] >= $curtime - WEE_LIMIT)
150         $wee[$id]->add($ar[10+($i*2)] / $mult);
151     }
152     // $p++; echo $p++."<br>";
153   }
154   fclose($fp);
155
156   usort($tri, ptsgam_cmp);
157   usort($mon, ptsgam_cmp);
158   usort($wee, ptsgam_cmp);
159
160   echo "<br><br>TRI<br>\n";
161
162   if (($fplo = @fopen(LEGAL_PATH."/class_tri_lo.log", 'w')) == FALSE) {
163     echo "Open tri_lo failed<br>";
164     exit;
165   }
166   if (($fphi = @fopen(LEGAL_PATH."/class_tri_hi.log", 'w')) == FALSE) {
167     echo "Open tri_hi failed<br>";
168     exit;
169   }
170
171   for ($i = 0 ; $i < count($tri) ; $i++) {
172     if ($tri[$i]->gam == 0.0)
173       continue;
174     printf("%s: %s (%d) <br>\n",  $tri[$i]->username,  $tri[$i]->snormpts(), $tri[$i]->gam);
175     if ($tri[$i]->gam >= TRI_MAX_GAMES)
176       fwrite($fphi, sprintf("%s|%d|%d|\n", xcapelt($tri[$i]->username), $tri[$i]->pts, $tri[$i]->gam));
177     else if ($tri[$i]->gam > TRI_MIN_GAMES)
178       fwrite($fplo, sprintf("%s|%d|%d|\n", xcapelt($tri[$i]->username), $tri[$i]->pts, $tri[$i]->gam));
179   }
180   fclose($fphi);
181   fclose($fplo);
182
183   echo "<br><br>MON<br>\n";
184
185   if (($fplo = @fopen(LEGAL_PATH."/class_mon_lo.log", 'w')) == FALSE) {
186     echo "Open tri_lo failed<br>";
187     exit;
188   }
189   if (($fphi = @fopen(LEGAL_PATH."/class_mon_hi.log", 'w')) == FALSE) {
190     echo "Open tri_hi failed<br>";
191     exit;
192   }
193
194   for ($i = 0 ; $i < count($mon) ; $i++) {
195     if ($mon[$i]->gam == 0.0)
196       continue;
197     printf("%s: %s (%d) <br>\n",  $mon[$i]->username,  $mon[$i]->snormpts(), $mon[$i]->gam);
198     if ($mon[$i]->gam >= MON_MAX_GAMES)
199       fwrite($fphi, sprintf("%s|%d|%d|\n", xcapelt($mon[$i]->username), $mon[$i]->pts, $mon[$i]->gam));
200     else if ($mon[$i]->gam > MON_MIN_GAMES)
201       fwrite($fplo, sprintf("%s|%d|%d|\n", xcapelt($mon[$i]->username), $mon[$i]->pts, $mon[$i]->gam));
202   }
203   fclose($fphi);
204   fclose($fplo);
205
206   echo "<br><br>WEE<br>\n";
207   if (($fplo = @fopen(LEGAL_PATH."/class_wee_lo.log", 'w')) == FALSE) {
208     echo "Open wee_lo failed<br>";
209     exit;
210   }
211   if (($fphi = @fopen(LEGAL_PATH."/class_wee_hi.log", 'w')) == FALSE) {
212     echo "Open wee_hi failed<br>";
213     exit;
214   }
215
216   for ($i = 0 ; $i < count($wee) ; $i++) {
217     if ($wee[$i]->gam == 0.0)
218       continue;
219     printf("%s: %s (%d) <br>\n",  $wee[$i]->username,  $wee[$i]->snormpts(), $wee[$i]->gam);
220     if ($wee[$i]->gam >= WEE_MAX_GAMES)
221       fwrite($fphi, sprintf("%s|%d|%d|\n", xcapelt($wee[$i]->username), $wee[$i]->pts, $wee[$i]->gam));
222     else if ($wee[$i]->gam > WEE_MIN_GAMES)
223       fwrite($fplo, sprintf("%s|%d|%d|\n", xcapelt($wee[$i]->username), $wee[$i]->pts, $wee[$i]->gam));
224   }
225   fclose($fphi);
226   fclose($fplo);
227
228 }
229
230 function main_pgsql($from, $to)
231 {
232     GLOBAL $G_dbpfx;
233
234   if (($fpexp = @fopen(LEGAL_PATH."/explain.log", 'w')) == FALSE) {
235     echo "Open explain failed<br>";
236     exit;
237   }
238     fprintf($fpexp, "<h2>Minuta delle partite dal (%s) al (%s)</h2>",
239         $from, $to);
240
241     if (($bdb = BriskDB::create()) == FALSE) {
242         echo "database connection failed";
243         exit;
244     }
245     do {
246         if (pg_query($bdb->dbconn->db(), "BEGIN") == FALSE) {
247             log_crit("statadm: begin failed");
248             break;
249         }
250         
251         $tmt_sql = sprintf("select m.code as code from %sbin5_matches as m, %sbin5_games as g WHERE m.code = g.mcode AND g.tstamp >= '%s' AND g.tstamp < '%s' GROUP BY m.code;", $G_dbpfx, $G_dbpfx, $from, $to);
252
253         // if deletable old matches exists then ...
254         if (($tmt_pg = pg_query($bdb->dbconn->db(), $tmt_sql)) != FALSE) {
255             //
256             // store matches before clean them
257             //
258             $tmt_n = pg_numrows($tmt_pg);
259             // get matches
260             for ($m = 0 ; $m < $tmt_n ; $m++) {
261                 fprintf($fpexp, "<br>");
262                 $tmt_obj = pg_fetch_object($tmt_pg, $m);
263                 
264                 $usr_sql = sprintf("
265 SELECT u.code AS code, u.login AS login, min(g.tstamp) AS first, max(g.tstamp) AS last, m.tidx AS tidx FROM %sbin5_matches AS m, %sbin5_games AS g, %sbin5_points AS p, %susers AS u WHERE m.code = g.mcode AND g.code = p.gcode AND u.code = p.ucode AND m.code = %d GROUP BY u.code, u.login, m.tidx;", $G_dbpfx, $G_dbpfx, $G_dbpfx, $G_dbpfx, $tmt_obj->code);
266                 
267                if (($usr_pg  = pg_query($bdb->dbconn->db(), $usr_sql)) == FALSE ) {
268                     break;
269                 }
270                 $usr_n = pg_numrows($usr_pg);
271                 if ($usr_n != 5) {
272                     break;
273                 }
274                 for ($u = 0 ; $u < $usr_n ; $u++) {
275                     $usr_obj = pg_fetch_object($usr_pg, $u);
276                     if ($u == 0) {
277                         fprintf($fpexp, "<h3>Codice: %d (%s - %s), Tavolo: %s</h3>\n", $tmt_obj->code, $usr_obj->first, $usr_obj->last, $usr_obj->tidx);
278                         fprintf($fpexp, "<table align='center' class='placing'><tr>\n");
279                         }
280                     fprintf($fpexp, "<th>%s</th>", $usr_obj->login);
281                     $pts_sql = sprintf("
282 select p.pts as pts from %sbin5_matches as m, %sbin5_games as g, %sbin5_points as p, %susers as u WHERE m.code = g.mcode AND g.code = p.gcode AND u.code = p.ucode AND m.code = %d AND u.code = %d ORDER BY g.code", $G_dbpfx, $G_dbpfx, $G_dbpfx, $G_dbpfx,
283                                    $tmt_obj->code, $usr_obj->code);
284
285                     if (($pts_pg[$u]  = pg_query($bdb->dbconn->db(), $pts_sql)) == FALSE) {
286                         break;
287                     }
288                     if ($u == 0) {
289                         $num_games = pg_numrows($pts_pg[$u]);
290                     }
291                     else {
292                         if ($num_games != pg_numrows($pts_pg[$u])) {
293                             break;
294                         }
295                     }
296                 }
297                 if ($u != 5) {
298                     break;
299                 } 
300                 fprintf($fpexp, "</tr>\n");
301
302                 // LISTA DELLE VARIE PARTITE
303                 for ($g = 0 ; $g < $num_games ; $g++) {
304                     fprintf($fpexp, "<tr>");
305                     for ($u = 0 ; $u < 5 ; $u++) {
306                         $pts_obj = pg_fetch_object($pts_pg[$u], $g);
307                         fprintf($fpexp, "<td>%d</td>", $pts_obj->pts);
308                     }
309                     fprintf($fpexp, "</tr>\n");
310                 }
311
312                 // LISTA DEI TOTALI
313                 fprintf($fpexp, "<tr>");
314                 for ($u = 0 ; $u < 5 ; $u++) {
315                     $usr_obj = pg_fetch_object($usr_pg, $u);
316                     $tot_sql = sprintf("
317 SELECT SUM(p.pts) AS pts FROM %sbin5_matches AS m, %sbin5_games AS g, %sbin5_points AS p, %susers AS u WHERE m.code = g.mcode AND g.code = p.gcode AND u.code = p.ucode AND m.code = %d AND u.code = %d", $G_dbpfx, $G_dbpfx, $G_dbpfx, $G_dbpfx,
318                                    $tmt_obj->code, $usr_obj->code);
319                     if (($tot_pg  = pg_query($bdb->dbconn->db(), $tot_sql)) == FALSE ) {
320                         break;
321                     }
322                     $tot_obj = pg_fetch_object($tot_pg, 0);
323                     fprintf($fpexp, "<th>%d</th>", $tot_obj->pts);
324                 }
325                 fprintf($fpexp, "</tr>\n");
326                 fprintf($fpexp, "</table>\n");
327             }
328             if ($m < $tmt_n)
329                 break;
330         } // if (($tmt_pg = pg_query($bdb->dbco...
331
332         fclose($fpexp);
333         return (TRUE);
334     } while (0);
335
336     pg_query($bdb->dbconn->db(), "ROLLBACK");
337     fclose($fpexp);
338
339     return (FALSE);
340 }
341
342 // echo "QUIr\n";
343 // exit(123);
344 function main()
345 {
346     GLOBAL $G_dbasetype, $G_alarm_passwd, $pazz, $from, $to;
347     
348     if ($pazz != $G_alarm_passwd) {
349         echo "Wrong password<br>";
350         mop_flush();
351         exit;
352     }
353     
354     $fun_name = "main_${G_dbasetype}";
355     
356     if ($ret = $fun_name($from, $to))
357         echo "Success.<br>\n";
358     else
359         echo "Failed.<br>\n";
360     
361     echo "Fine.\n";
362     mop_flush();
363 }
364
365 main();
366 ?>