replaces some more " with '
[e-DoKo.git] / include / cancelgame.php
1 <?php
2 /* Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2012 Arun Persaud <arun@nubati.net>
3  *
4  *   This file is part of e-DoKo.
5  *
6  *   e-DoKo is free software: you can redistribute it and/or modify
7  *   it under the terms of the GNU General Public License as published by
8  *   the Free Software Foundation, either version 3 of the License, or
9  *   (at your option) any later version.
10  *
11  *   e-DoKo is distributed in the hope that it will be useful,
12  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *   GNU General Public License for more details.
15  *
16  *   You should have received a copy of the GNU General Public License
17  *   along with e-DoKo.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  */
20
21 /* make sure that we are not called from outside the scripts,
22  * use a variable defined in config.php to check this
23  */
24 if(!isset($HOST))
25   exit;
26
27 /* display the menu */
28 output_status();
29
30 /* you should only get here from a game page, so $me should be set */
31 if(!myisset("me"))
32   {
33     echo "Hmm, you really shouldn't mess with the urls.<br />\n";
34     return;
35   }
36
37 $me = $_REQUEST["me"];
38
39 /* test for valid ID */
40 $myid = DB_get_userid('hash',$me);
41 if(!$myid)
42   {
43     echo "Can't find you in the database, please check the url.<br />\n";
44     echo "perhaps the game has been canceled, check by login in <a href=\"$INDEX\">here</a>.";
45     return;
46   }
47
48 DB_update_user_timestamp($myid);
49
50 /* get some information from the DB */
51 $gameid   = DB_get_gameid_by_hash($me);
52 $myname   = DB_get_name('hash',$me);
53
54 /* check if game really is old enough to be canceled */
55 $r = DB_query_array("SELECT mod_date from Game WHERE id='$gameid' " );
56 if(time()-strtotime($r[0]) > 60*60*24*30) /* = 1 month */
57   {
58     $message = "Game ".DB_format_gameid($gameid).
59       " has been canceled since nothing happend for a while and $myname requested it.\n\n";
60
61     /* email to all players */
62     $userids = DB_get_all_userid_by_gameid($gameid);
63     foreach($userids as $user)
64       {
65         mymail($user,$gameid, GAME_CANCELED_TIMEOUT, $message);
66       }
67
68     /* set gamestatus to canceled */
69     cancel_game('timedout',$gameid);
70
71     echo "<p style=\"background-color:red\";>Game ".DB_format_gameid($gameid).
72       " has been canceled.<br /><br /></p>";
73   }
74  else /* game can't be canceled yet */
75    echo "<p>You need to wait longer before you can cancel a game...</p>\n";
76 ?>