X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=mailid.php;h=5a176e4410fa06ab59ac4537a65f4656bf8cdf80;hb=6988a92e7cbc2bdcf9d1d7c4deeb2a7e733518da;hp=561d51b9eabf035d71474e41332f021a4542cf8e;hpb=f3e4c2c048761589836fdbe6bd2e46599a1833a7;p=mailer.git diff --git a/mailid.php b/mailid.php index 561d51b9ea..5a176e4410 100644 --- a/mailid.php +++ b/mailid.php @@ -10,10 +10,10 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Bestaetigung von Mails * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * - * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009) $ * + * $Revision:: $ * + * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * - * $Author:: stelzi $ * + * $Author:: $ * * Needs to be in all Files and every File needs "svn propset * * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * @@ -37,30 +37,30 @@ ************************************************************************/ // Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) ) -require("inc/libs/security_functions.php"); +require('inc/libs/security_functions.php'); // Init "action" and "what" -$GLOBALS['what'] = ""; -$GLOBALS['action'] = ""; +$GLOBALS['what'] = ''; +$GLOBALS['action'] = ''; // Tell everyone we are in this module -$GLOBALS['module'] = "mailid"; +$GLOBALS['module'] = 'mailid'; $GLOBALS['output_mode'] = -1; // Load the required file(s) -require("inc/config.php"); +require('inc/config.php'); if (isInstalled()) { // Is the extension active? - REDIRECT_ON_UNINSTALLED_EXTENSION("mailid"); + REDIRECT_ON_UNINSTALLED_EXTENSION('mailid'); // Init $url_uid = 0; $url_bid = 0; $url_mid = 0; // Secure all data - if (REQUEST_ISSET_GET(('uid'))) $url_uid = bigintval(REQUEST_GET('uid')); - if (REQUEST_ISSET_GET(('mailid'))) $url_mid = bigintval(REQUEST_GET('mailid')); - if (REQUEST_ISSET_GET(('bonusid'))) $url_bid = bigintval(REQUEST_GET('bonusid')); + if (REQUEST_ISSET_GET('uid')) $url_uid = bigintval(REQUEST_GET('uid')); + if (REQUEST_ISSET_GET('mailid')) $url_mid = bigintval(REQUEST_GET('mailid')); + if (REQUEST_ISSET_GET('bonusid')) $url_bid = bigintval(REQUEST_GET('bonusid')); // 01 1 12 3 32 21 1 22 10 if (($url_uid) > 0 && (($url_mid > 0) || ($url_bid > 0)) && (getTotalFatalErrors() == 0)) { @@ -69,15 +69,15 @@ if (isInstalled()) { // Normal-Mails $result = SQL_QUERY_ESC("SELECT link_type FROM `{!_MYSQL_PREFIX!}_user_links` WHERE stats_id=%s AND userid=%s LIMIT 1", array($url_mid, $url_uid), __FILE__, __LINE__); - $type = "mailid"; $DATA = $url_mid; + $type = 'mailid'; $urlId = $url_mid; } elseif ($url_bid > 0) { // Bonus-Mail $result = SQL_QUERY_ESC("SELECT link_type FROM `{!_MYSQL_PREFIX!}_user_links` WHERE bonus_id=%s AND userid=%s LIMIT 1", array($url_bid, $url_uid), __FILE__, __LINE__); - $type = "bonusid"; $DATA = $url_bid; + $type = 'bonusid'; $urlId = $url_bid; } else { // Problem: No ID entered - LOAD_URL("index.php"); + LOAD_URL('index.php'); } if (SQL_NUMROWS($result) == 1) { @@ -89,15 +89,15 @@ if (isInstalled()) { switch ($ltype) { - case "NORMAL": + 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__); break; - case "BONUS": + case 'BONUS': // Is the bonus extension active? - REDIRECT_ON_UNINSTALLED_EXTENSION("bonus"); + REDIRECT_ON_UNINSTALLED_EXTENSION('bonus'); // Bonus-Mails $result = SQL_QUERY_ESC("SELECT id, url, subject FROM `{!_MYSQL_PREFIX!}_bonus` WHERE id=%s LIMIT 1", @@ -121,31 +121,31 @@ if (isInstalled()) { if (SQL_NUMROWS($result) == 1) { list($status, $gender, $sname, $fname) = SQL_FETCHROW($result); SQL_FREERESULT($result); - if ($status == "CONFIRMED") { + if ($status == 'CONFIRMED') { // User has confirmed his account so we can procede... switch ($ltype) { - case "NORMAL": + 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 = GET_PAY_POINTS($pay, "time"); - $payment = GET_PAY_POINTS($pay, "payment"); - $VALID = true; + $time = GET_PAY_POINTS($pay, 'time'); + $payment = GET_PAY_POINTS($pay, 'payment'); + $isValid = true; } // Free memory SQL_FREERESULT($result); break; - case "BONUS": + 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"; - $VALID = true; + $payment = '0.00000'; + $isValid = true; } // Free memory @@ -154,71 +154,71 @@ if (isInstalled()) { } // Add header - LOAD_INC_ONCE("inc/header.php"); + LOAD_INC_ONCE('inc/header.php'); // Was that mail a valid one? - if ($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 = constant('URL'); $time = "1"; } + if (($time == '0') && ($payment > 0)) { $URL = constant('URL'); $time = '1'; } if (($time > 0) && (($payment > 0) || ($points > 0))) { // He can confirm this mail! // Export data into constants for the template define('_UID_VALUE' , $url_uid); define('_TYPE_VALUE', $type); - define('_DATA_VALUE', $DATA); + define('_DATA_VALUE', $urlId); define('_URL_VALUE' , DEREFERER($URL)); // Load template - LOAD_TEMPLATE("mailid_frames"); + LOAD_TEMPLATE('mailid_frames'); } else { - $msg = constant('CODE_DATA_INVALID'); + $msg = getCode('DATA_INVALID'); } } else { - $msg = constant('CODE_POSSIBLE_INVALID'); + $msg = getCode('POSSIBLE_INVALID'); } } else { - $msg = constant('CODE_ACCOUNT_LOCKED'); + $msg = getCode('ACCOUNT_LOCKED'); } } else { SQL_FREERESULT($result); - $msg = constant('CODE_USER_404'); + $msg = getCode('USER_404'); } } else { SQL_FREERESULT($result); - $msg = constant('CODE_STATS_404'); + $msg = getCode('STATS_404'); } } else { SQL_FREERESULT($result); - $msg = constant('CODE_ALREADY_CONFIRMED'); + $msg = getCode('ALREADY_CONFIRMED'); } } else { // Nothing entered - $msg = constant('CODE_ERROR_MAILID'); + $msg = getCode('ERROR_MAILID'); } // Error code is set? if (!empty($msg)) { switch (getConfig('mailid_error_redirect')) { - case "INDEX": // Redirect to index page - LOAD_URL("modules.php?module=index&msg=".$msg."&ext=mailid"); + case 'INDEX': // Redirect to index page + LOAD_URL('modules.php?module=index&msg='.$msg.'&ext=mailid'); break; - case "REJECT": // Redirect to rejection page + case 'REJECT': // Redirect to rejection page LOAD_CONFIGURED_URL('reject_url'); break; default: DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown status %s detected in mailid_error_redirect.", getConfig('mailid_error_redirect'))); - LOAD_URL("modules.php?module=index&msg=".constant('CODE_UNKNOWN_STATUS')."&ext=mailid"); + LOAD_URL('modules.php?module=index&msg=' . getCode('UNKNOWN_STATUS') . '&ext=mailid'); break; } } else { // Include footer - LOAD_INC_ONCE("inc/footer.php"); + LOAD_INC_ONCE('inc/footer.php'); } } else { // You have to install first! - LOAD_URL("install.php"); + LOAD_URL('install.php'); } // Shutdown