forked from scandio/lmvc-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSecurity.php
35 lines (30 loc) · 971 Bytes
/
Security.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
<?php
namespace Scandio\lmvc\modules\security;
use Scandio\lmvc\utils\config\Config;
class Security
{
/**
* @var null|PrincipalInterface
*/
protected static $principal = null;
/**
* @return PrincipalInterface
* @throws \Exception
*/
public static function get()
{
if (is_null(static::$principal)) {
$class = Config::get()->security->principal;
$userClass = null;
if (isset(Config::get()->security->principalUser)) {
$userClass = Config::get()->security->principalUser;
}
if (class_exists($class) && is_subclass_of($class, '\\Scandio\\lmvc\\modules\\security\\handlers\\PrincipalInterface')) {
static::$principal = new $class($userClass);
} else {
throw new \Exception('no valid Authenticator class configured in config.json');
}
}
return static::$principal;
}
}