Better randomizer chossen (rand() does only create 32767 different numbers under...
[mailer.git] / inc / mails / birthday_mails.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 05/23/2004 *
4  * ===============                              Last change: 11/22/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : birthday_mails.php                               *
8  * -------------------------------------------------------------------- *
9  * Short description : Sends out birthday mails                         *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Versendet Geburtstagsmails                       *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 } elseif (!EXT_IS_ACTIVE("birthday")) {
39         return;
40 }
41
42 // Do not execute when script is in CSS mode
43 global $CSS;
44 if (($CSS == 1) || (!defined('__DAILY_RESET'))) return;
45
46 // Get current day (01 to 31), month (01 to 12) and year (4-digits year)
47 $DAY   = date("d", time());
48 $MONTH = date("m", time());
49 $YEAR  = date('Y', time());
50
51 // Shall I include only active members?
52 $ADD = "%s"; $VALUE = "";
53 if (($_CONFIG['birthday_active']) && (EXT_IS_ACTIVE("autopurge")) && ($_CONFIG['autopurge_inactive'] == "Y") && ($_CONFIG['ap_inactive_since'] > 0)) {
54         $ADD = " AND last_online >= (UNIX_TIMESTAP() - %s)";
55         $VALUE = $_CONFIG['ap_inactive_since'];
56 }
57
58 // Only confirmed members shall receive birthday mails...
59 $result_birthday = SQL_QUERY_ESC("SELECT userid, email, birth_year
60 FROM "._MYSQL_PREFIX."_user_data
61 WHERE status='CONFIRMED' AND birth_day=%s AND birth_month=%s AND birthday_sent < (UNIX_TIMESTAMP() - ".($_CONFIG['one_day'] * 364).")".$ADD."
62 ORDER BY userid",
63  array($DAY, $MONTH, $VALUE), __FILE__, __LINE__);
64
65 if (SQL_NUMROWS($result_birthday) > 0) {
66         // Start sending out birthday mails
67         while (list($uid, $email, $byear) = SQL_FETCHROW($result_birthday)) {
68                 // Calculate own timestamp for birthday and today
69                 $BD  = $byear + 12 * $MONTH + 365 * $DAY;
70                 $NOW = $YEAR  + 12 * $MONTH + 365 * $DAY;
71
72                 // Simply subtract both values and you got the age... :)
73                 $AGE = $NOW - $BD;
74
75                 if ($_CONFIG['birthday_points'] > 0) {
76                         // Prepare array for loading template
77                         $content = array(
78                                 'age'    => $AGE,
79                                 'points' => $_CONFIG['birthday_points'],
80                                 'check'  => "",
81                         );
82
83                         for ($idx = 0; $idx < 4; $idx++) {
84                                 $content['check'] .= GEN_RANDOM_CODE("8", mt_rand(0, "$MONTH$DAY"), $uid, ($AGE*($idx+1)));
85                         }
86
87                         // Insert row into database
88                         $result_insert = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_user_birthday (userid, points, chk_value) VALUES ('%s','%s','%s' )",
89                          array(bigintval($uid), $_CONFIG['birthday_points'], $content['check']), __FILE__, __LINE__);
90
91                         // Load email template with confirmation link
92                         $msg = LOAD_EMAIL_TEMPLATE("member_birthday_confirm", $content, bigintval($uid));
93                 } else {
94                         // Load default email template and fill in the age
95                         $msg = LOAD_EMAIL_TEMPLATE("member_birthday", $AGE, $uid);
96                 }
97
98                 // Send email
99                 SEND_EMAIL($uid, HAPPY_BIRTHDAY, $msg);
100
101                 // Remember him that he has received a birthday mail
102                 $result_bd = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET birthday_sent=UNIX_TIMESTAMP() WHERE userid=%s LIMIT 1",
103                  array(bigintval($uid)), __FILE__, __LINE__);
104         }
105
106         // Free memory
107         SQL_FREERESULT($result);
108 }
109
110 //
111 ?>