2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 11/14/2003 *
4 * =================== Last change: 11/25/2004 *
6 * -------------------------------------------------------------------- *
8 * -------------------------------------------------------------------- *
9 * Short description : Confirmation file for emails *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Bestaetigung von Mails *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2009 by Roland Haeder *
19 * Copyright (c) 2009 - 2012 by Mailer Developer Team *
20 * For more information visit: http://mxchange.org *
22 * This program is free software; you can redistribute it and/or modify *
23 * it under the terms of the GNU General Public License as published by *
24 * the Free Software Foundation; either version 2 of the License, or *
25 * (at your option) any later version. *
27 * This program is distributed in the hope that it will be useful, *
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
30 * GNU General Public License for more details. *
32 * You should have received a copy of the GNU General Public License *
33 * along with this program; if not, write to the Free Software *
34 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
36 ************************************************************************/
38 // Load security stuff here
39 require('inc/libs/security_functions.php');
42 $GLOBALS['__start_time'] = microtime(true);
44 // Tell everyone we are in this module
45 $GLOBALS['__module'] = 'mailid';
46 $GLOBALS['__output_mode'] = '0';
49 // This is a frameset module
50 $GLOBALS['frameset_mode'] = true;
52 // Disable copyright footer which would break the frameset
53 $GLOBALS['__copyright_enabled'] = 'N';
55 // Load the required file(s)
56 require('inc/config-global.php');
58 // Set content type and HTTP status
59 setContentType('text/html');
60 setHttpStatus('404 Not Found');
62 // Is the extension active?
63 redirectOnUninstalledExtension('mailid');
71 if (isGetRequestElementSet('userid')) $userId = bigintval(getRequestElement('userid'));
72 if (isGetRequestElementSet('mailid')) $mailId = bigintval(getRequestElement('mailid'));
73 if (isGetRequestElementSet('bonusid')) $bonusId = bigintval(getRequestElement('bonusid'));
75 // 01 1 12 2 2 21 1 2210
76 if ((isValidUserId($userId)) && (($mailId > 0) || ($bonusId > 0)) && (!ifFatalErrorsDetected())) {
80 // Maybe he wants to confirm an email?
83 $result_link = SQL_QUERY_ESC("SELECT `link_type` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `stats_id`=%s AND `userid`=%s LIMIT 1",
84 array($mailId, $userId), __FILE__, __LINE__);
87 } elseif ($bonusId > 0) {
89 $result_link = SQL_QUERY_ESC("SELECT `link_type` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `bonus_id`=%s AND `userid`=%s LIMIT 1",
90 array($bonusId, $userId), __FILE__, __LINE__);
94 // Problem: No id entered
95 redirectToUrl('modules.php?module=index');
98 if (SQL_NUMROWS($result_link) == 1) {
100 list($ltype) = SQL_FETCHROW($result_link);
102 // @TODO Rewrite this to a filter
105 // Is the stats id valid?
106 $result = SQL_QUERY_ESC("SELECT `pool_id`, `url`, `subject` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `id`=%s LIMIT 1",
107 array($mailId), __FILE__, __LINE__);
111 // Is the bonus extension active?
112 redirectOnUninstalledExtension('bonus');
115 $result = SQL_QUERY_ESC("SELECT `id`, `url`, `subject` FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`=%s LIMIT 1",
116 array($bonusId), __FILE__, __LINE__);
119 default: // Invalid mail type
120 reportBug(__FILE__, __LINE__, 'Invalid mail type ' . $ltype . ' detected.');
124 if (SQL_NUMROWS($result) == 1) {
126 list($pool, $url, $title) = SQL_FETCHROW($result);
129 SQL_FREERESULT($result);
132 setExtraTitle($title);
134 // Is the user's id unlocked?
135 if (fetchUserData($userId)) {
136 // Status must be CONFIRMED
137 if (getUserData('status') == 'CONFIRMED') {
138 // Update last activity if not admin
139 if ((!isAdmin()) || (isDebugModeEnabled())) {
140 // Is not admin, so update last activity
141 updateLastActivity($userId);
144 // User has confirmed his account so we can procede...
145 // @TODO Rewrite this to a filter
148 $result = SQL_QUERY_ESC("SELECT `payment_id` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `pool_id`=%s LIMIT 1",
149 array(bigintval($pool)), __FILE__, __LINE__);
150 if (SQL_NUMROWS($result) == 1) {
151 list($pay) = SQL_FETCHROW($result);
152 $time = getPaymentData($pay, 'time');
153 $payment = getPaymentData($pay, 'payment');
158 SQL_FREERESULT($result);
162 $result = SQL_QUERY_ESC("SELECT `points`, `time` FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`=%s LIMIT 1",
163 array($bonusId), __FILE__, __LINE__);
164 if (SQL_NUMROWS($result) == 1) {
165 list($points, $time) = SQL_FETCHROW($result);
166 $payment = '0.00000';
171 SQL_FREERESULT($result);
174 default: // Invalid mail type
175 reportBug(__FILE__, __LINE__, 'Invalid mail type ' . $ltype . ' detected.');
180 loadIncludeOnce('inc/header.php');
182 // Was that mail a valid one?
183 if ($isValid === true) {
184 // If time is zero seconds we have a sponsor mail. 1 Second shall be set to avoid problems
185 if (($time == '0') && ($payment > 0)) {
190 if (($time > 0) && (($payment > 0) || ($points > 0))) {
191 // Set HTTP status to okay
192 setHttpStatus('200 OK');
194 // Export data into constants for the template
203 loadTemplate('mailid_frames', false, $content);
205 $errorCode = getCode('DATA_INVALID');
208 $errorCode = getCode('POSSIBLE_INVALID');
211 $errorCode = getCode('ACCOUNT_' . strtoupper(getUserData('status')));
214 $errorCode = getCode('USER_404');
217 $errorCode = getCode('STATS_404');
220 $errorCode = getCode('ALREADY_CONFIRMED');
224 SQL_FREERESULT($result_link);
227 $errorCode = getCode('ERROR_MAILID');
230 // Error code is set?
231 handleMailIdErrorCode($errorCode);
234 loadIncludeOnce('inc/footer.php');