move #tricks to new line and center it
[e-DoKo.git] / index.php
index f0a434f57db42b528cfc55b5b4fb701c281571e1..691e11374aa48d0966df8185f51eb6bff95d423e 100644 (file)
--- a/index.php
+++ b/index.php
 <?php
 <?php
+/* Copyright 2006, 2007, 2008, 2009, 2010 Arun Persaud <arun@nubati.net>
+ *
+ *   This file is part of e-DoKo.
+ *
+ *   e-DoKo is free software: you can redistribute it and/or modify
+ *   it under the terms of the GNU General Public License as published by
+ *   the Free Software Foundation, either version 3 of the License, or
+ *   (at your option) any later version.
+ *
+ *   e-DoKo is distributed in the hope that it will be useful,
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *   GNU General Public License for more details.
+ *
+ *   You should have received a copy of the GNU General Public License
+ *   along with e-DoKo.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
 error_reporting(E_ALL);
 
 error_reporting(E_ALL);
 
-include_once("config.php");
-include_once("output.php");      /* html output only */
-include_once("db.php");          /* database only */
-include_once("functions.php");   /* the rest */
+/* start a session, if it is not already running.
+ * This way people don't have to log in all the times.
+ * The session variables can also be read out from different
+ * php scripts, so that the code can be easily split up across several files
+ */
+session_start();
+
+include_once("config.php");                /* needs to be first in list, since other includes use this */
+include_once("./include/output.php");      /* html output only */
+include_once("./include/db.php");          /* database only */
+include_once("./include/functions.php");   /* the rest */
 
 /* make sure that user has set all variables in config.php */
 config_check();
 
 
 /* make sure that user has set all variables in config.php */
 config_check();
 
-/* open database */
-if(DB_open()<0)
+/* open the database */
+$DBopen = DB_open();
+if($DBopen<0)
   {
     output_header();
   {
     output_header();
-    echo "Database error, can't connect... Please wait a while and try again. ".
-      "If the problem doesn't go away feel free to contact $ADMIN_NAME at $ADMIN_EMAIL.";
+
+    if($DBopen == -1)
+      echo "Database error, can't connect... Please wait a while and try again. ".
+       "If the problem doesn't go away feel free to contact $ADMIN_NAME at $ADMIN_EMAIL.";
+    else if ($DBopen == -2)
+      echo "Wrong database version, please update your database using the update.php script.";
+
     output_footer();
     exit();
   }
 
     output_footer();
     exit();
   }
 
-/* start a session, if it is not already running.
- * This way people don't have to log in all the times. 
- * The session variables can also be read out from different
- * php scripts, so that the code can be easily split up across several files
+/* localization */
+/* needs to be in front of output_header, but we don't know the users preferences at this time,
+ * so we go by the session variable or if language is set
  */
  */
-session_start();
-
-/* done major error checking, output header of HTML page */
-output_header();
-
-/* does the user want to log out? */
-if(myisset("logout"))
+if(myisset('language') || isset($_SESSION['language']))
   {
   {
-    session_unset();
-    session_destroy();
-    $_SESSION = array();
-    echo "<div class=\"message\"><span class=\"bigger\">You are now logged out!</span><br />\n".
-      "(<a href=\"$INDEX\">This will take you back to the home-page</a>)</div>";
-  }
-/* check if we want to start a new game */
-else if(myisset("new"))
-  {
-    output_status();
-    /* user need to be logged in to do this */
-    if( isset($_SESSION["name"]) )
+    $language = 'en';
+    if(isset($_SESSION['language']))
+       $language = $_SESSION['language'];
+    if(myisset('language'))
       {
       {
-       $names = DB_get_all_names();
-       echo "<div class=\"user\">\n";
-       output_form_for_new_game($names);
-       echo "</div>\n";
-       display_user_menu();
+       $language = $_REQUEST['language'];
+       $_SESSION['language'] = $language; /* overrule preferences */
       }
       }
-    else
+    switch($language)
       {
       {
-       echo "<div class=\"message\">Please <a href=\"$INDEX\">log in</a>.</div>";
+      case 'de':
+       putenv("LC_ALL=de_DE");
+       setlocale(LC_ALL, "de_DE");
+       // Specify location of translation tables
+       bindtextdomain("edoko", "./locale");
+       // Choose domain
+       textdomain("edoko");
+       break;
+      default:
+       /* do nothing */
       }
   }
       }
   }
-/*check if everything is ready to set up a new game */
-else if( myisset("PlayerA", "PlayerB","PlayerC","PlayerD","dullen","schweinchen","call" ))
-  {
-    output_status();
-    /* user needs to be logged in */
-    if( !isset($_SESSION["name"]) )
-      {
-       echo "<div class=\"message\">Please <a href=\"$INDEX\">log in</a>.</div>";
-      }
-    else
-      {
-       /* get my name */
-       $name = $_SESSION["name"];
-
-       /* the names of the four players */
-       $PlayerA = $_REQUEST["PlayerA"];
-       $PlayerB = $_REQUEST["PlayerB"];
-       $PlayerC = $_REQUEST["PlayerC"];
-       $PlayerD = $_REQUEST["PlayerD"];
-
-       /* the person who sets up the game has to be one of the players */
-       if(!in_array($name,array($PlayerA,$PlayerB,$PlayerC,$PlayerD)))
-         {
-           echo "<div class=\"message\">You need to be one of the players to start a <a href=\"$INDEX?new\">new game</a>.</div>";
-           output_footer();
-           DB_close();
-           exit();
-         }
-       
-       /* what rules were selected */
-       $dullen      = $_REQUEST["dullen"];
-       $schweinchen = $_REQUEST["schweinchen"];
-       $call        = $_REQUEST["call"];
-
-       /* get the emails addresses of the players */
-       $EmailA  = DB_get_email_by_name($PlayerA);
-       $EmailB  = DB_get_email_by_name($PlayerB);
-       $EmailC  = DB_get_email_by_name($PlayerC);
-       $EmailD  = DB_get_email_by_name($PlayerD);
-
-       /* this is used to check if the player names are all ok */
-       if($EmailA=="" || $EmailB=="" || $EmailC=="" || $EmailD=="")
-         {
-           echo "couldn't find one of the names, please start a new game";
-           output_footer();
-           DB_close();
-           exit();
-         }
 
 
-       /* get user ids */
-       $useridA  = DB_get_userid_by_name($PlayerA);
-       $useridB  = DB_get_userid_by_name($PlayerB);
-       $useridC  = DB_get_userid_by_name($PlayerC);
-       $useridD  = DB_get_userid_by_name($PlayerD);
-
-       /* create random numbers */
-       $randomNR       = create_array_of_random_numbers($useridA,$useridB,$useridC,$useridD);
-       $randomNRstring = join(":",$randomNR);
-
-       /* create game */
-       $followup = NULL;
-       /* is this game a follow up in an already started session? */
-       if(myisset("followup") )
-         {
-           $followup= $_REQUEST["followup"];
-           $session = DB_get_session_by_gameid($followup);
-           $ruleset = DB_get_ruleset_by_gameid($followup); /* just copy ruleset from old game,
-                                                            this way no manipulation is possible */
-
-           /* check if there is a game in pre or play mode, in that case do nothing */
-           if( DB_is_session_active($session) > 0 )
-             {
-               echo "<p class=\"message\"> There is already a game going on in session $session, you can't start a new one</p>";
-               output_footer();
-               DB_close();
-               exit();
-             }
-           else if ( DB_is_session_active($session) < 0 )
-             {
-               echo "<p class=\"message\"> ERROR: status of session $session couldn't be determined.</p>";
-               output_footer();
-               DB_close();
-               exit();
-             }
-
-           if($session)
-             mysql_query("INSERT INTO Game VALUES (NULL, NULL, '$randomNRstring', 'normal', NULL,NULL,'1',NULL,'pre',".
-                         "'$ruleset','$session' ,NULL)");
-           else
-             {
-               /* get max session and start a new one */
-               $max = DB_get_max_session();
-               $max++;
-               mysql_query("UPDATE Game SET session='".$max."' WHERE id=".DB_quote_smart($followup));
-               mysql_query("INSERT INTO Game VALUES (NULL, NULL, '$randomNRstring', 'normal', NULL,NULL,'1',NULL,'pre',".
-                           "'$ruleset','$max' ,NULL)");
-             }
-         }
-       else /* no follow up, start a new session */
-         {
-           /* get ruleset information or create new one */
-           $ruleset = DB_get_ruleset($dullen,$schweinchen,$call);
-           if($ruleset <0)
-             {
-               myerror("Error defining ruleset: $ruleset");
-               output_footer();
-               DB_close();
-               exit();
-             };
-           /* get max session */
-           $max = DB_get_max_session();
-           $max++;
-
-           mysql_query("INSERT INTO Game VALUES (NULL, NULL, '$randomNRstring', 'normal', NULL,NULL,'1',NULL,'pre', ".
-                       "'$ruleset','$max' ,NULL)");
-         }
-       $game_id = mysql_insert_id();
-
-       /* create hash */
-       $TIME  = (string) time(); /* to avoid collisions */
-       $hashA = md5("AGameOfDoko".$game_id.$PlayerA.$EmailA.$TIME);
-       $hashB = md5("AGameOfDoko".$game_id.$PlayerB.$EmailB.$TIME);
-       $hashC = md5("AGameOfDoko".$game_id.$PlayerC.$EmailC.$TIME);
-       $hashD = md5("AGameOfDoko".$game_id.$PlayerD.$EmailD.$TIME);
-
-       /* create hands */
-       mysql_query("INSERT INTO Hand VALUES (NULL,".DB_quote_smart($game_id).",".DB_quote_smart($useridA).
-                   ", ".DB_quote_smart($hashA).", 'start','1',NULL,NULL,NULL,NULL)");
-       $hand_idA = mysql_insert_id();
-       mysql_query("INSERT INTO Hand VALUES (NULL,".DB_quote_smart($game_id).",".DB_quote_smart($useridB).
-                   ", ".DB_quote_smart($hashB).", 'start','2',NULL,NULL,NULL,NULL)");
-       $hand_idB = mysql_insert_id();
-       mysql_query("INSERT INTO Hand VALUES (NULL,".DB_quote_smart($game_id).",".DB_quote_smart($useridC).
-                   ", ".DB_quote_smart($hashC).", 'start','3',NULL,NULL,NULL,NULL)");
-       $hand_idC = mysql_insert_id();
-       mysql_query("INSERT INTO Hand VALUES (NULL,".DB_quote_smart($game_id).",".DB_quote_smart($useridD).
-                   ", ".DB_quote_smart($hashD).", 'start','4',NULL,NULL,NULL,NULL)");
-       $hand_idD = mysql_insert_id();
-
-       /* save cards */
-       for($i=0;$i<12;$i++)
-         mysql_query("INSERT INTO Hand_Card VALUES (NULL, '$hand_idA', '".$randomNR[$i]."', 'false')");
-       for($i=12;$i<24;$i++)
-         mysql_query("INSERT INTO Hand_Card VALUES (NULL, '$hand_idB', '".$randomNR[$i]."', 'false')");
-       for($i=24;$i<36;$i++)
-         mysql_query("INSERT INTO Hand_Card VALUES (NULL, '$hand_idC', '".$randomNR[$i]."', 'false')");
-       for($i=36;$i<48;$i++)
-         mysql_query("INSERT INTO Hand_Card VALUES (NULL, '$hand_idD', '".$randomNR[$i]."', 'false')");
-
-       /* send out email, TODO: check for error with email */
-       $message = "\n".
-         "you are invited to play a game of DoKo (that is to debug the program ;).\n".
-         "Place comments and bug reports here:\n".
-         "http://wiki.nubati.net/index.php?title=EmailDoko\n\n".
-         "The whole round would consist of the following players:\n".
-         "$PlayerA\n".
-         "$PlayerB\n".
-         "$PlayerC\n".
-         "$PlayerD\n\n".
-         "If you want to join this game, please follow this link:\n\n".
-         "".$HOST.$INDEX."?me=";
+/* done major error checking, output header of HTML page */
+output_header();
 
 
-       mymail($EmailA,"You are invited to a game of DoKo","Hello $PlayerA,\n".$message.$hashA);
-       mymail($EmailB,"You are invited to a game of DoKo","Hello $PlayerB,\n".$message.$hashB);
-       mymail($EmailC,"You are invited to a game of DoKo","Hello $PlayerC,\n".$message.$hashC);
-       mymail($EmailD,"You are invited to a game of DoKo","Hello $PlayerD,\n".$message.$hashD);
+/* The rest of the file consists of handling user input.
+ * The user sends information via html GET and POST variables,
+ * and the action variable tells the prog what the user wants to do
+ */
+if(myisset("action"))
+  $action=$_REQUEST['action'];
+else
+  $action=""; /* so that we can use a default option below */
 
 
-       echo "<div class=\"message\">You started a new game. The emails have been sent out!</div>\n";
-      }
-    /* end set up a new game */
-  }    
-/* cancel a game, if nothing has happend in the last N minutes */
-else if(myisset("cancel","me"))
+switch($action)
   {
   {
-    output_status();
-
-    $me = $_REQUEST["me"];
-
-    /* test for valid ID */
-    $myid = DB_get_userid_by_hash($me);
-    if(!$myid)
-      {
-       echo "Can't find you in the database, please check the url.<br />\n";
-       echo "perhaps the game has been canceled, check by login in <a href=\"$INDEX\">here</a>.";
-       output_footer();
-       DB_close();
-       exit();
-      }
-
-    DB_update_user_timestamp($myid);
-
-    /* get some information from the DB */
-    $gameid   = DB_get_gameid_by_hash($me);
-    $myname   = DB_get_name_by_hash($me);
-
-    /* check if game really is old enough to be canceled */
-    $result = mysql_query("SELECT mod_date from Game WHERE id='$gameid' " );
-    $r = mysql_fetch_array($result,MYSQL_NUM);
-    if(time()-strtotime($r[0]) > 60*60*24*30) /* = 1 month */
-      {
-       $message = "Hello, \n\n".
-         "Game ".DB_format_gameid($gameid).
-         " has been canceled since nothing happend for a while and $myname requested it.\n";
-
-       $userids = DB_get_all_userid_by_gameid($gameid);
-       foreach($userids as $user)
-         {
-           $To = DB_get_email_by_userid($user);
-           mymail($To,$EmailName."game ".DB_format_gameid($gameid)." canceled (timed out)",$message);
-         }
-
-       /* delete everything from the dB */
-       DB_cancel_game($me);
-
-       echo "<p style=\"background-color:red\";>Game ".DB_format_gameid($gameid).
-         " has been canceled.<br /><br /></p>";
-      }
+  case 'new':
+    require './include/newgame.php';
+    break;
+  case 'cancel':
+    require './include/cancelgame.php';
+    break;
+  case 'reminder':
+    require './include/reminder.php';
+    break;
+  case 'logout':
+    require './include/logout.php';
+    require './include/welcome.php';
+    break;
+  case 'login':
+    require './include/login.php';
+    require './include/user.php';
+    break;
+  case 'register':
+    require './include/register.php';
+    break;
+  case 'prefs':
+    require './include/preferences.php';
+    break;
+  case 'game':
+    require './include/game.php';
+    break;
+  case 'about':
+    require './include/about.php';
+    break;
+  case 'stats':
+    if(isset($_SESSION["name"]))
+      require './include/stats.php';
     else
     else
-      echo "<p>You need to wait longer before you can cancel a game...</p>\n";
-  }
-/* send out a reminder */
-else if(myisset("remind","me"))
-  {
-    output_status();
-
-    $me = $_REQUEST["me"];
-
-    /* test for valid ID */
-    $myid = DB_get_userid_by_hash($me);
-    if(!$myid)
-      {
-       echo "Can't find you in the database, please check the url.<br />\n";
-       echo "perhaps the game has been canceled, check by login in <a href=\"$INDEX\">here</a>.";
-       output_footer();
-       DB_close();
-       exit();
-      }
-
-    DB_update_user_timestamp($myid);
-
-    /* get some information from the DB */
-    $gameid   = DB_get_gameid_by_hash($me);
-    $myname   = DB_get_name_by_hash($me);
-
-    /* check if player hasn't done anything in a while */
-    $result = mysql_query("SELECT mod_date,player,status from Game WHERE id='$gameid' " );
-    $r = mysql_fetch_array($result,MYSQL_NUM);
-    if( (time()-strtotime($r[0]) > 60*60*24*7)  && ($r[2]!='gameover') ) /* = 1 week */
-      {
-       $name = DB_get_name_by_userid($r[1]);
-       $To   = DB_get_email_by_userid($r[1]);
-       $userhash = DB_get_hash_from_gameid_and_userid($gameid,$r[1]);
-
-       $message = "Hello $name, \n\n".
-         "It's your turn in game ".DB_format_gameid($gameid)." \n".
-         "Actually everyone else is waiting for you for more than a week now ;)\n\n".
-         "Please visit this link now to continue: \n".
-         " ".$HOST.$INDEX."?me=".$userhash."\n\n" ;
-
-       /* make sure we don't send too  many reminders to one person */
-       if(DB_get_reminder($r[1],$gameid)>0)
-         {
-           echo "<p>An email has already been sent out.</p>\n";
-         }
-      &nb