2011-01-02 00:57:23 -05:00
|
|
|
<?php
|
2011-01-02 12:31:48 -05:00
|
|
|
/**
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2013-02-08 20:59:49 +09:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2011-01-02 12:31:48 -05:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
2013-02-08 21:22:51 +09:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2011-01-02 12:31:48 -05:00
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2013-02-08 20:59:49 +09:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2011-01-02 12:31:48 -05:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2013-05-31 00:11:14 +02:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
2011-01-02 12:31:48 -05:00
|
|
|
*/
|
2011-03-05 17:40:42 -04:30
|
|
|
|
|
|
|
App::uses('BaseAuthenticate', 'Controller/Component/Auth');
|
2011-01-02 00:57:23 -05:00
|
|
|
|
2011-01-02 12:31:48 -05:00
|
|
|
/**
|
2012-12-22 23:48:15 +01: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 12:31:48 -05: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 01:46:14 -04:30
|
|
|
* @package Cake.Controller.Component.Auth
|
2011-01-02 12:31:48 -05:00
|
|
|
* @since 2.0
|
2011-01-02 13:21:21 -05:00
|
|
|
* @see AuthComponent::$authenticate
|
2011-01-02 12:31:48 -05:00
|
|
|
*/
|
2011-01-21 18:09:41 -05:00
|
|
|
class FormAuthenticate extends BaseAuthenticate {
|
2011-01-02 00:57:23 -05:00
|
|
|
|
2012-08-15 13:49:31 -04: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.
|
2014-07-03 15:36:42 +02:00
|
|
|
* @return bool False if the fields have not been supplied. True if they exist.
|
2012-08-15 13:49:31 -04:00
|
|
|
*/
|
|
|
|
protected function _checkFields(CakeRequest $request, $model, $fields) {
|
|
|
|
if (empty($request->data[$model])) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-04-24 22:33:24 +02:00
|
|
|
foreach (array($fields['username'], $fields['password']) as $field) {
|
|
|
|
$value = $request->data($model . '.' . $field);
|
2014-06-02 21:58:50 -04:00
|
|
|
if (empty($value) && $value !== '0' || !is_string($value)) {
|
2013-04-24 22:33:24 +02:00
|
|
|
return false;
|
|
|
|
}
|
2012-08-15 13:49:31 -04:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-01-02 00:57:23 -05:00
|
|
|
/**
|
2012-12-22 23:48:15 +01: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
|
2013-07-01 00:03:03 +02:00
|
|
|
* there is no post data, either username or password is missing, or if the scope conditions have not been met.
|
2011-01-02 00:57:23 -05:00
|
|
|
*
|
|
|
|
* @param CakeRequest $request The request that contains login information.
|
2011-01-21 19:56:23 -05:00
|
|
|
* @param CakeResponse $response Unused response object.
|
2012-11-29 04:00:47 +05:30
|
|
|
* @return mixed False on login failure. An array of User data on success.
|
2011-01-02 00:57:23 -05:00
|
|
|
*/
|
2011-01-21 19:56:23 -05:00
|
|
|
public function authenticate(CakeRequest $request, CakeResponse $response) {
|
2011-01-02 00:57:23 -05:00
|
|
|
$userModel = $this->settings['userModel'];
|
2012-12-20 13:47:03 +01:00
|
|
|
list(, $model) = pluginSplit($userModel);
|
2011-01-03 18:17:27 -05:00
|
|
|
|
2011-01-02 00:57:23 -05:00
|
|
|
$fields = $this->settings['fields'];
|
2012-08-15 13:49:31 -04:00
|
|
|
if (!$this->_checkFields($request, $model, $fields)) {
|
2011-01-02 00:57:23 -05:00
|
|
|
return false;
|
|
|
|
}
|
2011-01-21 20:52:38 -05:00
|
|
|
return $this->_findUser(
|
|
|
|
$request->data[$model][$fields['username']],
|
|
|
|
$request->data[$model][$fields['password']]
|
2011-01-02 00:57:23 -05:00
|
|
|
);
|
|
|
|
}
|
2011-01-21 16:22:29 -05:00
|
|
|
|
2011-09-21 07:38:22 -04:00
|
|
|
}
|