2 /************************************************************************
3 * MXChange v0.2.1 Start: 11/14/2003 *
4 * =============== Last change: 11/13/2004 *
6 * -------------------------------------------------------------------- *
7 * File : mailid_top.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Confirmation file for emails *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Bestaetigung von Mails *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
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 * For more information visit: http://www.mxchange.org *
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. *
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. *
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, *
37 ************************************************************************/
39 // Load security stuff here
40 require('inc/libs/security_functions.php');
43 $GLOBALS['startTime'] = microtime(true);
45 // Tell everyone we are in this module
46 $GLOBALS['module'] = 'mailid';
47 $GLOBALS['output_mode'] = 0;
49 // Load the required file(s)
50 require('inc/config-global.php');
53 setContentType('text/html');
55 // Is the extension active
56 redirectOnUninstalledExtension('mailid');
65 if (isGetRequestElementSet('userid')) $url_userid = bigintval(getRequestElement('userid'));
66 if (isGetRequestElementSet('mailid')) $url_mid = bigintval(getRequestElement('mailid'));
67 if (isGetRequestElementSet('bonusid')) $url_bid = bigintval(getRequestElement('bonusid'));
68 if (isGetRequestElementSet('code')) $code = bigintval(getRequestElement('code'));
69 if (isGetRequestElementSet('mode')) $mode = getRequestElement('mode');
71 // 01 1 12 2 2 21 1 22 10
72 if (($url_userid) > 0 && (($url_mid > 0) || ($url_bid > 0)) && (getTotalFatalErrors() == 0)) {
73 // No image? Then output header
74 if ($mode != 'img') loadIncludeOnce('inc/header.php');
76 // Maybe he wants to confirm an email?
78 $result = SQL_QUERY_ESC("SELECT `id`, `link_type` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `stats_id`=%s AND `userid`=%s LIMIT 1",
79 array($url_mid, $url_userid), __FILE__, __LINE__);
80 $type = 'mailid'; $urlId = $url_mid;
81 } elseif ($url_bid > 0) {
82 $result = SQL_QUERY_ESC("SELECT `id`, link_type` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `bonus_id`=%s AND `userid`=%s LIMIT 1",
83 array($url_bid, $url_userid), __FILE__, __LINE__);
84 $type = 'bonusid'; $urlId = $url_bid;
87 if (SQL_NUMROWS($result) == 1) {
88 // Is the stats ID valid?
89 list($lid, $ltype) = SQL_FETCHROW($result);
90 SQL_FREERESULT($result);
92 // @TODO Rewrite this to a filter
95 $result_mailid = SQL_QUERY_ESC("SELECT `pool_id`, `userid`, `id` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `id`=%s LIMIT 1",
96 array($url_mid), __FILE__, __LINE__);
100 $result_mailid = SQL_QUERY_ESC("SELECT `id, `id`, `is_notify` FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`=%s LIMIT 1",
101 array($url_bid), __FILE__, __LINE__);
104 default: // Unknown type
105 debug_report_bug('Unknown mail type ' . $ltype . ' detected.');
110 if (SQL_NUMROWS($result_mailid) == 1) {
112 list($pool, $sender, $notify) = SQL_FETCHROW($result_mailid);
114 // Correct notification switch in non-bonus mails
115 if (($notify != 'Y') && ($notify != 'N')) $notify = 'N';
118 SQL_FREERESULT($result_mailid);
120 // Set sender to 0 when we have a bonus mail
121 if ($ltype == 'BONUS') $sender = 0;
123 // Is the user's ID unlocked?
124 $result = SQL_QUERY_ESC("SELECT `status`, `gender`, `surname`, `family`, `ref_payout` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s LIMIT 1",
125 array($url_userid), __FILE__, __LINE__);
126 if (SQL_NUMROWS($result) == 1) {
128 list($status, $gender, $surname, $family, $ref_pay) = SQL_FETCHROW($result);
131 SQL_FREERESULT($result);
133 if ($status == 'CONFIRMED') {
134 // Update last activity
135 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `last_online`=UNIX_TIMESTAMP(), `last_module`='mailid_top' WHERE `userid`=%s LIMIT 1",
136 array($url_userid), __FILE__, __LINE__);
138 // User has confirmed his account so we can procede...
139 // @TODO Rewrite this to a filter
143 $result = SQL_QUERY_ESC("SELECT `payment_id` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `pool_id`=%s LIMIT 1",
144 array(bigintval($pool)), __FILE__, __LINE__);
147 if (SQL_NUMROWS($result) == 1) {
148 list($pay) = SQL_FETCHROW($result);
149 $time = getPaymentPoints($pay, 'time');
150 $payment = getPaymentPoints($pay, 'payment');
155 SQL_FREERESULT($result);
159 $result = SQL_QUERY_ESC("SELECT `time`, `points` FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`=%s LIMIT 1",
160 array(bigintval($pool)), __FILE__, __LINE__);
163 if (SQL_NUMROWS($result) == 1) {
164 list($time, $payment) = SQL_FETCHROW($result);
169 SQL_FREERESULT($result);
172 default: // Unknown type
173 debug_report_bug('Unknown mail type ' . $ltype . ' detected.');
177 // Is this entry valid?
178 if ($isValid === true) {
179 if (($time == '0') && ($payment > 0)) $time = '1';
180 if (($time > 0) && ($payment > 0)) {
184 $img_code = generateRandomCode(getConfig('code_length'), $code, $url_userid, $urlId);
187 // @TODO Rewrite this to a filter
194 // @TODO Rewrite this to a filter
197 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_stats` SET `clicks`=`clicks`+1 WHERE `id`=%s LIMIT 1",
198 array($url_mid), __FILE__, __LINE__);
200 // Update mediadata as well
201 if (getExtensionVersion('mediadata') >= '0.0.4') {
203 updateMediadataEntry(array('total_clicks', 'normal_clicks'), 'add', 1);
205 $stats_data = $url_mid;
209 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_bonus` SET `clicks`=`clicks`+1 WHERE `id`=%s LIMIT 1",
210 array($url_bid), __FILE__, __LINE__);
212 // Update mediadata as well
213 if (getExtensionVersion('mediadata') >= '0.0.4') {
215 updateMediadataEntry(array('total_clicks', 'bonus_clicks'), 'add', 1);
217 $stats_data = $url_bid;
220 default: // Unknown type
221 debug_report_bug('Unknown mail type ' . $ltype . ' detected.');
225 // Export data into constants for the template
226 $content['points'] = translateComma($payment);
227 $content['banner'] = loadTemplate('mailid_banner', true);
229 // Only when user extension = v0.1.2: Update mails-confirmed counter
230 // @TODO Rewrite these blocks to filter
231 if (getExtensionVersion('user') >= '0.1.2') {
233 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET mails_confirmed=mails_confirmed + 1 WHERE `userid`=%s LIMIT 1",
234 array($url_userid), __FILE__, __LINE__);
236 // Update random confirmed as well?
237 if (getExtensionVersion('user') >= '0.3.4') {
238 // Update second counter
239 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET rand_confirmed=rand_confirmed + 1 WHERE `userid`=%s LIMIT 1",
240 array($url_userid), __FILE__, __LINE__);
244 // Insert stats record
245 insertUserStatsRecord($url_userid, $type, $stats_data);
247 // Right code entered?
248 if (bigintval(postRequestElement('gfx_check')) == $img_code) {
249 // Add points over referal system is the default
251 $template = 'mailid_points_done';
253 // Right code entered add points and remove entry
254 if (($ref_pay > 0) && (getConfig('allow_direct_pay') != 'Y')) {
255 // Don't add points over the referal system
257 $template = 'mailid_points_locked';
260 // Count down ref_payout value
261 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `ref_payout`=`ref_payout`-1 WHERE `userid`=%s AND `ref_payout` > 0 LIMIT 1",
262 array($url_userid), __FILE__, __LINE__);
265 // @TODO Try to rewrite the following unset()
266 unset($GLOBALS['ref_level']);
267 addPointsThroughReferalSystem('mailid_okay', $url_userid, $payment, false, '0', $locked);
269 // Shall I add bonus points for "turbo clickers" ?
270 if (getExtensionVersion('bonus') >= '0.2.2') {
271 // Is an active-rallye running and this is not a notification mail?
272 if ((getConfig('bonus_active') == 'Y') && ($notify != 'Y')) {
273 // Shall I exclude the webmaster's own userid from the active-rallye?
274 if ((((getConfig('bonus_userid') == $url_userid) && (getConfig('bonus_include_own') == 'Y')) || (getConfig('bonus_userid') != $url_userid)) && (getConfig('def_refid') != $url_userid)) {
275 // Add points and remember ranking are done in this function....
276 addTurboBonus($urlId, $url_userid, $type);
278 // Set template to mailid_points_done2 which contains a link to the ranking list
279 $template = 'mailid_points_done2';
280 if ($locked) $template = 'mailid_points_locked2';
281 $content['userid'] = $url_userid;
282 $content['type'] = $type;
283 $content['data'] = $urlId;
289 $content['total'] = translateComma(
290 countSumTotalData($url_userid, 'user_points', 'points') -
291 countSumTotalData($url_userid, 'user_data', 'used_points')
295 loadTemplate($template, false, $content);
297 // Wrong image code! So add points to sender's account
298 addPointsDirectly('mailid_payback', $sender, $payment);
301 loadTemplate('mailid_points_failed', false, $content);
304 // Remove link from table
305 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `id`=%s LIMIT 1",
306 array(bigintval($lid)), __FILE__, __LINE__);
310 generateImageOrCode($img_code);
315 // Export data into constants for the template
316 $content['code'] = $code;
317 $content['userid'] = $url_userid;
318 $content['type'] = $type;
319 $content['data'] = $urlId;
320 $content['banner'] = loadTemplate('mailid_banner', true);
321 if (getConfig('code_length') > 0) {
323 $content['image'] = generateCaptchaCode($code, $type, $urlId, $url_userid);
324 $templ = 'mailid_enter_code';
327 $content['gfx'] = $img_code;
328 $templ = 'mailid_confirm_buttom';
332 loadTemplate($templ, false, $content);
337 // Ok, all data is valid and loaded. Finally let's output the timer... :-)
338 // Export data into constants for the template
339 $content['time'] = $time;
340 $content['tim2'] = strlen($time);
341 $content['userid'] = $url_userid;
342 $content['type'] = $type;
343 $content['data'] = $urlId;
344 $content['rand'] = mt_rand(0, 99999);
345 $content['banner'] = loadTemplate('mailid_banner', true);
348 loadTemplate('mailid_timer', false, $content);
351 default: // Unknown mode
352 debug_report_bug('Unknown mode ' . $mode . ' detected.');
356 loadTemplate('admin_settings_saved', false, "<div class=\"member_failed\">{--MAIL_ALREADY_CONFIRMED--} (6)</div>");
360 loadTemplate('admin_settings_saved', false, "<div class=\"member_failed\">{--MAIL_ALREADY_CONFIRMED--} (5)</div>");
364 loadTemplate('admin_settings_saved', false, "<div class=\"member_failed\">{--MAIL_ALREADY_CONFIRMED--} (4)</div>");
368 SQL_FREERESULT($result);
369 loadTemplate('admin_settings_saved', false, "<div class=\"member_failed\">{--MAIL_ALREADY_CONFIRMED--} (3)</div>");
373 SQL_FREERESULT($result);
374 loadTemplate('admin_settings_saved', false, "<div class=\"member_failed\">{--MAIL_ALREADY_CONFIRMED--} (2)</div>");
378 SQL_FREERESULT($result);
379 loadTemplate('admin_settings_saved', false, "<div class=\"member_failed\">{--MAIL_ALREADY_CONFIRMED--} (1)</div>");
383 // Insert footer if no image
384 if ($mode != 'img') {
386 loadIncludeOnce('inc/footer.php');
390 // Really all done here... ;-)