X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Findex.php;h=a9d0b1772796045be6a035dd346a54645138e648;hb=29ef3f7db6bc1d39c658a15d95d22e45bbd59c16;hp=73868dde5e38ef61b6124a56668e3e101f9c80b9;hpb=1f106d3bc82e9719222d91313cd8e9e433ea099d;p=brisk.git diff --git a/web/index.php b/web/index.php index 73868dd..a9d0b17 100644 --- a/web/index.php +++ b/web/index.php @@ -2,7 +2,10 @@ /* * brisk - index.php * - * Copyright (C) 2006-2007 matteo.nastasi@milug.org + * Copyright (C) 2006-2008 Matteo Nastasi + * mailto: nastasi@alternativeoutput.it + * matteo.nastasi@milug.org + * web: http://www.alternativeoutput.it * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -22,18 +25,25 @@ */ require_once("Obj/brisk.phh"); +require_once("Obj/proxyscan.phh"); + +// Use of proxies isn't allowed. +if (!$G_is_local && is_proxy()) + exit; + require_once("briskin5/Obj/briskin5.phh"); if (DEBUGGING == "local" && $_SERVER['REMOTE_ADDR'] != '127.0.0.1') { echo "Debugging time!"; exit; } -log_load((isset($sess) ? $sess : "XXX"), "LOAD: index.php"); +log_load("index.php"); function main() { - GLOBAL $sess, $name, $table_idx, $BRISK_SHOWHTML, $BRISK_DEBUG, $_SERVER; - + GLOBAL $G_with_topbanner, $G_topbanner, $G_is_local; + GLOBAL $sess, $name, $table_idx, $table_token, $BRISK_SHOWHTML, $BRISK_DEBUG, $_SERVER; + $body = ""; $tables = ""; $standup = ""; @@ -42,70 +52,50 @@ function main() if (isset($BRISK_SHOWHTML) == FALSE) { $is_table = FALSE; $sem = Room::lock_data(); - log_load($sess, "lock Room"); + log_main("lock Room"); $room = &Room::load_data(); - + $curtime = time(); + /* Actions */ + if (validate_sess($sess)) { - // FIXME uncomment $room->garbage_manager(TRUE); + log_main("pre garbage_manager UNO"); + $room->garbage_manager(TRUE); + log_main("post garbage_manager"); if (($user = &$room->get_user($sess, &$idx)) != FALSE) { + log_main("user stat: ".$user->stat); if ($user->stat == "table") { - $change_page = TRUE; - log_load($sess, "resync from index.php"); - - if (isset($table_idx)) { - $table_idx = (int)$table_idx; - log_load($sess, "SET TABLE_IDX ".TABLES_N); - if ($table_idx >= 0 && $table_idx < TABLES_N) { - log_load($sess, "SET TABLE_IDX GOOD VALUE"); - $bri_sem = Briskin5::lock_data($table_idx); - $bri = &Briskin5::load_data($table_idx); - - if (($bri_user = &$bri->get_user($sess, &$bri_idx)) != FALSE) { - if ($bri_user->subst == "shutdowned" || $bri_user->subst == "shutdowner") { - // QUI WAKEUP - $table = &$room->table[$user->table]; - $bri_table = &$bri->table[0]; - - for ($i = 0 ; $i < $bri_table->player_n ; $i++) { - $room->user[$table->player[$i]]->subst = $bri->user[$i]->subst; - $room->user[$table->player[$i]]->step = $bri->user[$i]->step; - $room->user[$table->player[$i]]->trans_step = $bri->user[$i]->step+1; - log_load($sess, "from table bri subst[".$i."]: ".$bri->user[$i]->subst); - log_load($sess, "from table roo subst[".$i."]: ".$room->user[$table->player[$i]]->subst); - } - - $room->room_join_wakeup(&$user); - - if (Room::save_data(&$room) == FALSE) { - echo "ERRORE SALVATAGGIO\n"; - exit; - } - - $change_page = FALSE; - } - log_load($sess, "from table subst: ".$bri_user->subst); - } - Briskin5::unlock_data($bri_sem); - } - } - log_load($sess, "unlock Room"); - if ($change_page) { - Room::unlock_data($sem); - header ("Location: table.php"); + if (Room::save_data(&$room) == FALSE) { + echo "ERRORE SALVATAGGIO\n"; exit; } + log_main("unlock Room"); + Room::unlock_data($sem); + setcookie("table_token", $user->table_token, $curtime + 31536000); + setcookie("table_idx", $user->table, $curtime + 31536000); + header ("Location: briskin5/index.php"); + exit; } $ACTION = "room"; } + + if (Room::save_data(&$room) == FALSE) { + echo "ERRORE SALVATAGGIO\n"; + exit; + } } if ($ACTION == "login" && isset($name)) { - // FIXME uncomment $room->garbage_manager(TRUE); + + log_main("pre garbage_manager DUE"); + $room->garbage_manager(TRUE); /* try login */ if (($user = &$room->add_user(&$sess, &$idx, $name, $_SERVER['REMOTE_ADDR'])) != FALSE) { $ACTION = "room"; + log_legal($curtime, $user->sess, $user->name, "STAT:LOGIN", ''); + + // setcookie ("sess", "", time() + 180); $room->standup_update(&$user); @@ -137,7 +127,7 @@ function main() if ($ACTION == "room") { $tables .= '
'; - $tables .= ''; + $tables .= '
'; for ($i = 0 ; $i < TABLES_N ; $i++) { if ($i % 4 == 0) $tables .= ''; @@ -153,57 +143,52 @@ function main() $tables .= '
'; - $standup .= '
'; + $standup .= '
'; $standup .= '
'; - $standup .= '
Giocatori in piedi
'; + $standup .= '
Giocatori in piedi
'; $standup .= sprintf('
'); $standup .= '
'; $standup .= '
'; - - // $tables .= '
'; - - /* - $tables .= ''; - $tables .= ''; - $tables .= '
'; - $tables .= '
'; - $tables .= 'Giocatori in piedi'; - - $tables .= sprintf('
'); - $tables .= '
'; - */ - // $tables .= '
'; } - $altout_propag = array( array ( 'url' => 'http://www.alternativeoutput.it', - 'content' => '' ), - array ( 'url' => 'http://virtualsky.alternativeoutput.it', - 'content' => '' ) + $altout_propag = array( array ( 'id' => 'btn_altout', + 'url' => 'http://www.alternativeoutput.it', + 'content' => 'img/altout80x15.png', + 'content_big' => 'img/altout80x15.png'), + array ( 'id' => 'btn_virtualsky', + 'url' => 'http://virtualsky.alternativeoutput.it', + 'content' => 'img/virtualsky80x15a.gif', + 'content_big' => 'img/virtualsky_big.png') ); // seed with microseconds since last "whole" second srand ((double) microtime() * 1000000); // $randval = rand(0,count($altout_propag)-1); $randval = 1; - $altout_carousel = sprintf('%s', + $altout_carousel = sprintf('', $altout_propag[$randval]['url'], + $altout_propag[$randval]['id'], $altout_propag[$randval]['content']); + $altout_carousel_big = sprintf('', + $altout_propag[$randval]['id'], + $altout_propag[$randval]['content_big']); + $brisk_donate = file_get_contents(FTOK_PATH."/brisk_donate.txt"); if ($brisk_donate == FALSE) $brisk_donate = ""; + + + $brisk_header_form = '
'; @@ -265,40 +237,100 @@ $brisk_vertical_menu = '
- -
-homepage
-cos\'è
-regole
-screenshoots
-compatibilità
-sorgenti
-mailing list
- -propaganda
-about
-contatti
+


sponsored by:

'.$altout_carousel.'
-

+

supported by:

-

+
+



%s %s -
'; + + + +'.$altout_carousel_big.'
'; /* Templates. */ if ($ACTION == 'login') { + header('Content-type: text/html; charset="utf-8"',true); ?> Brisk + @@ -306,12 +338,18 @@ supported by:

- - - + + \n"); @@ -333,11 +374,15 @@ supported by:





-Digita il tuo nickname per accedere ai tavoli della briscola.

+Digita il tuo nickname per accedere ai tavoli della briscola.
+
+ +
+(se usi firefox e qualcosa non funziona
prova a ricaricare la pagina con Ctrl + F5)




@@ -356,27 +401,30 @@ Digita il tuo nickname per accedere ai tavoli della briscola.

Brisk + + - - - + + \n"); @@ -429,16 +480,18 @@ else { -
+
Chat
-
+
+
+