19 declare(strict_types=1);
47 $this->db =
$GLOBALS[
'DIC']->database();
49 if ($this->idp_id > 0) {
56 $idps = self::getActiveIdpList();
58 return current($idps);
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);
70 return self::$instances[$a_idp_id];
73 private function read(): void
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)) {
87 if ($this->idp_id === 0) {
88 $this->
setIdpId($this->db->nextId(
'saml_idp_settings'));
113 public function delete():
void 118 $this->db->manipulateF(
119 'UPDATE usr_data SET auth_mode = %s WHERE auth_mode = %s',
124 $this->db->manipulate(
'DELETE FROM saml_idp_settings WHERE idp_id = ' . $this->db->quote(
136 self::PROP_IDP_ID => $this->idp_id,
153 $this->
setIdpId((
int) $record[self::PROP_IDP_ID]);
154 $this->
setActive((
bool) $record[self::PROP_IS_ACTIVE]);
156 $this->
setUidClaim((
string) $record[self::PROP_UID_CLAIM]);
157 $this->
setLoginClaim((
string) $record[self::PROP_LOGIN_CLAIM]);
161 $this->
setEntityId((
string) $record[self::PROP_ENTITY_ID]);
180 if (
'' === $a_auth_mode) {
184 $auth_arr = explode(
'_', $a_auth_mode);
186 count($auth_arr) === 2 &&
188 is_string($auth_arr[1]) && $auth_arr[1] !==
'' 194 if (self::isAuthModeSaml($a_auth_mode)) {
195 $auth_arr = explode(
'_', $a_auth_mode);
196 return (
int) $auth_arr[1];
204 foreach (self::getAllIdps() as $idp) {
205 if ($idp->isActive() && $idp->getEntityId() === $entityId) {
206 return $idp->getIdpId();
219 foreach (self::getAllIdps() as $idp) {
220 if ($idp->isActive()) {
235 $res = $DIC->database()->query(
'SELECT * FROM saml_idp_settings');
238 while ($row = $DIC->database()->fetchAssoc(
$res)) {
240 $idp->bindDbRecord($row);
250 $auth_arr = explode(
'_', $a_auth_key);
251 if (count($auth_arr) > 1) {
252 return 'saml_' . $auth_arr[1];
260 $auth_arr = explode(
'_', $a_auth_mode);
261 if (count($auth_arr) > 1) {
290 return $this->idp_id;
295 $this->idp_id = $idp_id;
305 $this->allow_local_auth = $status;
315 $this->default_role_id = $role_id;
320 $this->uid_claim = $claim;
330 $this->login_claim = $claim;
345 $this->sync_status = $sync;
355 $this->account_migration_status = $status;
bindDbRecord(array $record)
static isAuthModeSaml(string $a_auth_mode)
setActive(bool $is_active)
const PROP_ACCOUNT_MIGR_STATUS
setDefaultRoleId(int $role_id)
readonly ilDBInterface $db
static getInstanceByIdpId(int $a_idp_id)
static getIdpIdByAuthMode(string $a_auth_mode)
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_ALLOW_LOCAL_AUTH
__construct(protected int $idp_id=0)
static getKeyByAuthMode(string $a_auth_mode)
setAccountMigrationStatus(bool $status)
const PROP_DEFAULT_ROLE_ID
static getAuthModeByKey(string $a_auth_key)
isAccountMigrationEnabled()
static geIdpIdByEntityId(string $entityId)
allowLocalAuthentication()
static getActiveIdpList()
isSynchronizationEnabled()
setSynchronizationStatus(bool $sync)
bool $account_migration_status
static getFirstActiveIdp()