19 declare(strict_types=1);
37 if ($position_id === 0) {
40 if ($parent_id <= 0) {
44 $context = $this->contextRepo->getByRefId($parent_id);
46 throw new ilException(
'Context for ref_id ' . $parent_id .
' not found');
51 "Position-related permissions not active in {$context->getContext()}",
56 $permission = $this->
find($parent_id, $position_id);
63 ->withParentId($parent_id)
65 ->withPositionId($position_id)
66 ->withOperations($template->getOperations())
67 ->withProtected(
false);
68 $permission = $this->
store($permission);
75 if ($position_id === 0) {
78 if ($parent_id <= 0) {
82 $context = $this->contextRepo->getByRefId($parent_id);
91 $query =
'SELECT id, parent_id, context_id, position_id, protected, operations FROM' . PHP_EOL
93 .
' WHERE ' . self::TABLE_NAME .
'.parent_id = ' . $this->db->quote($parent_id,
'integer') . PHP_EOL
94 .
' AND ' . self::TABLE_NAME .
'.position_id = ' . $this->db->quote($position_id,
'integer') . PHP_EOL
95 .
' AND ' . self::TABLE_NAME .
'.context_id = ' . $this->db->quote(
$context->getId(),
'integer') . PHP_EOL;
96 $res = $this->db->query($query);
97 if (
$res->numRows() === 0) {
101 $rec = $this->db->fetchAssoc(
$res);
103 ->withParentId((
int) $rec[
"parent_id"])
104 ->withContextId((
int) $rec[
'context_id'])
105 ->withPositionId((
int) $rec[
'position_id'])
106 ->withProtected((
bool) $rec[
'protected'])
107 ->withOperations($this->
convertToArray((
string) $rec[
"operations"]));
109 $ret = $this->
update($ret);
115 if ($permission->
getId() === 0) {
116 $permission = $this->
insertDB($permission);
119 throw new ilException(
"Protected permission " . $permission->
getId() .
" can not be updated");
127 $permission = $this->
update($permission);
133 $id = $this->db->nextId(self::TABLE_NAME);
136 'id' => [
'integer',
$id ],
137 'parent_id' => [
'string', $permission->
getParentId()],
138 'context_id' => [
'string', $permission->
getContextId()],
139 'position_id' => [
'integer', $permission->
getPositionId() ],
140 'protected' => [
'integer', ($permission->
isProtected()) ? 1 : 0],
144 $this->db->insert(self::TABLE_NAME, $values);
156 $where = [
'id' => [
'integer', $permission->
getId() ] ];
159 'parent_id' => [
'string', $permission->
getParentId()],
160 'context_id' => [
'string', $permission->
getContextId()],
161 'position_id' => [
'integer', $permission->
getPositionId() ],
162 'protected' => [
'integer', ($permission->
isProtected()) ? 1 : 0],
166 $this->db->update(self::TABLE_NAME, $values, $where);
169 public function delete(
int $parent_id,
int $position_id):
bool 171 if ($position_id === 0) {
174 if ($parent_id <= 0) {
178 $context = $this->contextRepo->getByRefId($parent_id);
180 throw new ilException(
'Context for ref_id ' . $parent_id .
' not found');
185 "Position-related permissions not active in {$context->getContext()}",
190 $permission = $this->
find($parent_id, $position_id);
192 $query =
'DELETE FROM ' . self::TABLE_NAME . PHP_EOL
193 .
' WHERE id = ' . $this->db->quote($permission->getId(),
'integer');
194 $this->db->manipulate($query);
206 $this->operationRepo->getOperationsByContextId($permission->
getContextId())
211 $selected_operation_ids = [];
213 $selected_operation_ids[] = $operation->getOperationId();
217 $this->contextRepo->getById($permission->
getContextId())
225 if ($position_id === 0) {
229 $context = $this->contextRepo->getByRefId($parent_id);
231 throw new ilException(
'Context for ref_id ' . $parent_id .
' not found');
236 "Position-related permissions not active in {$context->getContext()}",
241 $permission = $this->
find($parent_id, $position_id);
251 if ($position_id === 0) {
255 $context = $this->contextRepo->find($context_name);
257 throw new ilException(
'Context ' . $context_name .
' not found');
261 $query =
'SELECT id, parent_id, context_id, position_id, protected, operations FROM' . PHP_EOL
264 .
' AND ' . self::TABLE_NAME .
'.position_id = ' . $this->db->quote($position_id,
'integer') . PHP_EOL
265 .
' AND ' . self::TABLE_NAME .
'.context_id = ' . $this->db->quote(
$context->getId(),
'integer') . PHP_EOL;
266 $res = $this->db->query($query);
267 if (
$res->numRows() > 0) {
268 $rec = $this->db->fetchAssoc(
$res);
270 ->withParentId((
int) $rec[
"parent_id"])
271 ->withContextId((
int) $rec[
'context_id'])
272 ->withPositionId((
int) $rec[
'position_id'])
273 ->withProtected((
bool) $rec[
'protected'])
274 ->withOperations($this->
convertToArray((
string) $rec[
"operations"]));
275 $template = $this->
update($template);
282 ->withPositionId($position_id)
283 ->withProtected(
true);
284 $template = $this->
store($template);
287 $template = $template->withProtected(!$editable);
288 $template = $this->
update($template);
295 $active_contexts = [];
297 if ($ilOrgUnitObjectPositionSetting->isActive()) {
298 $active_contexts[] = $ilOrgUnitObjectPositionSetting->getType();
303 foreach ($active_contexts as
$context) {
313 $ilOrgUnitObjectPositionSetting = $ilOrgUnitGlobalSettings->getObjectPositionSettingsByType($context);
314 if (!$ilOrgUnitObjectPositionSetting->isActive()) {
327 $ids = json_decode($operations);
329 foreach ($ids as $operation_id) {
330 $ret[] = $this->operationRepo->getById((
int) $operation_id);
342 foreach ($operations as $operation) {
343 $ids[] = $operation->getOperationId();
345 return json_encode($ids);
isContextEnabled(string $context)
insertDB(ilOrgUnitPermission $permission)
convertToArray(string $operations)
This will be replaced in a future update including a migration for existing db entries.
update(ilOrgUnitPermission $permission)
Update/refresh the additional fields of the permssion object (e.g.
store(ilOrgUnitPermission $permission)
Store permission to db Returns permission with updated fields (see update())
ilOrgUnitOperationDBRepository $operationRepo
getLocalorDefault(int $parent_id, int $position_id)
Get an existing local permission.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
updateDB(ilOrgUnitPermission $permission)
withOperations(array $operations)
withPossibleOperations(array $possible_operations)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
convertToJson(array $operations)
This will be replaced in a future update including a migration for existing db entries.
withProtected(bool $protected)
find(int $parent_id, int $position_id)
Find local permission for parent and position Does not create new local permissions, returns null if no local permission exists.
__construct(ilDBInterface $db, ilOrgUnitOperationDBRepository $operationRepo, ilOrgUnitOperationContextDBRepository $contextRepo)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
getDefaultForContext(string $context_name, int $position_id, bool $editable=false)
Get the default setting for a specified context If the setting does not exist, it is created (if perm...
ilOrgUnitOperationContextDBRepository $contextRepo
withSelectedOperationIds(array $selected_operation_ids)
getDefaultsForActiveContexts(int $position_id, bool $editable=false)
Get an array of default settings for all active contexts If the settings don't exist yet...
withContext(ilOrgUnitOperationContext $context)