New functions introduced, several rewrites:
[mailer.git] / inc / modules / chk_login.php
index bba4b8c3e410951b366493dec175915ab38103e1..ad4bc4c97d0c055e5bb8142901e289cb0a9d1576 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 11/26/2003 *
- * ===============                              Last change: 02/27/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 11/26/2003 *
+ * ===================                          Last change: 02/27/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : chk_login.php                                    *
@@ -17,7 +17,7 @@
  * 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);
-}
+       die();
+} // END - if
 
 // Initial message part
-$message = "<strong>{--VALIDATING_LOGIN--}</strong>";
-
-if (isUserIdSet() && (isSessionVariableSet('u_hash'))) {
-       // Login failures 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.6.1') {
-               // Load them here
-               $add = ", login_failures, UNIX_TIMESTAMP(last_failure) AS last_failure";
-       } // 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(getUserId()), __FILE__, __LINE__);
-
-       // Load data
-       $data = SQL_FETCHARRAY($result);
-
-       // Free result
-       SQL_FREERESULT($result);
-
-       // Change to new theme
-       setSession('mxchange_theme', $data['curr_theme']);
-
-       // Remmeber login failures if available
-       if (GET_EXT_VERSION('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(getUserId()), __FILE__, __LINE__);
-
-               // Store it in session
-               setSession('mxchange_member_failures', $data['login_failures']);
-               setSession('mxchange_member_last_fail', $data['last_failure']);
-       } // 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') && (getConfig('bonus_login_yn') == 'Y')) {
-               // Update last login if far enougth away
-               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(
-               getUserId(),
-               getConfig('login_timeout')
-               ), __FILE__, __LINE__
-               );
-               if (SQL_AFFECTEDROWS() == 1) $bonus = true;
-       } // END - if
+$GLOBALS['message'] = '<strong>{--VALIDATING_LOGIN--}</strong>';
 
-       if (($bonus) && (REQUEST_GET('mode') == 'bonus') && (EXT_IS_ACTIVE('bonus'))) {
-               // Output message with added points
-               $message .= "<div class=\"tiny\">
-  ".sprintf(getMessage('BONUS_LOGIN_BONUS_ADDED'), translateComma(getConfig('login_bonus')))."
-</div>";
-       } elseif (EXT_IS_ACTIVE('bonus')) {
-               // No login bonus added!
-               $message .= "<div class=\"member_failed\">{--BONUS_LOGIN_BONUS_NOT_ADDED--}</div>";
-       }
+// Is the member id and u_hash set?
+if (isMember()) {
+       // Run filter chain here
+       runFilterChain('member_login_check');
 
        // Redirect to member area
-       $message .= LOAD_TEMPLATE("member_login_js", true);
+       $GLOBALS['message'] .= loadTemplate('member_login_js', true);
 } else {
        // Login failed!
-       $message .= LOAD_TEMPLATE("login_failed_js", true);
+       $GLOBALS['message'] .= loadTemplate('login_failed_js', true);
 }
 
 // Output final message
-LOAD_TEMPLATE('admin_settings_saved', false, $message);
+loadTemplate('admin_settings_saved', false, $GLOBALS['message']);
 
-//
+// [EOF]
 ?>