2010-11-10 01:03:43 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Basic authentication
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.http
|
|
|
|
* @since CakePHP(tm) v 2.0.0
|
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Basic authentication
|
|
|
|
*
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs.http
|
|
|
|
*/
|
2010-11-20 19:47:35 +00:00
|
|
|
class BasicAuthentication {
|
2010-11-10 01:03:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Authentication
|
|
|
|
*
|
|
|
|
* @param HttpSocket $http
|
|
|
|
* @return void
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
2010-11-15 02:09:52 +00:00
|
|
|
public static function authentication(HttpSocket $http) {
|
2010-11-10 01:03:43 +00:00
|
|
|
if (isset($http->request['auth']['user'], $http->request['auth']['pass'])) {
|
|
|
|
$http->request['header']['Authorization'] = 'Basic ' . base64_encode($http->request['auth']['user'] . ':' . $http->request['auth']['pass']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|