19 declare(strict_types=1);
40 if (is_null(self::$instance)) {
44 return self::$instance;
74 'permission' =>
'read',
75 'cmd' => ControlFlowCommand::DEFAULT,
93 $t_arr = explode(
'_', $target);
94 if ($t_arr[0] !==
'etal' || ((
int) $t_arr[1]) <= 0) {
97 if ($access->canRead(intval($t_arr[1]))) {
121 if ($currentUserId === 6) {
126 if (!$this->talkPositionSettings->isActive()) {
130 $positions = $this->ua->getPositionsOfUserId($currentUserId);
133 if ($talkParticipant ===
null) {
134 foreach ($positions as $position) {
137 $isAbleToExecuteOperation = array_reduce($permissionSet->getOperations(),
function (
bool $prev,
ilOrgUnitOperation $it) {
138 return $prev || $it->getOperationString() === EmployeeTalkPositionAccessLevel::CREATE;
142 if (!$isAbleToExecuteOperation) {
154 return $this->hasAuthorityAndOperationPermissionOverUser($talkParticipant, EmployeeTalkPositionAccessLevel::CREATE);
163 return $this->hasAuthorityAndOperationPermissionOverUser(
new ilObjUser($userId), EmployeeTalkPositionAccessLevel::VIEW);
179 if ($currentUserId === 6) {
184 return $talk->getOwner() === $currentUserId;
204 if ($user === $talk->getOwner()) {
208 if ($this->container->rbac()->review()->isAssigned(
222 if ($currentUserId === 6) {
227 if (!$this->talkPositionSettings->isActive()) {
232 $series = $talk->getParent();
233 $hasAuthority = $this->hasAuthorityAndOperationPermissionOverUser(
new ilObjUser($talk->getData()->getEmployee()), $operation);
234 $data = $talk->getData();
235 $seriesSettings = $this->seriesSettingsRepository->readEmployeeTalkSerieSettings($series->getId());
236 $canExecuteOperation = $this->orgUnitAccess->checkPositionAccess($operation, $refId);
237 $isOwner = $talk->getOwner() === $currentUserId;
243 if ($currentUserId ===
$data->getEmployee()) {
245 if ($operation !== EmployeeTalkPositionAccessLevel::VIEW) {
254 if ($seriesSettings->isLockedEditing() && $operation === EmployeeTalkPositionAccessLevel::EDIT) {
259 if (!$hasAuthority) {
264 if ($canExecuteOperation) {
279 return !$this->
canEdit($ref_id);
287 return $this->container->user()->getId();
290 private function hasAuthorityAndOperationPermissionOverUser(
ilObjUser $user,
string $operation):
bool 292 $myStaffAccess = ilMyStaffAccess::getInstance();
294 $userId = $user->
getId();
299 $managedOrgUnitUsersOfUserByPosition = $myStaffAccess->getUsersForUserPerPosition($currentUserId);
301 foreach ($managedOrgUnitUsersOfUserByPosition as $position => $managedOrgUnitUserByPosition) {
304 $isAbleToExecuteOperation = array_reduce($permissionSet->getOperations(),
function (
bool $prev,
ilOrgUnitOperation $it) use ($operation) {
305 return $prev || $it->getOperationString() === $operation;
308 if (!$isAbleToExecuteOperation) {
312 foreach ($managedOrgUnitUserByPosition as $managedOrgUnitUser) {
313 if (intval($managedOrgUnitUser) === $userId) {
ilOrgUnitObjectTypePositionSetting $talkPositionSettings
ilOrgUnitUserAssignmentQueries $ua
IlOrgUnitPositionAccess $orgUnitAccess
static _isOffline($obj_id)
ilOrgUnitGlobalSettings $set
isPermittedToExecuteOperation(int $refId, string $operation)
static getTemplateSetForContextName(string $context_name, string $position_id, bool $editable=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
IliasDBEmployeeTalkSeriesRepository $seriesSettingsRepository
Customizing of pimple-DIC for ILIAS.
static _checkGoto($target)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
isTalkReadonlyByCurrentUser(int $ref_id)
static _getCommands()
get commands
canCreate(?ilObjUser $talkParticipant=null)
Checks if the user is allowed to create a new talks series.
canEditTalkLockStatus(int $refId)
hasPermissionToReadUnownedTalksOfUser(int $userId)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...