51 private \ILIAS\ResourceStorage\Services
$storage;
52 private \ILIAS\DI\UIServices
$ui;
74 $this->
ctrl = $DIC->ctrl();
75 $this->tpl = $DIC->ui()->mainTemplate();
76 $this->
tabs = $DIC->tabs();
77 $this->
http = $DIC->http();
78 $this->
lng = $DIC->language();
79 $this->ref_id = $this->
http->wrapper()->query()->retrieve(
'ref_id', $DIC->refinery()->kindlyTo()->int());
80 $this->
toolbar = $DIC->toolbar();
81 $this->
access = $DIC->access();
82 $this->storage = $DIC->resourceStorage();
83 $this->file_service_settings = $DIC->fileServiceSettings();
84 $this->
ui = $DIC->ui();
88 $this->tree = $DIC->repositoryTree();
93 $this->version_id = $this->
http->wrapper()->query()->has(self::HIST_ID)
94 ? $this->
http->wrapper()->query()->retrieve(self::HIST_ID, $DIC->refinery()->kindlyTo()->int())
105 $cmd = $this->
ctrl->getCmd(self::CMD_DEFAULT);
107 case self::CMD_DEFAULT:
110 case self::CMD_DOWNLOAD_VERSION:
113 case self::CMD_DELETE_VERSIONS:
116 case self::CMD_ROLLBACK_VERSION:
119 case self::CMD_ADD_NEW_VERSION:
122 case self::CMD_ADD_REPLACING_VERSION:
125 case self::CMD_CREATE_NEW_VERSION:
128 case self::CMD_CREATE_REPLACING_VERSION:
131 case self::CMD_CONFIRMED_DELETE_VERSIONS:
134 case self::CMD_CONFIRMED_DELETE_FILE:
137 case self::CMD_UNZIP_CURRENT_REVISION:
140 case self::CMD_PROCESS_UNZIP:
152 $this->
tabs->clearTargets();
153 $this->
tabs->setBackTarget(
154 $this->
lng->txt(
'back'),
155 $this->
ctrl->getLinkTarget($this, self::CMD_DEFAULT)
163 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
164 $this->
ctrl->returnToParent($this);
166 switch ($this->
ctrl->getNextClass()) {
167 case strtolower(ilFileVersionsUploadHandlerGUI::class):
168 $this->
ctrl->forwardCommand(
183 $this->tpl->setContent(
184 $this->
ui->renderer()->render(
193 $data = $form->getData();
196 $file_rid = $this->storage->manage()->find(
$data[self::KEY_FILE_RID]);
197 if (null !== $file_rid) {
199 $processor->process($file_rid);
201 if ($processor->getInvalidFileNames() !== []) {
202 $this->
ui->mainTemplate()->setOnScreenMessage(
205 $this->
lng->txt(
'file_upload_info_file_with_critical_extension'),
206 implode(
', ', $processor->getInvalidFileNames())
212 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_unzip_success'),
true);
213 $this->
ctrl->setParameterByClass(ilRepositoryGUI::class,
"ref_id", $this->parent_id);
214 $this->
ctrl->redirectByClass(ilRepositoryGUI::class);
217 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'file_not_found'));
220 $this->tpl->setContent(
221 $this->
ui->renderer()->render(
231 $add_version->setCaption(
'file_new_version');
232 $add_version->setUrl($this->
ctrl->getLinkTarget($this, self::CMD_ADD_NEW_VERSION));
233 $this->
toolbar->addButtonInstance($add_version);
236 $replace_version->setCaption(
'replace_file');
237 $replace_version->setUrl($this->
ctrl->getLinkTarget($this, self::CMD_ADD_REPLACING_VERSION));
238 $this->
toolbar->addButtonInstance($replace_version);
243 if (null !== $current_file_revision &&
244 in_array($current_file_revision->getInformation()->getMimeType(), [MimeType::APPLICATION__ZIP, MimeType::APPLICATION__X_ZIP_COMPRESSED],
true)
247 $unzip_button->setCaption($this->
lng->txt(
'unzip'),
false);
248 $unzip_button->setUrl(
249 $this->
ctrl->getLinkTargetByClass(
251 self::CMD_UNZIP_CURRENT_REVISION
255 $this->
toolbar->addButtonInstance($unzip_button);
259 $this->tpl->setContent($table->getHTML());
267 $this->tpl->setContent($form->getHTML());
277 if ($form->saveObject()) {
278 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_obj_modified'),
true);
279 $this->
ctrl->redirect($this, self::CMD_DEFAULT);
281 $this->tpl->setContent($form->getHTML());
287 $this->file->sendFile($this->version_id);
295 $existing_versions = $this->file->getVersions();
296 $remaining_versions = array_udiff(
299 static function (
$a,
$b) {
301 $a =
$a->getHistEntryId();
303 if (
$b instanceof ilObjFileVersion) {
304 $b =
$b->getHistEntryId();
310 if (count($version_ids) < 1) {
311 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"no_checkbox"),
true);
312 $this->
ctrl->redirect($this, self::CMD_DEFAULT);
315 $conf_gui->setFormAction($this->
ctrl->getFormAction($this, self::CMD_DEFAULT));
316 $conf_gui->setCancel($this->
lng->txt(
"cancel"), self::CMD_DEFAULT);
319 $alt = $this->
lng->txt(
"icon") .
" " . $this->
lng->txt(
"obj_" . $this->file->getType());
321 if (count($remaining_versions) < 1) {
323 $conf_gui->setHeaderText($this->
lng->txt(
'file_confirm_delete_all_versions'));
324 $conf_gui->setConfirm($this->
lng->txt(
"confirm"), self::CMD_CONFIRMED_DELETE_FILE);
328 $this->file->getTitle(),
334 $conf_gui->setHeaderText($this->
lng->txt(
'file_confirm_delete_versions'));
335 $conf_gui->setConfirm($this->
lng->txt(
"confirm"), self::CMD_CONFIRMED_DELETE_VERSIONS);
337 foreach ($this->file->getVersions($version_ids) as
$version) {
338 $a_text =
$version[
'filename'] ??
$version->getFilename() ?? $this->file->getTitle();
340 $a_text .=
" (v" . $version_string .
")";
351 $this->tpl->setContent($conf_gui->getHTML());
360 if (count($version_ids) != 1) {
361 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"file_rollback_select_exact_one"),
true);
362 $this->
ctrl->redirect($this, self::CMD_DEFAULT);
366 $this->file->rollback($version_ids[0]);
368 $this->tpl->setOnScreenMessage(
'success', sprintf($this->
lng->txt(
"file_rollback_done"),
''),
true);
369 $this->
ctrl->redirect($this, self::CMD_DEFAULT);
376 if (is_array($versions_to_delete) && $versions_to_delete !== []) {
377 $this->file->deleteVersions($versions_to_delete);
378 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"file_versions_deleted"),
true);
381 $this->
ctrl->setParameter($this, self::HIST_ID,
"");
382 $this->
ctrl->redirect($this, self::CMD_DEFAULT);
387 $parent_id = $this->tree->getParentId($this->ref_id);
392 $this->
ctrl->setParameterByClass(ilRepositoryGUI::class,
"ref_id", $parent_id);
393 $this->
ctrl->redirectByClass(ilRepositoryGUI::class);
405 $request = $this->
http->request();
408 if (isset($request->getQueryParams()[self::HIST_ID])) {
409 $version_ids = [$request->getQueryParams()[self::HIST_ID]];
410 } elseif (isset($request->getParsedBody()[self::HIST_ID])) {
411 $version_ids = (array) $request->getParsedBody()[self::HIST_ID];
414 array_walk($version_ids,
static function (&
$i):
void {
427 $versions_to_keep = $this->file->getVersions();
428 array_udiff($versions_to_keep, $version_ids,
static function ($v1, $v2):
bool {
430 $v1 = (
int) $v1[
"hist_entry_id"];
432 if (!is_numeric($v1)) {
437 if (is_array($v2) || $v2 instanceof ilObjFileVersion) {
438 $v2 = (
int) $v2[
"hist_entry_id"];
440 if (!is_numeric($v2)) {
448 return $versions_to_keep;
461 if ($this->wsp_access->checkAccess($a_permission,
"", $this->ref_id)) {
466 if ($this->
access->checkAccess($a_permission,
'', $this->ref_id)) {
476 return $this->
ui->factory()->input()->container()->form()->standard(
477 $this->
ctrl->getFormActionByClass(self::class, self::CMD_PROCESS_UNZIP),
479 self::KEY_FILE_RID => $this->
ui->factory()->input()->field()->hidden()->withValue($this->file->getResourceId()),
480 self::KEY_FILE_STRUCTURE => $this->
ui->factory()->input()->field()->checkbox(
481 $this->
lng->txt(
'take_over_structure'),
482 $this->
lng->txt(
'take_over_structure_info'),
492 if ($keep_structure) {
496 $this->file->getId(),
501 $this->file_service_settings,
509 $this->file->getId(),
514 $this->file_service_settings,
521 $file_rid = $this->storage->manage()->find($this->file->getResourceId());
522 if (null !== $file_rid) {
523 return $this->storage->manage()->getCurrentRevision($file_rid);
538 return $this->
http->wrapper()->query()->has(
'wsp_id');
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getVersionIdsFromRequest()
static deleteObjects(int $a_cur_ref_id, array $a_ids, bool $throw_error_on_already_deleted=true)
Delete objects.
const CMD_DELETE_VERSIONS
Class ilObjFileStakeholder.
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Interface ilObjFileProcessorInterface.
saveVersion(int $mode=ilFileVersionFormGUI::MODE_ADD)
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...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS ResourceStorage Services $storage
const CMD_DOWNLOAD_VERSION
ilGlobalTemplateInterface $tpl
const CMD_CONFIRMED_DELETE_VERSIONS
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 http()
Fetches the global http state from ILIAS.
ilWorkspaceAccessHandler $wsp_access
hasPermission(string $a_permission)
bugfix mantis 26007: this function was created to ensure that the access check not only works for rep...
addVersion(int $mode=ilFileVersionFormGUI::MODE_ADD)
const CMD_UNZIP_CURRENT_REVISION
Class ilFileVersionsUploadHandlerGUI.
Class ilFileVersionsTableGUI.
const CMD_CONFIRMED_DELETE_FILE
getParentId(int $a_node_id)
get parent id of given node
__construct(ilObjFile $file)
ilFileVersionsGUI constructor.
const CMD_ADD_REPLACING_VERSION
getVersionsToKeep(array $version_ids)
GUI class for file objects.
const CMD_ADD_NEW_VERSION
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
ilFileServicesSettings $file_service_settings
Class FileNotFoundException.
const CMD_ROLLBACK_VERSION
getFileProcessor(bool $keep_structure)
Class ilObjFileUnzipRecursiveProcessor.
const CMD_CREATE_REPLACING_VERSION
const CMD_CREATE_NEW_VERSION
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilObjFileUnzipFlatProcessor.