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