⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sugarauthenticate.php

📁 SugarCRM5.1 开源PHP客户关系管理系统
💻 PHP
字号:
<?phpif(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');/** * SugarCRM is a customer relationship management program developed by * SugarCRM, Inc. Copyright (C) 2004 - 2007 SugarCRM Inc. *  * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the * Free Software Foundation with the addition of the following permission added * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS. *  * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more * details. *  * You should have received a copy of the GNU General Public License along with * this program; if not, see http://www.gnu.org/licenses or write to the Free * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301 USA. *  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road, * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com. *  * The interactive user interfaces in modified source and object code versions * of this program must display Appropriate Legal Notices, as required under * Section 5 of the GNU General Public License version 3. *  * In accordance with Section 7(b) of the GNU General Public License version 3, * these Appropriate Legal Notices must retain the display of the "Powered by * SugarCRM" logo. If the display of the logo is not reasonably feasible for * technical reasons, the Appropriate Legal Notices must display the words * "Powered by SugarCRM". *//** * This file is used to control the authentication process.  * It will call on the user authenticate and controll redirection  * based on the users validation * */class SugarAuthenticate{	var $userAuthenticateClass = 'SugarAuthenticateUser';	var $authenticationDir = 'SugarAuthenticate';	/**	 * Constructs SugarAuthenticate	 * This will load the user authentication class	 *	 * @return SugarAuthenticate	 */	function SugarAuthenticate(){		require_once('modules/Users/authentication/'. $this->authenticationDir . '/'. $this->userAuthenticateClass . '.php');		$this->userAuthenticate = new $this->userAuthenticateClass();			}	/**	 * Authenticates a user based on the username and password	 * returns true if the user was authenticated false otherwise	 * it also will load the user into current user if he was authenticated	 *	 * @param string $username	 * @param string $password	 * @return boolean 	 */	function loginAuthenticate($username, $password){		global $mod_strings;		session_unregister('login_error');		if ($this->userAuthenticate->loadUserOnLogin($username, $password)) {							return $this->postLoginAuthenticate();					}		if(strtolower(get_class($this)) != 'sugarauthenticate'){			$sa = new SugarAuthenticate();			$error = (!empty($_SESSION['login_error']))?$_SESSION['login_error']:'';			if($sa->loginAuthenticate($username, $password)){				return true;				}			$_SESSION['login_error'] = $error;			}						$_SESSION['login_user_name'] = $username;		$_SESSION['login_password'] = $password;		if(empty($_SESSION['login_error'])){		  $_SESSION['login_error'] = $mod_strings['ERR_INVALID_PASSWORD'];		}			return false;	}	/**	 * Once a user is authenticated on login this function will be called. Populate the session with what is needed and log anything that needs to be logged	 *	 */	function postLoginAuthenticate(){				global $reset_theme_on_default_user, $reset_language_on_default_user, $sugar_config;			//THIS SECTION IS TO ENSURE VERSIONS ARE UPTODATE		require_once ('modules/Administration/updater_utils.php');		require_once ('modules/Versions/CheckVersions.php');		$invalid_versions = get_invalid_versions();		if (!empty ($invalid_versions)) {			if (isset ($invalid_versions['Rebuild Relationships'])) {				unset ($invalid_versions['Rebuild Relationships']);				// flag for pickup in DisplayWarnings.php				$_SESSION['rebuild_relationships'] = true;			}			if (isset ($invalid_versions['Rebuild Extensions'])) {				unset ($invalid_versions['Rebuild Extensions']);				// flag for pickup in DisplayWarnings.php				$_SESSION['rebuild_extensions'] = true;			}			$_SESSION['invalid_versions'] = $invalid_versions;		}						//just do a little house cleaning here 		session_unregister('login_password');		session_unregister('login_error');		session_unregister('login_user_name');		session_unregister('ACL');				//set the server unique key		if (isset ($sugar_config['unique_key']))$_SESSION['unique_key'] = $sugar_config['unique_key'];		//set the user theme		if ($reset_theme_on_default_user && $this->focus->user_name == $sugar_config['default_user_name']) {			$authenticated_user_theme = $sugar_config['default_theme'];		} else {			$authenticated_user_theme = isset($_REQUEST['login_theme']) ? $_REQUEST['login_theme'] : (isset($_REQUEST['ck_login_theme_20']) ? $_REQUEST['ck_login_theme_20'] : $sugar_config['default_theme']);		}		//set user language		if (isset ($reset_language_on_default_user) && $reset_language_on_default_user && $$GLOBALS['current_user']->user_name == $sugar_config['default_user_name']) {			$authenticated_user_language = $sugar_config['default_language'];		} else {			$authenticated_user_language = isset($_REQUEST['login_language']) ? $_REQUEST['login_language'] : (isset ($_REQUEST['ck_login_language_20']) ? $_REQUEST['ck_login_language_20'] : $sugar_config['default_language']);		}		$_SESSION['authenticated_user_theme'] = $authenticated_user_theme;		$_SESSION['authenticated_user_language'] = $authenticated_user_language;    		$GLOBALS['log']->debug("authenticated_user_theme is $authenticated_user_theme");		$GLOBALS['log']->debug("authenticated_user_language is $authenticated_user_language");		// Clear all uploaded import files for this user if it exists		$tmp_file_name = $sugar_config['import_dir']."IMPORT_".$GLOBALS['current_user']->id;		if (file_exists($tmp_file_name)) {			unlink($tmp_file_name);		}								return true;	}	/**	 * On every page hit this will be called to ensure a user is authenticated 	 * @return boolean 	 */	function sessionAuthenticate(){				global $module, $action, $allowed_actions;		$authenticated = false;		$allowed_actions = array ("Authenticate", "Login"); // these are actions where the user/server keys aren't compared		if (isset ($_SESSION['authenticated_user_id'])) {						$GLOBALS['log']->debug("We have an authenticated user id: ".$_SESSION["authenticated_user_id"]);						$authenticated = $this->postSessionAuthenticate();					} else		if (isset ($action) && isset ($module) && $action == "Authenticate" && $module == "Users") {			$GLOBALS['log']->debug("We are authenticating user now");		} else {			$GLOBALS['log']->debug("The current user does not have a session.  Going to the login page");			$action = "Login";			$module = "Users";			$_REQUEST['action'] = $action;			$_REQUEST['module'] = $module;		}		if (empty ($GLOBALS['current_user']->id) && !in_array($action, $allowed_actions)) {			$GLOBALS['log']->debug("The current user is not logged in going to login page");			$action = "Login";			$module = "Users";			$_REQUEST['action'] = $action;			$_REQUEST['module'] = $module;		}		if($authenticated){			$this->validateIP();		}		return $authenticated;	}	/**	 * Called after a session is authenticated - if this returns false the sessionAuthenticate will return false and destroy the session	 * and it will load the  current user	 * @return boolean 	 */	function postSessionAuthenticate(){	   		global $action, $allowed_actions, $sugar_config;		$_SESSION['userTime']['last'] = time();		$user_unique_key = (isset ($_SESSION['unique_key'])) ? $_SESSION['unique_key'] : '';		$server_unique_key = (isset ($sugar_config['unique_key'])) ? $sugar_config['unique_key'] : '';				//CHECK IF USER IS CROSSING SITES		if (($user_unique_key != $server_unique_key) && (!in_array($action, $allowed_actions)) && (!isset ($_SESSION['login_error']))) {						session_destroy();			$post_login_nav = '';			if (!empty ($record) && !empty ($action) && !empty ($module)) {				$post_login_nav = "&login_module=".$module."&login_action=".$action."&login_record=".$record;			}			$GLOBALS['log']->debug('Destroying Session User has crossed Sites');			header("Location: index.php?action=Login&module=Users".$post_login_nav);			sugar_cleanup(true);		}		if (!$this->userAuthenticate->loadUserOnSession($_SESSION['authenticated_user_id'])) {			session_destroy();			header("Location: index.php?action=Login&module=Users");			$GLOBALS['log']->debug('Current user session does not exist redirecting to login');			sugar_cleanup(true);		}		$GLOBALS['log']->debug('Current user is: '.$GLOBALS['current_user']->user_name);		return true;	}	/**	 * Make sure a user isn't stealing sessions so check the ip to ensure that the ip address hasn't dramatically changed	 *	 */	function validateIP() {		global $sugar_config;		// grab client ip address		$clientIP = query_client_ip();		$classCheck = 0;		// check to see if config entry is present, if not, verify client ip		if (!isset ($sugar_config['verify_client_ip']) || $sugar_config['verify_client_ip'] == true) {			// check to see if we've got a current ip address in $_SESSION			// and check to see if the session has been hijacked by a foreign ip			if (isset ($_SESSION["ipaddress"])) {				$session_parts = explode(".", $_SESSION["ipaddress"]);				$client_parts = explode(".", $clientIP);                if(count($session_parts) < 4) {                    $classCheck = 0;                }                else {     				// match class C IP addresses    				for ($i = 0; $i < 3; $i ++) {    					if ($session_parts[$i] == $client_parts[$i]) {    						$classCheck = 1;    						continue;    					} else {    						$classCheck = 0;    						break;    					}    				}                }				// we have a different IP address				if ($_SESSION["ipaddress"] != $clientIP && empty ($classCheck)) {					$GLOBALS['log']->fatal("IP Address mismatch: SESSION IP: {$_SESSION['ipaddress']} CLIENT IP: {$clientIP}");					session_destroy();					die("Your session was terminated due to a significant change in your IP address.  <a href=\"{$sugar_config['site_url']}\">Return to Home</a>");				}			} else {				$_SESSION["ipaddress"] = $clientIP;			}		}	}	/**	 * Called when a user requests to logout	 *	 */	function logout(){			session_destroy();			ob_clean();			header('Location: index.php?module=Users&action=Login');			sugar_cleanup(true);	}	/**	 * Encodes a users password. This is a static function and can be called at any time.	 *	 * @param STRING $password	 * @return STRING $encoded_password	 */	function encodePassword($password){		return strtolower(md5($password));	}		/**	 * If a user may change there password through the Sugar UI	 *	 */	function canChangePassword(){		return true;	}	/**	 * If a user may change there user name through the Sugar UI	 *	 */	function canChangeUserName(){		return true;	}	}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -