Skip to content

Commit

Permalink
Extracting a base class.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Feb 4, 2011
1 parent ee804c6 commit 041e0a6
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 39 deletions.
69 changes: 69 additions & 0 deletions cake/libs/controller/components/auth/base_authenticate.php
@@ -0,0 +1,69 @@
<?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('Core', 'Security');

/**
* Base Authentication class with common methods and properties.
*
* @package cake.libs.controller.components.auth
*/
abstract class BaseAuthenticate {

/**
* Settings for this object.
*
* - `fields` The fields to use to identify a user by.
* - `userModel` The model name of the User, defaults to User.
* - `scope` Additional conditions to use when looking up and authenticating users,
* i.e. `array('User.is_active' => 1).`
*
* @var array
*/
public $settings = array(
'fields' => array(
'username' => 'username',
'password' => 'password'
),
'userModel' => 'User',
'scope' => array()
);

/**
* Constructor
*
* @param array $settings Array of settings to use.
*/
public function __construct($settings) {
$this->settings = Set::merge($this->settings, $settings);
}

/**
* Hash the supplied password using the configured hashing method.
*
* @param string $password The password to hash.
* @return string Hashed string
*/
public function hash($password) {
return Security::hash($password, null, true);
}

/**
* Authenticate a user based on the request information.
*
* @param CakeRequest $request Request to get authentication information from.
* @return mixed Either false on failure, or an array of user data on success.
*/
abstract public function authenticate(CakeRequest $request);
}
41 changes: 2 additions & 39 deletions cake/libs/controller/components/auth/form_authenticate.php
Expand Up @@ -12,7 +12,7 @@
* @link http://cakephp.org CakePHP(tm) Project
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
App::import('Core', 'Security');
App::import('Component', 'auth/base_authenticate');

/**
* An authentication adapter for AuthComponent. Provides the ability to authenticate using POST
Expand All @@ -33,35 +33,7 @@
* @since 2.0
* @see AuthComponent::$authenticate
*/
class FormAuthenticate {

/**
* Settings for this object.
*
* - `fields` The fields to use to identify a user by.
* - `userModel` The model name of the User, defaults to User.
* - `scope` Additional conditions to use when looking up and authenticating users,
* i.e. `array('User.is_active' => 1).`
*
* @var array
*/
public $settings = array(
'fields' => array(
'username' => 'username',
'password' => 'password'
),
'userModel' => 'User',
'scope' => array()
);

/**
* Constructor
*
* @param array $settings Array of settings to use.
*/
public function __construct($settings) {
$this->settings = Set::merge($this->settings, $settings);
}
class FormAuthenticate extends BaseAuthenticate {

/**
* Authenticates the identity contained in a request. Will use the `settings.userModel`, and `settings.fields`
Expand Down Expand Up @@ -103,13 +75,4 @@ public function authenticate(CakeRequest $request) {
return $result[$model];
}

/**
* Hash the supplied password using the configured hashing method.
*
* @param string $password The password to hash.
* @return string Hashed string
*/
public function hash($password) {
return Security::hash($password, null, true);
}
}

0 comments on commit 041e0a6

Please sign in to comment.