cambiato sfondo
[brisk.git] / web / brisk.phh
index 2394625..26c1452 100644 (file)
@@ -2,7 +2,7 @@
 /*
  *  brisk - brisk.phh
  *
- *  Copyright (C) 2006 matteo.nastasi@milug.org
+ *  Copyright (C) 2006-2007 matteo.nastasi@milug.org
  *
  * 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
@@ -19,7 +19,9 @@
  *
  */
 
-define( FTOK_PATH, "/var/lib/brisk");
+define(FTOK_PATH, "/var/lib/brisk");
+define(LEGAL_PATH, "/tmp/legal_brisk");
+define(PROXY_PATH, "/var/lib/brisk_proxy");
 define(TABLES_N, 8);
 define(PLAYERS_N, 3);
 define(MAX_POINTS, 5);
@@ -38,9 +40,9 @@ define(BRISK_DEBUG, FALSE);
 // define(DEBUGGING, "local");
 
 $G_all_points = array( 11,10,4,3,2, 0,0,0,0,0 );
-$G_brisk_version = "0.5.0";
+$G_brisk_version = "0.7.0";
 
-$root_wellarr = Array ( 'Benvenuto in brisk (Ver. '.$G_brisk_version.').',
+$root_wellarr = Array ( 'Benvenuto in brisk (Ver. '.$G_brisk_version.'), <b>NOVITA\'</b>: "donate" e piccole rifiniture.',
                         'Se vuoi iscriverti alla <a target="_blank" href="http://www.milug.org/cgi-bin/mailman/listinfo/ml-briscola">Mailing List</a>, cliccala!' );
 $table_wellarr = Array ( 'Benvenuto al tavolo. Se almeno tre giocatori non sbloccano l\'uscita cliccando il lucchetto, chi esce non pu&ograve; risedersi a un qualunque tavolo per '.floor(BAN_TIME/60).' minuti.');
 
@@ -50,6 +52,10 @@ $G_room_help= '
 <b>Descrizione</b><br>
 Questa &egrave; un\'implementazione della briscola in cinque, cos&igrave; come &egrave; spiegata su
 <a target=\\"_blank\\" href=\\"http://it.wikipedia.org/wiki/Briscola#Gioco_a_5\\">Wikipedia</a>; in breve &egrave; la variante con l\'asta prima sulla carta e poi sui punti.<br><br>
+<b>Configurazione del browser.</b><br>
+Occorre abilitare i cookies.<br>
+Se usate Internet Explorer dovete anche settare: strumenti->cronologia_esplorazioni->impostazioni ad \\"apertura alla pagina web\\".<br>
+<br>
 <b>Uso del sito</b><br>
 Potete sedervi a un tavolo o rimanere in piedi.<br>
 Se al vostro tavolo si raggiungono i 5 giocatori inizia automaticamente la partita.<br>
@@ -58,8 +64,9 @@ Se al vostro tavolo si raggiungono i 5 giocatori inizia automaticamente la parti
 All\'inizio vengono distribuite le carte e parte l\'asta; per partecipare all\'asta, quando sar&agrave; il vostro turno, potrete scegliere se andare avanti o passare cliccando sulle icone corrispondenti. Se si arriva ai punti, scrivete nella textbox il vostro rilancio e cliccate PUNTI.<br><br>
 Chi vince l\'asta dovr&agrave; decidere il seme della carta scelta e inizier&agrave; la mano.<br>
 Per giocare le carte dovrete trascinarle nel quadrato al centro del vostro schermo.<br><br>
-Il vostro turno &egrave; sempre segnalato da una cornice verde lampeggiante intorno quadrato al centro del vostro schermo.<br><br>
+Il vostro turno &egrave; sempre segnalato da una cornice verde lampeggiante intorno al quadrato al centro del vostro schermo.<br><br>
 Durante la partita, se vorrete ricaricare la pagina, usate l\'apposito bottone \\"reload\\" in basso a destra.<br>
+Dopo che &egrave; iniziata una partita per uscirne dovete chiedere agli altri giocatori di sbloccarla cliccando sul lucchetto. Se non si segue questa prassi, una volta usciti, non vi potrete sedere a nessun tavolo per '.floor(BAN_TIME/60).' minuti.
 <dl>
 <dt><b>Comandi della chat</b>
 <dd><b>/nick <i>&lt;nuovo_nickname&gt;</i></b> - cambio di nickname
@@ -97,13 +104,13 @@ class Card {
   function Card($value, $stat, $owner)
   {
     $this->value = $value;
-    $this->stat  = $stat;
+    $this->stat  = $stat; // Card stat
     $this->owner = $owner;
   }
 
   function assign($stat,$owner)
   {
-    $this->stat  = $stat;
+    $this->stat  = $stat; // Card stat
     $this->owner = $owner;
   }
 
@@ -114,14 +121,14 @@ class Card {
 
   function play($x,$y)
   {
-    $this->stat = 'table';
+    $this->stat = 'table'; // Card stat
     $this->x = $x;
     $this->y = $y;
   }
 
   function take($newown)
   {
-    $this->stat = 'take';
+    $this->stat = 'take'; // Card stat
     $this->owner = $newown;
   }
 }
@@ -184,10 +191,11 @@ class Table {
     $ret = array();
 
     for ($i = 0 ; $i < 40 ; $i++) {
-      $ret[$i] = new Card($i, 'bunch', 'no_owner');
+      $ret[$i] =& new Card($i, 'bunch', 'no_owner');
     }
 
-    return ($ret);
+    $oret = &$ret;
+    return ($oret);
   }
 
   function bunch_make()
@@ -343,6 +351,7 @@ class Table {
 class User {
   var $name;       // name of the user
   var $sess;       // session of the user
+  var $ip;         // ip of the user
   var $lacc;       // last access (for the cleanup)
   var $laccwr;     // last access (for the cleanup)
   var $bantime;    // timeout to temporary ban
@@ -373,11 +382,58 @@ class User {
     $this->asta_pnt  = -1;
     $this->handpt = -1;
     $this->exitislock = TRUE;
-
+    
     $this->table = $table;
   }
+
+  function stat_set($stat) {
+    $this->stat = "$stat";
+    
+    /*
+    if (validate_sess($this->sess)) {
+      $fp = fopen(PROXY_PATH."/".$this->sess.".stat", 'w');
+      fwrite($fp, sprintf("%s\n",$this->stat));
+      fclose($fp);
+    }
+    */
+  }
+
+  function step_set($step) {
+    $this->step = $step;
+    
+    if (validate_sess($this->sess)) {
+      $fp = fopen(PROXY_PATH."/".$this->sess.".step", 'w');
+      fwrite($fp, pack("l",$this->step), 4);
+      fclose($fp);
+    }
+  }
+
+  function step_inc() {
+    $this->step++;
+    
+    if (validate_sess($this->sess)) {
+      $fp = fopen(PROXY_PATH."/".$this->sess.".step", 'w');
+      fwrite($fp, pack("l",$this->step), 4);
+      fclose($fp);
+    }
+  }
+}
+
+function step_get($sess) {
+  $fp = fopen(PROXY_PATH."/".$sess.".step", 'r');
+  $arr = unpack('l', fread($fp, 4));
+  fclose($fp);
+
+  // log_rd2($sess, "A0: ".$arr[0]."  A1: ".$arr[1]);
+  return ($arr[1]);
 }
 
+function step_unproxy($sess) {
+  log_rd2($sess, "UNPROXY: ".PROXY_PATH."/".$sess.".step");
+  unlink(PROXY_PATH."/".$sess.".step");
+}
+
+
 class brisco {
   var $user;
   var $table;
@@ -389,10 +445,10 @@ class brisco {
     $this->user = array();
 
     for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
-      $this->user[$i] = new User("", "");
+      $this->user[$i] =& new User("", "");
     }
     for ($i = 0 ; $i < TABLES_N ; $i++) 
-      $this->table[$i] = new Table();
+      $this->table[$i] =& new Table();
     $this->garbage_timeout = 0;
   }
 
@@ -414,7 +470,9 @@ class brisco {
          if ($user_cur->stat == 'table' || $user_cur->stat == 'room') {
            log_auth($user_cur->sess, "Autologout session.");
            
+           $tmp_sess = $user_cur->sess;
            $user_cur->sess = "";
+           step_unproxy($tmp_sess);
            $user_cur->name = "";
            $user_cur->the_end = FALSE;
            
@@ -433,7 +491,7 @@ class brisco {
            $this->room_wakeup(&$user_cur);
            $user_cur->comm[$user_cur->step % COMM_N] = "gst.st = ".($user_cur->step+1)."; ";
            $user_cur->comm[$user_cur->step % COMM_N] .=  show_notify("<br>Sei stato inattivo per ".(EXPIRE_TIME_SMAMMA/60.0)." minuti. <br><br>Quindi ritorni tra i <b>Giocatori in piedi</b>.", 0, "torna ai tavoli", 400, 100);
-           $user_cur->step++;
+           $user_cur->step_inc();
          }
        }
       }
@@ -441,6 +499,9 @@ class brisco {
       
       $this->garbage_timeout = time() + GARBAGE_TIMEOUT;
     }
+
+    // BAN_IP_CLEAN
+
   }
 
 
@@ -462,12 +523,12 @@ class brisco {
        log_main("PREIMPOST", "INLOOP name: ".$user_cur->name);
 
        if ($user_cur != $user) {
-         $user_cur->stat = "room";
+         $user_cur->stat_set("room");
          $user_cur->subst = "sitdown";
          $user_cur->laccwr = $curtime;
        }
        else if ($user->sess != "") {
-         $user_cur->stat = "room";
+         $user_cur->stat_set("room");
          $user_cur->subst = "standup";
          $user_cur->laccwr = $curtime;
          $user_cur->table = -1;
@@ -475,7 +536,7 @@ class brisco {
       }
     }
     else {
-      $user->stat = "room";
+      $user->stat_set("room");
       $user->subst = "standup";
       $user->laccwr = $curtime;
     }
@@ -521,7 +582,7 @@ class brisco {
       }
       log_wr($user_cur->sess, "ROOM_WAKEUP: ".$ret);
       $user_cur->comm[$user_cur->step % COMM_N] = $ret;
-      $user_cur->step++;
+      $user_cur->step_inc();
     }
   }
   
@@ -556,7 +617,7 @@ class brisco {
        $ret .= sprintf('$("myname").innerHTML = "<b>%s</b>: ";',  xcape($user->name));
       }
       $user_cur->comm[$user_cur->step % COMM_N] = $ret;
-      $user_cur->step++;
+      $user_cur->step_inc();
     }
 
     log_main("table_update", "post");
@@ -595,7 +656,7 @@ class brisco {
        }
       }
       $user_cur->comm[$user_cur->step % COMM_N] = $ret;
-      $user_cur->step++;
+      $user_cur->step_inc();
     }
   }
 
@@ -607,14 +668,16 @@ class brisco {
     
     $user_mesg = substr($mesg,6);
     
-    $dt = date("H:i ",time());
+    $timecur = time();
+    
+    $dt = date("H:i ", $timecur);
     if (strncmp($user_mesg, "/nick ", 6) == 0) {
       log_main($user->sess, "chatt_send BEGIN");
 
       if (($name_new = validate_name(substr($user_mesg, 6))) == FALSE) {
          $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
          $user->comm[$user->step % COMM_N] .= sprintf('chatt_sub("%s","Il nickname deve contenere almeno una lettera o una cifra.");', $dt.NICKSERV, xcape($name_new));
-         $user->step++;
+         $user->step_inc();
 
          return;
       }
@@ -631,7 +694,7 @@ class brisco {
        if ($user_cur->name == $name_new) {
          $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
          $user->comm[$user->step % COMM_N] .= sprintf('chatt_sub("%s","Nickname <b>%s</b> gi&agrave; in uso.");', $dt.NICKSERV, xcape($name_new));
-         $user->step++;
+         $user->step_inc();
          break;
        }
       }
@@ -673,7 +736,7 @@ class brisco {
            if ($user_cur == $user)
              $user_cur->comm[$user_cur->step % COMM_N] .= sprintf('$("myname").innerHTML = "<b>%s</b>";', 
                                                                   xcape($user->name,ENT_COMPAT,"UTF-8"));
-           $user_cur->step++;
+           $user_cur->step_inc();
          }
        }
       }
@@ -692,21 +755,24 @@ class brisco {
        $user_cur->comm[$user_cur->step % COMM_N] = "gst.st = ".($user_cur->step+1)."; ";
        $user_cur->comm[$user_cur->step % COMM_N] .= sprintf('chatt_sub("%s","%s");',
                                                             $dt.xcape($user->name), xcape($user_mesg));
-       $user_cur->step++;
+       $user_cur->step_inc();
       }
+      log_legal($timecur, $user->sess, $user->name, 
+               ($user->stat == 'room' ? 'room' : 'table '.$user->table),$user_mesg);
     }
   }
 
   function &get_user($sess, &$idx)
   {
     GLOBAL $PHP_SELF;
-    
-    if (strlen($sess) == SESS_LEN) {
+
+    if (validate_sess($sess)) {
       for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
        if (strcmp($sess, $this->user[$i]->sess) == 0) {
          // find it
          $idx = $i;
-         return ($this->user[$i]);
+         $ret = &$this->user[$i];
+         return ($ret);
        }
       }
       log_main($sess, sprintf("get_user: Wrong sess from page [%s]",$PHP_SELF));
@@ -720,7 +786,7 @@ class brisco {
   }
 
   /*
-   * function &add_user(&$bri, &$sess, &$idx, $name)
+   * function &add_user(&$bri, &$sess, &$idx, $name, $ip)
    *
    * RETURN VALUE:
    *   if ($idx != -1 && ret == FALSE)  =>  duplicated nick
@@ -728,7 +794,7 @@ class brisco {
    *   if ($idx == -1 && ret == FALSE)  =>  no space left
    *   if (ret == TRUE)                 =>  SUCCESS
    */
-  function &add_user(&$sess, &$idx, $name)
+  function &add_user(&$sess, &$idx, $name, $ip)
   {
     $idx = -1;
     $idfree = -1;
@@ -763,6 +829,7 @@ class brisco {
 
     if ($idx != -1 && $i == MAX_PLAYERS) {
       /* SUCCESS */
+      $curtime = time();
       if ($sess == "") {
        $this->user[$idx]->sess = uniqid("");
        $sess = $this->user[$idx]->sess;
@@ -772,10 +839,12 @@ class brisco {
        $this->user[$idx]->sess = $sess;
       }
       $this->user[$idx]->name = $name_new;
-      $this->user[$idx]->stat = "room";
+      $this->user[$idx]->stat_set("room");
       $this->user[$idx]->subst = "standup";
-      $this->user[$idx]->laccwr = time();
-      
+      $this->user[$idx]->lacc =   $curtime;
+      $this->user[$idx]->laccwr = $curtime;
+      $this->user[$idx]->bantime = 0;
+      $this->user[$idx]->ip = $ip;
       log_main("XXX", sprintf("TROVATO LIBERO A [%d] sess [%s] name [%s]", $idx, $sess, $name_new));
       
       return ($this->user[$idx]);
@@ -800,7 +869,7 @@ class brisco {
        
        log_main("FROM STANDUP", "NAME: ".$user_cur->name." SENDED: ".$user_cur->comm[$user_cur->step % COMM_N]);
        
-       $user_cur->step++;
+       $user_cur->step_inc();
       }
     }
   }
@@ -877,9 +946,21 @@ function log_load($sess, $log) {
   fclose($fp);
 }
 
+function log_legal($timecur, $sess, $name, $where, $mesg) 
+{
+  GLOBAL $_SERVER;
+
+  $fp = fopen(LEGAL_PATH, 'a');
+  /* Unix time | session | nickname | IP | where was | mesg */
+  fwrite($fp, sprintf("%ld|%s|%s|%s|%s|%s|\n", $timecur, $sess, $name, $_SERVER['REMOTE_ADDR'], $where , $mesg));
+  fclose($fp);
+}
+
+
+
 function init_data()
 {
-  $brisco = new brisco();
+  $brisco =& new brisco();
 
   return $brisco;
 }
@@ -909,6 +990,28 @@ function unlock_data($res)
 }
 
 
+function lock_banlist()
+{
+  if (($tok = ftok(FTOK_PATH."/main", "L")) == -1) {
+    echo "FTOK FAILED";
+    exit;
+  }
+  if (($res = sem_get($tok)) == FALSE) {
+    echo "SEM_GET FAILED";
+    exit;
+  }
+  if (sem_acquire($res)) 
+    return ($res);
+  else
+    return (false);
+}
+
+function unlock_banlist($res)
+{
+  return (sem_release($res));
+}
+
+
 function &load_data() 
 {
   if (($tok = ftok(FTOK_PATH."/main", "B")) == -1) {
@@ -926,7 +1029,8 @@ function &load_data()
     
     shm_detach($shm);
 
-    return ($bri);
+    $ret = &$bri;
+    return ($ret);
   }
 
   return (NULL);
@@ -1485,7 +1589,7 @@ function calculate_winner(&$table)
 
   for ($i = 0 ; $i < PLAYERS_N ; $i++) {
     $table->card[$ontid[$i]]->owner = $cur_win;
-    $table->card[$ontid[$i]]->stat =  "take";
+    $table->card[$ontid[$i]]->stat =  "take"; // Card stat
   }
   return ($cur_win);
 }