| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @since 0.10.0
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Controller\Component;
- use Cake\Auth\Storage\StorageInterface;
- use Cake\Controller\Component;
- use Cake\Controller\Controller;
- use Cake\Core\App;
- use Cake\Core\Exception\Exception;
- use Cake\Event\Event;
- use Cake\Event\EventDispatcherTrait;
- use Cake\Network\Exception\ForbiddenException;
- use Cake\Network\Request;
- use Cake\Network\Response;
- use Cake\Routing\Router;
- use Cake\Utility\Hash;
- /**
- * Authentication control component class.
- *
- * Binds access control with user authentication and session management.
- *
- * @link http://book.cakephp.org/3.0/en/controllers/components/authentication.html
- */
- class AuthComponent extends Component
- {
- use EventDispatcherTrait;
- /**
- * Constant for 'all'
- *
- * @var string
- */
- const ALL = 'all';
- /**
- * Default config
- *
- * - `authenticate` - An array of authentication objects to use for authenticating users.
- * You can configure multiple adapters and they will be checked sequentially
- * when users are identified.
- *
- * ```
- * $this->Auth->config('authenticate', [
- * 'Form' => [
- * 'userModel' => 'Users.Users'
- * ]
- * ]);
- * ```
- *
- * Using the class name without 'Authenticate' as the key, you can pass in an
- * array of config for each authentication object. Additionally you can define
- * config that should be set to all authentications objects using the 'all' key:
- *
- * ```
- * $this->Auth->config('authenticate', [
- * AuthComponent::ALL => [
- * 'userModel' => 'Users.Users',
- * 'scope' => ['Users.active' => 1]
- * ],
- * 'Form',
- * 'Basic'
- * ]);
- * ```
- *
- * - `authorize` - 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.
- *
- * ```
- * $this->Auth->config('authorize', [
- * 'Crud' => [
- * 'actionPath' => 'controllers/'
- * ]
- * ]);
- * ```
- *
- * Using the class name without 'Authorize' as the key, you can pass in an array
- * of config for each authorization object. Additionally you can define config
- * that should be set to all authorization objects using the AuthComponent::ALL key:
- *
- * ```
- * $this->Auth->config('authorize', [
- * AuthComponent::ALL => [
- * 'actionPath' => 'controllers/'
- * ],
- * 'Crud',
- * 'CustomAuth'
- * ]);
- * ```
- *
- * - `ajaxLogin` - The name of an optional view element to render when an Ajax
- * request is made with an invalid or expired session.
- *
- * - `flash` - Settings to use when Auth needs to do a flash message with
- * FlashComponent::set(). Available keys are:
- *
- * - `key` - The message domain to use for flashes generated by this component,
- * defaults to 'auth'.
- * - `element` - Flash element to use, defaults to 'default'.
- * - `params` - The array of additional params to use, defaults to ['class' => 'error']
- *
- * - `loginAction` - A URL (defined as a string or array) to the controller action
- * that handles logins. Defaults to `/users/login`.
- *
- * - `loginRedirect` - 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, redirectUrl() method will return the URL specified in `loginRedirect`.
- *
- * - `logoutRedirect` - 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 `loginAction`.
- *
- * - `authError` - Error to display when user attempts to access an object or
- * action to which they do not have access.
- *
- * - `unauthorizedRedirect` - Controls handling of unauthorized access.
- *
- * - For default value `true` unauthorized user is redirected to the referrer URL
- * or `$loginRedirect` or '/'.
- * - If set to a string or array the value is used as a URL to redirect to.
- * - If set to false a `ForbiddenException` exception is thrown instead of redirecting.
- *
- * - `storage` - Storage class to use for persisting user record. When using
- * stateless authenticator you should set this to 'Memory'. Defaults to 'Session'.
- *
- * - `checkAuthIn` - Name of event for which initial auth checks should be done.
- * Defaults to 'Controller.startup'. You can set it to 'Controller.initialize'
- * if you want the check to be done before controller's beforeFilter() is run.
- *
- * @var array
- */
- protected $_defaultConfig = [
- 'authenticate' => null,
- 'authorize' => null,
- 'ajaxLogin' => null,
- 'flash' => null,
- 'loginAction' => null,
- 'loginRedirect' => null,
- 'logoutRedirect' => null,
- 'authError' => null,
- 'unauthorizedRedirect' => true,
- 'storage' => 'Session',
- 'checkAuthIn' => 'Controller.startup'
- ];
- /**
- * Other components utilized by AuthComponent
- *
- * @var array
- */
- public $components = ['RequestHandler', 'Flash'];
- /**
- * Objects that will be used for authentication checks.
- *
- * @var array
- */
- protected $_authenticateObjects = [];
- /**
- * Objects that will be used for authorization checks.
- *
- * @var array
- */
- protected $_authorizeObjects = [];
- /**
- * Storage object.
- *
- * @var \Cake\Auth\Storage\StorageInterface
- */
- protected $_storage;
- /**
- * Controller actions for which user validation is not required.
- *
- * @var array
- * @see AuthComponent::allow()
- */
- public $allowedActions = [];
- /**
- * Request object
- *
- * @var \Cake\Network\Request
- */
- public $request;
- /**
- * Response object
- *
- * @var \Cake\Network\Response
- */
- public $response;
- /**
- * Instance of the Session object
- *
- * @var \Cake\Network\Session
- * @deprecated 3.1.0 Will be removed in 4.0
- */
- public $session;
- /**
- * The instance of the Authenticate provider that was used for
- * successfully logging in the current user after calling `login()`
- * in the same request
- *
- * @var \Cake\Auth\BaseAuthenticate
- */
- protected $_authenticationProvider;
- /**
- * The instance of the Authorize provider that was used to grant
- * access to the current user to the URL they are requesting.
- *
- * @var \Cake\Auth\BaseAuthorize
- */
- protected $_authorizationProvider;
- /**
- * Initialize properties.
- *
- * @param array $config The config data.
- * @return void
- */
- public function initialize(array $config)
- {
- $controller = $this->_registry->getController();
- $this->eventManager($controller->eventManager());
- $this->response =& $controller->response;
- $this->session = $controller->request->session();
- }
- /**
- * Callback for Controller.startup event.
- *
- * @param \Cake\Event\Event $event Event instance.
- * @return \Cake\Network\Response|null
- */
- public function startup(Event $event)
- {
- return $this->authCheck($event);
- }
- /**
- * Main execution method, handles initial authentication check and redirection
- * of invalid users.
- *
- * The auth check is done when event name is same as the one configured in
- * `checkAuthIn` config.
- *
- * @param \Cake\Event\Event $event Event instance.
- * @return \Cake\Network\Response|null
- */
- public function authCheck(Event $event)
- {
- if ($this->_config['checkAuthIn'] !== $event->name()) {
- return null;
- }
- $controller = $event->subject();
- $action = strtolower($controller->request->params['action']);
- if (!$controller->isAction($action)) {
- return null;
- }
- $this->_setDefaults();
- if ($this->_isAllowed($controller)) {
- return null;
- }
- $isLoginAction = $this->_isLoginAction($controller);
- if (!$this->_getUser()) {
- if ($isLoginAction) {
- return null;
- }
- $result = $this->_unauthenticated($controller);
- if ($result instanceof Response) {
- $event->stopPropagation();
- }
- return $result;
- }
- if ($isLoginAction ||
- empty($this->_config['authorize']) ||
- $this->isAuthorized($this->user())
- ) {
- return null;
- }
- $event->stopPropagation();
- return $this->_unauthorized($controller);
- }
- /**
- * Events supported by this component.
- *
- * @return array
- */
- public function implementedEvents()
- {
- return [
- 'Controller.initialize' => 'authCheck',
- 'Controller.startup' => 'startup',
- ];
- }
- /**
- * Checks whether current action is accessible without authentication.
- *
- * @param \Cake\Controller\Controller $controller A reference to the instantiating
- * controller object
- * @return bool True if action is accessible without authentication else false
- */
- protected function _isAllowed(Controller $controller)
- {
- $action = strtolower($controller->request->params['action']);
- return in_array($action, array_map('strtolower', $this->allowedActions));
- }
- /**
- * Handles unauthenticated access attempt. First the `unauthenticated()` method
- * of the last authenticator in the chain will be called. The authenticator can
- * handle sending response or redirection as appropriate and return `true` to
- * indicate no further action is necessary. If authenticator returns null this
- * method redirects user to login action. If it's an AJAX request and config
- * `ajaxLogin` is specified that element is rendered else a 403 HTTP status code
- * is returned.
- *
- * @param \Cake\Controller\Controller $controller A reference to the controller object.
- * @return \Cake\Network\Response|null Null if current action is login action
- * else response object returned by authenticate object or Controller::redirect().
- */
- protected function _unauthenticated(Controller $controller)
- {
- if (empty($this->_authenticateObjects)) {
- $this->constructAuthenticate();
- }
- $auth = end($this->_authenticateObjects);
- $result = $auth->unauthenticated($this->request, $this->response);
- if ($result !== null) {
- return $result;
- }
- if (!$this->storage()->redirectUrl()) {
- $this->storage()->redirectUrl($this->request->here(false));
- }
- if (!$controller->request->is('ajax')) {
- $this->flash($this->_config['authError']);
- $this->storage()->redirectUrl($controller->request->here(false));
- return $controller->redirect($this->_config['loginAction']);
- }
- if (!empty($this->_config['ajaxLogin'])) {
- $controller->viewBuilder()->templatePath('Element');
- $response = $controller->render(
- $this->_config['ajaxLogin'],
- $this->RequestHandler->ajaxLayout
- );
- $response->statusCode(403);
- return $response;
- }
- $this->response->statusCode(403);
- return $this->response;
- }
- /**
- * Normalizes config `loginAction` and checks if current request URL is same as login action.
- *
- * @param \Cake\Controller\Controller $controller A reference to the controller object.
- * @return bool True if current action is login action else false.
- */
- protected function _isLoginAction(Controller $controller)
- {
- $url = '';
- if (isset($controller->request->url)) {
- $url = $controller->request->url;
- }
- $url = Router::normalize($url);
- $loginAction = Router::normalize($this->_config['loginAction']);
- return $loginAction === $url;
- }
- /**
- * Handle unauthorized access attempt
- *
- * @param \Cake\Controller\Controller $controller A reference to the controller object
- * @return \Cake\Network\Response
- * @throws \Cake\Network\Exception\ForbiddenException
- */
- protected function _unauthorized(Controller $controller)
- {
- if ($this->_config['unauthorizedRedirect'] === false) {
- throw new ForbiddenException($this->_config['authError']);
- }
- $this->flash($this->_config['authError']);
- if ($this->_config['unauthorizedRedirect'] === true) {
- $default = '/';
- if (!empty($this->_config['loginRedirect'])) {
- $default = $this->_config['loginRedirect'];
- }
- if (is_array($default)) {
- $default['_base'] = false;
- }
- $url = $controller->referer($default, true);
- } else {
- $url = $this->_config['unauthorizedRedirect'];
- }
- return $controller->redirect($url);
- }
- /**
- * Sets defaults for configs.
- *
- * @return void
- */
- protected function _setDefaults()
- {
- $defaults = [
- 'authenticate' => ['Form'],
- 'flash' => [
- 'element' => 'default',
- 'key' => 'auth',
- 'params' => ['class' => 'error']
- ],
- 'loginAction' => [
- 'controller' => 'Users',
- 'action' => 'login',
- 'plugin' => null
- ],
- 'logoutRedirect' => $this->_config['loginAction'],
- 'authError' => __d('cake', 'You are not authorized to access that location.')
- ];
- $config = $this->config();
- foreach ($config as $key => $value) {
- if ($value !== null) {
- unset($defaults[$key]);
- }
- }
- $this->config($defaults);
- }
- /**
- * Check if the provided user is authorized for the request.
- *
- * 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 array|null $user The user to check the authorization of.
- * If empty the user fetched from storage will be used.
- * @param \Cake\Network\Request|null $request The request to authenticate for.
- * If empty, the current request will be used.
- * @return bool True if $user is authorized, otherwise false
- */
- public function isAuthorized($user = null, Request $request = null)
- {
- if (empty($user) && !$this->user()) {
- return false;
- }
- if (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) {
- $this->_authorizationProvider = $authorizer;
- return true;
- }
- }
- return false;
- }
- /**
- * Loads the authorization objects configured.
- *
- * @return mixed Either null when authorize is empty, or the loaded authorization objects.
- * @throws \Cake\Core\Exception\Exception
- */
- public function constructAuthorize()
- {
- if (empty($this->_config['authorize'])) {
- return;
- }
- $this->_authorizeObjects = [];
- $authorize = Hash::normalize((array)$this->_config['authorize']);
- $global = [];
- if (isset($authorize[AuthComponent::ALL])) {
- $global = $authorize[AuthComponent::ALL];
- unset($authorize[AuthComponent::ALL]);
- }
- foreach ($authorize as $alias => $config) {
- if (!empty($config['className'])) {
- $class = $config['className'];
- unset($config['className']);
- } else {
- $class = $alias;
- }
- $className = App::className($class, 'Auth', 'Authorize');
- if (!class_exists($className)) {
- throw new Exception(sprintf('Authorization adapter "%s" was not found.', $class));
- }
- if (!method_exists($className, 'authorize')) {
- throw new Exception('Authorization objects must implement an authorize() method.');
- }
- $config = (array)$config + $global;
- $this->_authorizeObjects[$alias] = new $className($this->_registry, $config);
- }
- return $this->_authorizeObjects;
- }
- /**
- * Getter for authorize objects. Will return a particular authorize object.
- *
- * @param string $alias Alias for the authorize object
- * @return \Cake\Auth\BaseAuthorize|null
- */
- public function getAuthorize($alias)
- {
- if (empty($this->_authorizeObjects)) {
- $this->constructAuthorize();
- }
- return isset($this->_authorizeObjects[$alias]) ? $this->_authorizeObjects[$alias] : null;
- }
- /**
- * 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 a simple string.
- *
- * ```
- * $this->Auth->allow('view');
- * $this->Auth->allow(['edit', 'add']);
- * ```
- * or to allow all actions
- * ```
- * $this->Auth->allow();
- * ```
- *
- * @param string|array $actions Controller action name or array of actions
- * @return void
- * @link http://book.cakephp.org/3.0/en/controllers/components/authentication.html#making-actions-public
- */
- public function allow($actions = null)
- {
- if ($actions === null) {
- $controller = $this->_registry->getController();
- $this->allowedActions = get_class_methods($controller);
- return;
- }
- $this->allowedActions = array_merge($this->allowedActions, (array)$actions);
- }
- /**
- * Removes items from the list of allowed/no authentication required actions.
- *
- * You can use deny with either an array or a simple string.
- *
- * ```
- * $this->Auth->deny('view');
- * $this->Auth->deny(['edit', 'add']);
- * ```
- * or
- * ```
- * $this->Auth->deny();
- * ```
- * to remove all items from the allowed list
- *
- * @param string|array $actions Controller action name or array of actions
- * @return void
- * @see AuthComponent::allow()
- * @link http://book.cakephp.org/3.0/en/controllers/components/authentication.html#making-actions-require-authorization
- */
- public function deny($actions = null)
- {
- if ($actions === null) {
- $this->allowedActions = [];
- return;
- }
- foreach ((array)$actions as $action) {
- $i = array_search($action, $this->allowedActions);
- if (is_int($i)) {
- unset($this->allowedActions[$i]);
- }
- }
- $this->allowedActions = array_values($this->allowedActions);
- }
- /**
- * Set provided user info to storage as logged in user.
- *
- * The storage class is configured using `storage` config key or passing
- * instance to AuthComponent::storage().
- *
- * @param array $user Array of user data.
- * @return void
- * @link http://book.cakephp.org/3.0/en/controllers/components/authentication.html#identifying-users-and-logging-them-in
- */
- public function setUser(array $user)
- {
- $this->storage()->write($user);
- }
- /**
- * Log a user out.
- *
- * Returns the logout action to redirect to. Triggers the `Auth.logout` event
- * which the authenticate classes can listen for and perform custom logout logic.
- *
- * @return string Normalized config `logoutRedirect`
- * @link http://book.cakephp.org/3.0/en/controllers/components/authentication.html#logging-users-out
- */
- public function logout()
- {
- $this->_setDefaults();
- if (empty($this->_authenticateObjects)) {
- $this->constructAuthenticate();
- }
- $user = (array)$this->user();
- $this->dispatchEvent('Auth.logout', [$user]);
- $this->storage()->redirectUrl(false);
- $this->storage()->delete();
- return Router::normalize($this->_config['logoutRedirect']);
- }
- /**
- * Get the current user from storage.
- *
- * @param string $key Field to retrieve. Leave null to get entire User record.
- * @return array|null Either User record or null if no user is logged in.
- * @link http://book.cakephp.org/3.0/en/controllers/components/authentication.html#accessing-the-logged-in-user
- */
- public function user($key = null)
- {
- $user = $this->storage()->read();
- if (!$user) {
- return null;
- }
- if ($key === null) {
- return $user;
- }
- return Hash::get($user, $key);
- }
- /**
- * Similar to AuthComponent::user() except if user is not found in
- * configured storage, connected authentication objects will have their
- * getUser() methods called.
- *
- * This lets stateless authentication methods function correctly.
- *
- * @return bool true If a user can be found, false if one cannot.
- */
- protected function _getUser()
- {
- $user = $this->user();
- if ($user) {
- $this->storage()->redirectUrl(false);
- return true;
- }
- if (empty($this->_authenticateObjects)) {
- $this->constructAuthenticate();
- }
- foreach ($this->_authenticateObjects as $auth) {
- $result = $auth->getUser($this->request);
- if (!empty($result) && is_array($result)) {
- $this->_authenticationProvider = $auth;
- $event = $this->dispatchEvent('Auth.afterIdentify', [$result, $auth]);
- if ($event->result !== null) {
- $result = $event->result;
- }
- $this->storage()->write($result);
- return true;
- }
- }
- return false;
- }
- /**
- * Get the URL a user should be redirected to upon login.
- *
- * Pass a URL in to set the destination a user should be redirected to upon
- * logging in.
- *
- * If no parameter is passed, gets the authentication redirect URL. The URL
- * returned is as per following rules:
- *
- * - Returns the normalized redirect URL from storage if it is
- * present and for the same domain the current app is running on.
- * - If there is no URL returned from storage and there is a config
- * `loginRedirect`, the `loginRedirect` value is returned.
- * - If there is no session and no `loginRedirect`, / is returned.
- *
- * @param string|array $url Optional URL to write as the login redirect URL.
- * @return string Redirect URL
- */
- public function redirectUrl($url = null)
- {
- if ($url !== null) {
- $redir = $url;
- $this->storage()->redirectUrl($redir);
- } elseif ($redir = $this->storage()->redirectUrl()) {
- $this->storage()->redirectUrl(false);
- if (Router::normalize($redir) === Router::normalize($this->_config['loginAction'])) {
- $redir = $this->_config['loginRedirect'];
- }
- } elseif ($this->_config['loginRedirect']) {
- $redir = $this->_config['loginRedirect'];
- } else {
- $redir = '/';
- }
- if (is_array($redir)) {
- return Router::url($redir + ['_base' => false]);
- }
- return $redir;
- }
- /**
- * Use the configured authentication adapters, and attempt to identify the user
- * by credentials contained in $request.
- *
- * Triggers `Auth.afterIdentify` event which the authenticate classes can listen
- * to.
- *
- * @return array|bool User record data, or false, if the user could not be identified.
- */
- public function identify()
- {
- $this->_setDefaults();
- if (empty($this->_authenticateObjects)) {
- $this->constructAuthenticate();
- }
- foreach ($this->_authenticateObjects as $auth) {
- $result = $auth->authenticate($this->request, $this->response);
- if (!empty($result) && is_array($result)) {
- $this->_authenticationProvider = $auth;
- $event = $this->dispatchEvent('Auth.afterIdentify', [$result, $auth]);
- if ($event->result !== null) {
- return $event->result;
- }
- return $result;
- }
- }
- return false;
- }
- /**
- * Loads the configured authentication objects.
- *
- * @return mixed either null on empty authenticate value, or an array of loaded objects.
- * @throws \Cake\Core\Exception\Exception
- */
- public function constructAuthenticate()
- {
- if (empty($this->_config['authenticate'])) {
- return null;
- }
- $this->_authenticateObjects = [];
- $authenticate = Hash::normalize((array)$this->_config['authenticate']);
- $global = [];
- if (isset($authenticate[AuthComponent::ALL])) {
- $global = $authenticate[AuthComponent::ALL];
- unset($authenticate[AuthComponent::ALL]);
- }
- foreach ($authenticate as $alias => $config) {
- if (!empty($config['className'])) {
- $class = $config['className'];
- unset($config['className']);
- } else {
- $class = $alias;
- }
- $className = App::className($class, 'Auth', 'Authenticate');
- if (!class_exists($className)) {
- throw new Exception(sprintf('Authentication adapter "%s" was not found.', $class));
- }
- if (!method_exists($className, 'authenticate')) {
- throw new Exception('Authentication objects must implement an authenticate() method.');
- }
- $config = array_merge($global, (array)$config);
- $this->_authenticateObjects[$alias] = new $className($this->_registry, $config);
- $this->eventManager()->on($this->_authenticateObjects[$alias]);
- }
- return $this->_authenticateObjects;
- }
- /**
- * Get/set user record storage object.
- *
- * @param \Cake\Auth\Storage\StorageInterface|null $storage Sets provided
- * object as storage or if null returns configuread storage object.
- * @return \Cake\Auth\Storage\StorageInterface|null
- */
- public function storage(StorageInterface $storage = null)
- {
- if ($storage !== null) {
- $this->_storage = $storage;
- return null;
- }
- if ($this->_storage) {
- return $this->_storage;
- }
- $config = $this->_config['storage'];
- if (is_string($config)) {
- $class = $config;
- $config = [];
- } else {
- $class = $config['className'];
- unset($config['className']);
- }
- $className = App::className($class, 'Auth/Storage', 'Storage');
- if (!class_exists($className)) {
- throw new Exception(sprintf('Auth storage adapter "%s" was not found.', $class));
- }
- $this->_storage = new $className($this->request, $this->response, $config);
- return $this->_storage;
- }
- /**
- * Magic accessor for backward compatibility for property `$sessionKey`.
- *
- * @param string $name Property name
- * @return mixed
- */
- public function __get($name)
- {
- if ($name === 'sessionKey') {
- return $this->storage()->config('key');
- }
- return parent::__get($name);
- }
- /**
- * Magic setter for backward compatibility for property `$sessionKey`.
- *
- * @param string $name Property name.
- * @param mixed $value Value to set.
- * @return void
- */
- public function __set($name, $value)
- {
- if ($name === 'sessionKey') {
- $this->_storage = null;
- if ($value === false) {
- $this->config('storage', 'Memory');
- return;
- }
- $this->config('storage', 'Session');
- $this->storage()->config('key', $value);
- return;
- }
- $this->{$name} = $value;
- }
- /**
- * Getter for authenticate objects. Will return a particular authenticate object.
- *
- * @param string $alias Alias for the authenticate object
- *
- * @return \Cake\Auth\BaseAuthenticate|null
- */
- public function getAuthenticate($alias)
- {
- if (empty($this->_authenticateObjects)) {
- $this->constructAuthenticate();
- }
- return isset($this->_authenticateObjects[$alias]) ? $this->_authenticateObjects[$alias] : null;
- }
- /**
- * Set a flash message. Uses the Flash component with values from `flash` config.
- *
- * @param string $message The message to set.
- * @return void
- */
- public function flash($message)
- {
- if ($message !== false) {
- $this->Flash->set($message, $this->_config['flash']);
- }
- }
- /**
- * If login was called during this request and the user was successfully
- * authenticated, this function will return the instance of the authentication
- * object that was used for logging the user in.
- *
- * @return \Cake\Auth\BaseAuthenticate|null
- */
- public function authenticationProvider()
- {
- return $this->_authenticationProvider;
- }
- /**
- * If there was any authorization processing for the current request, this function
- * will return the instance of the Authorization object that granted access to the
- * user to the current address.
- *
- * @return \Cake\Auth\BaseAuthorize|null
- */
- public function authorizationProvider()
- {
- return $this->_authorizationProvider;
- }
- }
|