Compilation time added, some compileCode() calles removed, ADMIN_WHAT_404 added
[mailer.git] / inc / modules / chk_login.php
index a96bc1d65161a3d31f33dbbb85eb73bf3bbd7dd4..3014e87d8d85c3bbf9e6589e4cb5f270e78eabf1 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Pruefen ob die Login-Cookies gesetzt sind        *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $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 (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-}
-
-// @TODO Replace with own template!
-OPEN_TABLE("500", "guest_login_header dashed", "center");
-OUTPUT_HTML("<br /><strong>".VALIDATING_LOGIN."</strong><br />");
-
-if (!empty($GLOBALS['userid']) && (isSessionVariableSet('u_hash')) && (isSessionVariableSet('lifetime'))) {
-       // Login failtures are supported since 0.4.7
-       // Do we have 0.4.7 of sql_patches or later?
-       $ADD = "";
-       if (GET_EXT_VERSION("sql_patches") >= "0.4.7") {
-               // Load them here
-               $ADD = ", login_failtures, UNIX_TIMESTAMP(last_failture) AS last_failture";
-       } // END - if
+       die();
+} // END - if
 
-       // Get theme from profile
-       $result = SQL_QUERY_ESC("SELECT curr_theme".$ADD." FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
-               array($GLOBALS['userid']), __FILE__, __LINE__);
+// Initial message part
+$message = "<strong>{--VALIDATING_LOGIN--}</strong>";
 
-       // Load data
-       $data = SQL_FETCHARRAY($result);
+if (isUserIdSet() && (isSessionVariableSet('u_hash'))) {
+       // Is 'theme' installed and activated?
+       if (isExtensionActive('theme')) {
+               // Get theme from profile
+               if (!fetchUserData(getUserId())) {
+                       // Userid is not valid
+                       debug_report_bug('User id '.getUserId() . ' is invalid.');
+               } // END - if
 
-       // Free result
-       SQL_FREERESULT($result);
+               // Load data
+               $data = getUserDataArray();
 
-       // Change to new theme
-       set_session("mxchange_theme", $data['curr_theme']);
+               // Change to new theme
+               setTheme($data['curr_theme']);
 
-       // Remmeber login failtures if available
-       if (GET_EXT_VERSION("sql_patches") >= "0.4.7") {
-               // Reset login failtures
-               SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data
-SET login_failtures=0, last_failture='0000-00-00 00:00:00'
-WHERE userid=%s
+               // Remmeber login failures if available
+               if (getExtensionVersion('sql_patches') >= '0.6.1') {
+                       // Reset login failures
+                       SQL_QUERY_ESC("UPDATE
+       `{?_MYSQL_PREFIX?}_user_data`
+SET
+       `login_failures`=0,
+       `last_failure`='0000-00-00 00:00:00'
+WHERE
+       `userid`=%s
 LIMIT 1",
-                       array($GLOBALS['userid']), __FILE__, __LINE__);
+                               array(getUserId()), __FILE__, __LINE__);
 
-               // Store it in session
-               set_session('mxchange_member_failtures', $data['login_failtures']);
-               set_session('mxchange_member_last_fail', $data['last_failture']);
+                       // Store it in session
+                       setSession('mxchange_member_failures', $data['login_failures']);
+                       setSession('mxchange_member_last_fail', $data['last_failure']);
+               } // END - if
        } // END - if
 
        // Bonus is not given by default ;-)
        $bonus = false;
-       if ((GET_EXT_VERSION("sql_patches") >= "0.2.8") && (GET_EXT_VERSION("bonus") >= "0.2.1") && ($_CONFIG['bonus_login_yn'] == "N") && ($_CONFIG['bonus_login_yn'] == "Y")) {
+       if ((getExtensionVersion('sql_patches') >= '0.2.8') && (getExtensionVersion('bonus') >= '0.2.1') && (getConfig('bonus_login_yn') == 'Y')) {
                // Update last login if far enougth away
-               $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data
-SET last_login=UNIX_TIMESTAMP()
-WHERE userid=%s AND last_login < (UNIX_TIMESTAMP() - %s)
+               SQL_QUERY_ESC("UPDATE
+       `{?_MYSQL_PREFIX?}_user_data`
+SET
+       `last_login`=UNIX_TIMESTAMP()
+WHERE
+       `userid`=%s AND
+       `last_login` < (UNIX_TIMESTAMP() - %s)
 LIMIT 1",
                        array(
-                               $GLOBALS['userid'],
-                               $_CONFIG['login_timeout']
+                               getUserId(),
+                               getConfig('login_timeout')
                        ), __FILE__, __LINE__
                );
                if (SQL_AFFECTEDROWS() == 1) $bonus = true;
        } // END - if
 
-       if (($bonus) && ($_GET['mode'] == "bonus") && (EXT_IS_ACTIVE("bonus"))) {
+       if (($bonus === true) && (getRequestElement('mode') == 'bonus') && (isExtensionActive('bonus'))) {
                // Output message with added points
-               OUTPUT_HTML("<font class=\"tiny\">
-  ".BONUS_LOGIN_BONUS_ADDED_1."
-  <strong>".TRANSLATE_COMMA($_CONFIG['login_bonus'])." ".POINTS."</strong>
-  ".BONUS_LOGIN_BONUS_ADDED_2."
-</font>");
-       } elseif (EXT_IS_ACTIVE("bonus")) {
+               $message .= "<div class=\"tiny\">
+  ".sprintf(getMessage('BONUS_LOGIN_BONUS_ADDED'), translateComma(getConfig('login_bonus')))."
+</div>";
+       } elseif (isExtensionActive('bonus')) {
                // No login bonus added!
-               OUTPUT_HTML("<font class=\"member_failed\">".BONUS_LOGIN_BONUS_NOT_ADDED."</font>");
+               $message .= "<div class=\"member_failed\">{--BONUS_LOGIN_BONUS_NOT_ADDED--}</div>";
        }
 
        // Redirect to member area
-       LOAD_TEMPLATE("member_login_js");
+       $message .= loadTemplate('member_login_js', true);
 } else {
        // Login failed!
-       LOAD_TEMPLATE("login_failed_js");
+       $message .= loadTemplate('login_failed_js', true);
 }
 
-// Close table
-CLOSE_TABLE();
+// Output final message
+loadTemplate('admin_settings_saved', false, $message);
 
-//
+// [EOF]
 ?>