BUGFIX: typo in scoring algorithm
[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 $result = mysql_query("SELECT mod_date,player,status from Game WHERE id='$gameid' " );
39 $r = mysql_fetch_array($result,MYSQL_NUM);
40 if( (time()-strtotime($r[0]) > 60*60*24*7)  && ($r[2]!='gameover') ) /* = 1 week */
41   {
42     $name = DB_get_name('userid',$r[1]);
43     $To   = DB_get_email('userid',$r[1]);
44     $userhash = DB_get_hash_from_gameid_and_userid($gameid,$r[1]);
45
46     $message = "Hello $name, \n\n".
47       "It's your turn in game ".DB_format_gameid($gameid)." \n".
48       "Actually everyone else is waiting for you for more than a week now ;)\n\n".
49       "Please visit this link now to continue: \n".
50       " ".$HOST.$INDEX."?action=game&me=".$userhash."\n\n" ;
51
52     /* make sure we don't send too  many reminders to one person */
53     if(DB_get_reminder($r[1],$gameid)>0)
54       {
55         echo "<p>An email has already been sent out.</p>\n";
56       }
57     else
58       {
59         DB_set_reminder($r[1],$gameid);
60         mymail($To,$EmailName."Reminder: game ".DB_format_gameid($gameid)." it's your turn",$message);
61
62         echo "<p style=\"background-color:red\";>Game ".DB_format_gameid($gameid).
63           ": an email has been sent out.<br /><br /></p>";
64       }
65   }
66  else
67    echo "<p>You need to wait longer before you can send out a reminder...</p>\n";
68 ?>