47 $this->db = $DIC->database();
48 $this->tree = $DIC->repositoryTree();
49 $this->roles = array();
50 $this->staff = array();
51 $this->ilUser = $DIC->user();
56 if (static::$instance === null) {
57 static::$instance =
new self();
60 return static::$instance;
80 $arr_usr_ids = $assignment_query->getUserIdsOfOrgUnitsInPosition(
94 'position_id' => $ilOrgUnitPosition->
getId(),
95 ))->getArray(
'id',
'user_id');
105 if ($recursive ===
false) {
130 $all_refs = $ref_ids;
133 if (isset($this->staff[$title][
$ref_id])) {
134 unset($ref_ids[
$id]);
136 $this->staff[$title][
$ref_id] = array();
137 $ref_ids[
$id] = $this->roles[$title][
$ref_id];
142 if (count($ref_ids)) {
143 $q =
"SELECT usr_id, rol_id FROM rbac_ua WHERE " . $this->db->in(
"rol_id", $ref_ids,
false,
"integer");
144 $set = $this->db->query($q);
145 while (
$res = $this->db->fetchAssoc($set)) {
146 $orgu_ref = $this->role_to_orgu[$title][
$res[
"rol_id"]];
147 $this->staff[$title][$orgu_ref][] = $res[
"usr_id"];
153 foreach ($all_refs as $ref) {
154 $all_users = array_merge($all_users, $this->staff[$title][$ref]);
161 $open = array($ref_id);
163 while (count($open)) {
164 $ref = array_pop($open);
167 if (in_array($child, $open,
true) ===
false && in_array($child, $closed,
true) ===
false) {
193 $q =
"SELECT object_data.obj_id, object_reference.ref_id, object_data.title, object_data.type, rbac_pa.ops_id, rbac_operations.ops_id as op_id FROM object_data 194 INNER JOIN rbac_operations ON rbac_operations.operation = " . $this->db->quote($operation,
"text") .
" 195 INNER JOIN rbac_ua ON rbac_ua.usr_id = " . $this->db->quote($this->ilUser->getId(),
"integer") .
" 196 INNER JOIN rbac_pa ON rbac_pa.rol_id = rbac_ua.rol_id AND rbac_pa.ops_id LIKE CONCAT('%', rbac_operations.ops_id, '%') 197 INNER JOIN object_reference ON object_reference.ref_id = rbac_pa.ref_id 198 WHERE object_data.obj_id = object_reference.obj_id AND object_data.type = 'orgu'";
200 $set = $this->db->query($q);
202 while (
$res = $this->db->fetchAssoc($set)) {
204 $perm_check = unserialize(
$res[
'ops_id'], [
'allowed_classes' =>
true]);
205 if (in_array(
$res[
"op_id"], $perm_check,
true) ===
false) {
209 $orgus[] =
$res[
"ref_id"];
222 $q =
"SELECT object_data.obj_id, object_data.title, object_data.type, rbac_pa.ops_id FROM object_data 223 INNER JOIN rbac_ua ON rbac_ua.usr_id = " . $this->db->quote($this->ilUser->getId(),
"integer") .
" 224 INNER JOIN rbac_pa ON rbac_pa.rol_id = rbac_ua.rol_id AND rbac_pa.ops_id LIKE CONCAT('%', " . $this->db->quote(
228 INNER JOIN rbac_fa ON rbac_fa.rol_id = rbac_ua.rol_id 229 INNER JOIN tree ON tree.child = rbac_fa.parent 230 INNER JOIN object_reference ON object_reference.ref_id = tree.parent 231 WHERE object_data.obj_id = object_reference.obj_id AND object_data.type = 'orgu'";
233 $set = $this->db->query($q);
235 while (
$res = $this->db->fetchAssoc($set)) {
237 $perm_check = unserialize(
$res[
'ops_id'], [
'allowed_classes' =>
true]);
238 if (in_array(
$res[
"ops_id"], $perm_check,
true) ===
false) {
242 $orgus[] =
$res[
"obj_id"];
251 return $this->tree_childs[
$ref_id];
256 if (!array_key_exists($ref_id, $this->tree_childs)) {
258 foreach ($this->tree->getChilds($ref_id) as $child) {
259 if ($child[
"type"] ==
"orgu") {
260 $children[] = $child[
"child"];
263 $this->tree_childs[
$ref_id] = $children;
271 while ($current_level < $level) {
272 $new_level = array();
273 foreach ($levels[$current_level] as $orgu_ref) {
274 $new_level = array_merge($this->
getChildren($orgu_ref), $new_level);
276 $new_level = array_unique($new_level);
277 $levels[$current_level + 1] = $new_level;
281 return $levels[$level];
293 $orgu_ref_ids = $assignment_query->getOrgUnitIdsOfUsersPosition(
298 switch ($recursive) {
300 $orgu_ref_id_with_children = [];
301 foreach ($orgu_ref_ids as $orgu_ref_id) {
302 $orgu_ref_id_with_children = array_merge($orgu_ref_ids, $this->
getAllChildren($orgu_ref_id));
304 return $assignment_query->getUserIdsOfOrgUnitsInPosition(
305 $orgu_ref_id_with_children,
309 return $assignment_query->getUserIdsOfOrgUnitsInPosition(
325 $q =
"SELECT orgu.obj_id, refr.ref_id FROM object_data orgu 326 INNER JOIN object_reference refr ON refr.obj_id = orgu.obj_id 327 INNER JOIN object_data roles ON roles.title LIKE CONCAT('il_orgu_employee_',refr.ref_id) OR roles.title LIKE CONCAT('il_orgu_superior_',refr.ref_id) 328 INNER JOIN rbac_ua rbac ON rbac.usr_id = " . $this->db->quote($user_id,
"integer") .
" AND roles.obj_id = rbac.rol_id 329 WHERE orgu.type = 'orgu'";
330 $set = $this->db->query($q);
331 $orgu_ref_ids = array();
332 while (
$res = $this->db->fetchAssoc($set)) {
333 $orgu_ref_ids[] =
$res[
'ref_id'];
335 $superiors = array();
336 foreach ($orgu_ref_ids as $orgu_ref_id) {
337 $superiors = array_merge($superiors, $this->
getSuperiors($orgu_ref_id, $recursive));
350 $q =
"SELECT object_reference.ref_id FROM rbac_ua 351 JOIN rbac_fa ON rbac_fa.rol_id = rbac_ua.rol_id 352 JOIN object_reference ON rbac_fa.parent = object_reference.ref_id 353 JOIN object_data ON object_data.obj_id = object_reference.obj_id 354 WHERE rbac_ua.usr_id = " . $this->db->quote($user_id,
'integer') .
" AND object_data.type = 'orgu';";
356 $set = $this->db->query($q);
357 $orgu_ref_ids = array();
358 while (
$res = $this->db->fetchAssoc($set)) {
359 $orgu_ref_ids[] =
$res[
'ref_id'];
361 $orgus_on_level_x = array();
362 foreach ($orgu_ref_ids as $orgu_ref_id) {
370 return array_unique($orgus_on_level_x);
382 $orgus = $orgu_query->getAssignmentsOfUserId($user_id);
383 foreach ($orgus as $orgu) {
384 $orgu_ref_ids[] = $orgu->getOrguId();
386 return $orgu_ref_ids;
403 if (self::$temporary_table_name == $temporary_table_name) {
406 if (self::$temporary_table_name === null) {
409 } elseif ($temporary_table_name != self::$temporary_table_name) {
410 throw new ilException(
'there is already a temporary table for org-unit assignement: ' . self::$temporary_table_name);
413 $q =
"CREATE TEMPORARY TABLE IF NOT EXISTS " . $temporary_table_name .
" AS ( 414 SELECT DISTINCT object_reference.ref_id AS ref_id, il_orgu_ua.user_id AS user_id, orgu_path_storage.path AS path 416 JOIN object_reference ON object_reference.ref_id = il_orgu_ua.orgu_id 417 JOIN object_data ON object_data.obj_id = object_reference.obj_id 418 JOIN orgu_path_storage ON orgu_path_storage.ref_id = object_reference.ref_id 419 WHERE object_data.type = 'orgu' AND object_reference.deleted IS NULL 421 $this->db->manipulate($q);
428 if (self::$temporary_table_name === null
429 || $temporary_table_name !== self::$temporary_table_name
434 $this->db->manipulate($q);
436 self::$temporary_table_name = null;
444 foreach ($org_refs as $org_unit) {
457 return $this->roles[
"employee"];
467 return $this->roles[
"superior"];
472 if ($this->roles[$role] == null) {
484 $this->roles[$role] = array();
485 $q =
"SELECT obj_id, title FROM object_data WHERE type = 'role' AND title LIKE 'il_orgu_" . $role .
"%'";
486 $set = $this->db->query($q);
487 while (
$res = $this->db->fetchAssoc($set)) {
489 $this->roles[$role][$orgu_ref] =
$res[
"obj_id"];
490 $this->role_to_orgu[$role][
$res[
"obj_id"]] = $orgu_ref;
496 $array = explode(
"_", $role_title);
498 return $array[count($array) - 1];
519 $line = array($orgu_ref);
520 $current_ref = $orgu_ref;
522 $current_ref = $this->
getParent($current_ref);
524 $line[] = $current_ref;
528 if (count($line) > 100) {
529 throw new Exception(
"There's either a non valid call of the getLevelXOfTreenode in ilObjOrgUnitTree or your nesting of orgunits is higher than 100 units, which isn't encouraged");
532 $line = array_reverse($line);
533 if (count($line) > $level) {
534 return $line[$level];
536 throw new Exception(
"you want to fetch level " . $level .
" but the line to the length of the line is only " . count($line)
537 .
". The line of the given org unit is: " . print_r($line,
true));
543 if (array_key_exists($orgu_ref, $this->parent) ===
false) {
544 $this->parent[$orgu_ref] = $this->tree->getParentId($orgu_ref);
547 return $this->parent[$orgu_ref];
getSuperiorsOfUser(int $user_id, bool $recursive=true)
static getCorePosition(int $core_identifier)
buildTempTableWithUsrAssignements(string $temporary_table_name='orgu_usr_assignements')
Creates a temporary table with all orgu/user assignements.
const CORE_POSITION_EMPLOYEE
static ilObjOrgUnitTree $instance
static string $temporary_table_name_getOrgUnitOfUser
loadArrayOfStaff(string $title, array $ref_ids)
getEmployees(int $ref_id, bool $recursive=false)
getLevelXOfTreenode(int $orgu_ref, int $level)
Specify eg.
static where($where, $operator=null)
getAllOrgunitsOnLevelX(int $level)
static _lookupObjId(int $ref_id)
dropTempTable(string $temporary_table_name)
getOrgUnitOfUser(int $user_id)
getLevelXOfUser(int $user_id, int $level)
for additional info see the other getLevelX method.
static _lookupTitle(int $obj_id)
getEmployeesUnderUser(int $user_id, bool $recursive=true)
getRefIdFromRoleTitle(string $role_title)
getAssignements(int $ref_id, ilOrgUnitPosition $ilOrgUnitPosition)
getAllChildren(int $ref_id)
getSuperiors(int $ref_id, bool $recursive=false)
loadChildren(int $ref_id)
getOrgusWhereUserHasPermissionForOperationId(string $operation_id)
If you want to have all orgunits where the current user has the write permission: use this with the p...
getTitles(array $org_refs)
loadRolesQuery(string $role)
static string $temporary_table_name
const CORE_POSITION_SUPERIOR
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
getOrgusWhereUserHasPermissionForOperation($operation)
If you want to have all orgunits where the current user has the write permission: use this with the p...