3 declare(strict_types=1);
60 bool $versioning_enabled
74 throw new Forbidden(
"No read permission for object with reference ID $ref_id");
83 $ilias_object_type = $ilias_object->getType();
85 if (!in_array($ilias_object_type, $this->davable_object_types)) {
89 if ($this->isHiddenFile($ilias_object->getTitle())) {
93 if ($this->hasTitleForbiddenChars($ilias_object->getTitle())) {
97 if ($ilias_object_type ===
'file') {
100 $this->repository_helper,
101 $this->resource_storage,
104 $this->versioning_enabled
113 $this->repository_helper
119 if (!$this->isDAVableObjTitle($ilias_object->
getTitle())) {
123 if ($ilias_object->
getType() ===
'file' &&
124 !$this->hasValidFileExtension($ilias_object->
getTitle())) {
131 $ilias_object->
putInTree($parent_ref_id);
134 if ($ilias_object->
getType() ===
'file') {
137 $this->repository_helper,
138 $this->resource_storage,
141 $this->versioning_enabled
150 $this->repository_helper
161 return new ilDAVMountPoint($this->client_id, $this, $this->repository_helper, $this->current_user);
166 if ($name !== $this->client_id) {
167 throw new NotFound();
170 return new ilDAVClientNode($this->client_id, $this, $this->repository_helper);
175 return $this->repository_helper->checkAccess(
"visible", $child_ref) && $this->repository_helper->checkAccess(
"read", $child_ref);
retrieveDAVObjectByRefID(int $ref_id)
const OBJECT_TYPE_NOT_DAVABLE
const OBJECT_TITLE_NOT_DAVABLE
getProblemInfoFile(int $container_ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setPermissions(int $parent_ref_id)
__construct(ilWebDAVRepositoryHelper $repository_helper, ilObjUser $current_user, Services $resource_storage, RequestInterface $request, ilLanguage $language, string $client_id, bool $versioning_enabled)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getClientNode(string $name)
This class represents the absolut Root-Node on a WebDAV request.
createReference()
creates reference for object
createDAVObject(ilObject $ilias_object, int $parent_ref_id)
create()
note: title, description and type should be set when this function is called
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...
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
RequestInterface $request
putInTree(int $parent_ref_id)
maybe this method should be in tree object!?
ilWebDAVRepositoryHelper $repository_helper
array $davable_object_types
Services $resource_storage
checkReadAndVisibleAccessForObj(int $child_ref)