02.25
php
saved
MartinsAuth
Note
Cake1.2 AuthComponent slightly altered to render logins-screen as a requestAction instead of a redirect. The up-side is that expired Sessions behave better IMHO. The down-side is that you can not have a Flash message on the login-screen.
Cake1.2 AuthComponent slightly altered to render logins-screen as a requestAction instead of a redirect. The up-side is that expired Sessions behave better IMHO. The down-side is that you can not have a Flash message on the login-screen.
- <?php
- /* SVN FILE: $Id: auth.php 6311 2008-01-02 06:33:52Z phpnut $ */
- /**
- * Authentication component
- *
- * Manages user logins and permissions.
- *
- * PHP versions 4 and 5
- *
- * CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
- * Copyright 2005-2008, Cake Software Foundation, Inc.
- * 1785 E. Sahara Avenue, Suite 490-204
- * Las Vegas, Nevada 89104
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice.
- *
- * @filesource
- * @copyright Copyright 2005-2008, Cake Software Foundation, Inc.
- * @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
- * @package cake
- * @subpackage cake.cake.libs.controller.components
- * @since CakePHP(tm) v 0.10.0.1076
- * @version $Revision: 6311 $
- * @modifiedby $LastChangedBy: phpnut $
- * @lastmodified $Date: 2008-01-02 00:33:52 -0600 (Wed, 02 Jan 2008) $
- * @license http://www.opensource.org/licenses/mit-license.php The MIT License
- */
- uses('set', 'security');
- /**
- * Authentication control component class
- *
- * Binds access control with user authentication and session management.
- *
- * @package cake
- * @subpackage cake.cake.libs.controller.components
- */
- class AuthComponent extends Object {
- /**
- * Maintains current user login state.
- *
- * @var boolean
- * @access private
- */
- var $_loggedIn = false;
- /**
- * Other components utilized by AuthComponent
- *
- * @var array
- * @access public
- */
- /**
- * A reference to the object used for authentication
- *
- * @var object
- * @access public
- */
- var $authenticate = null;
- /**
- * The name of the component to use for Authorization or set this to
- * 'controller' will validate against Controller::isAuthorized()
- * 'actions' will validate Controller::action against an AclComponent::check()
- * 'crud' will validate mapActions against an AclComponent::check()
- * array('model'=> 'name'); will validate mapActions against model $name::isAuthorize(user, controller, mapAction)
- * 'object' will validate Controller::action against object::isAuthorized(user, controller, action)
- *
- * @var mixed
- * @access public
- */
- var $authorize = false;
- /**
- * The name of an optional view element to render when an Ajax request is made
- * with an invalid or expired session
- *
- * @var string
- * @access public
- */
- var $ajaxLogin = null;
- /**
- * The name of the model that represents users which will be authenticated. Defaults to 'User'.
- *
- * @var string
- * @access public
- */
- var $userModel = 'User';
- /**
- * Additional query conditions to use when looking up and authenticating users,
- * i.e. array('User.is_active' => 1).
- *
- * @var array
- * @access public
- */
- /**
- * Allows you to specify non-default login name and password fields used in
- * $userModel, i.e. array('username' => 'login_name', 'password' => 'passwd').
- *
- * @var array
- * @access public
- */
- /**
- * The session key name where the record of the current user is stored. If
- * unspecified, it will be "Auth.{$userModel name}".
- *
- * @var string
- * @access public
- */
- var $sessionKey = null;
- /**
- * 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
- * @access public
- */
- var $actionPath = null;
- /**
- * A URL (defined as a string or array) to the controller action that handles
- * logins.
- *
- * @var mixed
- * @access public
- */
- var $loginAction = 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
- * @access public
- */
- var $loginRedirect = null;
- /**
- * The 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
- * @access public
- * @see AuthComponent::$loginAction
- * @see AuthComponent::logout()
- */
- var $logoutRedirect = null;
- /**
- * The name of model or model object, or any other object has an isAuthorized method.
- *
- * @var string
- * @access public
- */
- var $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
- * @access public
- */
- var $loginError = null;
- /**
- * Error to display when user attempts to access an object or action to which they do not have
- * acccess.
- *
- * @var string
- * @access public
- */
- var $authError = null;
- /**
- * Determines whether AuthComponent will automatically redirect and exit if login is successful.
- *
- * @var boolean
- * @access public
- */
- var $autoRedirect = true;
- /**
- * Controller actions for which user validation is not required.
- *
- * @var array
- * @access public
- * @see AuthComponent::allow()
- */
- /**
- * Maps actions to CRUD operations. Used for controller-based validation ($validate = 'controller').
- *
- * @var array
- * @access public
- * @see AuthComponent::mapActions()
- */
- 'index' => 'read',
- 'add' => 'create',
- 'edit' => 'update',
- 'view' => 'read',
- 'remove' => 'delete'
- );
- /**
- * Form data from Controller::$data
- *
- * @var array
- * @access public
- */
- /**
- * Parameter data from Controller::$params
- *
- * @var array
- * @access public
- */
- /**
- * Initializes AuthComponent for use in the controller
- *
- * @param object $controller A reference to the instantiating controller object
- * @access public
- */
- function initialize(&$controller) {
- $this->params = $controller->params;
- $admin = Configure::read('Routing.admin');
- $admin . '_index' => 'read',
- $admin . '_add' => 'create',
- $admin . '_edit' => 'update',
- $admin . '_view' => 'read',
- $admin . '_remove' => 'delete',
- $admin . '_create' => 'create',
- $admin . '_read' => 'read',
- $admin . '_update' => 'update',
- $admin . '_delete' => 'delete'
- ));
- }
- if (Configure::read() > 0) {
- uses('debugger');
- Debugger::checkSessionKey();
- }
- }
- /**
- * Main execution method. Handles redirecting of invalid users, and processing
- * of login form data.
- *
- * @param object $controller A reference to the instantiating controller object
- * @access public
- */
- function startup(&$controller) {
- if (!$this->loginError) {
- $this->loginError = __('Login failed. Invalid username or password.', true);
- }
- if (!$this->authError) {
- $this->authError = __('You are not authorized to access that location.', true);
- }
- if (strtolower($controller->name) == 'app' || (strtolower($controller->name) == 'tests' && Configure::read() > 0)) {
- return;
- }
- if (!$this->__setDefaults()) {
- return false;
- }
- $this->data = $controller->data = $this->hashPasswords($controller->data);
- return false;
- }
- $url = '';
- } else {
- $url = '/'.$controller->params['url']['url'];
- }
- $this->loginAction = Router::normalize($this->loginAction);
- if ($this->loginAction == Router::normalize($url)) {
- if (!$this->Session->check('Auth.redirect') && env('HTTP_REFERER')) {
- $this->Session->write('Auth.redirect', $controller->referer());
- }
- return false;
- }
- $this->userModel . '.' . $this->fields['username'] => '= ' . $controller->data[$this->userModel][$this->fields['username']],
- $this->userModel . '.' . $this->fields['password'] => '= ' . $controller->data[$this->userModel][$this->fields['password']]
- );
- if ($this->login($data)) {
- if ($this->autoRedirect) {
- if (env('HTTP_REFERER') && ($this->loginAction != $controller->referer()) ) {
- $controller->redirect($controller->referer(), null, true);
- } else {
- $controller->redirect($this->redirect(), null, true);
- }
- }
- return true;
- } else {
- }
- return false;
- } else {
- if (!$this->user()) {
- if (!$this->RequestHandler->isAjax()) {
- //$this->Session->setFlash($this->authError, 'default', array(), 'auth');
- $this->Session->write('Auth.redirect', $url);
- //$controller->redirect($this->loginAction, null, true);
- return false;
- $controller->viewPath = 'elements';
- $controller->render($this->ajaxLogin, 'ajax');
- }
- }
- }
- if ($this->authorize) {
- switch ($type) {
- case 'controller':
- $this->object =& $controller;
- break;
- case 'crud':
- case 'actions':
- $this->Acl =& $controller->Acl;
- } else {
- trigger_error(__('Could not find AclComponent. Please include Acl in Controller::$components.', true), E_USER_WARNING);
- }
- break;
- case 'model':
- $object = $controller->modelClass;
- $object = $controller->uses[0];
- }
- }
- break;
- }
- if ($this->isAuthorized($type)) {
- return true;
- }
- $controller->redirect($controller->referer(), null, true);
- return false;
- } else {
- return true;
- }
- }
- /**
- * Attempts to introspect the correct values for object properties including
- * $userModel and $sessionKey.
- *
- * @param object $controller A reference to the instantiating controller object
- * @access private
- */
- function __setDefaults() {
- trigger_error(__("Could not find \$userModel. Please set AuthComponent::\$userModel in beforeFilter().", true), E_USER_WARNING);
- return false;
- }
- $this->loginAction = Router::url(array('controller'=> Inflector::underscore(Inflector::pluralize($this->userModel)), 'action'=>'login'));
- }
- $this->sessionKey = 'Auth.' . $this->userModel;
- }
- $this->logoutRedirect = $this->loginAction;
- }
- return true;
- }
- /**
- * Determines whether the given user is authorized to perform an action. The type of authorization
- * used is based on the value of AuthComponent::$authorize or the passed $type param.
- *
- * Types:
- * 'controller' will validate against Controller::isAuthorized() if controller instance is passed in $object
- * 'actions' will validate Controller::action against an AclComponent::check()
- * 'crud' will validate mapActions against an AclComponent::check()
- * array('model'=> 'name'); will validate mapActions against model $name::isAuthorize(user, controller, mapAction)
- * 'object' will validate Controller::action against object::isAuthorized(user, controller, action)
- *
- * @param string $type Type of authorization
- * @param mixed $object object, model object, or model name
- * @param mixed $user The user to check the authorization of
- * @return boolean True if $user is authorized, otherwise false
- * @access public
- */
- function isAuthorized($type = null, $object = null, $user = null) {
- return false;
- $user = $this->user();
- }
- if (!$object) {
- $object = $this->object;
- }
- $valid = false;
- switch ($type) {
- case 'controller':
- $valid = $object->isAuthorized();
- break;
- case 'actions':
- $valid = $this->Acl->check($user, $this->action());
- break;
- case 'crud':
- $this->mapActions();
- trigger_error(sprintf(__('Auth::startup() - Attempted access of un-mapped action "%1$s" in controller "%2$s"', true), $this->params['action'], $this->params['controller']), E_USER_WARNING);
- } else {
- $valid = $this->Acl->check($user, $this->action(':controller'), $this->actionMap[$this->params['action']]);
- }
- break;
- case 'model':
- $this->mapActions();
- $action = $this->params['action'];
- $action = $this->actionMap[$action];
- }
- $object = $this->getModel($object);
- }
- case 'object':
- $action = $this->action(':action');
- }
- trigger_error(sprintf(__('Could not find %s. Set AuthComponent::$object in beforeFilter() or pass a valid object', true), get_class($object)), E_USER_WARNING);
- return;
- }
- $valid = $object->isAuthorized($user, $this->action(':controller'), $action);
- } elseif ($object){
- trigger_error(sprintf(__('%s::isAuthorized() is not defined.', true), get_class($object)), E_USER_WARNING);
- }
- break;
- case null:
- case false:
- return true;
- break;
- default:
- trigger_error(__('Auth::isAuthorized() - $authorize is set to an incorrect value. Allowed settings are: "actions", "crud", "model" or null.', true), E_USER_WARNING);
- break;
- }
- return $valid;
- }
- /**
- * Get authorization type
- *
- * @param string $auth Type of authorization
- * @return array Associative array with: type, object
- * @access private
- */
- function __authType($auth = null) {
- if ($auth == null) {
- $auth = $this->authorize;
- }
- $object = null;
- $object = $auth[$type];
- } else {
- $type = $auth;
- }
- }
- /**
- * Takes a list of actions in the current controller for which authentication is not required, or
- * no parameters to allow all actions.
- *
- * @param string $action Controller action name
- * @param string $action Controller action name
- * @param string ... etc.
- * @access public
- */
- function allow() {
- } else {
- $args = $args[0];
- }
- }
- }
- /**
- * Removes items from the list of allowed actions.
- *
- * @param string $action Controller action name
- * @param string $action Controller action name
- * @param string ... etc.
- * @see AuthComponent::allow()
- * @access public
- */
- function deny() {
- foreach ($args as $arg) {
- }
- }
- }
- /**
- * Maps action names to CRUD operations. Used for controller-based authentication.
- *
- * @param array $map Actions to map
- * @access public
- */
- foreach ($map as $action => $type) {
- foreach ($type as $typedAction) {
- $this->actionMap[$typedAction] = $action;
- }
- } else {
- $this->actionMap[$action] = $type;
- }
- }
- }
- /**
- * Manually log-in a user with the given parameter data. The $data provided can be any data
- * structure used to identify a user in AuthComponent::identify(). If $data is empty or not
- * specified, POST data from Controller::$data will be used automatically.
- *
- * After (if) login is successful, the user record is written to the session key specified in
- * AuthComponent::$sessionKey.
- *
- * @param mixed $data User object
- * @return boolean True on login success, false on failure
- * @access public
- */
- function login($data = null) {
- $this->__setDefaults();
- $this->_loggedIn = false;
- $data = $this->data;
- }
- if ($user = $this->identify($data)) {
- $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
- * @access public
- */
- function logout() {
- $this->__setDefaults();
- $this->Session->del($this->sessionKey);
- $this->Session->del('Auth.redirect');
- $this->_loggedIn = false;
- return Router::normalize($this->logoutRedirect);
- }
- /**
- * Get the current user from the session.
- *
- * @return array User record, or null if no user is logged in.
- * @access public
- */
- function user($key = null) {
- $this->__setDefaults();
- if (!$this->Session->check($this->sessionKey)) {
- return null;
- }
- if ($key == null) {
- } else {
- $user = $this->Session->read($this->sessionKey);
- return $user[$key];
- } else {
- 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
- * @access public
- */
- function redirect($url = null) {
- return $this->Session->write('Auth.redirect', $url);
- }
- if ($this->Session->check('Auth.redirect')) {
- $redir = $this->Session->read('Auth.redirect');
- $this->Session->delete('Auth.redirect');
- if (Router::normalize($redir) == $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.
- * @access public
- */
- function validate($object, $user = null, $action = null) {
- $user = $this->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
- * @access public
- */
- function action($action = ':controller/:action') {
- $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
- * @access public
- */
- function &getModel($name = null) {
- $model = null;
- if (!$name) {
- $name = $this->userModel;
- }
- if (PHP5) {
- $model = ClassRegistry::init($name);
- } else {
- $model =& ClassRegistry::init($name);
- }
- trigger_error(__('Auth::getModel() - Model is not set or could not be found', true), E_USER_WARNING);
- return null;
- }
- return $model;
- }
- /**
- * Identifies a user based on specific criteria.
- *
- * @param mixed $user Optional. The identity of the user to be validated.
- * Uses the current user session if none specified.
- * @param array $conditions Optional. Additional conditions to a find.
- * @return array User record data, or null, if the user could not be identified.
- * @access public