X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fguest%2Fwhat-sponsor_login.php;h=895e2280de8cac8ce12b0ae7abe9992b1e87c213;hb=3f4c2097caf8c71a9f5a3b3278d17afda5626237;hp=0a8b505de56df1f13e4359edf2242bd576b21173;hpb=21b7ff95974945f80a5569c49071406527e22066;p=mailer.git diff --git a/inc/modules/guest/what-sponsor_login.php b/inc/modules/guest/what-sponsor_login.php index 0a8b505de5..895e2280de 100644 --- a/inc/modules/guest/what-sponsor_login.php +++ b/inc/modules/guest/what-sponsor_login.php @@ -31,29 +31,33 @@ ************************************************************************/ // Some security stuff... -if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) -{ +if (!defined('__SECURITY')) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php"; require($INC); +} elseif ((!EXT_IS_ACTIVE("sponsor"))) { + if (IS_ADMIN()) { + ADD_FATAL(sprintf(EXTENSION_PROBLEM_NOT_INSTALLED, "sponsor")); + } else { + ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "sponsor"); + } + return; } // Add description as navigation point -ADD_DESCR("guest", basename(__FILE__)); +ADD_DESCR("guest", __FILE__); $MODE = ""; -if (!empty($_GET['mode'])) -{ +if (!empty($_GET['mode'])) { // A "special" mode of the login system was requested switch ($_GET['mode']) { case "activate" : $MODE = "activate"; break; // Activation link requested case "lost_pass": $MODE = "lost_pass"; break; // Request new password } -} +} // END - if // Check if hash for confirmation of email address is given... -if (!empty($_GET['hash'])) -{ +if (!empty($_GET['hash'])) { // Lookup sponsor $result = SQL_QUERY_ESC("SELECT id, status, gender, surname, family, company, position, tax_ident, @@ -62,8 +66,7 @@ points_amount AS points, last_pay AS pay, last_curr AS curr FROM "._MYSQL_PREFIX."_sponsor_data WHERE hash='%s' AND (status='UNCONFIRMED' OR status='EMAIL') LIMIT 1", array($_GET['hash']), __FILE__, __LINE__); - if (SQL_NUMROWS($result) == 1) - { + if (SQL_NUMROWS($result) == 1) { // Sponsor found, load his data... $SPONSOR = SQL_FETCHARRAY($result); @@ -73,16 +76,14 @@ LIMIT 1", array($_GET['hash']), __FILE__, __LINE__); $SPONSOR['pay'] = TRANSLATE_COMMA($SPONSOR['pay']); // Unconfirmed account or changed email address? - if ($SPONSOR['status'] == "UNCONFIRMED") - { + if ($SPONSOR['status'] == "UNCONFIRMED") { // Set account to pending $result_update = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_sponsor_data SET status='PENDING' WHERE id='%s' AND hash='%s' AND status='UNCONFIRMED' LIMIT 1", array(bigintval($SPONSOR['id']), $_GET['hash']), __FILE__, __LINE__); - // Check on success - if (SQL_AFFECTEDROWS() == 1) - { + // Check on success + if (SQL_AFFECTEDROWS() == 1) { // Prepare mail and send it to the sponsor $MSG = LOAD_EMAIL_TEMPLATE("sponsor_pending", $SPONSOR); SEND_EMAIL($SPONSOR['email'], SPONSOR_ACCOUNT_PENDING_SUBJ, $MSG); @@ -92,65 +93,51 @@ WHERE id='%s' AND hash='%s' AND status='UNCONFIRMED' LIMIT 1", // Sponsor account set to pending LOAD_TEMPLATE("admin_settings_saved", false, SPONSOR_ACCOUNT_IS_PENDING); - } - else - { + } else { // Could not unlock account! LOAD_TEMPLATE("admin_settings_saved", false, SPONSOR_ACCOUNT_PENDING_FAILED); } - } - elseif ($SPONSOR['status'] == "EMAIL") - { + } elseif ($SPONSOR['status'] == "EMAIL") { // Changed email adress need to be confirmed $result_update = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_sponsor_data SET status='CONFIRMED' WHERE id='%s' AND hash='%s' AND status='EMAIL' LIMIT 1", array(bigintval($SPONSOR['id']), $_GET['hash']), __FILE__, __LINE__); // Check on success - if (SQL_AFFECTEDROWS() == 1) - { + if (SQL_AFFECTEDROWS() == 1) { // Sponsor account is unlocked again LOAD_TEMPLATE("admin_settings_saved", false, SPONSOR_ACCOUNT_IS_CONFIRMED_AGAIN); - } - else - { + } else { // Could not unlock account! LOAD_TEMPLATE("admin_settings_saved", false, SPONSOR_ACCOUNT_EMAIL_FAILED); } - } - else - { + } else { /// ??? Other status? LOAD_TEMPLATE("admin_settings_saved", false, SPONSOR_ACCOUNT_STATUS_FAILED); } - } - else - { + } else { // No sponsor found LOAD_TEMPLATE("admin_settings_saved", false, SPONSOR_ACCOUNT_404); } // Free memory SQL_FREERESULT($result); -} - elseif ($MODE == "activate") -{ +} elseif ($MODE == "activate") { // Send activation link again - if (isset($_POST['ok'])) - { + if (isset($_POST['ok'])) { // Check submitted data if (empty($_POST['email'])) unset($_POST['ok']); } - if (isset($_POST['ok'])) - { + if (isset($_POST['ok'])) { // Check email $result = SQL_QUERY_ESC("SELECT id, hash, status, remote_addr, gender, surname, family, sponsor_created FROM "._MYSQL_PREFIX."_sponsor_data WHERE email='%s' AND (status='UNCONFIRMED' OR status='EMAIL') LIMIT 1", - array($_POST['email']), __FILE__, __LINE__); - if (SQL_NUMROWS($result) == 1) - { + array($_POST['email']), __FILE__, __LINE__); + + // Entry found? + if (SQL_NUMROWS($result) == 1) { // Unconfirmed sponsor account found so let's load the requested data $SPONSOR = SQL_FETCHARRAY($result); @@ -159,13 +146,10 @@ WHERE email='%s' AND (status='UNCONFIRMED' OR status='EMAIL') LIMIT 1", $SPONSOR['sponsor_created'] = MAKE_DATETIME($SPONSOR['sponsor_created']); // Prepare email and send it to the sponsor - if ($SPONSOR['status'] == "UNCONFIRMED") - { + if ($SPONSOR['status'] == "UNCONFIRMED") { // Unconfirmed accounts $msg_sponsor = LOAD_EMAIL_TEMPLATE("sponsor_activate", $SPONSOR); - } - else - { + } else { // Confirmed email address $msg_sponsor = LOAD_EMAIL_TEMPLATE("sponsor_email", $SPONSOR); } @@ -173,40 +157,32 @@ WHERE email='%s' AND (status='UNCONFIRMED' OR status='EMAIL') LIMIT 1", // Output message LOAD_TEMPLATE("admin_settings_saved", false, SPONSOR_ACTIVATION_LINK_SENT); - } - else - { + } else { // No account found or not UNCONFIRMED LOAD_TEMPLATE("admin_settings_saved", false, SPONSOR_ACTIVATION_LINK_404); } // Free memory SQL_FREERESULT($result); - } - else - { + } else { // Load form LOAD_TEMPLATE("guest_sponsor_activate"); } -} - elseif ($MODE == "lost_pass") -{ +} elseif ($MODE == "lost_pass") { // Send new password - if (isset($_POST['ok'])) - { + if (isset($_POST['ok'])) { // Check submitted data if (empty($_POST['email'])) unset($_POST['ok']); - } + } // END - if - if (isset($_POST['ok'])) - { + if (isset($_POST['ok'])) { // Check email $result = SQL_QUERY_ESC("SELECT id, hash, remote_addr, gender, surname, family, sponsor_created FROM "._MYSQL_PREFIX."_sponsor_data WHERE email='%s' AND id='%s' AND status='CONFIRMED' LIMIT 1", - array($_POST['email'], bigintval($_POST['id'])), __FILE__, __LINE__); - if (SQL_NUMROWS($result) == 1) - { + array($_POST['email'], bigintval($_POST['id'])), __FILE__, __LINE__); + // Entry found? + if (SQL_NUMROWS($result) == 1) { // Unconfirmed sponsor account found so let's load the requested data $SPONSOR = SQL_FETCHARRAY($result); @@ -228,49 +204,38 @@ WHERE id='%s' LIMIT 1", // Output message LOAD_TEMPLATE("admin_settings_saved", false, SPONSOR_LOST_PASSWORD_SENT); - } - else - { + } else { // No account found or not UNCONFIRMED LOAD_TEMPLATE("admin_settings_saved", false, SPONSOR_LOST_PASSWORD_404); } // Free memory SQL_FREERESULT($result); - } - else - { + } else { // Load form LOAD_TEMPLATE("guest_sponsor_lost"); } -} - elseif (isset($_POST['ok'])) -{ +} elseif (isset($_POST['ok'])) { // Check status and login data ... $result = SQL_QUERY_ESC("SELECT status FROM "._MYSQL_PREFIX."_sponsor_data WHERE id='%s' AND password='%s' LIMIT 1", array(bigintval($_POST['sponsorid']), md5($_POST['pass'])), __FILE__, __LINE__); - if (SQL_NUMROWS($result) == 1) - { + if (SQL_NUMROWS($result) == 1) { // Okay, first login data check passed, now has he/she an approved (CONFIRMED) account? list($status) = SQL_FETCHROW($result); - if ($status == "CONFIRMED") - { + if ($status == "CONFIRMED") { // Calculate cookie lifetime, maybe we have to change this so the admin can setup a // seperate timeout for these two cookies? - $life = (time() + $_CONFIG['online_timeout']); + $life = (time() + getConfig('online_timeout')); // Is confirmed so both is fine and we can continue with login procedure $login = ((setcookie("sponsorid" , bigintval($_POST['sponsorid']), $life, COOKIE_PATH)) && (setcookie("sponsorpass", md5($_POST['pass']) , $life, COOKIE_PATH))); - if ($login) - { + if ($login) { // Cookie setup successfull so we can forward to sponsor area LOAD_URL(URL."/modules.php?module=sponsor"); - } - else - { + } else { // Cookie setup failed! LOAD_TEMPLATE("admin_settings_saved", false, SPONSPOR_COOKIE_SETUP_FAILED); OUTPUT_HTML("
"); @@ -278,21 +243,16 @@ WHERE id='%s' AND password='%s' LIMIT 1", // Login formular and other links LOAD_TEMPLATE("guest_sponsor_login"); } - } - else - { + } else { // Status is not fine - $eval = "\$content = SPONSOR_LOGIN_FAILED_".strtoupper($status).";"; - eval($eval); + $content = constant('SPONSOR_LOGIN_FAILED_'.strtoupper($status).''); LOAD_TEMPLATE("admin_settings_saved", false, $content); OUTPUT_HTML("
"); // Login formular and other links LOAD_TEMPLATE("guest_sponsor_login"); } - } - else - { + } else { // Account missing or wrong pass! We shall not find this out for the "hacker folks"... LOAD_TEMPLATE("admin_settings_saved", false, SPONSOR_LOGIN_FAILED_404_WRONG_PASS); OUTPUT_HTML("
"); @@ -303,9 +263,7 @@ WHERE id='%s' AND password='%s' LIMIT 1", // Free memory SQL_FREERESULT($result); -} - else -{ +} else { // Login formular and other links LOAD_TEMPLATE("guest_sponsor_login"); }