19 declare(strict_types=1);
35 protected \ilLanguage
$lng;
45 $this->profile_repo = (
$profile_repo) ?: $DIC->skills()->internal()->repo()->getProfileRepo();
46 $this->profile_levels_repo = (
$profile_levels_repo) ?: $DIC->skills()->internal()->repo()->getProfileLevelsRepo();
47 $this->profile_user_repo = (
$profile_user_repo) ?: $DIC->skills()->internal()->repo()->getProfileUserRepo();
48 $this->profile_role_repo = (
$profile_role_repo) ?: $DIC->skills()->internal()->repo()->getProfileRoleRepo();
49 $this->rbac_review = $DIC->rbac()->review();
50 $this->
lng = $DIC->language();
58 return $this->profile_repo->get($profile_id);
64 $new_profile = $this->profile_repo->createProfile($profile);
72 $updated_profile = $this->profile_repo->updateProfile($profile);
74 return $updated_profile;
77 public function delete(
int $profile_id):
void 87 $this->profile_repo->deleteProfile($profile_id);
92 $this->profile_levels_repo->deleteAllForProfile($profile_id);
97 $this->profile_levels_repo->deleteAllForSkill($skill_node_id, $is_reference);
102 $this->profile_user_repo->deleteProfileUsers($profile_id);
107 $this->profile_role_repo->deleteProfileRoles($profile_id);
112 $this->profile_repo->deleteProfilesFromObject($ref_id);
120 $levels = $this->profile_levels_repo->getAll($profile_id);
130 $level = $this->profile_levels_repo->get($profile_id, $base_skill_id, $tref_id);
136 $this->profile_levels_repo->createOrUpdate($skill_level_obj);
141 $this->profile_levels_repo->createOrUpdate($skill_level_obj);
146 $this->profile_levels_repo->delete($skill_level_obj);
153 $this->profile_levels_repo->updateSkillOrder($profile_id, $order);
158 $this->profile_levels_repo->fixSkillOrderNumbering($profile_id);
163 $max = $this->profile_levels_repo->getMaxOrderNr($profile_id);
172 $profiles = $this->profile_repo->getProfilesForAllSkillTrees();
181 $profiles = $this->profile_repo->getProfilesForSkillTree($skill_tree_id);
190 $profiles = $this->profile_repo->getAllGlobalProfiles();
199 $profiles = $this->profile_repo->getLocalProfilesForObject($ref_id);
205 $title = $this->profile_repo->lookup($profile_id,
"title");
211 $ref_id = $this->profile_repo->lookup($profile_id,
"ref_id");
220 $this->profile_repo->updateRefIdAfterImport($profile_id, $new_ref_id);
225 $tree_id = $this->profile_repo->getTreeId($profile_id);
241 $users = $this->getUserAssignments($profile_id);
242 $roles = $this->getRoleAssignments($profile_id);
243 $assignments = array_merge($users, $roles);
251 public function getUserAssignments(
int $profile_id): array
255 $users = $this->profile_user_repo->get($profile_id);
258 foreach ($users as $u) {
259 $u[
"user_id"] = (
int) $u[
"user_id"];
260 $u[
"profile_id"] = (
int) $u[
"profile_id"];
263 $user_restructured = [
265 "id" => $u[
"user_id"]
268 $users_as_obj[] = $this->profile_user_repo->getFromRecord($user_restructured);
271 return $users_as_obj;
279 return $this->rbac_review->assignedUsers($role_id);
288 $users = $this->getUserAssignments($profile_id);
289 foreach ($users as $user) {
290 $all[] = $user->getId();
293 $roles = $this->getRoleAssignments($profile_id);
294 foreach ($roles as $role) {
295 $role_users = $this->rbac_review->assignedUsers($role->getId());
297 if (!in_array($user_id, $all)) {
308 $this->profile_user_repo->addUserToProfile($profile_id, $user_id);
313 $this->profile_user_repo->removeUserFromProfile($profile_id, $user_id);
318 $this->profile_user_repo->removeUserFromAllProfiles($user_id);
324 public function getProfilesOfUser(
int $user_id): array
329 $user_profiles = $this->profile_user_repo->getProfilesOfUser($user_id);
333 $user_roles = $this->rbac_review->assignedRoles($user_id);
334 foreach ($user_roles as $role) {
336 foreach ($profiles as $profile) {
337 $role_profiles[] = $profile;
344 $all_profiles = array_merge($user_profiles, $role_profiles);
347 foreach ($all_profiles as $v) {
348 if (!isset($temp_profiles[$v->getId()])) {
349 $temp_profiles[$v->getId()] = $v;
352 $all_profiles = array_values($temp_profiles);
353 return $all_profiles;
358 $count = $this->profile_user_repo->countUsers($profile_id);
365 public function getRoleAssignments(
int $profile_id,
bool $with_objects_in_trash =
false): array
370 $roles = $this->profile_role_repo->get($profile_id);
372 $roles_as_obj_without_trash = [];
374 $roles_as_obj_with_trash = [];
375 foreach ($roles as
$r) {
376 $r[
"role_id"] = (
int) $r[
"role_id"];
377 $r[
"profile_id"] = (
int) $r[
"profile_id"];
384 $role_restructured = [
386 "id" => $r[
"role_id"],
387 "object_title" => $obj_title,
388 "object_type" => $obj_type,
389 "object_id" => $obj_id
393 $roles_as_obj_without_trash[] = $this->profile_role_repo->getRoleAssignmentFromRecord($role_restructured);
395 $roles_as_obj_with_trash[] = $this->profile_role_repo->getRoleAssignmentFromRecord($role_restructured);
398 if ($with_objects_in_trash) {
399 return $roles_as_obj_with_trash;
401 return $roles_as_obj_without_trash;
406 $this->profile_role_repo->addRoleToProfile($profile_id, $role_id);
411 $this->profile_role_repo->removeRoleFromProfile($profile_id, $role_id);
416 $this->profile_role_repo->removeRoleFromAllProfiles($role_id);
425 $profiles = $this->profile_role_repo->getAllProfilesOfRole($role_id);
434 $profiles = $this->profile_role_repo->getGlobalProfilesOfRole($role_id);
443 $profiles = $this->profile_role_repo->getLocalProfilesOfRole($role_id);
449 $count = $this->profile_role_repo->countRoles($profile_id);
460 $usage_manager = $DIC->skills()->internal()->manager()->getUsageManager();
462 return $usage_manager->getUsageInfoGeneric(
deleteProfileRoles(int $profile_id)
deleteProfilesFromObject(int $ref_id)
createProfile(SkillProfile $profile)
addSkillLevel(SkillProfileLevel $skill_level_obj)
deleteProfile(int $profile_id)
removeRoleFromAllProfiles(int $role_id)
updateRefIdAfterImport(int $profile_id, int $new_ref_id)
Update the old ref id with the new ref id after import.
static _hasUntrashedReference(int $obj_id)
checks whether an object has at least one reference that is not in trash
updateSkillOrder(int $profile_id, array $order)
getSkillLevels(int $profile_id)
SkillProfileLevelsDBRepository $profile_levels_repo
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
SkillProfileUserDBRepository $profile_user_repo
getLocalProfilesForObject(int $ref_id)
addRoleToProfile(int $profile_id, int $role_id)
countRoles(int $profile_id)
lookupRefId(int $profile_id)
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link='', bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path='ilpublicuserprofilegui')
Default behaviour is:
static _lookupTitle(int $obj_id)
static _getTranslation(string $a_role_title)
updateSkillLevel(SkillProfileLevel $skill_level_obj)
static _lookupObjectId(int $ref_id)
removeRoleFromProfile(int $profile_id, int $role_id)
SkillProfileDBRepository $profile_repo
getAssignments(int $profile_id)
Get all assignments (users and roles)
ilRbacReview $rbac_review
getLocalProfilesOfRole(int $role_id)
getProfilesForSkillTree(int $skill_tree_id)
removeUserFromProfile(int $profile_id, int $user_id)
getAllProfilesOfRole(int $role_id)
Get global and local profiles of a role.
removeSkillLevel(SkillProfileLevel $skill_level_obj)
SkillProfileRoleDBRepository $profile_role_repo
deleteProfileUsers(int $profile_id)
__construct(?SkillProfileDBRepository $profile_repo=null, ?SkillProfileLevelsDBRepository $profile_levels_repo=null, ?SkillProfileUserDBRepository $profile_user_repo=null, ?SkillProfileRoleDBRepository $profile_role_repo=null)
getProfilesForAllSkillTrees()
getSkillLevel(int $profile_id, int $base_skill_id, int $tref_id)
getMaxLevelOrderNr(int $profile_id)
getProfile(int $profile_id)
removeUserFromAllProfiles(int $user_id)
getAssignedUserIdsIncludingRoleAssignments(int $profile_id)
static _lookupType(int $id, bool $reference=false)
getTreeId(int $profile_id)
Get info on usages of skills.
fixSkillOrderNumbering(int $profile_id)
getGlobalProfilesOfRole(int $role_id)
deleteProfileLevelsForSkill(int $skill_node_id, bool $is_reference=false)
deleteProfileLevels(int $profile_id)
lookupTitle(int $profile_id)
addUserToProfile(int $profile_id, int $user_id)
static getUsageInfo(array $a_cskill_ids)
Get title of an assigned item.int, tref_id: int}[] $a_cskill_ids array of common skill idsarray<strin...
updateProfile(SkillProfile $profile)
countUsers(int $profile_id)
getAssignedUsersForRole(int $role_id)