mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
79 lines
No EOL
2.8 KiB
PHP
79 lines
No EOL
2.8 KiB
PHP
<?php
|
|
/**
|
|
* PHP 5
|
|
*
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
|
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
*
|
|
* Licensed under The MIT License
|
|
* Redistributions of files must retain the above copyright notice.
|
|
*
|
|
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
*/
|
|
App::import('Component', 'auth/base_authenticate');
|
|
|
|
/**
|
|
* An authentication adapter for AuthComponent. Provides the ability to authenticate using POST
|
|
* data. Can be used by configuring AuthComponent to use it via the AuthComponent::$authenticate setting.
|
|
*
|
|
* {{{
|
|
* $this->Auth->authenticate = array(
|
|
* 'Form' => array(
|
|
* 'scope' => array('User.active' => 1)
|
|
* )
|
|
* )
|
|
* }}}
|
|
*
|
|
* When configuring FormAuthenticate you can pass in settings to which fields, model and additional conditions
|
|
* are used. See FormAuthenticate::$settings for more information.
|
|
*
|
|
* @package cake.libs.controller.components.auth
|
|
* @since 2.0
|
|
* @see AuthComponent::$authenticate
|
|
*/
|
|
class FormAuthenticate extends BaseAuthenticate {
|
|
|
|
/**
|
|
* Authenticates the identity contained in a request. Will use the `settings.userModel`, and `settings.fields`
|
|
* to find POST data that is used to find a matching record in the `settings.userModel`. Will return false if
|
|
* there is no post data, either username or password is missing, of if the scope conditions have not been met.
|
|
*
|
|
* @param CakeRequest $request The request that contains login information.
|
|
* @param CakeResponse $response Unused response object.
|
|
* @return mixed. False on login failure. An array of User data on success.
|
|
*/
|
|
public function authenticate(CakeRequest $request, CakeResponse $response) {
|
|
$userModel = $this->settings['userModel'];
|
|
list($plugin, $model) = pluginSplit($userModel);
|
|
|
|
$fields = $this->settings['fields'];
|
|
if (empty($request->data[$model])) {
|
|
return false;
|
|
}
|
|
if (
|
|
empty($request->data[$model][$fields['username']]) ||
|
|
empty($request->data[$model][$fields['password']])
|
|
) {
|
|
return false;
|
|
}
|
|
$conditions = array(
|
|
$model . '.' . $fields['username'] => $request->data[$model][$fields['username']],
|
|
$model . '.' . $fields['password'] => $this->hash($request->data[$model][$fields['password']]),
|
|
);
|
|
if (!empty($this->settings['scope'])) {
|
|
$conditions = array_merge($conditions, $this->settings['scope']);
|
|
}
|
|
$result = ClassRegistry::init($userModel)->find('first', array(
|
|
'conditions' => $conditions,
|
|
'recursive' => 0
|
|
));
|
|
if (empty($result) || empty($result[$model])) {
|
|
return false;
|
|
}
|
|
unset($result[$model][$fields['password']]);
|
|
return $result[$model];
|
|
}
|
|
|
|
} |