Another try to fix bigintval() problem, ticket #114
[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
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-global.php');
52
53 // Is the 'birthday' extension active?
54 redirectOnUninstalledExtension('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         // Prepare content
74         $content = array();
75
76         // Is an entry there?
77         if (SQL_NUMROWS($result) == 1) {
78                 // Ok, congratulation again! Here's your gift from us...
79                 $data = SQL_FETCHARRAY($result, false);
80
81                 // Is the account confirmed?
82                 if ($data['status'] == 'CONFIRMED') {
83                         // Set mode depending on how many mails the member has to confirm
84                         $locked = false;
85                         if (($data['ref_payout'] > 0) && (getConfig('allow_direct_pay') != 'Y')) $locked = true;
86
87                         // Add points to account
88                         unset($GLOBALS['ref_level']);
89                         ADD_POINTS_REFSYSTEM('birthday_confirm', $uid, $data['points'], false, '0', $locked, strtolower(getConfig('birthday_mode')));
90
91                         // Update mediadata if version is 0.0.4 or newer
92                         if (GET_EXT_VERSION('mediadata') >= '0.0.4') {
93                                 // Update database
94                                 MEDIA_UPDATE_ENTRY(array('total_points'), 'add', $data['points']);
95                         }
96
97                         // Remove entry from table
98                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_user_birthday` WHERE userid=%s AND chk_value='%s' LIMIT 1",
99                         array($uid, $chk), __FILE__, __LINE__);
100
101                         // "Translate" some data
102                         $data['gender'] = translateGender($data['gender']);
103                         $data['points'] = translateComma($data['points']);
104
105                         // Load message from template
106                         $content['msg'] = LOAD_TEMPLATE('birthday_msg', true, $data);
107                 } else {
108                         // Unconfirmed / locked accounts cannot get points
109                         $content['msg'] = sprintf(getMessage('BIRTHDAY_CANNOT_STATUS'), translateUserStatus($data['status']));
110                 }
111         } else {
112                 // Cannot load data!
113                 $content['msg'] = getMessage('BIRTHDAY_CANNOT_LOAD_DATA');
114         }
115
116         // Free memory
117         SQL_FREERESULT($result);
118
119         // Set this because we have no module in URI
120         $GLOBALS['module'] = 'birthday_confirm';
121
122         // Include header
123         loadIncludeOnce('inc/header.php');
124
125         // Load birthday header template (for your banners, e.g.?)
126         $content['header'] =  LOAD_TEMPLATE('birthday_header', true);
127
128         // Load birthday footer template (for your banners, e.g.?)
129         $content['footer'] =  LOAD_TEMPLATE('birthday_footer', true);
130
131         // Load final template and output it
132         LOAD_TEMPLATE('birthday_confirm', false, $content);
133
134         // Include footer
135         loadIncludeOnce('inc/footer.php');
136 } else {
137         // You have to install first!
138         redirectToUrl('install.php');
139 }
140
141 // Really all done here... ;-)
142 shutdown();
143
144 //
145 ?>