Internal TODO closed (sry for second commit)
[mailer.git] / birthday_confirm.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/03/2004 *
4  * ===============                              Last change: 10/03/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : birthday_confirm.php                             *
8  * -------------------------------------------------------------------- *
9  * Short description : Birthday bonus confirmation link                 *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Geburtstagsgutschrift bestaetigen                *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )
40 require('inc/libs/security_functions.php');
41
42 // Init "action" and "what"
43 $GLOBALS['what'] = '';
44 $GLOBALS['action'] = '';
45
46 // Set module
47 $GLOBALS['module'] = 'birthday_confirm';
48 $GLOBALS['output_mode'] = -1;
49
50 // Load the required file(s)
51 require('inc/config.php');
52
53 // Is the 'birthday' extension active?
54 REDIRECT_ON_UNINSTALLED_EXTENSION('birthday');
55
56 // Is the script installed?
57 if (isInstalled()) {
58         // Script is installed so let's check for his confirmation link...
59         $uid = bigintval(REQUEST_GET('uid'));
60
61         // Only allow numbers here...
62         $chk = bigintval(REQUEST_GET('check'), false);
63
64         // Check if link is not clicked so far
65         $result = SQL_QUERY_ESC("SELECT b.points, d.gender, d.surname, d.family, d.status, d.ref_payout
66 FROM `{!_MYSQL_PREFIX!}_user_birthday` AS b
67 INNER JOIN `{!_MYSQL_PREFIX!}_user_data` AS d
68 ON b.userid=d.userid
69 WHERE b.userid=%s AND b.chk_value='%s' LIMIT 1",
70  array($uid, $chk), __FILE__, __LINE__);
71         //* DEBUG: */ echo "uid=".$uid.",chk=".$chk." (".strlen($chk)."/".strlen(REQUEST_GET('check'))."/".SQL_NUMROWS($result).")<br />\n";
72
73         // Is an entry there?
74         if (SQL_NUMROWS($result) == 1) {
75                 // Ok, congratulation again! Here's your gift from us...
76                 $data = SQL_FETCHARRAY($result, false);
77
78                 // Is the account confirmed?
79                 if ($data['status'] == 'CONFIRMED') {
80                         // Set mode depending on how many mails the member has to confirm
81                         $locked = false;
82                         if (($data['ref_payout'] > 0) && (getConfig('allow_direct_pay') != 'Y')) $locked = true;
83
84                         // Add points to account
85                         unset($GLOBALS['ref_level']);
86                         ADD_POINTS_REFSYSTEM('birthday_confirm', $uid, $data['points'], false, '0', $locked, strtolower(getConfig('birthday_mode')));
87
88                         // Update mediadata if version is 0.0.4 or newer
89                         if (GET_EXT_VERSION('mediadata') >= '0.0.4') {
90                                 // Update database
91                                 MEDIA_UPDATE_ENTRY(array('total_points'), 'add', $data['points']);
92                         }
93
94                         // Remove entry from table
95                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_user_birthday` WHERE userid=%s AND chk_value='%s' LIMIT 1",
96                                 array($uid, $chk), __FILE__, __LINE__);
97
98                         // Transfer data to constants for the template
99                         define('__GENDER', TRANSLATE_GENDER($data['gender']));
100                         define('__SNAME' , $data['surname']);
101                         define('__FNAME' , $data['family']);
102                         define('__GIFT'  , TRANSLATE_COMMA($data['points']));
103
104                         // Load message from template
105                         define('__MSG', LOAD_TEMPLATE('birthday_msg', true));
106                 } else {
107                         // Unconfirmed / locked accounts cannot get points
108                         define('__MSG', sprintf(getMessage('BIRTHDAY_CANNOT_STATUS'), TRANSLATE_STATUS($data['status'])));
109                 }
110         } else {
111                 // Cannot load data!
112                 define('__MSG', getMessage('BIRTHDAY_CANNOT_LOAD_DATA'));
113         }
114
115         // Free memory
116         SQL_FREERESULT($result);
117
118         // Set this because we have no module in URI
119         $GLOBALS['module'] = 'birthday_confirm';
120
121         // Include header
122         LOAD_INC('inc/header.php');
123
124         // Load birthday header template (for your banners, e.g.?)
125         define('__BIRTHDAY_HEADER', LOAD_TEMPLATE('birthday_header', true));
126
127         // Load birthday footer template (for your banners, e.g.?)
128         define('__BIRTHDAY_FOOTER', LOAD_TEMPLATE('birthday_footer', true));
129
130         // Load final template and output it
131         LOAD_TEMPLATE('birthday_confirm');
132
133         // Include footer
134         LOAD_INC('inc/footer.php');
135 } else {
136         // You have to install first!
137         LOAD_URL('install.php');
138 }
139
140 // Really all done here... ;-)
141 shutdown();
142
143 //
144 ?>