-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAuthenticationContext.php
77 lines (67 loc) · 1.58 KB
/
AuthenticationContext.php
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
74
75
76
77
<?php
/*
* Opulence
*
* @link https://www.opulencephp.com
* @copyright Copyright (C) 2021 David Young
* @license https://github.com/opulencephp/Opulence/blob/1.2/LICENSE.md
*/
namespace Opulence\Authentication;
/**
* Defines the current authentication context
*/
class AuthenticationContext implements IAuthenticationContext
{
/** @var ISubject|null The current subject */
private $subject = null;
/** @var string The current authentication status */
private $status = AuthenticationStatusTypes::UNAUTHENTICATED;
/**
* @param ISubject|null $subject The current subject
* @param string $status The current authentication status
*/
public function __construct(
ISubject $subject = null,
string $status = AuthenticationStatusTypes::UNAUTHENTICATED
) {
if ($subject !== null) {
$this->setSubject($subject);
}
$this->setStatus($status);
}
/**
* @inheritdoc
*/
public function getStatus() : string
{
return $this->status;
}
/**
* @inheritdoc
*/
public function getSubject()
{
return $this->subject;
}
/**
* @inheritdoc
*/
public function isAuthenticated() : bool
{
return $this->status === AuthenticationStatusTypes::AUTHENTICATED;
}
/**
* @inheritdoc
*/
public function setStatus(string $status)
{
$this->status = $status;
}
/**
* @inheritdoc
*/
public function setSubject(ISubject $subject)
{
$this->subject = $subject;
}
}