110 private \ILIAS\ResourceStorage\Services
$irss;
124 $this->
ctrl = $DIC->ctrl();
125 $this->main_tpl = $DIC->ui()->mainTemplate();
126 $this->ui_renderer = $DIC->ui()->renderer();
127 $this->ui_factory = $DIC->ui()->factory();
128 $this->
http = $DIC->http();
131 $this->
language->loadLanguageModule(
'irss');
132 $this->irss = $DIC->resourceStorage();
133 $this->
upload = $DIC->upload();
135 $this->view_request =
new Request(
137 $DIC->http()->wrapper()->query(),
138 $this->view_configuration
142 $this->view_request->init($this);
146 $this->view_configuration->getActionProvider()
154 $DIC->ui()->factory(),
164 $DIC->ui()->factory(),
171 $DIC->ui()->factory(),
178 $this->action_builder,
179 $view_control_builder,
188 $this->main_tpl->setOnScreenMessage(
'failure', $this->
language->txt(
'msg_no_perm_read'),
true);
189 $this->
ctrl->redirect($this, self::CMD_INDEX);
194 if ($this->view_request->handleViewTitle()) {
195 $title = $this->view_request->getTitle();
196 if ($title !==
null) {
197 $this->main_tpl->setTitle($title);
199 $description = $this->view_request->getDescription();
200 if ($description !==
null) {
201 $this->main_tpl->setDescription($description);
205 switch ($this->
ctrl->getCmd(self::CMD_INDEX)) {
206 case self::CMD_INDEX:
209 case self::CMD_UPLOAD:
212 case self::CMD_POST_UPLOAD:
215 case self::CMD_REMOVE:
218 case self::CMD_DOWNLOAD:
221 case self::CMD_UNZIP:
224 case self::CMD_RENDER_CONFIRM_REMOVE:
227 case self::ADD_DIRECTORY:
230 case self::CMD_DOWNLOAD_ZIP:
246 $this->action_provider->getComponents()
250 foreach ($this->view_factory->getComponentProvider($this->view_request)->getComponents() as $component) {
254 $this->main_tpl->setContent(
255 $this->ui_renderer->render(
263 $this->irss->consume()->download(
264 $this->view_configuration->getContainer()->getIdentification()
265 )->overrideFileName($this->view_request->getTitle())->run();
270 if (!$this->view_request->canUserAdministrate()) {
274 $modal = $this->standard_action_provider->getAddDirectoryModal()->withRequest($this->
http->request());
276 $directory_name = $modal->getData()[0] ??
'';
277 if (empty($directory_name)) {
278 $this->main_tpl->setOnScreenMessage(
'failure', $this->
language->txt(
'msg_error_adding_directory'),
true);
279 $this->
ctrl->redirect($this, self::CMD_INDEX);
282 $directory_name = $this->view_request->getPath() . $directory_name;
284 $success = $this->irss->manageContainer()->createDirectoryInsideContainer(
285 $this->view_configuration->getContainer()->getIdentification(),
290 $this->main_tpl->setOnScreenMessage(
'failure', $this->
language->txt(
'msg_error_adding_directory'),
true);
291 $this->
ctrl->redirect($this, self::CMD_INDEX);
295 $this->main_tpl->setOnScreenMessage(
'success', $this->
language->txt(
'msg_success_adding_directory'),
true);
296 $this->
ctrl->redirect($this, self::CMD_INDEX);
301 if (!$this->view_request->canUserUplaod()) {
306 if (!$this->
upload->hasUploads()) {
309 $container = $this->view_configuration->getContainer();
311 foreach ($this->
upload->getResults() as $result) {
312 if (!$result->isOK()) {
316 $return = $this->irss->manageContainer()->addUploadToContainer(
319 $this->view_request->getPath()
326 $return ? BasicHandlerResult::STATUS_OK : BasicHandlerResult::STATUS_FAILED,
330 $response = $this->
http->response()->withBody(Streams::ofString(json_encode($upload_result)));
332 $this->
http->sendResponse();
333 $this->
http->close();
338 if (!$this->view_request->canUserUplaod()) {
342 if ($this->
http->request()->getParsedBody() === []) {
343 $this->main_tpl->setOnScreenMessage(
'failure', $this->
language->txt(
'rids_appended_failed'),
true);
345 $this->main_tpl->setOnScreenMessage(
'success', $this->
language->txt(
'rids_appended'),
true);
348 $this->
ctrl->redirect($this, self::CMD_INDEX);
355 $this->view_request->getWrapper()->download(
362 $unhash = fn(
string $path):
string => $this->unhash($path);
363 $unhash_array =
static fn(array $paths): array =>
array_map(
367 $to_string = $this->
refinery->kindlyTo()->string();
368 $to_array_of_strings = $this->
refinery->kindlyTo()->listOf(
373 $token_name = $this->action_builder->getUrlToken()->getName();
374 if ($this->
http->wrapper()->query()->has($token_name)) {
375 return $unhash_array(
376 $this->
http->wrapper()->query()->retrieve(
383 if ($this->
http->wrapper()->post()->has(
'interruptive_items')) {
384 return $unhash_array(
385 $this->
http->wrapper()->post()->retrieve(
386 'interruptive_items',
397 if (!$this->view_request->canUserAdministrate()) {
402 $this->view_request->getWrapper()->unzip(
411 if (!$this->view_request->canUserAdministrate()) {
417 $stream = Streams::ofString(
418 $this->ui_renderer->render(
419 $this->ui_factory->modal()->interruptive(
420 $this->
language->txt(
'action_remove_zip_path'),
421 $this->
language->txt(
'action_remove_zip_path_msg'),
422 $this->
ctrl->getLinkTarget($this, self::CMD_REMOVE)
423 )->withAffectedItems(
424 array_map(fn(
string $path_inside_zip):
Standard => $this->ui_factory->modal()->interruptiveItem()->standard(
425 $this->
hash($path_inside_zip),
431 $this->
http->saveResponse($this->
http->response()->withBody($stream));
432 $this->
http->sendResponse();
433 $this->
http->close();
436 private function remove():
void 438 if (!$this->view_request->canUserAdministrate()) {
445 $this->main_tpl->setOnScreenMessage(
'failure', $this->
language->txt(
'msg_no_perm_read'),
true);
446 $this->
ctrl->redirect($this, self::CMD_INDEX);
450 foreach ($paths as $path_inside_zip) {
451 $this->irss->manageContainer()->removePathInsideContainer(
452 $this->view_configuration->getContainer()->getIdentification(),
457 $this->main_tpl->setOnScreenMessage(
'success', $this->
language->txt(
'msg_paths_deleted'),
true);
458 $this->
ctrl->redirect($this, self::CMD_INDEX);
468 $token = $this->action_builder->getUrlToken();
469 $wrapper = $this->
http->wrapper();
470 $to_string = $this->
refinery->kindlyTo()->string();
471 $to_array_of_string = $this->
refinery->to()->listOf($to_string);
474 if ($wrapper->query()->has(
$token->getName())) {
476 $rid_string = $wrapper->query()->retrieve(
480 $rid_strings = explode(
',', (
string) $rid_string);
482 $rid_strings = $wrapper->query()->retrieve(
489 if ($wrapper->post()->has(
'interruptive_items')) {
490 $rid_strings = $wrapper->post()->retrieve(
491 'interruptive_items',
496 if ($rid_strings[0] ===
'ALL_OBJECTS') {
497 return $this->view_request->getWrapper()->getResourceIdentifications();
500 if ($rid_strings === []) {
503 $resource_identifications = [];
504 foreach ($rid_strings as $rid_string) {
505 $resource_identification = $this->irss->manage()->find($this->unhash($rid_string));
506 if ($resource_identification ===
null) {
509 $resource_identifications[] = $resource_identification;
511 return $resource_identifications;
523 return $this->
ctrl->getLinkTarget($this, self::CMD_UPLOAD);
533 return $this->
ctrl->getLinkTarget($this, self::CMD_INFO);
ILIAS UI Factory $ui_factory
ilGlobalTemplateInterface $main_tpl
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getInfoForExistingFiles(array $file_ids)
getResourceIdsFromRequest()
ILIAS ResourceStorage Services $irss
StandardActionProvider $standard_action_provider
ActionProvider $action_provider
ViewControlBuilder $view_control_builder
abortWithPermissionDenied()
Interface InterruptiveItem.
const CMD_RENDER_CONFIRM_REMOVE
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(private Configuration $view_configuration)
static http()
Fetches the global http state from ILIAS.
getFileIdentifierParameterName()
Class BasicHandlerResult.
ActionBuilder $action_builder
Interface FileInfoResult.
getInfoResult(string $identifier)
PreviewDefinition $preview_definition
language()
description: > Example for rendring a language glyph.
ViewFactory $view_factory