debug_report_bug() should be used as a replacement for app_die() calls
[mailer.git] / birthday_confirm.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Load security stuff here
41 require('inc/libs/security_functions.php');
42
43 // Init start time
44 $GLOBALS['startTime'] = microtime(true);
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 // Set content type
54 setContentType('text/html');
55
56 // Is the 'birthday' extension active?
57 redirectOnUninstalledExtension('birthday');
58
59 // Script is installed so let's check for his confirmation link...
60 $userid = bigintval(getRequestParameter('userid'));
61
62 // Only allow numbers here...
63 $chk = bigintval(getRequestParameter('check'), false);
64
65 // Check if link is not clicked so far
66 $result = SQL_QUERY_ESC("SELECT
67         b.points, d.userid, d.gender, d.surname, d.family, d.status, d.ref_payout
68 FROM
69         `{?_MYSQL_PREFIX?}_user_birthday` AS b
70 INNER JOIN
71         `{?_MYSQL_PREFIX?}_user_data` AS d
72 ON
73         b.userid=d.userid
74 WHERE
75         b.userid=%s AND
76         b.chk_value='%s'
77 LIMIT 1",
78         array(
79                 $userid,
80                 $chk
81         ), __FILE__, __LINE__);
82 //* DEBUG: */ outputHtml("userid=".$userid.",chk=".$chk." (".strlen($chk).'/'.strlen(getRequestParameter('check')).'/'.SQL_NUMROWS($result).")<br />");
83
84 // Prepare content
85 $content = array();
86
87 // Is an entry there?
88 if (SQL_NUMROWS($result) == 1) {
89         // Ok, congratulation again! Here's your gift from us...
90         $data = SQL_FETCHARRAY($result, false);
91
92         // Is the account confirmed?
93         if ($data['status'] == 'CONFIRMED') {
94                 // Set mode depending on how many mails the member has to confirm
95                 $locked = false;
96                 if (($data['ref_payout'] > 0) && (getConfig('allow_direct_pay') != 'Y')) $locked = true;
97
98                 // Add points to account
99                 // @TODO Try to rewrite the following unset()
100                 unset($GLOBALS['ref_level']);
101                 addPointsThroughReferalSystem('birthday_confirm', $userid, $data['points'], false, 0, $locked, strtolower(getConfig('birthday_mode')));
102
103                 // Remove entry from table
104                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_birthday` WHERE `userid`=%s AND `chk_value`='%s' LIMIT 1",
105                         array($userid, $chk), __FILE__, __LINE__);
106
107                 // Load message from template
108                 $content['message'] = loadTemplate('birthday_msg', true, $data);
109         } else {
110                 // Unconfirmed / locked accounts cannot get points
111                 $content['message'] = getMaskedMessage('BIRTHDAY_CANNOT_STATUS', translateUserStatus($data['status']));
112         }
113 } else {
114         // Cannot load data!
115         $content['message'] = getMessage('BIRTHDAY_CANNOT_LOAD_DATA');
116 }
117
118 // Free memory
119 SQL_FREERESULT($result);
120
121 // Set this because we have no module in URI
122 $GLOBALS['module'] = 'birthday_confirm';
123
124 // Include header
125 loadIncludeOnce('inc/header.php');
126
127 // Load birthday header template (for your banners, e.g.?)
128 $content['header'] =  loadTemplate('birthday_header', true);
129
130 // Load birthday footer template (for your banners, e.g.?)
131 $content['footer'] =  loadTemplate('birthday_footer', true);
132
133 // Load final template and output it
134 loadTemplate('birthday_confirm', false, $content);
135
136 // Include footer
137 loadIncludeOnce('inc/footer.php');
138
139 // [EOF]
140 ?>