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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
<?php declare(strict_types = 0);
/*
** Copyright (C) 2001-2025 Zabbix SIA
**
** This program is free software: you can redistribute it and/or modify it under the terms of
** the GNU Affero General Public License as published by the Free Software Foundation, version 3.
**
** This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
** without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
** See the GNU Affero General Public License for more details.
**
** You should have received a copy of the GNU Affero General Public License along with this program.
** If not, see <https://www.gnu.org/licenses/>.
**/
/**
* A class for accessing once loaded parameters of Authentication API object.
*/
class CAuthenticationHelper {
public const AUTHENTICATION_TYPE = 'authentication_type';
public const DISABLED_USER_GROUPID = 'disabled_usrgrpid';
public const HTTP_AUTH_ENABLED = 'http_auth_enabled';
public const HTTP_CASE_SENSITIVE = 'http_case_sensitive';
public const HTTP_LOGIN_FORM = 'http_login_form';
public const HTTP_STRIP_DOMAINS = 'http_strip_domains';
public const JIT_PROVISION_INTERVAL = 'jit_provision_interval';
public const LDAP_AUTH_ENABLED = 'ldap_auth_enabled';
public const LDAP_USERDIRECTORYID = 'ldap_userdirectoryid';
public const LDAP_CASE_SENSITIVE = 'ldap_case_sensitive';
public const LDAP_JIT_STATUS = 'ldap_jit_status';
public const PASSWD_CHECK_RULES = 'passwd_check_rules';
public const PASSWD_MIN_LENGTH = 'passwd_min_length';
public const SAML_AUTH_ENABLED = 'saml_auth_enabled';
public const SAML_CASE_SENSITIVE = 'saml_case_sensitive';
public const SAML_JIT_STATUS = 'saml_jit_status';
public const MFA_STATUS = 'mfa_status';
public const MFAID = 'mfaid';
private static $params = [];
private static $params_public = [];
/**
* Userdirectory API object parameters array.
*
* @var array
*/
protected static array $userdirectory_params = [];
/**
* @throws Exception
*
* @return string
*/
public static function get(string $field): string {
if (!self::$params) {
self::$params = API::Authentication()->get(['output' => CAuthentication::getOutputFields()]);
if (self::$params === false) {
throw new Exception(_('Unable to load authentication API parameters.'));
}
}
return self::$params[$field];
}
public static function reset() {
self::$params = [];
}
/**
* Get the value of the given Authentication API object's field available to parts of the UI without authentication.
*
* @param string $field
*
* @return string
*/
public static function getPublic(string $field): string {
if (!self::$params_public) {
self::$params_public = CAuthentication::getPublic();
}
return self::$params_public[$field];
}
/**
* Returns SAML userdirectoryid.
*
* @return string
*
*/
public static function getSamlUserdirectoryid(): string {
$userdirectoryid = API::getApiService('userdirectory')->get([
'output' => ['userdirectoryid'],
'filter' => ['idp_type' => IDP_TYPE_SAML]
]);
if (!$userdirectoryid) {
throw new Exception(_('Unable to find SAML userdirectory.'));
}
return $userdirectoryid[0]['userdirectoryid'];
}
/**
* Returns SAML userdirectoryid if 'scim_status' is enabled.
*
* @return string
*
*/
public static function getSamlUserdirectoryidForScim(): string {
$userdirectoryid = API::getApiService('userdirectory')->get([
'output' => ['userdirectoryid', 'scim_status'],
'filter' => ['idp_type' => IDP_TYPE_SAML]
]);
if (!$userdirectoryid || $userdirectoryid[0]['scim_status'] == 0) {
throw new Exception(_('Unable to find SAML userdirectory.'));
}
return $userdirectoryid[0]['userdirectoryid'];
}
/**
* Check is LDAP provisioning enabled for specific userdirectory:
* LDAP JIT provisioning is enabled, LDAP user directory provisioning is configured and enabled.
*
* @return bool
*/
public static function isLdapProvisionEnabled($userdirectoryid): bool {
if ($userdirectoryid == 0 || self::get(self::LDAP_JIT_STATUS) != JIT_PROVISIONING_ENABLED) {
return false;
}
return API::UserDirectory()->get([
'countOutput' => true,
'userdirectoryids' => [$userdirectoryid],
'filter' => ['provision_status' => JIT_PROVISIONING_ENABLED, 'idp_type' => IDP_TYPE_LDAP]
]) > 0;
}
/**
* Check is the given timestamp require user provisioning according jit_provision_interval.
*
* @param int $timestamp
*
* @return bool Is true when given timestamp require provisioning.
*/
public static function isTimeToProvision($timestamp): bool {
$jit_interval = timeUnitToSeconds(self::get(self::JIT_PROVISION_INTERVAL));
return ($timestamp + $jit_interval) < time();
}
}
|