41 $this->profile_repo = (
$profile_repo) ?: $DIC->skills()->internal()->repo()->getProfileRepo();
42 $this->profile_levels_repo = (
$profile_levels_repo) ?: $DIC->skills()->internal()->repo()->getProfileLevelsRepo();
43 $this->profile_user_repo = (
$profile_user_repo) ?: $DIC->skills()->internal()->repo()->getProfileUserRepo();
44 $this->profile_role_repo = (
$profile_role_repo) ?: $DIC->skills()->internal()->repo()->getProfileRoleRepo();
45 $this->rbac_review = $DIC->rbac()->review();
53 return $this->profile_repo->getById($profile_id);
59 $new_profile = $this->profile_repo->createProfile($profile);
62 $this->profile_levels_repo->createProfileLevels($new_profile->getId(), $new_profile->getSkillLevels());
70 $updated_profile = $this->profile_repo->updateProfile($profile);
73 $this->profile_levels_repo->updateProfileLevels($profile->
getId(), $profile->
getSkillLevels());
75 return $updated_profile;
78 public function delete(
int $profile_id):
void 88 $this->profile_repo->deleteProfile($profile_id);
93 $this->profile_levels_repo->deleteProfileLevels($profile_id);
98 $this->profile_user_repo->deleteProfileUsers($profile_id);
103 $this->profile_role_repo->deleteProfileRoles($profile_id);
108 $this->profile_repo->deleteProfilesFromObject($ref_id);
115 $this->profile_levels_repo->updateSkillOrder($profile_id, $order);
120 $this->profile_levels_repo->fixSkillOrderNumbering($profile_id);
125 $max = $this->profile_levels_repo->getMaxLevelOrderNr($profile_id);
131 $profiles = $this->profile_repo->getProfilesForAllSkillTrees();
137 $profiles = $this->profile_repo->getProfilesForSkillTree($skill_tree_id);
143 $profiles = $this->profile_repo->getAllGlobalProfiles();
149 $profiles = $this->profile_repo->getLocalProfilesForObject($ref_id);
155 $title = $this->profile_repo->lookup($profile_id,
"title");
161 $ref_id = $this->profile_repo->lookup($profile_id,
"ref_id");
170 $this->profile_repo->updateRefIdAfterImport($profile_id, $new_ref_id);
175 $tree_id = $this->profile_repo->getTreeId($profile_id);
192 $assignments = array_merge($users, $roles);
199 $users = $this->profile_user_repo->getAssignedUsers($profile_id);
205 return $this->rbac_review->assignedUsers($role_id);
212 foreach ($users as $user) {
213 $all[] = $user[
"id"];
217 foreach ($roles as $role) {
218 $role_users = $this->rbac_review->assignedUsers($role[
"id"]);
219 foreach ($role_users as $user_id) {
220 if (!in_array($user_id, $all)) {
231 $this->profile_user_repo->addUserToProfile($profile_id, $user_id);
236 $this->profile_user_repo->removeUserFromProfile($profile_id, $user_id);
241 $this->profile_user_repo->removeUserFromAllProfiles($user_id);
252 $user_profiles = $this->profile_user_repo->getProfilesOfUser($user_id);
256 $user_roles = $this->rbac_review->assignedRoles($user_id);
257 foreach ($user_roles as $role) {
259 foreach ($profiles as $profile) {
260 $role_profiles[] = $profile;
265 $all_profiles = array_merge($user_profiles, $role_profiles);
267 foreach ($all_profiles as $v) {
268 if (!isset($temp_profiles[$v[
"id"]])) {
269 $temp_profiles[$v[
"id"]] = $v;
272 $all_profiles = array_values($temp_profiles);
273 return $all_profiles;
278 $count = $this->profile_user_repo->countUsers($profile_id);
284 $roles = $this->profile_role_repo->getAssignedRoles($profile_id);
290 $this->profile_role_repo->addRoleToProfile($profile_id, $role_id);
295 $this->profile_role_repo->removeRoleFromProfile($profile_id, $role_id);
300 $this->profile_role_repo->removeRoleFromAllProfiles($role_id);
309 $profiles = $this->profile_role_repo->getAllProfilesOfRole($role_id);
318 $profiles = $this->profile_role_repo->getGlobalProfilesOfRole($role_id);
324 $profiles = $this->profile_role_repo->getLocalProfilesOfRole($role_id, $ref_id);
330 $count = $this->profile_role_repo->countRoles($profile_id);
deleteProfileRoles(int $profile_id)
deleteProfilesFromObject(int $ref_id)
createProfile(SkillProfile $profile)
deleteProfile(int $profile_id)
Class ChatMainBarProvider .
removeRoleFromAllProfiles(int $role_id)
updateRefIdAfterImport(int $profile_id, int $new_ref_id)
Update the old ref id with the new ref id after import.
__construct(?\ILIAS\Skill\Profile\SkillProfileDBRepository $profile_repo=null, ?\ILIAS\Skill\Profile\SkillProfileLevelsDBRepository $profile_levels_repo=null, ?\ILIAS\Skill\Profile\SkillProfileUserDBRepository $profile_user_repo=null, ?\ILIAS\Skill\Profile\SkillProfileRoleDBRepository $profile_role_repo=null)
updateSkillOrder(int $profile_id, array $order)
SkillProfileLevelsDBRepository $profile_levels_repo
getAssignedUsers(int $profile_id)
SkillProfileUserDBRepository $profile_user_repo
getLocalProfilesForObject(int $ref_id)
addRoleToProfile(int $profile_id, int $role_id)
countRoles(int $profile_id)
lookupRefId(int $profile_id)
getLocalProfilesOfRole(int $role_id, int $ref_id)
getAssignedRoles(int $profile_id)
removeRoleFromProfile(int $profile_id, int $role_id)
SkillProfileDBRepository $profile_repo
getAssignments(int $profile_id)
Get all assignments (users and roles)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilRbacReview $rbac_review
getProfilesOfUser(int $user_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.
SkillProfileRoleDBRepository $profile_role_repo
deleteProfileUsers(int $profile_id)
getProfilesForAllSkillTrees()
getMaxLevelOrderNr(int $profile_id)
removeUserFromAllProfiles(int $user_id)
getAssignedUserIdsIncludingRoleAssignments(int $profile_id)
getTreeId(int $profile_id)
fixSkillOrderNumbering(int $profile_id)
getGlobalProfilesOfRole(int $role_id)
deleteProfileLevels(int $profile_id)
lookupTitle(int $profile_id)
addUserToProfile(int $profile_id, int $user_id)
updateProfile(SkillProfile $profile)
countUsers(int $profile_id)
getAssignedUsersForRole(int $role_id)