2011-01-02 05:57:23 +00:00
|
|
|
<?php
|
2011-01-02 17:31:48 +00:00
|
|
|
/**
|
|
|
|
* PHP 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2013-02-08 11:59:49 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2011-01-02 17:31:48 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
2013-02-08 12:22:51 +00:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2011-01-02 17:31:48 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2013-02-08 11:59:49 +00:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2011-01-02 17:31:48 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
|
*/
|
2011-03-05 22:10:42 +00:00
|
|
|
|
|
|
|
App::uses('BaseAuthenticate', 'Controller/Component/Auth');
|
2011-01-02 05:57:23 +00:00
|
|
|
|
2011-01-02 17:31:48 +00:00
|
|
|
/**
|
2012-12-22 22:48:15 +00:00
|
|
|
* 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.
|
2011-01-02 17:31:48 +00:00
|
|
|
*
|
|
|
|
* {{{
|
|
|
|
* $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.
|
|
|
|
*
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.Controller.Component.Auth
|
2011-01-02 17:31:48 +00:00
|
|
|
* @since 2.0
|
2011-01-02 18:21:21 +00:00
|
|
|
* @see AuthComponent::$authenticate
|
2011-01-02 17:31:48 +00:00
|
|
|
*/
|
2011-01-21 23:09:41 +00:00
|
|
|
class FormAuthenticate extends BaseAuthenticate {
|
2011-01-02 05:57:23 +00:00
|
|
|
|
2012-08-15 17:49:31 +00:00
|
|
|
/**
|
|
|
|
* Checks the fields to ensure they are supplied.
|
|
|
|
*
|
|
|
|
* @param CakeRequest $request The request that contains login information.
|
|
|
|
* @param string $model The model used for login verification.
|
|
|
|
* @param array $fields The fields to be checked.
|
|
|
|
* @return boolean False if the fields have not been supplied. True if they exist.
|
|
|
|
*/
|
|
|
|
protected function _checkFields(CakeRequest $request, $model, $fields) {
|
|
|
|
if (empty($request->data[$model])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (
|
|
|
|
empty($request->data[$model][$fields['username']]) ||
|
|
|
|
empty($request->data[$model][$fields['password']])
|
|
|
|
) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-01-02 05:57:23 +00:00
|
|
|
/**
|
2012-12-22 22:48:15 +00:00
|
|
|
* 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
|
2011-01-02 05:57:23 +00:00
|
|
|
* 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.
|
2011-01-22 00:56:23 +00:00
|
|
|
* @param CakeResponse $response Unused response object.
|
2012-11-28 22:30:47 +00:00
|
|
|
* @return mixed False on login failure. An array of User data on success.
|
2011-01-02 05:57:23 +00:00
|
|
|
*/
|
2011-01-22 00:56:23 +00:00
|
|
|
public function authenticate(CakeRequest $request, CakeResponse $response) {
|
2011-01-02 05:57:23 +00:00
|
|
|
$userModel = $this->settings['userModel'];
|
2012-12-20 12:47:03 +00:00
|
|
|
list(, $model) = pluginSplit($userModel);
|
2011-01-03 23:17:27 +00:00
|
|
|
|
2011-01-02 05:57:23 +00:00
|
|
|
$fields = $this->settings['fields'];
|
2012-08-15 17:49:31 +00:00
|
|
|
if (!$this->_checkFields($request, $model, $fields)) {
|
2011-01-02 05:57:23 +00:00
|
|
|
return false;
|
|
|
|
}
|
2011-01-22 01:52:38 +00:00
|
|
|
return $this->_findUser(
|
|
|
|
$request->data[$model][$fields['username']],
|
|
|
|
$request->data[$model][$fields['password']]
|
2011-01-02 05:57:23 +00:00
|
|
|
);
|
|
|
|
}
|
2011-01-21 21:22:29 +00:00
|
|
|
|
2011-09-21 11:38:22 +00:00
|
|
|
}
|