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