Huge rewrite of default parameters, ext-network continued:
[mailer.git] / inc / modules / guest / what-login.php
index a0601049a557e944786f4d3393b80b8cc7633ae6..901f7b8c69dfadb4dd53372f62ab0634abd85b58 100644 (file)
  * Kurzbeschreibung  : Loginbereich (leitet an das richtige Lgin-Modul  *
  *                     weiter)                                          *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
+ * Needs to be in all Files and every File needs "svn propset           *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  ************************************************************************/
 
 // Some security stuff...
-if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
+if (!defined('__SECURITY')) {
+       die();
 }
 
 // Add description as navigation point
-ADD_DESCR("guest", basename(__FILE__));
-
-global $DATA, $FATAL;
-
-// Initialize data
-$probe_nickname = false; $uid = false; $hash = "";
-unset($login); unset($online);
-
-if ((!empty($GLOBALS['userid'])) && (isSessionVariableSet('u_hash')))
-{
-       // Already logged in?
-       $uid = $GLOBALS['userid'];
-} elseif ((!empty($_POST['id'])) && (!empty($_POST['password'])) && (isset($_POST['ok']))) {
+addMenuDescription('guest', __FILE__);
+
+if ((!isExtensionActive('user')) && (!isAdmin())) {
+       loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('user'));
+       return;
+} // END - if
+
+// Initialize variables
+$errorCode = '0';
+$userid = false;
+$hash = '';
+$URL = '';
+$add = '';
+
+// Already logged in?
+if ((isMemberIdSet()) && (isSessionVariableSet('u_hash'))) {
+       // Maybe, then continue with it
+       $userid = getMemberId();
+} elseif ((isPostRequestElementSet('id')) && (isPostRequestElementSet('password')) && (isFormSent())) {
        // Set userid and crypt password when login data was submitted
-       $probe_nickname = ((EXT_IS_ACTIVE("nickname")) && (("".round($_POST['id'])."") != $_POST['id']));
-       if ($probe_nickname)
-       {
+       if ((isExtensionActive('nickname')) && (isNicknameOrUserid(postRequestElement('id')))) {
                // Nickname entered
-               $uid = SQL_ESCAPE($_POST['id']);
+               $userid = SQL_ESCAPE(postRequestElement('id'));
        } else {
                // Direct userid entered
-               $uid  = bigintval($_POST['id']);
+               $userid  = bigintval(postRequestElement('id'));
        }
-} elseif (!empty($_POST['new_pass'])) {
+} elseif (isPostRequestElementSet('new_pass')) {
        // New password requested
-       $uid = 0;
-       if (!empty($_POST['id'])) $uid = $_POST['id'];
+       $userid = '0';
+       if (isPostRequestElementSet('id')) $userid = bigintval(postRequestElement('id'));
 } else {
        // Not logged in
-       $uid = 0; $hash = "";
+       $userid = '0'; $hash = '';
 }
 
-$URL = ""; $ADD = "";
-// Set unset variables
-if (empty($_POST['new_pass'])) $_POST['new_pass'] = "";
-if (empty($_GET['login']))     $_GET['login']     = "";
-
-if (IS_MEMBER()) {
+if (isMember()) {
        // Login immidiately...
-       $URL = URL."/modules.php?module=login";
-} elseif (isset($_POST['ok'])) {
-       // Add last_login if available
-       $LAST = "";
-       if (GET_EXT_VERSION("sql_patches") >= "0.2.8") {
-               $LAST = ", last_login";
-       }
-
-       // Check login data
-       $password = "";
-       if ($probe_nickname) {
-               // Nickname entered
-               $result = SQL_QUERY_ESC("SELECT userid, password, last_online".$LAST." FROM "._MYSQL_PREFIX."_user_data WHERE nickname='%s' AND status='CONFIRMED' LIMIT 1",
-                array($uid), __FILE__, __LINE__);
-               list($uid2, $password, $online, $login) = SQL_FETCHROW($result);
-               if (!empty($uid2)) $uid = $uid2;
-       } else {
-               // Direct userid entered
-               $result = SQL_QUERY_ESC("SELECT userid, password, last_online".$LAST." FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s AND status='CONFIRMED' LIMIT 1",
-                array(bigintval($uid), $hash), __FILE__, __LINE__);
-               list($dmy, $password, $online, $login) = SQL_FETCHROW($result);
-       }
-       if (SQL_NUMROWS($result) == 1) {
-               // Valid data found so let's load the last login data
-               if (isset($_POST['ok'])) {
-                       // By default the hash is empty
-                       $hash = "";
-
-                       // Check for old MD5 passwords
-                       if ((strlen($password) == 32) && (md5($_POST['password']) == $password)) {
-                               // Just set the hash to the password from DB... :)
-                               $hash = $password;
-                       } else {
-                               // Encrypt hash for comparsion
-                               $hash = generateHash($_POST['password'], substr($password, 0, -40));
-                       }
-
-                       if ($hash == $password) {
-                               // New hashed password found so let's generate a new one
-                               $hash = generateHash($_POST['password']);
-
-                               // ... and update database
-                               $result_update = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET password='%s' WHERE userid=%s AND status='CONFIRMED' LIMIT 1",
-                                array($hash, $uid), __FILE__, __LINE__);
-
-                               // No login bonus by default
-                               $BONUS = false;
-
-                               // Probe for last online timemark
-                               $probe = time() -  $online;
-                               if (!empty($login)) $probe = time() - $login;
-                               if ((GET_EXT_VERSION("bonus") >= "0.2.2") && ($probe >= $_CONFIG['login_timeout'])) {
-                                       // Add login bonus to user's account
-                                       $ADD = ", login_bonus=login_bonus+'".$_CONFIG['login_bonus']."'";
-                                       $BONUS = true;
-
-                                       // Subtract login bonus from userid's account or jackpot
-                                       if ((GET_EXT_VERSION("bonus") >= "0.3.5") && ($_CONFIG['bonus_mode'] != "ADD")) BONUS_POINTS_HANDLER('login_bonus');
-                               }
-
-
-                               // Secure lifetime from input form
-                               $l = bigintval($_POST['lifetime']);
-                               $life = "-1";
-                               if ($l > 0) {
-                                       // Calculate lifetime of cookies
-                                       $life = time() + $l;
-
-                                       // Calculate new hash with the secret key and master salt together
-                                       $hash = generatePassString($hash);
-
-                                       // Update cookies
-                                       $login = (set_session("userid"  , $uid , $life, COOKIE_PATH)
-                                              && set_session("u_hash"  , $hash, $life, COOKIE_PATH)
-                                              && set_session("lifetime", $l   , $life, COOKIE_PATH));
-
-                                       // Update global array
-                                       $GLOBALS['userid'] = bigintval($uid);
-                               } else {
-                                       // Check for login data
-                                       $login = IS_MEMBER();
-                               }
-
-                               if ($login) {
-                                       // Update database records
-                                       $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET total_logins=total_logins+1".$ADD." WHERE userid=%s LIMIT 1",
-                                        array(bigintval($uid)), __FILE__, __LINE__);
-                                       if (SQL_AFFECTEDROWS() == 1) {
-                                               // Procedure to checking for login data
-                                               if (($BONUS) && (EXT_IS_ACTIVE("bonus"))) {
-                                                       // Bonus added (just displaying!)
-                                                       $URL = URL."/modules.php?module=chk_login&mode=bonus";
-                                               } else {
-                                                       // Bonus not added
-                                                       $URL = URL."/modules.php?module=chk_login&mode=login";
-                                               }
-                                       } else {
-                                               // Cannot update counter!
-                                               $URL = URL."/modules.php?module=".$GLOBALS['module']."&what=login&login=".CODE_CNTR_FAILED;
-                                       }
-                               } else {
-                                       // Cookies not setable!
-                                       $URL = URL."/modules.php?module=".$GLOBALS['module']."&what=login&login=".CODE_NO_COOKIES;
-                               }
-                       } else {
-                               // Wrong password!
-                               $ERROR = CODE_WRONG_PASS;
-                       }
-               } else {
-                       // Fatal error!
-                       $ERROR = CODE_LOGIN_FAILED;
-               }
-       } else {
-               // Other account status?
-               $result = SQL_QUERY_ESC("SELECT status FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
-                array(bigintval($uid)), __FILE__, __LINE__);
-               if (SQL_NUMROWS($result) == 1)
-               {
-                       // Load status
-                       list($status) = SQL_FETCHROW($result);
-                       switch ($status)
-                       {
-                       case "LOCKED":
-                               $ERROR = CODE_ID_LOCKED;
-                               break;
-
-                       case "UNCONFIRMED":
-                               $ERROR = CODE_ID_UNCONFIRMED;
-                               break;
-
-                       default:
-                               $ERROR = CODE_UNKNOWN_STATUS;
-                               break;
-                       }
-               }
-                else
-               {
-                       // ID not found!
-                       $ERROR = CODE_WRONG_ID;
-               }
-
-               // Construct URL
-               $URL = URL."/modules.php?module=".$GLOBALS['module']."&what=login&login=".$ERROR;
-       }
-}
- elseif ((!empty($_POST['new_pass'])) && (isset($uid)))
-{
-       // Compile email when found in address (only secure chars!)
-       if (!empty($_POST['email'])) $_POST['email'] = str_replace("{DOT}", '.', $_POST['email']);
-
-       // Set ID number when left empty
-       if (empty($_POST['id'])) $_POST['id'] = 0;
-
-       // Probe userid/nickname
-       $probe_nickname = ((EXT_IS_ACTIVE("nickname")) && (("".round($_POST['id'])."") != $_POST['id']));
-       if ($probe_nickname)
-       {
-               // Nickname entered
-               $result = SQL_QUERY_ESC("SELECT userid, status FROM "._MYSQL_PREFIX."_user_data WHERE nickname='%s' OR email='%s' LIMIT 1",
-                array(addslashes($uid), $_POST['email']), __FILE__, __LINE__);
-       }
-        else
-       {
-               // Direct userid entered
-               $result = SQL_QUERY_ESC("SELECT userid, status FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s OR email='%s' LIMIT 1",
-                array(bigintval($uid), $_POST['email']), __FILE__, __LINE__);
-       }
-       if (SQL_NUMROWS($result) == 1)
-       {
-               // This data is valid, so we create a new pass... :-)
-               list($uid, $status) = SQL_FETCHROW($result);
-
-               if ($status == "CONFIRMED")
-               {
-                       // Ooppps, this was missing! ;-) We should update the database...
-                       $NEW_PASS = GEN_PASS();
-                       $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET password='%s' WHERE userid=%s LIMIT 1",
-                        array(generateHash($NEW_PASS), bigintval($uid)), __FILE__, __LINE__);
-
-                       // Prepare data and message for email
-                       $msg = LOAD_EMAIL_TEMPLATE("new-pass", array('new_pass' => $NEW_PASS), bigintval($uid));
-
-                       // ... and send it away
-                       SEND_EMAIL(bigintval($uid), GUEST_NEW_PASSWORD, $msg);
-
-                       // Output note to user
-                       LOAD_TEMPLATE("admin_settings_saved", false, GUEST_NEW_PASSWORD_SEND);
-               }
-                else
-               {
-                       // Account is locked or unconfirmed
-                       switch ($status)
-                       {
-                               case "LOCKED"     : $MSG = CODE_ID_LOCKED;      break;
-                               case "UNCONFIRMED": $MSG = CODE_ID_UNCONFIRMED; break;
-                       }
-
-                       // Load URL
-                       LOAD_URL("modules.php?module=".$GLOBALS['module']."&what=login&login=".$MSG);
-               }
-       }
-        else
-       {
-               // ID or email is wrong
-               LOAD_TEMPLATE("admin_settings_saved", false, "<SPAN class=\"guest_failed\">".GUEST_WRONG_ID_EMAIL."</SPAN>");
-       }
+       $URL = 'modules.php?module=login';
+} elseif ((isFormSent()) && ('' . $userid . '' != '' . postRequestElement('id') . '')) {
+       // Invalid input (no nickname extension installed but nickname entered)
+       $errorCode = getCode('EXTENSION_PROBLEM');
+} elseif (isFormSent()) {
+       // Try the login (see inc/libs/user_functions.php)
+       $URL = doUserLogin(postRequestElement('id'), postRequestElement('password'));
+} elseif ((isPostRequestElementSet('new_pass')) && (isset($userid))) {
+       // Try the userid/email lookup (see inc/libs/user_functions.php)
+       $errorCode = doNewUserPassword(postRequestElement('email'), $userid);
 }
- else
-{
-       // Login problems?
-       if (!empty($_GET['login']))
-       {
-               // Ok, which one now?
-               $MSG = "<TR>
-  <TD width=\"10\">&nbsp;</TD>
-  <TD colspan=\"7\" align=\"center\">
-    <STRONG><SPAN class=\"guest_failed\">";
-               switch ($_GET['login'])
-               {
-               case CODE_WRONG_PASS:
-                       $MSG .= LOGIN_WRONG_PASS;
-                       break;
-
-               case CODE_WRONG_ID:
-                       $MSG .= LOGIN_WRONG_ID;
-                       break;
-
-               case CODE_ID_LOCKED:
-                       $MSG .= LOGIN_ID_LOCKED;
-                       break;
-
-               case CODE_ID_UNCONFIRMED:
-                       $MSG .= LOGIN_ID_UNCONFIRMED;
-                       break;
-
-               case CODE_NO_COOKIES:
-                       $MSG .= LOGIN_NO_COOKIES;
-                       break;
 
-               default:
-                       $MSG .= LOGIN_WRONG_ID;
-                       break;
-               }
-               $MSG .= "</SPAN></STRONG>
-  </TD>
-  <TD width=\"10\">&nbsp;</TD>
-</TR>\n";
-               define('LOGIN_FAILURE_MSG', $MSG);
-       }
-        else
-       {
-               // No problems, no output
-               define('LOGIN_FAILURE_MSG', "");
-       }
-       // Display login form with resend-password form
-       if (EXT_IS_ACTIVE("nickname"))
-       {
-               LOAD_TEMPLATE("guest_nickname_login");
-       }
-        else
-       {
-               LOAD_TEMPLATE("guest_login");
-       }
+// Login problems?
+if (isGetRequestElementSet('login')) {
+       // Use code from URL
+       $errorCode = getRequestElement('login');
+} // END  - if
+
+// No problems, no output by detault
+$content['message'] = '';
+
+// Login problems?
+if (!empty($errorCode)) {
+       // @TODO Move this HTML code into a template
+       $message = "<tr>
+  <td width=\"10\" class=\"seperator\">&nbsp;</td>
+  <td colspan=\"7\" align=\"center\">
+    <span class=\"guest_failed\">";
+
+       // Convert the code to message
+       $message .= getMessageFromErrorCode($errorCode);
+
+       // Continue with HTML
+       $message .= "</span>
+  </td>
+  <td width=\"10\" class=\"seperator\">&nbsp;</td>
+</tr>\n";
+       $content['message'] = $message;
+} // END - if
+
+// Display login form with resend-password form
+if (isExtensionActive('nickname')) {
+       loadTemplate('guest_nickname_login', false, $content);
+} else {
+       loadTemplate('guest_login', false, $content);
 }
 
 // Was an URL constructed?
 if (!empty($URL)) {
        // URL was constructed
-       if (!empty($FATAL[0]))
-       {
-               // Fatal errors!
-               require_once(PATH."inc/fatal_errors.php");
+       if (getTotalFatalErrors() > 0) {
+               // Handle fatal errors
+               runFilterChain('handle_fatal_errors');
        } else {
                // Load URL
-               LOAD_URL($URL);
+               redirectToUrl($URL);
        }
-}
+} // END - if
 
-//
+// [EOF]
 ?>