19 declare(strict_types=1);
47 return $this->obj->getTitle();
56 return $this->getChildByParentRefId(
57 $this->repository_helper,
59 $this->obj->getRefId(),
69 return $this->getChildrenByParentRefId(
70 $this->repository_helper,
72 $this->obj->getRefId()
82 return $this->checkIfChildExistsByParentRefId(
83 $this->repository_helper,
85 $this->obj->getRefId(),
96 if (!$this->repository_helper->checkAccess(
"write", $this->obj->getRefId())) {
97 throw new Forbidden(
'Permission denied');
100 if ($this->isDAVableObjTitle($name)) {
101 $this->obj->setTitle($name);
102 $this->obj->update();
104 throw new Forbidden(
'Forbidden characters in title');
114 if (!$this->repository_helper->checkCreateAccessForType($this->obj->getRefId(),
'file')) {
115 throw new Forbidden(
'Permission denied');
118 $size = (
int) ($this->request->getHeader(
"Content-Length")[0] ?? 0);
119 if ($size === 0 && $this->request->hasHeader(
'X-Expected-Entity-Length')) {
120 $size = (
int) ($this->request->getHeader(
'X-Expected-Entity-Length')[0] ?? 0);
124 throw new Forbidden(
'File is too big');
134 $file_obj->setTitle($name);
136 $file_dav = $this->dav_factory->createDAVObject($file_obj, $this->obj->getRefId());
138 throw new Forbidden(
'Forbidden characters in title');
143 return $file_dav->put(
$data, $name);
157 if (!$this->repository_helper->checkCreateAccessForType($this->obj->getRefId(), $new_obj->getType())) {
158 throw new Forbidden(
'Permission denied');
162 $new_obj->setOwner($this->current_user->getId());
163 $new_obj->setTitle($name);
164 $this->dav_factory->createDAVObject($new_obj, $this->obj->getRefId());
166 throw new Forbidden(
'Forbidden characters in title');
170 public function delete():
void 172 $this->repository_helper->deleteObject($this->obj->getRefId());
177 return $this->retrieveLastModifiedAsIntFromObjectLastUpdateString($this->obj->getLastUpdateDate());
182 if ($this->obj::class ===
'ilObjCategory') {
createFile($name, $data=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
extractSuffixFromFilename(string $filename)
trait ilObjFileSecureString
Trait ilObjFileSecureString.
static getPhpUploadSizeLimitInBytes()
__construct(protected ilObject $obj, protected ilObjUser $current_user, protected RequestInterface $request, protected ilWebDAVObjFactory $dav_factory, protected ilWebDAVRepositoryHelper $repository_helper)
ensureSuffix(string $title, ?string $suffix=null)