to settings passed into Authenticate objects. * * @var string * @deprecated Will be removed in 2.1+ */ protected $_authenticateLegacyMap = array( 'userModel' => 'userModel', 'userScope' => 'scope', 'fields' => 'fields' ); /** * An array of authorization objects to use for authorizing users. You can configure * multiple adapters and they will be checked sequentially when authorization checks are done. * * @var mixed * @link http://book.cakephp.org/view/1275/authorize */ public $authorize = false; /** * Objects that will be used for authorization checks. * * @var array */ protected $_authorizeObjects = array(); /** * A hash mapping legacy properties => to settings passed into Authorize objects. * * @var string * @deprecated Will be removed in 2.1+ */ protected $_authorizeLegacyMap = array( 'actionPath' => 'actionPath', ); /** * The name of an optional view element to render when an Ajax request is made * with an invalid or expired session * * @var string * @link http://book.cakephp.org/view/1277/ajaxLogin */ public $ajaxLogin = null; /** * Settings to use when Auth needs to do a flash message with SessionComponent::setFlash(). * Available keys are: * * - `element` - The element to use, defaults to 'default'. * - `key` - The key to use, defaults to 'auth' * - `params` - The array of additional params to use, defaults to array() * * @var array */ public $flash = array( 'element' => 'default', 'key' => 'auth', 'params' => array() ); /** * The name of the model that represents users which will be authenticated. Defaults to 'User'. * * @var string * @link http://book.cakephp.org/view/1266/userModel */ public $userModel = 'User'; /** * Additional query conditions to use when looking up and authenticating users, * i.e. array('User.is_active' => 1). * * @var array * @link http://book.cakephp.org/view/1268/userScope */ public $userScope = array(); /** * Allows you to specify non-default login name and password fields used in * $userModel, i.e. array('username' => 'login_name', 'password' => 'passwd'). * * @var array * @link http://book.cakephp.org/view/1267/fields */ public $fields = array('username' => 'username', 'password' => 'password'); /** * The session key name where the record of the current user is stored. If * unspecified, it will be "Auth.User". * * @var string * @link http://book.cakephp.org/view/1276/sessionKey */ public $sessionKey = 'Auth.User'; /** * If using action-based access control, this defines how the paths to action * ACO nodes is computed. If, for example, all controller nodes are nested * under an ACO node named 'Controllers', $actionPath should be set to * "Controllers/". * * @var string * @link http://book.cakephp.org/view/1279/actionPath */ public $actionPath = null; /** * A URL (defined as a string or array) to the controller action that handles * logins. Defaults to `/users/login` * * @var mixed * @link http://book.cakephp.org/view/1269/loginAction */ public $loginAction = array( 'controller' => 'users', 'action' => 'login', 'plugin' => null ); /** * Normally, if a user is redirected to the $loginAction page, the location they * were redirected from will be stored in the session so that they can be * redirected back after a successful login. If this session value is not * set, the user will be redirected to the page specified in $loginRedirect. * * @var mixed * @link http://book.cakephp.org/view/1270/loginRedirect */ public $loginRedirect = null; /** * The default action to redirect to after the user is logged out. While AuthComponent does * not handle post-logout redirection, a redirect URL will be returned from AuthComponent::logout(). * Defaults to AuthComponent::$loginAction. * * @var mixed * @see AuthComponent::$loginAction * @see AuthComponent::logout() * @link http://book.cakephp.org/view/1271/logoutRedirect */ public $logoutRedirect = null; /** * The name of model or model object, or any other object has an isAuthorized method. * * @var string */ public $object = null; /** * Error to display when user login fails. For security purposes, only one error is used for all * login failures, so as not to expose information on why the login failed. * * @var string * @link http://book.cakephp.org/view/1272/loginError */ public $loginError = null; /** * Error to display when user attempts to access an object or action to which they do not have * acccess. * * @var string * @link http://book.cakephp.org/view/1273/authError */ public $authError = null; /** * Determines whether AuthComponent will automatically redirect and exit if login is successful. * * @var boolean * @link http://book.cakephp.org/view/1274/autoRedirect */ public $autoRedirect = true; /** * Controller actions for which user validation is not required. * * @var array * @see AuthComponent::allow() * @link http://book.cakephp.org/view/1251/Setting-Auth-Component-Variables */ public $allowedActions = array(); /** * Request object * * @var CakeRequest */ public $request; /** * Method list for bound controller * * @var array */ protected $_methods = array(); /** * Initializes AuthComponent for use in the controller * * @param object $controller A reference to the instantiating controller object * @return void */ public function initialize($controller) { $this->request = $controller->request; $this->_methods = $controller->methods; if (Configure::read('debug') > 0) { App::import('Debugger'); Debugger::checkSecurityKeys(); } } /** * Main execution method. Handles redirecting of invalid users, and processing * of login form data. * * @param object $controller A reference to the instantiating controller object * @return boolean */ public function startup($controller) { if ($controller->name == 'CakeError') { return true; } $methods = array_flip($controller->methods); $action = $controller->request->params['action']; $isMissingAction = ( $controller->scaffold === false && !isset($methods[$action]) ); if ($isMissingAction) { return true; } if (!$this->__setDefaults()) { return false; } $request = $controller->request; $this->request->data = $controller->request->data = $this->hashPasswords($request->data); $url = ''; if (isset($request->query['url'])) { $url = $request->query['url']; } $url = Router::normalize($url); $loginAction = Router::normalize($this->loginAction); $allowedActions = $this->allowedActions; $isAllowed = ( $this->allowedActions == array('*') || in_array($action, $allowedActions) ); if ($loginAction != $url && $isAllowed) { return true; } if ($loginAction == $url) { if (empty($request->data)) { if (!$this->Session->check('Auth.redirect') && !$this->loginRedirect && env('HTTP_REFERER')) { $this->Session->write('Auth.redirect', $controller->referer(null, true)); } } } else { if (!$this->user()) { if (!$request->is('ajax')) { $this->flash($this->authError); $this->Session->write('Auth.redirect', Router::reverse($request)); $controller->redirect($loginAction); return false; } elseif (!empty($this->ajaxLogin)) { $controller->viewPath = 'elements'; echo $controller->render($this->ajaxLogin, $this->RequestHandler->ajaxLayout); $this->_stop(); return false; } else { $controller->redirect(null, 403); } } } if (empty($this->authorize) || $this->isAuthorized()) { return true; } $this->flash($this->authError); $controller->redirect($controller->referer(), null, true); return false; } /** * Attempts to introspect the correct values for object properties including * $userModel and $sessionKey. * * @param object $controller A reference to the instantiating controller object * @return boolean * @access private */ function __setDefaults() { $defaults = array( 'logoutRedirect' => $this->loginAction, 'loginError' => __('Login failed. Invalid username or password.'), 'authError' => __('You are not authorized to access that location.') ); foreach ($defaults as $key => $value) { if (empty($this->{$key})) { $this->{$key} = $value; } } return true; } /** * Uses the configured Authorization adapters to check whether or not a user is authorized. * Each adapter will be checked in sequence, if any of them return true, then the user will * be authorized for the request. * * @param mixed $user The user to check the authorization of. If empty the user in the session will be used. * @param CakeRequest $request The request to authenticate for. If empty, the current request will be used. * @return boolean True if $user is authorized, otherwise false */ public function isAuthorized($user = null, $request = null) { if (empty($user) && !$this->user()) { return false; } elseif (empty($user)) { $user = $this->user(); } if (empty($request)) { $request = $this->request; } if (empty($this->_authorizeObjects)) { $this->constructAuthorize(); } foreach ($this->_authorizeObjects as $authorizer) { if ($authorizer->authorize($user, $request) === true) { return true; } } return false; } /** * Loads the authorization objects configured. * * @return mixed Either null when authorize is empty, or the loaded authorization objects. */ public function constructAuthorize() { if (empty($this->authorize)) { return; } $this->_authorizeObjects = array(); foreach (Set::normalize($this->authorize) as $class => $settings) { $className = $class . 'Authorize'; if (!class_exists($className) && !App::import('Component', 'auth/' . $class . '_authorize')) { throw new CakeException(__('Authorization adapter "%s" was not found.', $class)); } if (!method_exists($className, 'authorize')) { throw new CakeException(__('Authorization objects must implement an authorize method.')); } foreach ($this->_authorizeLegacyMap as $old => $new) { if (empty($settings[$new]) && !empty($this->{$old})) { $settings[$new] = $this->{$old}; } } $this->_authorizeObjects[] = new $className($this->_Collection->getController(), $settings); } return $this->_authorizeObjects; } /** * Takes a list of actions in the current controller for which authentication is not required, or * no parameters to allow all actions. * * You can use allow with either an array, or var args. * * `$this->Auth->allow(array('edit', 'add'));` * `$this->Auth->allow('edit', 'add');` * * allow() also supports '*' as a wildcard to mean all actions. * * `$this->Auth->allow('*');` * * @param mixed $action Controller action name or array of actions * @param string $action Controller action name * @param string ... etc. * @return void * @link http://book.cakephp.org/view/1257/allow */ public function allow() { $args = func_get_args(); if (empty($args) || $args == array('*')) { $this->allowedActions = $this->_methods; } else { if (isset($args[0]) && is_array($args[0])) { $args = $args[0]; } $this->allowedActions = array_merge($this->allowedActions, $args); } } /** * Removes items from the list of allowed/no authentication required actions. * * You can use deny with either an array, or var args. * * `$this->Auth->deny(array('edit', 'add'));` * `$this->Auth->deny('edit', 'add');` * * @param mixed $action Controller action name or array of actions * @param string $action Controller action name * @param string ... etc. * @return void * @see AuthComponent::allow() * @link http://book.cakephp.org/view/1258/deny */ public function deny() { $args = func_get_args(); if (isset($args[0]) && is_array($args[0])) { $args = $args[0]; } foreach ($args as $arg) { $i = array_search($arg, $this->allowedActions); if (is_int($i)) { unset($this->allowedActions[$i]); } } $this->allowedActions = array_values($this->allowedActions); } /** * Maps action names to CRUD operations. Used for controller-based authentication. Make sure * to configure the authorize property before calling this method. As it delegates $map to all the * attached authorize objects. * * @param array $map Actions to map * @return void * @link http://book.cakephp.org/view/1260/mapActions */ public function mapActions($map = array()) { if (empty($this->_authorizeObjects)) { $this->constructAuthorize(); } foreach ($this->_authorizeObjects as $auth) { $auth->mapActions($map); } } /** * Log a user in. If a $user is provided that data will be stored as the logged in user. If `$user` is empty or not * specified, the request will be used to identify a user. If the identification was successful, * the user record is written to the session key specified in AuthComponent::$sessionKey. * * @param mixed $user Either an array of user data, or null to identify a user using the current request. * @return boolean True on login success, false on failure * @link http://book.cakephp.org/view/1261/login */ public function login($user = null) { $this->__setDefaults(); $this->_loggedIn = false; if (empty($user)) { $user = $this->identify($this->request); } if ($user) { $this->Session->write($this->sessionKey, $user); $this->_loggedIn = true; } return $this->_loggedIn; } /** * Logs a user out, and returns the login action to redirect to. * * @param mixed $url Optional URL to redirect the user to after logout * @return string AuthComponent::$loginAction * @see AuthComponent::$loginAction * @link http://book.cakephp.org/view/1262/logout */ public function logout() { $this->__setDefaults(); $this->Session->delete($this->sessionKey); $this->Session->delete('Auth.redirect'); $this->_loggedIn = false; return Router::normalize($this->logoutRedirect); } /** * Get the current user from the session. * * @param string $key field to retrive. Leave null to get entire User record * @return mixed User record. or null if no user is logged in. * @link http://book.cakephp.org/view/1264/user */ public function user($key = null) { $this->__setDefaults(); if (!$this->Session->check($this->sessionKey)) { return null; } if ($key == null) { return $this->Session->read($this->sessionKey); } else { $user = $this->Session->read($this->sessionKey); if (isset($user[$key])) { return $user[$key]; } return null; } } /** * If no parameter is passed, gets the authentication redirect URL. * * @param mixed $url Optional URL to write as the login redirect URL. * @return string Redirect URL */ public function redirect($url = null) { if (!is_null($url)) { $redir = $url; $this->Session->write('Auth.redirect', $redir); } elseif ($this->Session->check('Auth.redirect')) { $redir = $this->Session->read('Auth.redirect'); $this->Session->delete('Auth.redirect'); if (Router::normalize($redir) == Router::normalize($this->loginAction)) { $redir = $this->loginRedirect; } } else { $redir = $this->loginRedirect; } return Router::normalize($redir); } /** * Validates a user against an abstract object. * * @param mixed $object The object to validate the user against. * @param mixed $user Optional. The identity of the user to be validated. * Uses the current user session if none specified. For * valid forms of identifying users, see * AuthComponent::identify(). * @param string $action Optional. The action to validate against. * @see AuthComponent::identify() * @return boolean True if the user validates, false otherwise. */ public function validate($object, $user = null, $action = null) { if (empty($user)) { $user = $this->user(); } if (empty($user)) { return false; } return $this->Acl->check($user, $object, $action); } /** * Returns the path to the ACO node bound to a controller/action. * * @param string $action Optional. The controller/action path to validate the * user against. The current request action is used if * none is specified. * @return boolean ACO node path * @link http://book.cakephp.org/view/1256/action */ public function action($action = ':plugin/:controller/:action') { $plugin = empty($this->request['plugin']) ? null : Inflector::camelize($this->request['plugin']) . '/'; return str_replace( array(':controller', ':action', ':plugin/'), array(Inflector::camelize($this->request['controller']), $this->request['action'], $plugin), $this->actionPath . $action ); } /** * Returns a reference to the model object specified, and attempts * to load it if it is not found. * * @param string $name Model name (defaults to AuthComponent::$userModel) * @return object A reference to a model object */ public function &getModel($name = null) { $model = null; if (!$name) { $name = $this->userModel; } $model = ClassRegistry::init($name); if (empty($model)) { trigger_error(__('Auth::getModel() - Model is not set or could not be found'), E_USER_WARNING); return null; } return $model; } /** * Use the configured authentication adapters, and attempt to identify the user * by credentials contained in $request. * * @param CakeRequest $request The request that contains authentication data. * @return array User record data, or false, if the user could not be identified. */ public function identify(CakeRequest $request) { if (empty($this->_authenticateObjects)) { $this->constructAuthenticate(); } foreach ($this->_authenticateObjects as $auth) { $result = $auth->authenticate($request); if (!empty($result) && is_array($result)) { return $result; } } return false; } /** * loads the configured authentication objects. * * @return mixed either null on empty authenticate value, or an array of loaded objects. */ public function constructAuthenticate() { if (empty($this->authenticate)) { return; } $this->_authenticateObjects = array(); foreach (Set::normalize($this->authenticate) as $class => $settings) { $className = $class . 'Authenticate'; if (!class_exists($className) && !App::import('Component', 'auth/' . $class . '_authenticate')) { throw new CakeException(__('Authentication adapter "%s" was not found.', $class)); } if (!method_exists($className, 'authenticate')) { throw new CakeException(__('Authentication objects must implement an authenticate method.')); } foreach ($this->_authenticateLegacyMap as $old => $new) { if (empty($settings[$new]) && !empty($this->{$old})) { $settings[$new] = $this->{$old}; } } $this->_authenticateObjects[] = new $className($settings); } return $this->_authenticateObjects; } /** * Hash any passwords found in $data using $userModel and $fields['password'] * * @param array $data Set of data to look for passwords * @return array Data with passwords hashed * @link http://book.cakephp.org/view/1259/hashPasswords */ public function hashPasswords($data) { if (is_object($this->authenticate) && method_exists($this->authenticate, 'hashPasswords')) { return $this->authenticate->hashPasswords($data); } if (is_array($data)) { $model = $this->getModel(); if(isset($data[$model->alias])) { if (isset($data[$model->alias][$this->fields['username']]) && isset($data[$model->alias][$this->fields['password']])) { $data[$model->alias][$this->fields['password']] = $this->password($data[$model->alias][$this->fields['password']]); } } } return $data; } /** * Hash a password with the application's salt value (as defined with Configure::write('Security.salt'); * * @param string $password Password to hash * @return string Hashed password * @link http://book.cakephp.org/view/1263/password */ public function password($password) { return Security::hash($password, null, true); } /** * Component shutdown. If user is logged in, wipe out redirect. * * @param object $controller Instantiating controller */ public function shutdown($controller) { if ($this->_loggedIn) { $this->Session->delete('Auth.redirect'); } } /** * Sets or gets whether the user is logged in * * @param boolean $logged sets the status of the user, true to logged in, false to logged out * @return boolean true if the user is logged in, false otherwise * @access public */ public function loggedIn($logged = null) { if (!is_null($logged)) { $this->_loggedIn = $logged; } return $this->_loggedIn; } /** * Set a flash message. Uses the Session component, and values from AuthComponent::$flash. * * @param string $message The message to set. * @return void */ public function flash($message) { $this->Session->setFlash($message, $this->flash['element'], $this->flash['params'], $this->flash['key']); } }