X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=mailid.php;h=cebf439e9ad3179ee521c8f9f41906ee15bd650e;hp=26a90bae141d36d122444dd58ec0d6314a1f6cac;hb=c1849d27a96d4e533e130ba1ae302c1ef81a3bf3;hpb=48329d370d84b30c0107a55c95630d4528e6bdf5 diff --git a/mailid.php b/mailid.php index 26a90bae14..cebf439e9a 100644 --- a/mailid.php +++ b/mailid.php @@ -1,7 +1,7 @@ '0', + 'userid' => '0', + 'id' => '0', + 'code' => '0', + 'do' => 'frames', + 'type' => '', +); -// 01 1 12 2 2 21 1 22 10 -if (($url_userid) > 0 && (($url_mid > 0) || ($url_bid > 0)) && (getTotalFatalErrors() == 0)) { - // 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 ($url_mid > 0) { - // Normal-Mails - $result_link = SQL_QUERY_ESC("SELECT `link_type` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `stats_id`=%s AND `userid`=%s LIMIT 1", - array($url_mid, $url_userid), __FILE__, __LINE__); - $type = 'mailid'; $urlId = $url_mid; - } elseif ($url_bid > 0) { - // 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($url_bid, $url_userid), __FILE__, __LINE__); - $type = 'bonusid'; $urlId = $url_bid; - } else { - // Problem: No id entered - redirectToUrl('index.php'); - } + 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; - if (SQL_NUMROWS($result_link) == 1) { - // Load the entry - list($ltype) = SQL_FETCHROW($result_link); + 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; - // @TODO Rewrite this to a filter - switch ($ltype) { + 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($url_mid), __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, url, subject FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`=%s LIMIT 1", - array($url_bid), __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 - debug_report_bug('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($url_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 - updateLastActivity($url_userid); - // 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 = getPaymentPoints($pay, 'time'); - $payment = getPaymentPoints($pay, 'payment'); - $isValid = true; + $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($url_bid), __FILE__, __LINE__); - if (SQL_NUMROWS($result) == 1) { - list($points, $time) = SQL_FETCHROW($result); - $payment = '0.00000'; - $isValid = true; - } - - // Free memory - SQL_FREERESULT($result); + $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... + sqlFreeResult($result); break; - default: // Invalid mail type - debug_report_bug('Invalid mail type ' . $ltype . ' detected.'); + default: // Unknown type + reportBug(__FILE__, __LINE__, 'Unknown mail type ' . $data['link_type'] . ' detected.'); break; - } + } // END - switch + + // Is this entry valid? + if ($isValid === TRUE) { + // Run at least one second + if (($data['time'] < 1) && ($data['payment'] > 0)) { + // Zero seconds is not supported + $data['time'] = 1; + } // END - if + + // 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 - // Add header - loadIncludeOnce('inc/header.php'); - - // Was that mail a valid one? - 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 = getConfig('URL'); $time = 1; } - if (($time > 0) && (($payment > 0) || ($points > 0))) { - // Export data into constants for the template - $content = array( - 'userid' => $url_userid, - 'type' => $type, - 'data' => $urlId, - 'url' => generateDerefererUrl($URL) - ); - - // 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_' . 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? -if (!empty($errorCode)) { - // @TODO Rewrite this to a dynamic include or so - switch (getConfig('mailid_error_redirect')) { - case 'INDEX': // Redirect to index page - redirectToUrl('modules.php?module=index&code=' . $errorCode . '&ext=mailid'); - break; +handleMailIdErrorCode($data['error_code']); - case 'REJECT': // Redirect to rejection page - if (isExtensionActive('other')) { - // Redirect to configured URL - redirectToConfiguredUrl('reject_url'); - } else { - // Redirect to index - redirectToUrl('index.php'); - } - break; - - default: - logDebugMessage(__FILE__, __LINE__, sprintf("Unknown status %s detected in mailid_error_redirect.", getConfig('mailid_error_redirect'))); - redirectToUrl('modules.php?module=index&code=' . getCode('UNKNOWN_STATUS') . '&ext=mailid'); - break; - } // END - switch +// 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] ?>