5 * Copyright (C) 2009-2012 Matteo Nastasi
6 * mailto: nastasi@alternativeoutput.it
7 * matteo.nastasi@milug.org
8 * web: http://www.alternativeoutput.it
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.
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.
27 wget -O daily.txt dodo.birds.van/brisk/briskin5/stat-day.php?pazz=yourpasswd&from=1000&to=1380308086
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))"
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))"
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'),
48 'info_total'=> array( 'it' => 'totali',
53 ini_set("max_execution_time", "240");
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");
62 function main_file($curtime)
64 GLOBAL $G_lang, $G_alarm_passwd;
69 if (($fp = @fopen(LEGAL_PATH."/points.log", 'r')) == FALSE) {
70 echo "Open data file error";
75 if (($fp_start = @fopen(LEGAL_PATH."/points.start", 'r')) != FALSE) {
76 $skip = intval(fgets($fp_start));
78 fseek($fp, $skip, SEEK_SET);
82 if (($bdb = BriskDB::create()) == FALSE) {
83 echo "database connection failed";
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);
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|
100 $bf = fgets($fp, 4096);
101 $ar = csplitter($bf, '|');
102 // if not auth table, continue
107 if ($ar[7] >= TABLES_AUTH_N)
109 // echo $p++." ".$ar[5]."<br>";
110 // if not FINISH_GAME line, continue
111 if ($ar[5] != "STAT:BRISKIN5:FINISH_GAME")
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));
124 // echo $p++." ".BIN5_PLAYERS_N."<br>";
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)]);
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>";
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);
156 // $p++; echo $p++."<br>";
160 usort($tri, ptsgam_cmp);
161 usort($mon, ptsgam_cmp);
162 usort($wee, ptsgam_cmp);
164 echo "<br><br>TRI<br>\n";
166 if (($fplo = @fopen(LEGAL_PATH."/class_tri_lo.log", 'w')) == FALSE) {
167 echo "Open tri_lo failed<br>";
170 if (($fphi = @fopen(LEGAL_PATH."/class_tri_hi.log", 'w')) == FALSE) {
171 echo "Open tri_hi failed<br>";
175 for ($i = 0 ; $i < count($tri) ; $i++) {
176 if ($tri[$i]->gam == 0.0)
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));
187 echo "<br><br>MON<br>\n";
189 if (($fplo = @fopen(LEGAL_PATH."/class_mon_lo.log", 'w')) == FALSE) {
190 echo "Open tri_lo failed<br>";
193 if (($fphi = @fopen(LEGAL_PATH."/class_mon_hi.log", 'w')) == FALSE) {
194 echo "Open tri_hi failed<br>";
198 for ($i = 0 ; $i < count($mon) ; $i++) {
199 if ($mon[$i]->gam == 0.0)
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));
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>";
215 if (($fphi = @fopen(LEGAL_PATH."/class_wee_hi.log", 'w')) == FALSE) {
216 echo "Open wee_hi failed<br>";
220 for ($i = 0 ; $i < count($wee) ; $i++) {
221 if ($wee[$i]->gam == 0.0)
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));
234 function main_pgsql($from, $to)
236 GLOBAL $G_lang, $G_dbpfx, $mlang_stat_day;
241 // log_crit("stat-day: BEGIN");
243 if (($fpexp = @fopen(LEGAL_PATH."/explain.log", 'w')) == FALSE) {
244 log_crit("stat-day: open explain failed");
247 fprintf($fpexp, "<h2>Minuta delle partite dal (%s) al (%s)</h2>",
250 if (($bdb = BriskDB::create()) == FALSE) {
251 log_crit("stat-day: database connection failed");
255 if (pg_query($bdb->dbconn->db(), "BEGIN") == FALSE) {
256 log_crit("stat-day: begin failed");
260 // retrieve list of active tournaments
261 $trn_sql = sprintf("SELECT * FROM %sbin5_tournaments WHERE active = 1;", $G_dbpfx);
262 if (($trn_pg = pg_query($bdb->dbconn->db(), $trn_sql)) == FALSE) {
263 log_crit("stat-day: select from tournaments failed");
267 $trn_n = pg_numrows($trn_pg);
268 printf("Number of tournaments: %d\n", $trn_n);
270 // loop on tournaments
271 for ($t = 0 ; $t < $trn_n ; $t++) {
272 // log_crit("stat-day: LOOP t");
273 $trn_obj = pg_fetch_object($trn_pg, $t);
276 SELECT m.code AS code, m.mazzo_next as minus_one_is_old
277 FROM %sbin5_matches AS m, %sbin5_games AS g, %sbin5_tournaments as t
278 WHERE t.code = m.tcode AND m.code = g.mcode
279 AND t.code = %d AND g.tstamp >= '%s' AND g.tstamp < '%s'
280 GROUP BY m.code, minus_one_is_old
281 ORDER BY m.code, minus_one_is_old DESC;",
282 $G_dbpfx, $G_dbpfx, $G_dbpfx, $trn_obj->code, $from, $to);
284 // if deletable old matches exists then ...
285 if (($tmt_pg = pg_query($bdb->dbconn->db(), $tmt_sql)) == FALSE) {
286 log_crit("stat-day: select from matches failed");
291 // store matches before clean them
293 $tmt_n = pg_numrows($tmt_pg);
298 if (!isset($mlang_stat_day[$trn_obj->name][$G_lang])) {
299 log_crit("stat-day: tournament name not found in array");
302 printf("[Tournament [%s]], number of matches: %d\n", $mlang_stat_day[$trn_obj->name][$G_lang], $tmt_n);
303 fprintf($fpexp, "<h3>%s</h3>", $mlang_stat_day[$trn_obj->name][$G_lang]);
306 for ($m = 0 ; $m < $tmt_n ; $m++) {
307 // log_crit("stat-day: LOOP m");
308 fprintf($fpexp, "<br>");
309 $tmt_obj = pg_fetch_object($tmt_pg, $m);
311 // get users for the match m
312 if (($users = $bdb->users_get($tmt_obj->code, TRUE, ($tmt_obj->minus_one_is_old > -1))) == FALSE) {
313 log_crit(sprintf("stat_day: users_get failed %d", $tmt_obj->code));
318 SELECT g.* FROM %sbin5_tournaments AS t, %sbin5_matches AS m, %sbin5_games AS g
319 WHERE t.code = m.tcode AND m.code = g.mcode AND m.code = %d
321 $G_dbpfx, $G_dbpfx, $G_dbpfx, $tmt_obj->code);
322 if (($gam_pg = pg_query($bdb->dbconn->db(), $gam_sql)) == FALSE ) {
323 log_crit("stat-day: gam_sql failed");
327 // loop on users of the match m
328 for ($u = 0 ; $u < count($users) ; $u++) {
329 // log_crit("stat-day: LOOP u");
331 fprintf($fpexp, "<h3>Codice: %d (%s - %s), Tavolo: %s</h3>\n", $tmt_obj->code, $users[$u]['first'], $users[$u]['last'], $users[$u]['tidx']);
332 fprintf($fpexp, "<table align='center' class='placing'><tr>\n");
334 fprintf($fpexp, "<th>%s</th>", $users[$u]['login']);
335 // note: we are looping on users, order on them not needed
338 FROM %sbin5_games AS g, %sbin5_points AS p
339 WHERE g.code = p.gcode AND g.mcode = %d AND p.ucode = %d
342 $tmt_obj->code, $users[$u]['code']);
344 // points of the match for each user
345 if (($pts_pg[$u] = pg_query($bdb->dbconn->db(), $pts_sql)) == FALSE) {
346 log_crit("stat-day: pts_sql failed");
350 $num_games = pg_numrows($pts_pg[$u]);
353 if ($num_games != pg_numrows($pts_pg[$u])) {
354 log_crit("stat-day: num_games != pg_numrows");
359 if ($u != BIN5_PLAYERS_N) {
360 log_crit("stat-day: u != BIN5_PLAYERS_N");
364 if ($tmt_obj->minus_one_is_old != -1) {
365 fprintf($fpexp, "<th>mazzo</th><th>descrizione</th></tr>\n");
367 // LISTA DELLE VARIE PARTITE
369 for ($g = 0 ; $g < $num_games ; $g++) {
370 $gam_obj = pg_fetch_object($gam_pg, $g);
371 fprintf($fpexp, "<tr>");
376 for ($u = 0 ; $u < BIN5_PLAYERS_N ; $u++) {
377 $pts_obj[$u] = pg_fetch_object($pts_pg[$u], $g);
379 if ($pt_min > $pts_obj[$u]->pts) {
380 $pt_min = $pts_obj[$u]->pts;
383 else if ($pt_min == $pts_obj[$u]->pts) {
387 if ($pt_max < $pts_obj[$u]->pts) {
388 $pt_max = $pts_obj[$u]->pts;
391 else if ($pt_max == $pts_obj[$u]->pts) {
405 pts == pt_max -> green
407 pts > 0 -> light green
409 for ($u = 0 ; $u < BIN5_PLAYERS_N ; $u++) {
410 $pts = $pts_obj[$u]->pts;
413 $cla_nam = 'bg_white';
414 else if ($pts == $pt_min)
416 else if ($pts == $pt_max)
417 $cla_nam = 'bg_green';
419 $cla_nam = 'bg_lired';
421 $cla_nam = 'bg_ligre';
423 fprintf($fpexp, "<%s class='%s'>%d</%s>",
424 ($tmt_obj->minus_one_is_old == -1 ? "td" : "th"),
425 $cla_nam, pow(2,$gam_obj->mult) * $pts,
426 ($tmt_obj->minus_one_is_old == -1 ? "td" : "th"));
428 if ($tmt_obj->minus_one_is_old != -1) {
429 fprintf($fpexp, "<td>%s</td><td>%s</td>", $users[$gam_obj->mazzo]['login'],
430 xcape( game_description($gam_obj->act, 'plain', $gam_obj->mult,
432 ($gam_obj->asta_win != -1 ?
433 $users[$gam_obj->asta_win]['login'] : ""),
435 ($gam_obj->friend != -1 ?
436 $users[$gam_obj->friend]['login'] : ""),
437 $gam_obj->pnt, $gam_obj->asta_pnt, $gam_obj->tourn_pts) )
440 fprintf($fpexp, "</tr>\n");
444 fprintf($fpexp, "<tr>");
445 for ($u = 0 ; $u < BIN5_PLAYERS_N ; $u++) {
446 // NOTE: this part must be revisited when we move to multiple game rules
447 // probably removing the sum and adding another nested iteration on games.
449 SELECT sum(p.pts * (2^g.mult)) AS pts
450 FROM %sbin5_matches AS m, %sbin5_games AS g, %sbin5_points AS p, %susers AS u
451 WHERE m.code = g.mcode AND g.code = p.gcode AND u.code = p.ucode
452 AND ( (u.type & (CAST (X'00ff0000' as integer))) <> (CAST (X'00800000' as integer)) )
453 AND m.code = %d AND u.code = %d",
454 $G_dbpfx, $G_dbpfx, $G_dbpfx, $G_dbpfx,
455 $tmt_obj->code, $users[$u]['code']);
456 if (($tot_pg = pg_query($bdb->dbconn->db(), $tot_sql)) == FALSE ) {
459 $tot_obj = pg_fetch_object($tot_pg, 0);
460 fprintf($fpexp, "<th>%d</th>", $tot_obj->pts);
462 if ($tmt_obj->minus_one_is_old != -1) {
463 fprintf($fpexp, "<th colspan='2'>%s</th></tr>\n", $mlang_stat_day['info_total'][$G_lang]);
465 fprintf($fpexp, "</table>\n");
468 log_crit("stat-day: m < tmt_n");
473 log_crit("stat-day: t < trn_n");
480 pg_query($bdb->dbconn->db(), "ROLLBACK");
482 if ($fpexp != FALSE) {
491 GLOBAL $G_lang, $G_dbasetype, $G_alarm_passwd, $pazz, $from, $to;
493 if ($pazz != $G_alarm_passwd) {
494 echo "Wrong password<br>";
499 $fun_name = "main_${G_dbasetype}";
501 if ($ret = $fun_name($from, $to))
502 echo "Success.<br>\n";
504 echo "Failed.<br>\n";