19 declare(strict_types=1);
36 private int $kind = self::TYPE_MANUAL;
50 $this->
logger = $DIC->logger()->auth();
52 $this->commonSettings = $DIC->settings();
63 if (self::$instance) {
64 return self::$instance;
74 return $this->kind === self::TYPE_MANUAL;
91 public function setKind(
int $a_kind): void
94 $this->kind = $a_kind;
102 if ($a_username ===
'') {
103 return $this->position ?: array();
107 foreach ($this->position as $auth_key) {
111 $this->
logger->debug(
'Validating username filter for ' .
$server->getName());
112 if (
$server->getUsernameFilter() !==
'') {
114 $pattern = str_replace(
'*',
'.*?',
$server->getUsernameFilter());
116 if (preg_match(
'/^' . $pattern .
'$/', $a_username)) {
117 $this->
logger->debug(
'Filter matches for ' . $a_username);
118 array_unshift($sorted, $auth_key);
121 $this->
logger->debug(
'Filter matches not for ' . $a_username .
' <-> ' .
$server->getUsernameFilter());
124 $sorted[] = $auth_key;
135 return count($this->position);
146 $this->position = $a_pos;
159 foreach ($this->position as $auth_mode) {
160 $this->
settings->set((
string) $counter++, (
string) $auth_mode);
170 $this->kind = (
int) $this->
settings->get(
'kind', (
string) self::TYPE_MANUAL);
172 $soap_active = (bool) $this->commonSettings->get(
'soap_auth_active',
"");
175 $apache_settings =
new ilSetting(
'apache_auth');
176 $apache_active = $apache_settings->get(
'apache_enable_auth');
181 $auth_mode = $this->
settings->get((
string)
$i++, null);
182 if ($auth_mode === null) {
186 switch ((
int) $auth_mode) {
188 $this->position[] = (
int) $auth_mode;
192 if ($auth_id === null) {
198 $this->position[] = $auth_mode;
204 $this->position[] = (
int) $auth_mode;
209 if ($apache_active) {
210 $this->position[] = (
int) $auth_mode;
216 if ($pl->isAuthActive((
int) $auth_mode)) {
217 $this->position[] = $auth_mode;
245 foreach ($pl->getAuthIds() as $auth_id) {
246 if ($pl->isAuthActive($auth_id) && !in_array($auth_id, $this->position,
true)) {
247 $this->position[] = $auth_id;
static getInstanceByServerId(int $a_server_id)
Get instance by server id.
ilSetting $commonSettings
getAuthModeSequence(string $a_username='')
get auth mode sequence
static _getActiveServerList()
Get active server list.
isManualSelection()
is manual selection
static getServerIdByAuthMode(string $a_auth_mode)
Get auth id by auth mode.
static getAuthPlugins()
Get active enabled auth plugins.
setKind(int $a_kind)
set kind of determination
__construct()
Constructor (Singleton)
setAuthModeSequence(array $a_pos)
set auth mode sequence
static _getInstance()
Get instance.
static ilAuthModeDetermination $instance
getCountActiveAuthModes()
get number of auth modes