19 declare(strict_types=1);
56 $this->
ctrl = $DIC->ctrl();
57 $this->
upload = $DIC->upload();
58 $this->
http = $DIC->http();
67 return self::DEFAULT_FILE_ID_PARAMETER;
76 return $this->
ctrl->getLinkTargetByClass([static::class], self::CMD_UPLOAD);
85 return $this->
ctrl->getLinkTargetByClass([static::class], self::CMD_INFO);
94 return $this->
ctrl->getLinkTargetByClass([static::class], self::CMD_REMOVE);
99 $body = $this->
http->request()->getParsedBody();
100 $this->chunk_id = $body[
'dzuuid'] ??
null;
101 $this->amount_of_chunks = (
int) ($body[
'dztotalchunkcount'] ?? 0);
102 $this->chunk_index = (
int) ($body[
'dzchunkindex'] ?? 0);
103 $this->chunk_total_size = (
int) ($body[
'dztotalfilesize'] ?? 0);
104 $this->is_chunked = ($this->chunk_id !== null && $this->amount_of_chunks > 0);
110 switch ($this->
ctrl->getCmd()) {
111 case self::CMD_UPLOAD:
120 $content = json_encode(
130 case self::CMD_REMOVE:
140 $content = json_encode($this->
getInfoResult($file_identifier));
148 $this->
http->sendResponse();
149 $this->
http->close();
__construct()
ilUIDemoFileUploadHandlerGUI constructor.
executeCommand()
Since this is a ilCtrl aware UploadHandler executeCommand MUST be implemented.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static http()
Fetches the global http state from ILIAS.
getFileIdentifierParameterName()
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.
getInfoResult(string $identifier)
static ofString(string $string)
Creates a new stream with an initial value.
getRemoveResult(string $identifier)
getInfoForExistingFiles(array $file_ids)