A-tag fixed.
[mailer.git] / mailid.php
index 6ca76095ad8eed7e5fd6384f8568fb7d2dd09f4e..90a2210fad852c7bfab2b8a7f2010c78bd29cf6e 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
  * Mailer v0.2.1-FINAL                                Start: 11/14/2003 *
- * ===================                          Last change: 11/25/2004 *
+ * ===================                          Last change: 01/10/2013 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : mailid.php                                       *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Bestaetigung von Mails                           *
  * -------------------------------------------------------------------- *
- * $Revision::                                                        $ *
- * $Date::                                                            $ *
- * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author::                                                          $ *
- * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -44,12 +39,8 @@ $GLOBALS['__start_time'] = microtime(TRUE);
 // Tell everyone we are in this module
 $GLOBALS['__module']      = 'mailid';
 $GLOBALS['__output_mode'] = '0';
-$errorCode = '';
-
-// This is a frameset module
-$GLOBALS['frameset_mode'] = TRUE;
 
-// Disable copyright footer which would break the frameset
+// Disable copyright footer which would be to large for the upper frame
 $GLOBALS['__copyright_enabled'] = 'N';
 
 // Load the required file(s)
@@ -59,178 +50,210 @@ require('inc/config-global.php');
 setContentType('text/html');
 setHttpStatus('404 Not Found');
 
-// Is the extension active?
+// Is ext-mailid active?
 redirectOnUninstalledExtension('mailid');
 
-// Init
-$userId  = '0';
-$bonusId = '0';
-$mailId  = '0';
+// Is ext-other active?
+redirectOnUninstalledExtension('other');
 
-// Secure all data
-if (isGetRequestElementSet('userid'))  $userId  = bigintval(getRequestElement('userid'));
-if (isGetRequestElementSet('mailid'))  $mailId  = bigintval(getRequestElement('mailid'));
-if (isGetRequestElementSet('bonusid')) $bonusId = bigintval(getRequestElement('bonusid'));
+// Init data
+$data = array(
+       'error_code' => '0',
+       'userid'     => '0',
+       'id'         => '0',
+       'code'       => '0',
+       'do'         => 'frames',
+       'type'       => '',
+);
 
-if ((isValidId($userId)) && ((isValidId($mailId)) || (isValidId($bonusId))) && (!ifFatalErrorsDetected())) {
-       // Init result
-       $result_link = FALSE;
+// Secure all data
+if (isGetRequestElementSet('userid')) $data['userid'] = bigintval(getRequestElement('userid'));
+if (isGetRequestElementSet('id'))     $data['id']     = bigintval(getRequestElement('id'));
+if (isGetRequestElementSet('code'))   $data['code']   = bigintval(getRequestElement('code'));
+if (isGetRequestElementSet('do'))     $data['do']     = getRequestElement('do');
+if (isGetRequestElementSet('type'))   $data['type']   = getRequestElement('type');
+
+// @TODO Improve check on $data['type'], empty() is not very much ...
+if ((isValidId($data['userid'])) && (isValidId($data['id'])) && (!empty($data['type'])) && (!ifFatalErrorsDetected())) {
+       // Is 'do' still "frames"?
+       if ($data['do'] == 'frames') {
+               // This is a frameset module
+               $GLOBALS['frameset_mode'] = TRUE;
+       } // END - if
+
+       // No image?
+       if ($data['do'] != 'img') {
+               // ... then output header
+               loadPageHeader();
+       } // END - fi
+
+       // Init result for below sqlNumRows() function
+       $result_main = FALSE;
 
        // Maybe he wants to confirm an email?
-       if (isValidId($mailId)) {
-               // Member mail
-               $result_link = SQL_QUERY_ESC("SELECT `link_type` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `stats_id`=%s AND `userid`=%s LIMIT 1",
-                       array($mailId, $userId), __FILE__, __LINE__);
-               $type = 'mailid';
-               $urlId = $mailId;
-       } elseif (isValidId($bonusId)) {
-               // Bonus mail
-               $result_link = SQL_QUERY_ESC("SELECT `link_type` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `bonus_id`=%s AND `userid`=%s LIMIT 1",
-                       array($bonusId, $userId), __FILE__, __LINE__);
-               $type = 'bonusid';
-               $urlId = $bonusId;
-       } else {
-               // Problem: No id entered
-               redirectToUrl('modules.php?module=index');
-       }
-
-       if (SQL_NUMROWS($result_link) == 1) {
-               // Load the entry
-               list($ltype) = SQL_FETCHROW($result_link);
-
-               // @TODO Rewrite this to a filter
-               switch ($ltype) {
+       switch ($data['type']) {
+               case 'normal':
+                       $result_main = sqlQueryEscaped("SELECT `id` AS `link_id`, `link_type` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `stats_id`=%s AND `userid`=%s LIMIT 1",
+                               array($data['id'], $data['userid']), __FILE__, __LINE__);
+                       break;
+
+               case 'bonus':
+                       $result_main = sqlQueryEscaped("SELECT `id` AS `link_id`, `link_type` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `bonus_id`=%s AND `userid`=%s LIMIT 1",
+                               array($data['id'], $data['userid']), __FILE__, __LINE__);
+                       break;
+
+               default: // Not detected
+                       reportBug(__FILE__, __LINE__, 'No valid type=' . $data['type'] . ' set.');
+                       break;
+       } // END - switch
+
+       // Is an entry found?
+       if (sqlNumRows($result_main) == 1) {
+               // Is the stats id valid?
+               $data = merge_array($data, sqlFetchArray($result_main));
+
+               // Init result here with invalid to avoid possible missing variable
+               $result_mailid = FALSE;
+
+               // @TODO Rewrite this to a filter/function
+               switch ($data['link_type']) {
                        case 'NORMAL':
-                               // Is the stats id valid?
-                               $result = SQL_QUERY_ESC("SELECT `pool_id`, `url`, `subject` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `id`=%s LIMIT 1",
-                                       array($mailId), __FILE__, __LINE__);
+                               $result_mailid = sqlQueryEscaped("SELECT `pool_id`, `userid` AS `sender`, `url` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `id`=%s LIMIT 1",
+                                       array($data['id']), __FILE__, __LINE__);
                                break;
 
                        case 'BONUS':
-                               // Is the bonus extension active?
-                               redirectOnUninstalledExtension('bonus');
-
-                               // Bonus-Mails
-                               $result = SQL_QUERY_ESC("SELECT `id` AS `pool_id`, `url`, `subject` FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`=%s LIMIT 1",
-                                       array($bonusId), __FILE__, __LINE__);
+                               $result_mailid = sqlQueryEscaped("SELECT `id` AS `pool_id`, `is_notify`, `url` FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`=%s LIMIT 1",
+                                       array($data['id']), __FILE__, __LINE__);
                                break;
 
-                       default: // Invalid mail type
-                               reportBug(__FILE__, __LINE__, 'Invalid mail type ' . $ltype . ' detected.');
+                       default: // Unknown type
+                               reportBug(__FILE__, __LINE__, 'Unknown mail type ' . $data['link_type'] . ' detected.');
                                break;
                } // END - switch
 
-               if (SQL_NUMROWS($result) == 1) {
+               // Entry found?
+               if (sqlNumRows($result_mailid) == 1) {
                        // Load data
-                       list($pool, $url, $title) = SQL_FETCHROW($result);
+                       $data = merge_array($data, sqlFetchArray($result_mailid));
 
-                       // Free result
-                       SQL_FREERESULT($result);
+                       // Correct notification switch in non-bonus mails
+                       if ((!isset($data['is_notify'])) || (!in_array($data['is_notify'], array('Y', 'N')))) {
+                               $data['is_notify'] = 'N';
+                       } // END - if
 
-                       // Set it
-                       setExtraTitle($title);
+                       // Set sender to 0 when we have a bonus mail
+                       if ($data['link_type'] == 'BONUS') {
+                               $data['sender'] = NULL;
+                       } // END - if
 
-                       // Is the user's id unlocked?
-                       if (fetchUserData($userId)) {
-                               // Status must be CONFIRMED
+                       // Is the user id valid?
+                       if (fetchUserData($data['userid']) === TRUE) {
+                               // Is the user status CONFIRMED?
                                if (getUserData('status') == 'CONFIRMED') {
-                                       // Update last activity if not admin
-                                       if ((!isAdmin()) || (isDebugModeEnabled())) {
-                                               // Is not admin, so update last activity
-                                               updateLastActivity($userId);
-                                       } // END - if
-
                                        // User has confirmed his account so we can procede...
                                        // @TODO Rewrite this to a filter
-                                       switch ($ltype) {
+                                       switch ($data['link_type']) {
                                                case 'NORMAL':
-                                                       $result = SQL_QUERY_ESC("SELECT `payment_id` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `pool_id`=%s LIMIT 1",
-                                                               array(bigintval($pool)), __FILE__, __LINE__);
-                                                       if (SQL_NUMROWS($result) == 1) {
-                                                               list($pay) = SQL_FETCHROW($result);
-                                                               $time      = getPaymentData($pay, 'time');
-                                                               $payment   = getPaymentData($pay, 'payment');
+                                                       $result = sqlQueryEscaped("SELECT `payment_id` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `pool_id`=%s LIMIT 1",
+                                                               array(bigintval($data['pool_id'])), __FILE__, __LINE__);
+
+                                                       // Entry found?
+                                                       if (sqlNumRows($result) == 1) {
+                                                               $data = merge_array($data, sqlFetchArray($result));
+                                                               $data['time']    = getPaymentTime($data['payment_id']);
+                                                               $data['payment'] = getPaymentPayment($data['payment_id']);
                                                                $isValid   = TRUE;
                                                        } // END - if
 
-                                                       // Free memory
-                                                       SQL_FREERESULT($result);
+                                                       // Free memory...
+                                                       sqlFreeResult($result);
                                                        break;
 
                                                case 'BONUS':
-                                                       $result = SQL_QUERY_ESC("SELECT `points`, `time` FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`=%s LIMIT 1",
-                                                               array($bonusId), __FILE__, __LINE__);
-                                                       if (SQL_NUMROWS($result) == 1) {
-                                                               list($points, $time) = SQL_FETCHROW($result);
-                                                               $payment = '0.00000';
+                                                       $result = sqlQueryEscaped("SELECT `time`, `points` AS `payment` FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`=%s LIMIT 1",
+                                                               array(bigintval($data['pool_id'])), __FILE__, __LINE__);
+
+                                                       // Entry found?
+                                                       if (sqlNumRows($result) == 1) {
+                                                               $data = merge_array($data, sqlFetchArray($result));
                                                                $isValid = TRUE;
                                                        } // END - if
 
-                                                       // Free memory
-                                                       SQL_FREERESULT($result);
+                                                       // Free memory...
+                                                       sqlFreeResult($result);
                                                        break;
 
-                                               default: // Invalid mail type
-                                                       reportBug(__FILE__, __LINE__, 'Invalid mail type ' . $ltype . ' detected.');
+                                               default: // Unknown type
+                                                       reportBug(__FILE__, __LINE__, 'Unknown mail type ' . $data['link_type'] . ' detected.');
                                                        break;
                                        } // END - switch
 
-                                       // Add header
-                                       loadIncludeOnce('inc/header.php');
-
-                                       // Was that mail a valid one?
+                                       // Is this entry valid?
                                        if ($isValid === TRUE) {
-                                               // If time is zero seconds we have a sponsor mail. 1 Second shall be set to avoid problems
-                                               if (($time == '0') && ($payment > 0)) {
-                                                       $url  = getUrl();
-                                                       $time = 1; 
+                                               // Run at least one second
+                                               if (($data['time'] < 1) && ($data['payment'] > 0)) {
+                                                       // Zero seconds is not supported
+                                                       $data['time'] = 1;
                                                } // END - if
 
-                                               if (($time > 0) && (($payment > 0) || ($points > 0))) {
-                                                       // Set HTTP status to okay
-                                                       setHttpStatus('200 OK');
-
-                                                       // Export data into constants for the template
-                                                       $content = array(
-                                                               'userid'  => $userId,
-                                                               'type'    => $type,
-                                                               'data'    => $urlId,
-                                                               'url'     => $url
-                                                       );
+                                               // Is time and payment set?
+                                               if (($data['time'] > 0) && ($data['payment'] > 0)) {
+                                                       $data['real_code'] = '0';
+                                                       if (!empty($data['code'])) {
+                                                               // Generate code (the user sees in the CAPTCHA)
+                                                               $data['real_code'] = generateRandomCode(getCodeLength(), $data['code'], $data['userid'], $data['id']);
+                                                       } // END - if
 
-                                                       // Load template
-                                                       loadTemplate('mailid_frames', FALSE, $content);
+                                                       // Do the call-back by given data array
+                                                       doMailIdCallback($data);
                                                } else {
-                                                       $errorCode = getCode('DATA_INVALID');
+                                                       $data['error_code'] = getCode('DATA_INVALID');
+                                                       $data['do'] = 'failed';
                                                }
                                        } else {
-                                               $errorCode = getCode('POSSIBLE_INVALID');
+                                               $data['error_code'] = getCode('POSSIBLE_INVALID');
+                                               $data['do'] = 'failed';
                                        }
                                } else {
-                                       $errorCode = getCode('ACCOUNT_' . strtoupper(getUserData('status')));
+                                       $data['error_code'] = getCode('ACCOUNT_' . strtoupper(getUserData('status')));
+                                       $data['do'] = 'failed';
                                }
                        } else {
-                               $errorCode = getCode('USER_404');
+                               $data['error_code'] = getCode('USER_404');
+                               $data['do'] = 'failed';
                        }
                } else {
-                       $errorCode = getCode('STATS_404');
+                       $data['error_code'] = getCode('STATS_404');
+                       $data['do'] = 'failed';
                }
+
+               // Free result
+               sqlFreeResult($result_mailid);
        } else {
-               $errorCode = getCode('ALREADY_CONFIRMED');
+               $data['error_code'] = getCode('ALREADY_CONFIRMED');
+               $data['do'] = 'failed';
        }
 
        // Free result
-       SQL_FREERESULT($result_link);
+       sqlFreeResult($result_main);
 } else {
-       // Nothing entered
-       $errorCode = getCode('ERROR_MAILID');
+       // Not all variables are set
+       $data['error_code'] = getCode('ERROR_MAILID');
+       $data['do'] = 'failed';
 }
 
 // Error code is set?
-handleMailIdErrorCode($errorCode);
+handleMailIdErrorCode($data['error_code']);
+
+// Insert footer if no image
+if ($data['do'] != 'img') {
+       // Write footer
+       loadPageFooter();
+} // END - if
 
-// Include footer
-loadIncludeOnce('inc/footer.php');
+// Really all done here... ;-)
+doShutdown();
 
 // [EOF]
 ?>