-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathAuthenticationRequiredException.php
More file actions
73 lines (66 loc) · 2.08 KB
/
AuthenticationRequiredException.php
File metadata and controls
73 lines (66 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 1.0.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Authentication\Authenticator;
use Cake\Http\Exception\HttpException;
use function Cake\I18n\__d;
/**
* An exception for stateless authenticators when credentials are wrong/missing.
*
* Unlike `UnauthenticatedException` this class can carry authentication challenge headers.
* and is used by stateless authenticators.
*/
class AuthenticationRequiredException extends HttpException
{
/**
* @var array<non-empty-string, array<string>|string>
*/
protected array $headers = [];
/**
* @var string
*/
protected string $body = '';
/**
* Constructor
*
* @param array<non-empty-string, array<string>|string> $headers The headers that should be sent in the unauthorized challenge response.
* @param string $body The response body that should be sent in the challenge response.
* @param int $code The exception code that will be used as a HTTP status code
*/
public function __construct(array $headers, string $body = '', int $code = 401)
{
parent::__construct(__d('authentication', 'Authentication is required to continue'), $code);
$this->headers = $headers;
$this->body = $body;
}
/**
* Get the headers.
*
* @return array<string, mixed>
*/
public function getHeaders(): array
{
return $this->headers;
}
/**
* Get the body.
*
* @return string
*/
public function getBody(): string
{
return $this->body;
}
}