Added more wrapper, commented out another noisy debug line
[mailer.git] / mailid_top.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 11/14/2003 *
4  * ===================                          Last change: 11/13/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : mailid_top.php                                   *
8  * -------------------------------------------------------------------- *
9  * Short description : Confirmation file for emails                     *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Bestaetigung von Mails                           *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * @TODO Merge this script with mailid.php                              *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
22  * For more information visit: http://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['__start_time'] = microtime(true);
45
46 // Tell everyone we are in this module
47 $GLOBALS['__module']      = 'mailid';
48 $GLOBALS['__output_mode'] = '0';
49
50 // Disable copyright footer which would be to large for the upper frame
51 $GLOBALS['__copyright_enabled'] = 'N';
52
53 // Load the required file(s)
54 require('inc/config-global.php');
55
56 // Set content type and HTTP status
57 setContentType('text/html');
58 setHttpStatus('404 Not Found');
59
60 // Is the extension mailid active?
61 redirectOnUninstalledExtension('mailid');
62
63 // Is the extension other active?
64 redirectOnUninstalledExtension('other');
65
66 // Init variables
67 $userId = '0';
68 $bonusId = '0';
69 $mailId = '0';
70 $code = '0';
71 $do = '';
72
73 // Secure all data
74 if (isGetRequestElementSet('userid'))  $userId  = bigintval(getRequestElement('userid'));
75 if (isGetRequestElementSet('mailid'))  $mailId  = bigintval(getRequestElement('mailid'));
76 if (isGetRequestElementSet('bonusid')) $bonusId = bigintval(getRequestElement('bonusid'));
77 if (isGetRequestElementSet('code'))    $code    = bigintval(getRequestElement('code'));
78 if (isGetRequestElementSet('do'))      $do      = getRequestElement('do');
79
80 // 01             2       21    12           2    2            21    1                      2210
81 if ((isValidUserId($userId)) && (($mailId > 0) || ($bonusId > 0)) && (!ifFatalErrorsDetected())) {
82         // No image?
83         if ($do != 'img') {
84                 // ... then output header
85                 loadIncludeOnce('inc/header.php');
86         } // END - fi
87
88         // Maybe he wants to confirm an email?
89         if ($mailId > 0) {
90                 $result_main = SQL_QUERY_ESC("SELECT `id` AS `link_id`, `link_type` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `stats_id`=%s AND `userid`=%s LIMIT 1",
91                         array($mailId, $userId), __FILE__, __LINE__);
92                 $type = 'mailid';
93                 $urlId = $mailId;
94         } elseif ($bonusId > 0) {
95                 $result_main = SQL_QUERY_ESC("SELECT `id` AS `link_id`, `link_type` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `bonus_id`=%s AND `userid`=%s LIMIT 1",
96                         array($bonusId, $userId), __FILE__, __LINE__);
97                 $type = 'bonusid';
98                 $urlId = $bonusId;
99         } else {
100                 // Not detected
101                 reportBug(__FILE__, __LINE__, 'Whether bonusid or mailid was set. This is a strange bug.');
102         }
103
104         // Is an entry found?
105         if (SQL_NUMROWS($result_main) == 1) {
106                 // Is the stats id valid?
107                 $data = SQL_FETCHARRAY($result_main);
108
109                 // Init result here with invalid to avoid possible missing variable
110                 $result_mailid = false;
111
112                 // @TODO Rewrite this to a filter/function
113                 switch ($data['link_type']) {
114                         case 'NORMAL':
115                                 $result_mailid = SQL_QUERY_ESC("SELECT `pool_id`, `userid` AS `sender` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `id`=%s LIMIT 1",
116                                         array($urlId), __FILE__, __LINE__);
117                                 break;
118
119                         case 'BONUS':
120                                 $result_mailid = SQL_QUERY_ESC("SELECT `is_notify` FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`=%s LIMIT 1",
121                                         array($urlId), __FILE__, __LINE__);
122                                 break;
123
124                         default: // Unknown type
125                                 reportBug(__FILE__, __LINE__, 'Unknown mail type ' . $data['link_type'] . ' detected.');
126                                 break;
127                 } // END - switch
128
129                 // Entry found?
130                 if (SQL_NUMROWS($result_mailid) == 1) {
131                         // Load data
132                         $data = merge_array($data, SQL_FETCHARRAY($result_mailid));
133
134                         // Correct notification switch in non-bonus mails
135                         if ((!isset($data['is_notify'])) || (!in_array($data['is_notify'], array('Y', 'N')))) {
136                                 $data['is_notify'] = 'N';
137                         } // END - if
138
139                         // Set sender to 0 when we have a bonus mail
140                         if ($data['link_type'] == 'BONUS') {
141                                 $data['sender'] = '0';
142                         } // END - if
143
144                         // Is the user id valid?
145                         if (fetchUserData($userId) === true) {
146                                 // Is the user status CONFIRMED?
147                                 if (getUserData('status') == 'CONFIRMED') {
148                                         // User has confirmed his account so we can procede...
149                                         // @TODO Rewrite this to a filter
150                                         switch ($data['link_type']) {
151                                                 case 'NORMAL':
152                                                         $result = SQL_QUERY_ESC("SELECT `payment_id` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `pool_id`=%s LIMIT 1",
153                                                                 array(bigintval($data['pool_id'])), __FILE__, __LINE__);
154
155                                                         // Entry found?
156                                                         if (SQL_NUMROWS($result) == 1) {
157                                                                 list($pay) = SQL_FETCHROW($result);
158                                                                 $time      = getPaymentData($pay, 'time');
159                                                                 $payment   = getPaymentData($pay, 'payment');
160                                                                 $isValid   = true;
161                                                         } // END - if
162
163                                                         // Free memory...
164                                                         SQL_FREERESULT($result);
165                                                         break;
166
167                                                 case 'BONUS':
168                                                         $result = SQL_QUERY_ESC("SELECT `time`,`points` FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`=%s LIMIT 1",
169                                                                 array(bigintval($data['pool_id'])), __FILE__, __LINE__);
170
171                                                         // Entry found?
172                                                         if (SQL_NUMROWS($result) == 1) {
173                                                                 list($time, $payment) = SQL_FETCHROW($result);
174                                                                 $isValid = true;
175                                                         } // END - if
176
177                                                         // Free memory...
178                                                         SQL_FREERESULT($result);
179                                                         break;
180
181                                                 default: // Unknown type
182                                                         reportBug(__FILE__, __LINE__, 'Unknown mail type ' . $data['link_type'] . ' detected.');
183                                                         break;
184                                         } // END - switch
185
186                                         // Is this entry valid?
187                                         if ($isValid === true) {
188                                                 if (($time == '0') && ($payment > 0)) $time = 1;
189                                                 if (($time > 0) && ($payment > 0)) {
190                                                         $realCode = '0';
191                                                         if (!empty($code)) {
192                                                                 // Generate code (the user sees in the CAPTCHA)
193                                                                 $realCode = generateRandomCode(getCodeLength(), $code, $userId, $urlId);
194                                                         } // END - if
195
196                                                         // @TODO Rewrite this to a filter
197                                                         switch ($do) {
198                                                                 case 'add':
199                                                                         // Init stats data
200                                                                         $stats_data = '0';
201
202                                                                         // Count clicks
203                                                                         // @TODO Rewrite this to a filter
204                                                                         switch ($data['link_type']) {
205                                                                                 case 'NORMAL':
206                                                                                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_stats` SET `clicks`=`clicks`+1 WHERE `id`=%s LIMIT 1",
207                                                                                                 array($mailId), __FILE__, __LINE__);
208
209                                                                                         // Update mediadata as well
210                                                                                         if (isExtensionInstalledAndNewer('mediadata', '0.0.4')) {
211                                                                                                 // Update database
212                                                                                                 updateMediadataEntry(array('total_clicks', 'normal_clicks'), 'add', 1);
213                                                                                         } // END - if
214                                                                                         $stats_data = $mailId;
215                                                                                         break;
216
217                                                                                 case 'BONUS':
218                                                                                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_bonus` SET `clicks`=`clicks`+1 WHERE `id`=%s LIMIT 1",
219                                                                                                 array($bonusId), __FILE__, __LINE__);
220
221                                                                                         // Update mediadata as well
222                                                                                         if (isExtensionInstalledAndNewer('mediadata', '0.0.4')) {
223                                                                                                 // Update database
224                                                                                                 updateMediadataEntry(array('total_clicks', 'bonus_clicks'), 'add', 1);
225                                                                                         } // END - if
226                                                                                         $stats_data = $bonusId;
227                                                                                         break;
228
229                                                                                 default: // Unknown type
230                                                                                         reportBug(__FILE__, __LINE__, 'Unknown mail type ' . $data['link_type'] . ' detected.');
231                                                                                         break;
232                                                                         } // END - switch
233
234                                                                         // Export data into constants for the template
235                                                                         $content['banner'] = loadTemplate('mailid_banner', true);
236
237                                                                         // Only when user extension = v0.1.2: Update mails-confirmed counter
238                                                                         // @TODO Rewrite these blocks to filter
239                                                                         if (isExtensionInstalledAndNewer('user', '0.1.2')) {
240                                                                                 // Update counter
241                                                                                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `mails_confirmed`=`mails_confirmed`+1 WHERE `userid`=%s LIMIT 1",
242                                                                                         array($userId), __FILE__, __LINE__);
243
244                                                                                 // Update random confirmed as well?
245                                                                                 if ((isExtensionInstalledAndNewer('user', '0.3.4')) && (isRandomReferralIdEnabled())) {
246                                                                                         // Update second counter
247                                                                                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `rand_confirmed`=`rand_confirmed` + 1 WHERE `userid`=%s LIMIT 1",
248                                                                                                 array($userId), __FILE__, __LINE__);
249                                                                                 } // END - if
250                                                                         } // END - if
251
252                                                                         // Insert stats record
253                                                                         insertUserStatsRecord($userId, $type, $stats_data);
254
255                                                                         // Right code entered?
256                                                                         if (bigintval(postRequestElement('gfx_check')) == $realCode) {
257                                                                                 // Set HTTP status to okay
258                                                                                 setHttpStatus('200 OK');
259
260                                                                                 // Add points over referral system is the default
261                                                                                 $template = 'mailid_points_done';
262
263                                                                                 // Right code entered add points and remove entry
264                                                                                 if (ifUserPointsLocked($userId)) {
265                                                                                         // Don't add points over the referral system
266                                                                                         $template = 'mailid_points_locked';
267                                                                                 } // END - if
268
269                                                                                 // Count down ref_payout value
270                                                                                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `ref_payout`=`ref_payout`-1 WHERE `userid`=%s AND `ref_payout` > 0 LIMIT 1",
271                                                                                         array($userId), __FILE__, __LINE__);
272
273                                                                                 // Add points
274                                                                                 initReferralSystem();
275                                                                                 addPointsThroughReferralSystem('mailid_okay', $userId, $payment);
276
277                                                                                 // Shall I add bonus points for "turbo clickers" ?
278                                                                                 if (isExtensionInstalledAndNewer('bonus', '0.2.2')) {
279                                                                                         // Is an active-rallye running and this is not a notification mail?
280                                                                                         if ((isBonusRallyeActive()) && ($data['is_notify'] != 'Y')) {
281                                                                                                 // Shall I exclude the webmaster's own userid from the active-rallye?
282                                                                                                 if ((((getBonusUserid() == $userId) && (getConfig('bonus_include_own') == 'Y')) || (getBonusUserid() != $userId)) && (getDefRefid() != $userId)) {
283                                                                                                         // Add points and remember ranking are done in this function....
284                                                                                                         addTurboBonus($urlId, $userId, $type);
285
286                                                                                                         // Set template to mailid_points_done2 which contains a link to the ranking list
287                                                                                                         $template = 'mailid_points_done2';
288
289                                                                                                         // Different template if user has some mails to confirm
290                                                                                                         if (ifUserPointsLocked($userId)) {
291                                                                                                                 $template = 'mailid_points_locked2';
292                                                                                                         } // END - if
293
294                                                                                                         // Assign more data for the template
295                                                                                                         $content['userid']  = $userId;
296                                                                                                         $content['type']    = $type;
297                                                                                                         $content['data']    = $urlId;
298                                                                                                 } // END - if
299                                                                                         } // END - if
300                                                                                 } // END - if
301
302                                                                                 // Load total points
303                                                                                 $content['total_points']  = getTotalPoints($userId);
304
305                                                                                 // Add payment points
306                                                                                 $content['points'] = $payment;
307
308                                                                                 // Load template
309                                                                                 loadTemplate($template, false, $content);
310                                                                         } elseif (isValidUserId($data['sender'])) {
311                                                                                 // Wrong image code! So add points to sender's account
312                                                                                 initReferralSystem();
313                                                                                 addPointsThroughReferralSystem('mailid_payback', $data['sender'], $payment);
314
315                                                                                 // Add payment points
316                                                                                 $content['points'] = $payment;
317
318                                                                                 // Load template
319                                                                                 loadTemplate('mailid_points_failed', false, $content);
320                                                                         } else {
321                                                                                 // Add payment points (again)
322                                                                                 $content['points'] = $payment;
323
324                                                                                 // Load template
325                                                                                 loadTemplate('mailid_points_failed2', false, $content);
326                                                                         }
327
328                                                                         // Remove link from table
329                                                                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `id`=%s LIMIT 1",
330                                                                                 array(bigintval($data['link_id'])), __FILE__, __LINE__);
331                                                                         break;
332
333                                                                 case 'img':
334                                                                         generateImageOrCode($realCode);
335                                                                         break;
336
337                                                                 case 'confirm':
338                                                                         if ($code > 0) {
339                                                                                 // Export data into constants for the template
340                                                                                 $content['code']   = $code;
341                                                                                 $content['userid'] = $userId;
342                                                                                 $content['type']   = $type;
343                                                                                 $content['data']   = $urlId;
344                                                                                 $content['banner'] = loadTemplate('mailid_banner', true);
345                                                                                 if (getCodeLength() > 0) {
346                                                                                         // Generate Code
347                                                                                         $content['image'] = generateCaptchaCode($code, $type, $urlId, $userId);
348                                                                                         $templ = 'mailid_enter_code';
349                                                                                 } else {
350                                                                                         // Disabled code
351                                                                                         $content['gfx'] = $realCode;
352                                                                                         $templ = 'mailid_confirm_buttom';
353                                                                                 }
354
355                                                                                 // Load template
356                                                                                 loadTemplate($templ, false, $content);
357                                                                         } else {
358                                                                                 // Cannot confirm!
359                                                                                 reportBug(__FILE__, __LINE__, 'No code given.');
360                                                                         }
361                                                                         break;
362
363                                                                 case '':
364                                                                         // Ok, all data is valid and loaded. Finally let's output the timer... :-)
365                                                                         // Export data into constants for the template
366                                                                         $content['time']   = $time;
367                                                                         $content['tim2']   = strlen($time);
368                                                                         $content['userid'] = $userId;
369                                                                         $content['type']   = $type;
370                                                                         $content['data']   = $urlId;
371                                                                         $content['rand']   = getRandomTan();
372                                                                         $content['banner'] = loadTemplate('mailid_banner', true);
373
374                                                                         // Load template
375                                                                         loadTemplate('mailid_timer', false, $content);
376                                                                         break;
377
378                                                                 default: // Unknown mode
379                                                                         reportBug(__FILE__, __LINE__, 'Unknown mode ' . $do . ' detected.');
380                                                                         break;
381                                                         } // END - switch
382                                                 } else {
383                                                         loadTemplate('admin_settings_unsaved', false, '{--MAIL_ALREADY_CONFIRMED--} (6)');
384                                                         $do = 'failed';
385                                                 }
386                                         } else {
387                                                 loadTemplate('admin_settings_unsaved', false, '{--MAIL_ALREADY_CONFIRMED--} (5)');
388                                                 $do = 'failed';
389                                         }
390                                 } else {
391                                         loadTemplate('admin_settings_unsaved', false, '{--MAIL_ALREADY_CONFIRMED--} (4)');
392                                         $do = 'failed';
393                                 }
394                         } else {
395                                 loadTemplate('admin_settings_unsaved', false, '{--MAIL_ALREADY_CONFIRMED--} (3)');
396                                 $do = 'failed';
397                         }
398                 } else {
399                         loadTemplate('admin_settings_unsaved', false, '{--MAIL_ALREADY_CONFIRMED--} (2)');
400                         $do = 'failed';
401                 }
402
403                 // Free result
404                 SQL_FREERESULT($result_mailid);
405         } else {
406                 loadTemplate('admin_settings_unsaved', false, '{--MAIL_ALREADY_CONFIRMED--} (1)');
407                 $do = 'failed';
408         }
409
410         // Free result
411         SQL_FREERESULT($result_main);
412
413         // Insert footer if no image
414         if ($do != 'img') {
415                 // Write footer
416                 loadIncludeOnce('inc/footer.php');
417         } // END - if
418 }
419
420 // Really all done here... ;-)
421 doShutdown();
422
423 // [EOF]
424 ?>