3 declare(strict_types=1);
57 return $this->obj->getTitle();
66 return $this->getChildByParentRefId(
67 $this->repository_helper,
69 $this->obj->getRefId(),
79 return $this->getChildrenByParentRefId(
80 $this->repository_helper,
82 $this->obj->getRefId()
92 return $this->checkIfChildExistsByParentRefId(
93 $this->repository_helper,
95 $this->obj->getRefId(),
106 if (!$this->repository_helper->checkAccess(
"write", $this->obj->getRefId())) {
107 throw new Forbidden(
'Permission denied');
110 if ($this->isDAVableObjTitle(
$name)) {
111 $this->obj->setTitle(
$name);
112 $this->obj->update();
114 throw new Forbidden(
'Forbidden characters in title');
124 if (!$this->repository_helper->checkCreateAccessForType($this->obj->getRefId(),
'file')) {
125 throw new Forbidden(
'Permission denied');
128 $size = $this->request->getHeader(
"Content-Length")[0] ?? 0;
129 if ($size === 0 && $this->request->hasHeader(
'X-Expected-Entity-Length')) {
130 $size = $this->request->getHeader(
'X-Expected-Entity-Length')[0];
134 throw new Forbidden(
'File is too big');
142 $file_obj->setTitle(
$name);
143 $file_obj->setFileName(
$name);
145 $file_dav = $this->dav_factory->createDAVObject($file_obj, $this->obj->getRefId());
147 throw new Forbidden(
'Forbidden characters in title');
151 return $file_dav->put(
$data);
162 if (!$this->repository_helper->checkCreateAccessForType($this->obj->getRefId(), $new_obj->getType())) {
163 throw new Forbidden(
'Permission denied');
167 $new_obj->setOwner($this->current_user->getId());
168 $new_obj->setTitle(
$name);
169 $this->dav_factory->createDAVObject($new_obj, $this->obj->getRefId());
171 throw new Forbidden(
'Forbidden characters in title');
175 public function delete():
void 177 $this->repository_helper->deleteObject($this->obj->getRefId());
182 return $this->retrieveLastModifiedAsIntFromObjectLastUpdateString($this->obj->getLastUpdateDate());
187 if (get_class($this->obj) ===
'ilObjCategory') {
ilWebDAVRepositoryHelper $repository_helper
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilWebDAVObjFactory $dav_factory
createFile($name, $data=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getUploadSizeLimitBytes()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(ilContainer $obj, ilObjUser $current_user, RequestInterface $request, ilWebDAVObjFactory $dav_factory, ilWebDAVRepositoryHelper $repository_helper)
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...
RequestInterface $request