Merge branch 'master' of /home/arun/nubati.net/git/e-DoKo
[e-DoKo.git] / include / reminder.php
1 <?php
2 /* Copyright 2006, 2007, 2008, 2009, 2010 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 if(!myisset("me"))
28   {
29     echo "Hmm, you really shouldn't mess with the urls.<br />\n";
30     return;
31   }
32
33 $me = $_REQUEST["me"];
34
35 /* test for valid ID */
36 $myid = DB_get_userid('hash',$me);
37 if(!$myid)
38   {
39     echo "Can't find you in the database, please check the url.<br />\n";
40     echo "perhaps the game has been canceled, check by login in <a href=\"$INDEX\">here</a>.";
41     return;
42   }
43
44 DB_update_user_timestamp($myid);
45
46 /* get some information from the DB */
47 $gameid   = DB_get_gameid_by_hash($me);
48 $myname   = DB_get_name('hash',$me);
49
50 /* check if player hasn't done anything in a while */
51 $r = DB_query_array("SELECT mod_date,player,status from Game WHERE id='$gameid' " );
52 if( (time()-strtotime($r[0]) > 60*60*24*7)  && ($r[2]!='gameover') ) /* = 1 week */
53   {
54     $name = DB_get_name('userid',$r[1]);
55     $userhash = DB_get_hash_from_gameid_and_userid($gameid,$r[1]);
56
57     $message = "It's your turn in game ".DB_format_gameid($gameid)." \n".
58       "Actually everyone else is waiting for you for more than a week now ;)\n\n".
59       "Please visit this link now to continue: \n".
60       " ".$HOST.$INDEX."?action=game&me=".$userhash."\n\n" ;
61
62     /* make sure we don't send too many reminders to one person */
63     if(DB_get_reminder($r[1],$gameid)>0)
64       {
65         echo "<p>An email has already been sent out.</p>\n";
66       }
67     else
68       {
69         DB_set_reminder($r[1],$gameid);
70         $subject ='Reminder: game '.DB_format_gameid($gameid)." it's your turn";
71         mymail($r[1],$subject,$message);
72
73         echo "<p style=\"background-color:red\";>Game ".DB_format_gameid($gameid).
74           ": an email has been sent out.<br /><br /></p>";
75       }
76   }
77  else
78    echo '<p>You need to wait longer before you can send out a reminder...</p>\n';
79 ?>