1e3135c66e0c153e3ab7f6664a67d7a0f8be23a6
[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 output_status();
9
10 $me = $_REQUEST["me"];
11
12 /* test for valid ID */
13 $myid = DB_get_userid('hash',$me);
14 if(!$myid)
15   {
16     echo "Can't find you in the database, please check the url.<br />\n";
17     echo "perhaps the game has been canceled, check by login in <a href=\"$INDEX\">here</a>.";
18     output_footer();
19     DB_close();
20     exit();
21   }
22
23 DB_update_user_timestamp($myid);
24
25 /* get some information from the DB */
26 $gameid   = DB_get_gameid_by_hash($me);
27 $myname   = DB_get_name('hash',$me);
28
29 /* check if player hasn't done anything in a while */
30 $result = mysql_query("SELECT mod_date,player,status from Game WHERE id='$gameid' " );
31 $r = mysql_fetch_array($result,MYSQL_NUM);
32 if( (time()-strtotime($r[0]) > 60*60*24*7)  && ($r[2]!='gameover') ) /* = 1 week */
33   {
34     $name = DB_get_name('userid',$r[1]);
35     $To   = DB_get_email('userid',$r[1]);
36     $userhash = DB_get_hash_from_gameid_and_userid($gameid,$r[1]);
37
38     $message = "Hello $name, \n\n".
39       "It's your turn in game ".DB_format_gameid($gameid)." \n".
40       "Actually everyone else is waiting for you for more than a week now ;)\n\n".
41       "Please visit this link now to continue: \n".
42       " ".$HOST.$INDEX."?me=".$userhash."\n\n" ;
43
44     /* make sure we don't send too  many reminders to one person */
45     if(DB_get_reminder($r[1],$gameid)>0)
46       {
47         echo "<p>An email has already been sent out.</p>\n";
48       }
49     else
50       {
51         DB_set_reminder($r[1],$gameid);
52         mymail($To,$EmailName."Reminder: game ".DB_format_gameid($gameid)." it's your turn",$message);
53
54         echo "<p style=\"background-color:red\";>Game ".DB_format_gameid($gameid).
55           ": an email has been sent out.<br /><br /></p>";
56       }
57   }
58  else
59    echo "<p>You need to wait longer before you can send out a reminder...</p>\n";
60 ?>