schema updated and stat-day.php fixed
[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 # from 100 days ago to 1 day after
32 to="$(date +"%Y-%m-%d+%H:%M:%S" -d @$(echo "$now + 86400" | bc))"
33 from="$(date +"%Y-%m-%d+%H:%M:%S" -d @$(echo "$now - 8640000" | bc))"
34 # to="$(date +"%Y-%m-%d+%H:%M:%S" -d @$(echo "$now + 7200 " | bc))"
35 # from="$(date +"%Y-%m-%d+%H:%M:%S" -d @$(echo "$now - 9200 " | bc))"
36
37 curl -d "pazz=$BRISK_PASS" "http://$BRISK_SITE/briskin5/stat-day.php?from=$from&to=$to"
38
39 */
40
41 $G_base = "../";
42
43 $mlang_stat_day = array( 'normal match'=> array( 'it' => 'Partite normali',
44                                                  'en' => 'Normal matches' ),
45                          'special match' => array( 'it' => 'Partite speciali',
46                                                    'en' => 'Special matches')
47                          );
48
49
50 ini_set("max_execution_time",  "240");
51
52 require_once("../Obj/brisk.phh");
53 require_once("../Obj/user.phh");
54 require_once("../Obj/auth.phh");
55 require_once("../Obj/dbase_${G_dbasetype}.phh");
56 require_once("Obj/briskin5.phh");
57 require_once("Obj/placing.phh");
58
59 function main_file($curtime)
60 {
61     GLOBAL $G_lang, $G_alarm_passwd;
62   $tri = array();
63   $mon = array();
64   $wee = array();
65
66   if (($fp = @fopen(LEGAL_PATH."/points.log", 'r')) == FALSE) {
67     echo "Open data file error";
68     exit;
69   }
70   echo "prima<br>";
71
72   if (($fp_start = @fopen(LEGAL_PATH."/points.start", 'r')) != FALSE) {
73     $skip = intval(fgets($fp_start));
74     if ($skip > 0)
75       fseek($fp, $skip, SEEK_SET);
76     fclose($fp_start);
77   }
78
79   if (($bdb = BriskDB::create()) == FALSE) {
80     echo "database connection failed";
81     exit;
82   }
83
84   $bdb->users_load();
85
86   for ($i = 0 ; $i < $bdb->count() ; $i++) {
87     $login = $bdb->getlogin_byidx($i);
88     $tri[$i] = new Ptsgam($login);
89     $mon[$i] = new Ptsgam($login);
90     $wee[$i] = new Ptsgam($login);
91   }
92
93   // recalculate all the placings
94   // 1246428948|492e4e9e856b0|N|tre|172.22.1.90|STAT:BRISKIN5:FINISH_GAME|4a4afd4983039|6|3|tre|1|due|2|uno|-1|
95   while (!feof($fp)) {
96     $p = 0;
97     $bf = fgets($fp, 4096);
98     $ar = csplitter($bf, '|');
99     // if not auth table, continue
100     if (count($ar) < 15)
101       continue;
102
103     // echo $p++."<br>";
104     if ($ar[7] >= TABLES_AUTH_N)
105       continue;
106     // echo $p++." ".$ar[5]."<br>";
107     // if not FINISH_GAME line, continue
108     if ($ar[5] != "STAT:BRISKIN5:FINISH_GAME")
109       continue;
110     // echo $p++."<br>";
111     // if to much old points, continue
112     if ($ar[0] < $curtime - TRI_LIMIT) {
113       if (($fp_start = @fopen(LEGAL_PATH."/points.start", 'w')) != FALSE) {
114         $curpos = ftell($fp);
115         fwrite($fp_start, sprintf("%d\n", $curpos));
116         fclose($fp_start);
117       }
118
119       continue;
120     }
121     // echo $p++." ".BIN5_PLAYERS_N."<br>";
122
123     $found = FALSE;
124     $mult = 1;
125     for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
126       for ($e = $i + 1 ; $e < BIN5_PLAYERS_N ; $e++) {
127         if ($ar[10+($i*2)] == $ar[10+($e*2)]) {
128           $mult = abs($ar[10+($i*2)]);
129           $found = TRUE;
130         }
131       }
132       if ($found)
133         break;
134     }
135
136     if ($mult == 0)
137        continue;
138     for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
139       // echo $p." i) ".$i."<br>";
140       $username = $ar[9+($i*2)];
141       if (($item = $bdb->getitem_bylogin($username, &$id)) == FALSE) {
142         echo "WARNING: the user [".$username."] NOT EXISTS!<br>";
143         continue;
144       }
145
146       // echo $item->login." id)".$id."  ".$ar[10+($i*2)]." mult: ".$mult."<br>";
147       $tri[$id]->add($ar[10+($i*2)] / $mult);
148       if ($ar[0] >= $curtime - MON_LIMIT)
149         $mon[$id]->add($ar[10+($i*2)] / $mult);
150       if ($ar[0] >= $curtime - WEE_LIMIT)
151         $wee[$id]->add($ar[10+($i*2)] / $mult);
152     }
153     // $p++; echo $p++."<br>";
154   }
155   fclose($fp);
156
157   usort($tri, ptsgam_cmp);
158   usort($mon, ptsgam_cmp);
159   usort($wee, ptsgam_cmp);
160
161   echo "<br><br>TRI<br>\n";
162
163   if (($fplo = @fopen(LEGAL_PATH."/class_tri_lo.log", 'w')) == FALSE) {
164     echo "Open tri_lo failed<br>";
165     exit;
166   }
167   if (($fphi = @fopen(LEGAL_PATH."/class_tri_hi.log", 'w')) == FALSE) {
168     echo "Open tri_hi failed<br>";
169     exit;
170   }
171
172   for ($i = 0 ; $i < count($tri) ; $i++) {
173     if ($tri[$i]->gam == 0.0)
174       continue;
175     printf("%s: %s (%d) <br>\n",  $tri[$i]->username,  $tri[$i]->snormpts(), $tri[$i]->gam);
176     if ($tri[$i]->gam >= TRI_MAX_GAMES)
177       fwrite($fphi, sprintf("%s|%d|%d|\n", xcapelt($tri[$i]->username), $tri[$i]->pts, $tri[$i]->gam));
178     else if ($tri[$i]->gam > TRI_MIN_GAMES)
179       fwrite($fplo, sprintf("%s|%d|%d|\n", xcapelt($tri[$i]->username), $tri[$i]->pts, $tri[$i]->gam));
180   }
181   fclose($fphi);
182   fclose($fplo);
183
184   echo "<br><br>MON<br>\n";
185
186   if (($fplo = @fopen(LEGAL_PATH."/class_mon_lo.log", 'w')) == FALSE) {
187     echo "Open tri_lo failed<br>";
188     exit;
189   }
190   if (($fphi = @fopen(LEGAL_PATH."/class_mon_hi.log", 'w')) == FALSE) {
191     echo "Open tri_hi failed<br>";
192     exit;
193   }
194
195   for ($i = 0 ; $i < count($mon) ; $i++) {
196     if ($mon[$i]->gam == 0.0)
197       continue;
198     printf("%s: %s (%d) <br>\n",  $mon[$i]->username,  $mon[$i]->snormpts(), $mon[$i]->gam);
199     if ($mon[$i]->gam >= MON_MAX_GAMES)
200       fwrite($fphi, sprintf("%s|%d|%d|\n", xcapelt($mon[$i]->username), $mon[$i]->pts, $mon[$i]->gam));
201     else if ($mon[$i]->gam > MON_MIN_GAMES)
202       fwrite($fplo, sprintf("%s|%d|%d|\n", xcapelt($mon[$i]->username), $mon[$i]->pts, $mon[$i]->gam));
203   }
204   fclose($fphi);
205   fclose($fplo);
206
207   echo "<br><br>WEE<br>\n";
208   if (($fplo = @fopen(LEGAL_PATH."/class_wee_lo.log", 'w')) == FALSE) {
209     echo "Open wee_lo failed<br>";
210     exit;
211   }
212   if (($fphi = @fopen(LEGAL_PATH."/class_wee_hi.log", 'w')) == FALSE) {
213     echo "Open wee_hi failed<br>";
214     exit;
215   }
216
217   for ($i = 0 ; $i < count($wee) ; $i++) {
218     if ($wee[$i]->gam == 0.0)
219       continue;
220     printf("%s: %s (%d) <br>\n",  $wee[$i]->username,  $wee[$i]->snormpts(), $wee[$i]->gam);
221     if ($wee[$i]->gam >= WEE_MAX_GAMES)
222       fwrite($fphi, sprintf("%s|%d|%d|\n", xcapelt($wee[$i]->username), $wee[$i]->pts, $wee[$i]->gam));
223     else if ($wee[$i]->gam > WEE_MIN_GAMES)
224       fwrite($fplo, sprintf("%s|%d|%d|\n", xcapelt($wee[$i]->username), $wee[$i]->pts, $wee[$i]->gam));
225   }
226   fclose($fphi);
227   fclose($fplo);
228
229 }
230
231 function main_pgsql($from, $to)
232 {
233     GLOBAL $G_lang, $G_dbpfx, $mlang_stat_day;
234
235     $ret = FALSE;
236     $fpexp = FALSE;
237
238     do {
239         if (($fpexp = @fopen(LEGAL_PATH."/explain.log", 'w')) == FALSE) {
240             log_crit("stat-day: open explain failed");
241             break;
242         }
243         fprintf($fpexp, "<h2>Minuta delle partite dal (%s) al (%s)</h2>",
244                 $from, $to);
245
246         if (($bdb = BriskDB::create()) == FALSE) {
247             log_crit("stat-day: database connection failed");
248             break;
249         }
250
251         if (pg_query($bdb->dbconn->db(), "BEGIN") == FALSE) {
252             log_crit("stat-day: begin failed");
253             break;
254         }
255
256         // retrieve list of active tournaments
257         $trn_sql = sprintf("SELECT * FROM %sbin5_tournaments WHERE active = 1;", $G_dbpfx);
258         if (($trn_pg = pg_query($bdb->dbconn->db(), $trn_sql)) == FALSE) {
259             log_crit("stat-day: select from tournaments failed");
260             break;
261         }
262
263         $trn_n = pg_numrows($trn_pg);
264
265         for ($t = 0 ; $t < $trn_n ; $t++) {
266             $trn_obj = pg_fetch_object($trn_pg, $t);
267
268             $tmt_sql = sprintf("SELECT m.code AS code FROM %sbin5_matches AS m, %sbin5_games AS g, %sbin5_tournaments as t WHERE t.code = m.tcode AND m.code = g.mcode AND g.tstamp >= '%s' AND g.tstamp < '%s' GROUP BY m.code;",
269                                $G_dbpfx, $G_dbpfx, $G_dbpfx, $from, $to);
270
271             // if deletable old matches exists then ...
272             if (($tmt_pg = pg_query($bdb->dbconn->db(), $tmt_sql)) == FALSE) {
273                 log_crit("stat-day: select from matches failed");
274                 break;
275             }
276
277             //
278             // store matches before clean them
279             //
280             $tmt_n = pg_numrows($tmt_pg);
281             // get matches
282             if ($tmt_n == 0)
283                 continue;
284
285             if (!isset($mlang_stat_day[$trn_obj->name][$G_lang])) {
286                 log_crit("stat-day: tournament name not found in array");
287                 break;
288             }
289             fprintf($fpexp, "<h3>%s</h3>", $mlang_stat_day[$trn_obj->name][$G_lang]);
290
291             for ($m = 0 ; $m < $tmt_n ; $m++) {
292                 fprintf($fpexp, "<br>");
293                 $tmt_obj = pg_fetch_object($tmt_pg, $m);
294
295                 $usr_sql = sprintf("
296 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, %sbin5_table_orders AS o WHERE m.code = g.mcode AND g.code = p.gcode AND u.code = p.ucode AND m.code = %d AND m.code = o.mcode AND u.code = o.ucode GROUP BY u.code, u.login, m.tidx, o.pos ORDER BY o.pos;", $G_dbpfx, $G_dbpfx, $G_dbpfx, $G_dbpfx, $G_dbpfx, $tmt_obj->code);
297
298                 if (($usr_pg  = pg_query($bdb->dbconn->db(), $usr_sql)) == FALSE ) {
299                     break;
300                 }
301                 $usr_n = pg_numrows($usr_pg);
302                 if ($usr_n != BIN5_PLAYERS_N) {
303                     break;
304                 }
305
306                 $gam_sql = sprintf("SELECT g.* FROM %sbin5_games AS g, %sbin5_matches AS m WHERE g.mcode = m.code AND m.code = %d ORDER BY g.tstamp;",
307                                    $G_dbpfx, $G_dbpfx, $tmt_obj->code);
308                 if (($gam_pg = pg_query($bdb->dbconn->db(), $gam_sql)) == FALSE ) {
309                     break;
310                 }
311
312                 $usr_obj = array();
313                 for ($u = 0 ; $u < $usr_n ; $u++) {
314                     $usr_obj[$u] = pg_fetch_object($usr_pg, $u);
315                     if ($u == 0) {
316                         fprintf($fpexp, "<h3>Codice: %d (%s - %s), Tavolo: %s</h3>\n", $tmt_obj->code, $usr_obj[$u]->first, $usr_obj[$u]->last, $usr_obj[$u]->tidx);
317                         fprintf($fpexp, "<table align='center' class='placing'><tr>\n");
318                     }
319                     fprintf($fpexp, "<th>%s</th>", $usr_obj[$u]->login);
320                     $pts_sql = sprintf("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,
321                                        $tmt_obj->code, $usr_obj[$u]->code);
322
323                     // points of the match for each user
324                     if (($pts_pg[$u]  = pg_query($bdb->dbconn->db(), $pts_sql)) == FALSE) {
325                         break;
326                     }
327                     if ($u == 0) {
328                         $num_games = pg_numrows($pts_pg[$u]);
329                     }
330                     else {
331                         if ($num_games != pg_numrows($pts_pg[$u])) {
332                             break;
333                         }
334                     }
335                 }
336                 if ($u != BIN5_PLAYERS_N) {
337                     break;
338                 }
339                 fprintf($fpexp, "<th>mazzo</th><th>descrizione</th></tr>\n");
340
341                 // LISTA DELLE VARIE PARTITE
342                 for ($g = 0 ; $g < $num_games ; $g++) {
343                     $gam_obj = pg_fetch_object($gam_pg, $g);
344                     fprintf($fpexp, "<tr>");
345                     for ($u = 0 ; $u < BIN5_PLAYERS_N ; $u++) {
346                         $pts_obj = pg_fetch_object($pts_pg[$u], $g);
347                         fprintf($fpexp, "<th>%d</th>", $pts_obj->pts);
348                     }
349                     fprintf($fpexp, "<td>%s</td><td>%s</td>", $usr_obj[$gam_obj->mazzo]->login,
350                             xcape( game_description($gam_obj->act, 'plain',
351                                                     $gam_obj->asta_win, $usr_obj[$gam_obj->asta_win]->login,
352                                                     $gam_obj->friend, $usr_obj[$gam_obj->friend]->login,
353                                                     $gam_obj->pnt, $gam_obj->asta_pnt) )
354                             );
355                     fprintf($fpexp, "</tr>\n");
356                 }
357
358                 // LISTA DEI TOTALI
359                 fprintf($fpexp, "<tr>");
360                 for ($u = 0 ; $u < BIN5_PLAYERS_N ; $u++) {
361                     $tot_sql = sprintf("
362 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,
363                                        $tmt_obj->code, $usr_obj[$u]->code);
364                     if (($tot_pg  = pg_query($bdb->dbconn->db(), $tot_sql)) == FALSE ) {
365                         break;
366                     }
367                     $tot_obj = pg_fetch_object($tot_pg, 0);
368                     fprintf($fpexp, "<th>%d</th>", $tot_obj->pts);
369                 }
370                 fprintf($fpexp, "</tr>\n");
371                 fprintf($fpexp, "</table>\n");
372             }
373             if ($m < $tmt_n)
374                 break;
375         }
376         if ($t < $trn_n)
377             break;
378         $ret = (TRUE);
379     } while (0);
380
381     if ($ret == FALSE) {
382         pg_query($bdb->dbconn->db(), "ROLLBACK");
383     }
384     if ($fpexp != FALSE) {
385         fclose($fpexp);
386     }
387
388     return ($ret);
389 }
390
391 // echo "QUIr\n";
392 // exit(123);
393 function main()
394 {
395     GLOBAL $G_lang, $G_dbasetype, $G_alarm_passwd, $pazz, $from, $to;
396
397     if ($pazz != $G_alarm_passwd) {
398         echo "Wrong password<br>";
399         mop_flush();
400         exit;
401     }
402
403     $fun_name = "main_${G_dbasetype}";
404
405     if ($ret = $fun_name($from, $to))
406         echo "Success.<br>\n";
407     else
408         echo "Failed.<br>\n";
409
410     echo "Fine.\n";
411     mop_flush();
412 }
413
414 main();
415 ?>