Merge branch 'master' of http://nubati.net/git/e-DoKo
[e-DoKo.git] / include / reminder.php
1 <?php
2 /* make sure that we are not called from outside the scripts, 
3  * use a variable defined in config.php to check this
4  */
5 if(!isset($HOST))
6   exit;
7
8 if(!myisset("me"))
9   {
10     echo "Hmm, you really shouldn't mess with the urls.<br />\n";
11     return;
12   }
13
14 $me = $_REQUEST["me"];
15
16 /* test for valid ID */
17 $myid = DB_get_userid('hash',$me);
18 if(!$myid)
19   {
20     echo "Can't find you in the database, please check the url.<br />\n";
21     echo "perhaps the game has been canceled, check by login in <a href=\"$INDEX\">here</a>.";
22     return;
23   }
24
25 DB_update_user_timestamp($myid);
26
27 /* get some information from the DB */
28 $gameid   = DB_get_gameid_by_hash($me);
29 $myname   = DB_get_name('hash',$me);
30
31 /* check if player hasn't done anything in a while */
32 $r = DB_query_array("SELECT mod_date,player,status from Game WHERE id='$gameid' " );
33 if( (time()-strtotime($r[0]) > 60*60*24*7)  && ($r[2]!='gameover') ) /* = 1 week */
34   {
35     $name = DB_get_name('userid',$r[1]);
36     $To   = DB_get_email('userid',$r[1]);
37     $userhash = DB_get_hash_from_gameid_and_userid($gameid,$r[1]);
38
39     $message = "Hello $name, \n\n".
40       "It's your turn in game ".DB_format_gameid($gameid)." \n".
41       "Actually everyone else is waiting for you for more than a week now ;)\n\n".
42       "Please visit this link now to continue: \n".
43       " ".$HOST.$INDEX."?action=game&me=".$userhash."\n\n" ;
44
45     /* make sure we don't send too  many reminders to one person */
46     if(DB_get_reminder($r[1],$gameid)>0)
47       {
48         echo "<p>An email has already been sent out.</p>\n";
49       }
50     else
51       {
52         DB_set_reminder($r[1],$gameid);
53         mymail($To,$EmailName."Reminder: game ".DB_format_gameid($gameid)." it's your turn",$message);
54
55         echo "<p style=\"background-color:red\";>Game ".DB_format_gameid($gameid).
56           ": an email has been sent out.<br /><br /></p>";
57       }
58   }
59  else
60    echo "<p>You need to wait longer before you can send out a reminder...</p>\n";
61 ?>