mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
108 lines
No EOL
2.9 KiB
PHP
108 lines
No EOL
2.9 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');
|
|
App::import('Core', 'String');
|
|
|
|
|
|
class DigestAuthenticate extends 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(),
|
|
'realm' => '',
|
|
'qop' => 'auth',
|
|
'nonce' => '',
|
|
'opaque' => ''
|
|
);
|
|
|
|
/**
|
|
* Constructor, completes configuration for digest authentication.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct($settings) {
|
|
parent::__construct($settings);
|
|
if (empty($this->settings['realm'])) {
|
|
$this->settings['realm'] = env('SERVER_NAME');
|
|
}
|
|
if (empty($this->settings['nonce'])) {
|
|
$this->settings['realm'] = uniqid('');
|
|
}
|
|
if (empty($this->settings['opaque'])) {
|
|
$this->settings['opaque'] = md5($this->settings['realm']);
|
|
}
|
|
}
|
|
/**
|
|
* Authenticate a user using Digest HTTP auth. Will use the configured User model and attempt a
|
|
* login using Digest HTTP auth.
|
|
*
|
|
* @param CakeRequest $request The request to authenticate with.
|
|
* @param CakeResponse $response The response to add headers to.
|
|
* @return mixed Either false on failure, or an array of user data on success.
|
|
*/
|
|
public function authenticate(CakeRequest $request, CakeResponse $response) {
|
|
$username = env('PHP_AUTH_USER');
|
|
$pass = env('PHP_AUTH_PW');
|
|
|
|
if (empty($username) || empty($pass)) {
|
|
$response->header($this->loginHeaders());
|
|
$response->send();
|
|
return false;
|
|
}
|
|
|
|
$result = $this->_findUser($username, $pass);
|
|
|
|
if (empty($result)) {
|
|
$response->header($this->loginHeaders());
|
|
$response->header('Location', Router::reverse($request));
|
|
$response->statusCode(401);
|
|
$response->send();
|
|
return false;
|
|
}
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* Generate the login headers
|
|
*
|
|
* @return string Headers for logging in.
|
|
*/
|
|
public function loginHeaders() {
|
|
$options = array(
|
|
'realm' => $this->settings['realm'],
|
|
'qop' => $this->settings['qop'],
|
|
'nonce' => $this->settings['nonce'],
|
|
'opaque' => $this->settings['opaque']
|
|
);
|
|
$opts = array();
|
|
foreach ($options as $k => $v) {
|
|
$opts[] = sprintf('%s="%s"', $k, $v);
|
|
}
|
|
return 'WWW-Authenticate: Digest ' . implode(',', $opts);
|
|
}
|
|
} |