ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSamlIdp.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 final class ilSamlIdp
22 {
23  private const PROP_IDP_ID = 'idp_id';
24  private const PROP_IS_ACTIVE = 'is_active';
25  private const PROP_DEFAULT_ROLE_ID = 'default_role_id';
26  private const PROP_UID_CLAIM = 'uid_claim';
27  private const PROP_LOGIN_CLAIM = 'login_claim';
28  private const PROP_ENTITY_ID = 'entity_id';
29  private const PROP_SYNC_STATUS = 'sync_status';
30  private const PROP_ALLOW_LOCAL_AUTH = 'allow_local_auth';
31  private const PROP_ACCOUNT_MIGR_STATUS = 'account_migr_status';
32 
33  private readonly ilDBInterface $db;
35  private static array $instances = [];
36  private bool $is_active = false;
37  private bool $allow_local_auth = false;
38  private int $default_role_id = 0;
39  private string $uid_claim = '';
40  private string $login_claim = '';
41  private bool $sync_status = false;
42  private string $entity_id = '';
43  private bool $account_migration_status = false;
44 
45  public function __construct(protected int $idp_id = 0)
46  {
47  $this->db = $GLOBALS['DIC']->database();
48 
49  if ($this->idp_id > 0) {
50  $this->read();
51  }
52  }
53 
54  public static function getFirstActiveIdp(): self
55  {
56  $idps = self::getActiveIdpList();
57  if ($idps !== []) {
58  return current($idps);
59  }
60 
61  throw new ilSamlException('No active SAML IDP found');
62  }
63 
64  public static function getInstanceByIdpId(int $a_idp_id): self
65  {
66  if (!isset(self::$instances[$a_idp_id]) || !(self::$instances[$a_idp_id] instanceof self)) {
67  self::$instances[$a_idp_id] = new self($a_idp_id);
68  }
69 
70  return self::$instances[$a_idp_id];
71  }
72 
73  private function read(): void
74  {
75  $query = 'SELECT * FROM saml_idp_settings WHERE idp_id = ' . $this->db->quote($this->idp_id, ilDBConstants::T_INTEGER);
76  $res = $this->db->query($query);
77  while ($record = $this->db->fetchAssoc($res)) {
78  $this->bindDbRecord($record);
79  return;
80  }
81 
82  throw new ilException('Could not find idp');
83  }
84 
85  public function persist(): void
86  {
87  if ($this->idp_id === 0) {
88  $this->setIdpId($this->db->nextId('saml_idp_settings'));
89  }
90 
91  $this->db->replace(
92  'saml_idp_settings',
93  [
94  self::PROP_IDP_ID => [ilDBConstants::T_INTEGER, $this->idp_id]
95  ],
96  [
97  self::PROP_IS_ACTIVE => [ilDBConstants::T_INTEGER, (int) $this->is_active],
98  self::PROP_DEFAULT_ROLE_ID => [ilDBConstants::T_INTEGER, $this->default_role_id],
99  self::PROP_UID_CLAIM => [ilDBConstants::T_TEXT, $this->uid_claim],
100  self::PROP_LOGIN_CLAIM => [ilDBConstants::T_TEXT, $this->login_claim],
101  self::PROP_ENTITY_ID => [ilDBConstants::T_TEXT, $this->entity_id],
102  self::PROP_SYNC_STATUS => [ilDBConstants::T_INTEGER, (int) $this->sync_status],
103  self::PROP_ALLOW_LOCAL_AUTH => [ilDBConstants::T_INTEGER, (int) $this->allow_local_auth],
104  self::PROP_ACCOUNT_MIGR_STATUS => [ilDBConstants::T_INTEGER, (int) $this->account_migration_status]
105  ]
106  );
107  }
108 
113  public function delete(): void
114  {
115  $mapping = new ilExternalAuthUserAttributeMapping('saml', $this->idp_id);
116  $mapping->delete();
117 
118  $this->db->manipulateF(
119  'UPDATE usr_data SET auth_mode = %s WHERE auth_mode = %s',
121  ['default', ilAuthUtils::AUTH_SAML . '_' . $this->idp_id]
122  );
123 
124  $this->db->manipulate('DELETE FROM saml_idp_settings WHERE idp_id = ' . $this->db->quote(
125  $this->idp_id,
127  ));
128  }
129 
133  public function toArray(): array
134  {
135  return [
136  self::PROP_IDP_ID => $this->idp_id,
137  self::PROP_IS_ACTIVE => $this->is_active,
138  self::PROP_DEFAULT_ROLE_ID => $this->default_role_id,
139  self::PROP_UID_CLAIM => $this->uid_claim,
140  self::PROP_LOGIN_CLAIM => $this->login_claim,
141  self::PROP_SYNC_STATUS => $this->sync_status,
142  self::PROP_ACCOUNT_MIGR_STATUS => $this->account_migration_status,
143  self::PROP_ALLOW_LOCAL_AUTH => $this->allow_local_auth,
144  self::PROP_ENTITY_ID => $this->entity_id
145  ];
146  }
147 
151  public function bindDbRecord(array $record): void
152  {
153  $this->setIdpId((int) $record[self::PROP_IDP_ID]);
154  $this->setActive((bool) $record[self::PROP_IS_ACTIVE]);
155  $this->setDefaultRoleId((int) $record[self::PROP_DEFAULT_ROLE_ID]);
156  $this->setUidClaim((string) $record[self::PROP_UID_CLAIM]);
157  $this->setLoginClaim((string) $record[self::PROP_LOGIN_CLAIM]);
158  $this->setSynchronizationStatus((bool) $record[self::PROP_SYNC_STATUS]);
159  $this->setAccountMigrationStatus((bool) $record[self::PROP_ACCOUNT_MIGR_STATUS]);
160  $this->setLocalLocalAuthenticationStatus((bool) $record[self::PROP_ALLOW_LOCAL_AUTH]);
161  $this->setEntityId((string) $record[self::PROP_ENTITY_ID]);
162  }
163 
164  public function bindForm(ilPropertyFormGUI $form): void
165  {
166  $this->setDefaultRoleId((int) $form->getInput(self::PROP_DEFAULT_ROLE_ID));
167  $this->setUidClaim((string) $form->getInput(self::PROP_UID_CLAIM));
168  $this->setLoginClaim((string) $form->getInput(self::PROP_LOGIN_CLAIM));
169  $this->setSynchronizationStatus((bool) $form->getInput(self::PROP_SYNC_STATUS));
170  $this->setLocalLocalAuthenticationStatus((bool) $form->getInput(self::PROP_ALLOW_LOCAL_AUTH));
171  $this->setAccountMigrationStatus((bool) $form->getInput(self::PROP_ACCOUNT_MIGR_STATUS));
172 
174  $metadata = $form->getItemByPostVar('metadata');
175  $this->setEntityId($metadata->getValue());
176  }
177 
178  public static function isAuthModeSaml(string $a_auth_mode): bool
179  {
180  if ('' === $a_auth_mode) {
181  return false;
182  }
183 
184  $auth_arr = explode('_', $a_auth_mode);
185  return (
186  count($auth_arr) === 2 &&
187  (int) $auth_arr[0] === ilAuthUtils::AUTH_SAML &&
188  is_string($auth_arr[1]) && $auth_arr[1] !== ''
189  );
190  }
191 
192  public static function getIdpIdByAuthMode(string $a_auth_mode): ?int
193  {
194  if (self::isAuthModeSaml($a_auth_mode)) {
195  $auth_arr = explode('_', $a_auth_mode);
196  return (int) $auth_arr[1];
197  }
198 
199  return null;
200  }
201 
202  public static function geIdpIdByEntityId(string $entityId): int
203  {
204  foreach (self::getAllIdps() as $idp) {
205  if ($idp->isActive() && $idp->getEntityId() === $entityId) {
206  return $idp->getIdpId();
207  }
208  }
209 
210  return 0;
211  }
212 
216  public static function getActiveIdpList(): array
217  {
218  $idps = [];
219  foreach (self::getAllIdps() as $idp) {
220  if ($idp->isActive()) {
221  $idps[] = $idp;
222  }
223  }
224 
225  return $idps;
226  }
227 
231  public static function getAllIdps(): array
232  {
233  global $DIC;
234 
235  $res = $DIC->database()->query('SELECT * FROM saml_idp_settings');
236 
237  $idps = [];
238  while ($row = $DIC->database()->fetchAssoc($res)) {
239  $idp = new self();
240  $idp->bindDbRecord($row);
241 
242  $idps[] = $idp;
243  }
244 
245  return $idps;
246  }
247 
248  public static function getAuthModeByKey(string $a_auth_key): string
249  {
250  $auth_arr = explode('_', $a_auth_key);
251  if (count($auth_arr) > 1) {
252  return 'saml_' . $auth_arr[1];
253  }
254 
255  return 'saml';
256  }
257 
258  public static function getKeyByAuthMode(string $a_auth_mode): string
259  {
260  $auth_arr = explode('_', $a_auth_mode);
261  if (count($auth_arr) > 1) {
262  return ilAuthUtils::AUTH_SAML . '_' . $auth_arr[1];
263  }
264 
265  return (string) ilAuthUtils::AUTH_SAML;
266  }
267 
268  public function getEntityId(): string
269  {
270  return $this->entity_id;
271  }
272 
273  public function setEntityId(string $entity_id): void
274  {
275  $this->entity_id = $entity_id;
276  }
277 
278  public function isActive(): bool
279  {
280  return $this->is_active;
281  }
282 
283  public function setActive(bool $is_active): void
284  {
285  $this->is_active = $is_active;
286  }
287 
288  public function getIdpId(): int
289  {
290  return $this->idp_id;
291  }
292 
293  public function setIdpId(int $idp_id): void
294  {
295  $this->idp_id = $idp_id;
296  }
297 
298  public function allowLocalAuthentication(): bool
299  {
301  }
302 
303  public function setLocalLocalAuthenticationStatus(bool $status): void
304  {
305  $this->allow_local_auth = $status;
306  }
307 
308  public function getDefaultRoleId(): int
309  {
310  return $this->default_role_id;
311  }
312 
313  public function setDefaultRoleId(int $role_id): void
314  {
315  $this->default_role_id = $role_id;
316  }
317 
318  public function setUidClaim(string $claim): void
319  {
320  $this->uid_claim = $claim;
321  }
322 
323  public function getUidClaim(): string
324  {
325  return $this->uid_claim;
326  }
327 
328  public function setLoginClaim(string $claim): void
329  {
330  $this->login_claim = $claim;
331  }
332 
333  public function getLoginClaim(): string
334  {
335  return $this->login_claim;
336  }
337 
338  public function isSynchronizationEnabled(): bool
339  {
340  return $this->sync_status;
341  }
342 
343  public function setSynchronizationStatus(bool $sync): void
344  {
345  $this->sync_status = $sync;
346  }
347 
348  public function isAccountMigrationEnabled(): bool
349  {
351  }
352 
353  public function setAccountMigrationStatus(bool $status): void
354  {
355  $this->account_migration_status = $status;
356  }
357 }
bindDbRecord(array $record)
$res
Definition: ltiservices.php:66
static isAuthModeSaml(string $a_auth_mode)
getItemByPostVar(string $a_post_var)
setActive(bool $is_active)
const PROP_ACCOUNT_MIGR_STATUS
const PROP_SYNC_STATUS
setDefaultRoleId(int $role_id)
readonly ilDBInterface $db
static getInstanceByIdpId(int $a_idp_id)
static getIdpIdByAuthMode(string $a_auth_mode)
getInput(string $a_post_var, bool $ensureValidation=true)
Returns the input of an item, if item provides getInput method and as fallback the value of the HTTP-...
setEntityId(string $entity_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setLocalLocalAuthenticationStatus(bool $status)
setUidClaim(string $claim)
Class ilExternalAuthUserAttributeMapping.
setLoginClaim(string $claim)
const PROP_LOGIN_CLAIM
const PROP_IS_ACTIVE
$GLOBALS["DIC"]
Definition: wac.php:53
const PROP_ALLOW_LOCAL_AUTH
static array $instances
const PROP_UID_CLAIM
global $DIC
Definition: shib_login.php:22
__construct(protected int $idp_id=0)
int $default_role_id
static getAllIdps()
string $login_claim
static getKeyByAuthMode(string $a_auth_mode)
string $uid_claim
setAccountMigrationStatus(bool $status)
const PROP_DEFAULT_ROLE_ID
static getAuthModeByKey(string $a_auth_key)
string $entity_id
isAccountMigrationEnabled()
setIdpId(int $idp_id)
static geIdpIdByEntityId(string $entityId)
bool $allow_local_auth
const PROP_IDP_ID
allowLocalAuthentication()
static getActiveIdpList()
isSynchronizationEnabled()
const PROP_ENTITY_ID
setSynchronizationStatus(bool $sync)
bool $account_migration_status
static getFirstActiveIdp()