19 declare(strict_types=1);
44 $this->db =
$GLOBALS[
'DIC']->database();
45 $this->idp_id = $a_idp_id;
47 if ($this->idp_id > 0) {
54 $idps = self::getActiveIdpList();
55 if (count($idps) > 0) {
56 return current($idps);
64 if (!isset(self::$instances[$a_idp_id]) || !(self::$instances[$a_idp_id] instanceof
self)) {
65 self::$instances[$a_idp_id] =
new self($a_idp_id);
68 return self::$instances[$a_idp_id];
71 private function read(): void
73 $query =
'SELECT * FROM saml_idp_settings WHERE idp_id = ' . $this->db->quote($this->
getIdpId(),
'integer');
75 while ($record = $this->db->fetchAssoc(
$res)) {
86 $this->
setIdpId($this->db->nextId(
'saml_idp_settings'));
92 'idp_id' => [
'integer', $this->
getIdpId()]
95 'is_active' => [
'integer', (
int) $this->
isActive()],
111 public function delete():
void 116 $this->db->manipulateF(
117 'UPDATE usr_data SET auth_mode = %s WHERE auth_mode = %s',
118 array(
'text',
'text'),
122 $this->db->manipulate(
'DELETE FROM saml_idp_settings WHERE idp_id = ' . $this->db->quote(
151 $this->
setIdpId((
int) $record[
'idp_id']);
152 $this->
setActive((
bool) $record[
'is_active']);
178 if (
'' === $a_auth_mode) {
182 $auth_arr = explode(
'_', $a_auth_mode);
184 count($auth_arr) === 2 &&
186 is_string($auth_arr[1]) && $auth_arr[1] !==
'' 192 if (self::isAuthModeSaml($a_auth_mode)) {
193 $auth_arr = explode(
'_', $a_auth_mode);
194 return (
int) $auth_arr[1];
202 foreach (self::getAllIdps() as $idp) {
203 if ($idp->isActive() && $idp->getEntityId() ===
$entityId) {
204 return $idp->getIdpId();
218 foreach (self::getAllIdps() as $idp) {
219 if ($idp->isActive()) {
234 $res = $DIC->database()->query(
'SELECT * FROM saml_idp_settings');
237 while ($row = $DIC->database()->fetchAssoc(
$res)) {
239 $idp->bindDbRecord($row);
249 $auth_arr = explode(
'_', $a_auth_key);
250 if (count((array) $auth_arr) > 1) {
251 return 'saml_' . $auth_arr[1];
259 $auth_arr = explode(
'_', $a_auth_mode);
260 if (count((array) $auth_arr) > 1) {
304 $this->allow_local_auth = $status;
314 $this->default_role_id = $role_id;
319 $this->uid_claim = $claim;
329 $this->login_claim = $claim;
344 $this->sync_status = $sync;
354 $this->account_migration_status = $status;
bindDbRecord(array $record)
static isAuthModeSaml(string $a_auth_mode)
setActive(bool $is_active)
setDefaultRoleId(int $role_id)
static getInstanceByIdpId(int $a_idp_id)
static getIdpIdByAuthMode(string $a_auth_mode)
setEntityId(string $entity_id)
setLocalLocalAuthenticationStatus(bool $status)
setUidClaim(string $claim)
Class ilExternalAuthUserAttributeMapping.
setLoginClaim(string $claim)
static array $idp_as_data
__construct(int $a_idp_id=0)
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
static getKeyByAuthMode(string $a_auth_mode)
setAccountMigrationStatus(bool $status)
static getAuthModeByKey(string $a_auth_key)
isAccountMigrationEnabled()
static geIdpIdByEntityId(string $entityId)
allowLocalAuthentication()
static getActiveIdpList()
isSynchronizationEnabled()
setSynchronizationStatus(bool $sync)
bool $account_migration_status
static getFirstActiveIdp()