19 declare(strict_types=1);
35 return self::$default_role =
50 $query =
"SELECT DISTINCT(role_id) FROM ldap_role_assignments " .
51 'WHERE server_id = ' .
$ilDB->quote($a_server_id,
'integer');
56 $roles[$row->role_id] = (
int) $row->role_id;
59 $gr = self::getDefaultRole($a_server_id);
75 $query =
"SELECT DISTINCT(att_name) " .
76 "FROM ldap_role_assignments " .
77 'WHERE server_id = ' .
$ilDB->quote($a_server_id,
'integer');
81 $name = strtolower(trim($row->att_name ??
''));
87 return array_merge($names, self::getAdditionalPluginAttributes());
95 $rbacreview = $DIC[
'rbacreview'];
96 $ilLog = $DIC[
'ilLog'];
98 $query =
"SELECT rule_id,add_on_update,remove_on_update FROM ldap_role_assignments " .
99 "WHERE (add_on_update = 1 OR remove_on_update = 1) " .
100 'AND server_id = ' .
$ilDB->quote($a_server_id,
'integer');
107 $matches = $rule->matches($a_usr_data);
108 if ($matches && $row->add_on_update) {
110 $roles[] = self::parseRole($rule->getRoleId(), self::ROLE_ACTION_ASSIGN);
112 if (!$matches && $row->remove_on_update) {
113 $ilLog->info(
': Deassigned from role: ' . $a_usr_name .
' => ' .
ilObject::_lookupTitle($rule->getRoleId()));
114 $roles[] = self::parseRole($rule->getRoleId(), self::ROLE_ACTION_DEASSIGN);
119 $deassigned_global = 0;
120 foreach ($roles as $role_data) {
121 if ($role_data[
'type'] ===
'Global' &&
122 $role_data[
'action'] === self::ROLE_ACTION_DEASSIGN) {
123 $deassigned_global++;
126 if (count($rbacreview->assignedGlobalRoles($a_usr_id)) === $deassigned_global) {
127 $ilLog->info(
': No global role left. Assigning to default role.');
128 $roles[] = self::parseRole(
129 self::getDefaultRole($a_server_id),
130 self::ROLE_ACTION_ASSIGN
144 $ilDB = $DIC[
'ilDB'];
145 $ilLog = $DIC[
'ilLog'];
147 $query =
"SELECT rule_id FROM ldap_role_assignments " .
148 'WHERE server_id = ' .
$ilDB->quote($a_server_id,
'integer');
155 if ($rule->matches($a_usr_data)) {
157 $roles[] = self::parseRole($rule->getRoleId(), self::ROLE_ACTION_ASSIGN);
162 $found_global =
false;
163 foreach ($roles as $role_data) {
164 if ($role_data[
'type'] ===
'Global') {
165 $found_global =
true;
169 if (!$found_global) {
170 $ilLog->info(
': No matching rule found. Assigning to default role.');
171 $roles[] = self::parseRole(
172 self::getDefaultRole($a_server_id),
173 self::ROLE_ACTION_ASSIGN
183 public static function callPlugin(
int $a_plugin_id, array $a_user_data): bool
187 $component_factory = $DIC[
"component.factory"];
188 foreach ($component_factory->getActivePluginsInSlot(
'ldaphk') as
$plugin) {
189 if (
$plugin->checkRoleAssignment($a_plugin_id, $a_user_data)) {
204 $attributes = array();
205 $component_factory = $DIC[
"component.factory"];
206 foreach ($component_factory->getActivePluginsInSlot(
'ldaphk') as
$plugin) {
207 $attributes[] =
$plugin->getAdditionalAttributeNames();
210 return array_merge(...$attributes);
213 protected static function parseRole(
int $a_role_id,
string $a_action): array
217 $rbacreview = $DIC[
'rbacreview'];
221 'type' => $rbacreview->isGlobalRole($a_role_id) ?
'Global' :
'Local',
222 'action' => $a_action
static getAssignmentsForUpdate(int $a_server_id, $a_usr_id, $a_usr_name, $a_usr_data)
static parseRole(int $a_role_id, string $a_action)
const ROLE_ACTION_DEASSIGN
static getDefaultRole(int $a_server_id)
static getAttributeNames($a_server_id)
get all possible attribute names
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static getAdditionalPluginAttributes()
Fetch additional attributes from plugin.
static _lookupTitle(int $obj_id)
static getAllPossibleRoles(int $a_server_id)
Get all assignable roles (used for import parser)
static _lookupGlobalRole(int $a_server_id)
static getAssignmentsForCreation(int $a_server_id, string $a_usr_name, array $a_usr_data)
static _getInstanceByRuleId(int $a_rule_id)
static callPlugin(int $a_plugin_id, array $a_user_data)
Call plugin check if the condition matches.