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;
242 if (($fpexp = @fopen(LEGAL_PATH."/explain.log", 'w')) == FALSE) {
243 log_crit("stat-day: open explain failed");
246 fprintf($fpexp, "<h2>Minuta delle partite dal (%s) al (%s)</h2>",
249 if (($bdb = BriskDB::create()) == FALSE) {
250 log_crit("stat-day: database connection failed");
254 if (pg_query($bdb->dbconn->db(), "BEGIN") == FALSE) {
255 log_crit("stat-day: begin failed");
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");
266 $trn_n = pg_numrows($trn_pg);
267 printf("Number of tournaments: %d\n", $trn_n);
269 for ($t = 0 ; $t < $trn_n ; $t++) {
270 $trn_obj = pg_fetch_object($trn_pg, $t);
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);
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");
282 // store matches before clean them
284 $tmt_n = pg_numrows($tmt_pg);
289 if (!isset($mlang_stat_day[$trn_obj->name][$G_lang])) {
290 log_crit("stat-day: tournament name not found in array");
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]);
296 for ($m = 0 ; $m < $tmt_n ; $m++) {
297 fprintf($fpexp, "<br>");
298 $tmt_obj = pg_fetch_object($tmt_pg, $m);
300 if (($users = $bdb->users_get($tmt_obj->code, TRUE, ($tmt_obj->minus_one_is_old > -1))) == FALSE) {
301 log_crit("%s: users_get failed", __FUNCTION__);
305 $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;",
306 $G_dbpfx, $G_dbpfx, $G_dbpfx, $tmt_obj->code);
307 if (($gam_pg = pg_query($bdb->dbconn->db(), $gam_sql)) == FALSE ) {
308 log_crit("stat-day: gam_sql failed");
312 for ($u = 0 ; $u < count($users) ; $u++) {
314 fprintf($fpexp, "<h3>Codice: %d (%s - %s), Tavolo: %s</h3>\n", $tmt_obj->code, $users[$u]['first'], $users[$u]['last'], $users[$u]['tidx']);
315 fprintf($fpexp, "<table align='center' class='placing'><tr>\n");
317 fprintf($fpexp, "<th>%s</th>", $users[$u]['login']);
318 // note: we are looping on users, order on them not needed
319 $pts_sql = sprintf("SELECT p.pts as pts from %sbin5_games as g, %sbin5_points as p WHERE g.code = p.gcode AND g.mcode = %d AND p.ucode = %d ORDER BY g.code",
320 $G_dbpfx, $G_dbpfx, $G_dbpfx,
321 $tmt_obj->code, $users[$u]['code']);
323 // points of the match for each user
324 if (($pts_pg[$u] = pg_query($bdb->dbconn->db(), $pts_sql)) == FALSE) {
325 log_crit("stat-day: pts_sql failed");
329 $num_games = pg_numrows($pts_pg[$u]);
332 if ($num_games != pg_numrows($pts_pg[$u])) {
333 log_crit("stat-day: num_games != pg_numrows");
338 if ($u != BIN5_PLAYERS_N) {
339 log_crit("stat-day: u != BIN5_PLAYERS_N");
343 if ($tmt_obj->minus_one_is_old != -1) {
344 fprintf($fpexp, "<th>mazzo</th><th>descrizione</th></tr>\n");
346 // LISTA DELLE VARIE PARTITE
347 for ($g = 0 ; $g < $num_games ; $g++) {
348 $gam_obj = pg_fetch_object($gam_pg, $g);
349 fprintf($fpexp, "<tr>");
350 for ($u = 0 ; $u < BIN5_PLAYERS_N ; $u++) {
351 $pts_obj = pg_fetch_object($pts_pg[$u], $g);
352 fprintf($fpexp, "<%s>%d</%s>",
353 ($tmt_obj->minus_one_is_old == -1 ? "td" : "th"),
355 ($tmt_obj->minus_one_is_old == -1 ? "td" : "th"));
357 if ($tmt_obj->minus_one_is_old != -1) {
358 fprintf($fpexp, "<td>%s</td><td>%s</td>", $users[$gam_obj->mazzo]['login'],
359 xcape( game_description($gam_obj->act, 'plain', $gam_obj->mult,
360 $gam_obj->asta_win, $users[$gam_obj->asta_win]['login'],
361 $gam_obj->friend, $users[$gam_obj->friend]['login'],
362 $gam_obj->pnt, $gam_obj->asta_pnt) )
365 fprintf($fpexp, "</tr>\n");
369 fprintf($fpexp, "<tr>");
370 for ($u = 0 ; $u < BIN5_PLAYERS_N ; $u++) {
372 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,
373 $tmt_obj->code, $users[$u]['code']);
374 if (($tot_pg = pg_query($bdb->dbconn->db(), $tot_sql)) == FALSE ) {
377 $tot_obj = pg_fetch_object($tot_pg, 0);
378 fprintf($fpexp, "<th>%d</th>", $tot_obj->pts);
380 if ($tmt_obj->minus_one_is_old != -1) {
381 fprintf($fpexp, "<th colspan='2'>%s</th></tr>\n", $mlang_stat_day['info_total'][$G_lang]);
383 fprintf($fpexp, "</table>\n");
394 pg_query($bdb->dbconn->db(), "ROLLBACK");
396 if ($fpexp != FALSE) {
407 GLOBAL $G_lang, $G_dbasetype, $G_alarm_passwd, $pazz, $from, $to;
409 if ($pazz != $G_alarm_passwd) {
410 echo "Wrong password<br>";
415 $fun_name = "main_${G_dbasetype}";
417 if ($ret = $fun_name($from, $to))
418 echo "Success.<br>\n";
420 echo "Failed.<br>\n";