3 declare(strict_types=1);
53 $this->
ctrl = $DIC->ctrl();
54 $this->
upload = $DIC->upload();
55 $this->
http = $DIC->http();
64 return self::DEFAULT_FILE_ID_PARAMETER;
73 return $this->
ctrl->getLinkTargetByClass([static::class], self::CMD_UPLOAD);
82 return $this->
ctrl->getLinkTargetByClass([static::class], self::CMD_INFO);
91 return $this->
ctrl->getLinkTargetByClass([static::class], self::CMD_REMOVE);
96 $body = $this->
http->request()->getParsedBody();
97 $this->chunk_id = $body[
'dzuuid'] ?? null;
98 $this->amount_of_chunks = (
int) ($body[
'dztotalchunkcount'] ?? 0);
99 $this->chunk_index = (
int) ($body[
'dzchunkindex'] ?? 0);
100 $this->chunk_total_size = (
int) ($body[
'dztotalfilesize'] ?? 0);
101 $this->is_chunked = ($this->chunk_id !== null && $this->amount_of_chunks > 0);
107 switch ($this->
ctrl->getCmd()) {
108 case self::CMD_UPLOAD:
117 $content = json_encode(
127 case self::CMD_REMOVE:
137 $content = json_encode($this->
getInfoResult($file_identifier));
145 $this->
http->sendResponse();
146 $this->
http->close();
executeCommand()
Since this is a ilCtrl aware UploadHandler executeCommand MUST be implemented.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static http()
Fetches the global http state from ILIAS.
getRemoveResult(string $identifier)
getInfoResult(string $identifier)
Class BasicHandlerResult.
Class ilCtrlAwareUploadHandler.
Interface FileInfoResult.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilCtrlAwareUploadHandler.
static ofString(string $string)
Creates a new stream with an initial value.
__construct()
ilUIDemoFileUploadHandlerGUI constructor.
getFileIdentifierParameterName()
getInfoForExistingFiles(array $file_ids)