72 private \ILIAS\ResourceStorage\Services
$irss;
84 $this->
ctrl = $DIC->ctrl();
85 $this->main_tpl = $DIC->ui()->mainTemplate();
86 $this->ui_renderer = $DIC->ui()->renderer();
87 $this->ui_factory = $DIC->ui()->factory();
88 $this->
http = $DIC->http();
91 $this->
language->loadLanguageModule(
'irss');
92 $this->irss = $DIC->resourceStorage();
93 $this->
upload = $DIC->upload();
94 $this->archive = $DIC->archives();
97 $this->view_request =
new Request(
99 $DIC->http()->wrapper()->query(),
100 $this->view_configuration
108 $DIC->ui()->factory(),
117 $DIC->ui()->factory(),
124 $DIC->ui()->factory(),
131 $this->action_builder,
132 $view_control_builder,
146 if ($rid ===
null || !$this->view_request->getCollection()->isIn($rid)) {
154 $this->main_tpl->setOnScreenMessage(
'failure', $this->
language->txt(
'msg_no_perm_read'),
true);
155 $this->
ctrl->redirect($this, self::CMD_INDEX);
160 if ($this->view_request->handleViewTitle()) {
161 $title = $this->view_request->getTitle();
162 if ($title !==
null) {
163 $this->main_tpl->setTitle($title);
165 $description = $this->view_request->getDescription();
166 if ($description !==
null) {
167 $this->main_tpl->setDescription($description);
171 $this->view_request->init($this);
173 switch ($this->
ctrl->getCmd(self::CMD_INDEX)) {
174 case self::CMD_INDEX:
177 case self::CMD_UPLOAD:
180 case self::CMD_POST_UPLOAD:
183 case self::CMD_REMOVE:
186 case self::CMD_DOWNLOAD:
189 case self::CMD_UNZIP:
192 case self::CMD_RENDER_CONFIRM_REMOVE:
198 case self::CMD_STORE:
208 $provider = $this->view_factory->getComponentProvider($this->view_request);
210 foreach (
$provider->getComponents() as $component) {
214 $this->main_tpl->setContent($this->ui_renderer->render(
$components));
219 if (!$this->view_request->canUserUplaod()) {
224 if (!$this->
upload->hasUploads()) {
227 $collection = $this->view_request->getCollection();
228 foreach ($this->
upload->getResults() as $result) {
229 if (!$result->isOK()) {
232 $rid = $this->irss->manage()->upload(
234 $this->view_configuration->getStakeholder()
236 $collection->add($rid);
239 $this->irss->flavours()->ensure(
241 $this->preview_definition
244 $this->irss->collection()->store($collection);
247 BasicHandlerResult::STATUS_OK,
251 $response = $this->
http->response()->withBody(Streams::ofString(json_encode($upload_result)));
252 $this->
http->saveResponse($response);
253 $this->
http->sendResponse();
254 $this->
http->close();
259 if (!$this->view_request->canUserUplaod()) {
263 $this->main_tpl->setOnScreenMessage(
'success', $this->
language->txt(
'rids_appended'),
true);
264 $this->
ctrl->redirect($this, self::CMD_INDEX);
270 $this->irss->consume()->download($rid)->run();
275 if (!$this->view_request->canUserAdministrate()) {
280 $zip_stream = $this->irss->consume()->stream($rid)->getStream();
282 $collection = $this->view_request->getCollection();
284 $unzip_options = $this->archive->unzipOptions()
287 foreach ($this->archive->unzip($zip_stream, $unzip_options)->getFileStreams() as $stream) {
288 $rid = $this->irss->manage()->stream(
289 Streams::ofString($stream->getContents()),
290 $this->view_configuration->getStakeholder(),
291 basename((
string) $stream->getMetadata()[
'uri'])
293 $collection->add($rid);
297 $this->irss->flavours()->ensure(
299 $this->preview_definition
304 $this->irss->collection()->store($collection);
310 if (!$this->view_request->canUserAdministrate()) {
315 $this->
ctrl->setParameter(
318 $this->
hash($rid->serialize())
322 $form =
new EditForm(
327 $modal = $this->ui_factory->modal()->roundtrip(
331 $this->
ctrl->getLinkTarget($this, self::CMD_STORE)
334 $signal = $modal->getForm()->getSubmitSignal();
336 $stream = Streams::ofString(
337 $this->ui_renderer->renderAsync(
342 $this->
http->saveResponse($this->
http->response()->withBody($stream));
343 $this->
http->sendResponse();
344 $this->
http->close();
349 if (!$this->view_request->canUserAdministrate()) {
354 $form = (
new EditForm(
357 ))->getAsForm($this->
ctrl->getLinkTarget($this, self::CMD_STORE))
359 $this->
http->request()
363 $this->main_tpl->setOnScreenMessage(
'success', $this->
language->txt(
'rids_updated'),
true);
364 $this->
ctrl->redirect($this, self::CMD_INDEX);
369 if (!$this->view_request->canUserAdministrate()) {
374 $stream = Streams::ofString(
375 $this->ui_renderer->render(
376 $this->ui_factory->modal()->interruptive(
377 $this->
language->txt(
'action_remove_resource'),
378 $this->
language->txt(
'action_remove_resource_msg'),
379 $this->
ctrl->getLinkTarget($this, self::CMD_REMOVE)
380 )->withAffectedItems(
382 $revision = $this->irss->manage()->getCurrentRevision($rid);
384 return $this->ui_factory->modal()->interruptiveItem()->standard(
386 $revision->getTitle()
392 $this->
http->saveResponse($this->
http->response()->withBody($stream));
393 $this->
http->sendResponse();
394 $this->
http->close();
397 private function remove():
void 399 if (!$this->view_request->canUserAdministrate()) {
405 $this->main_tpl->setOnScreenMessage(
'failure', $this->
language->txt(
'msg_no_perm_read'),
true);
406 $this->
ctrl->redirect($this, self::CMD_INDEX);
409 foreach ($rids as $rid) {
410 if (!$this->view_request->getCollection()->isIn($rid)) {
411 $this->main_tpl->setOnScreenMessage(
'failure', $this->
language->txt(
'msg_no_perm_read'),
true);
412 $this->
ctrl->redirect($this, self::CMD_INDEX);
417 foreach ($rids as $rid) {
418 $this->irss->manage()->remove($rid, $this->view_configuration->getStakeholder());
421 $this->main_tpl->setOnScreenMessage(
'success', $this->
language->txt(
'rids_deleted'),
true);
422 $this->
ctrl->redirect($this, self::CMD_INDEX);
432 $token = $this->action_builder->getUrlToken();
433 $wrapper = $this->
http->wrapper();
434 $to_string = $this->
refinery->kindlyTo()->string();
435 $to_array_of_string = $this->
refinery->to()->listOf($to_string);
438 if ($wrapper->query()->has(
$token->getName())) {
440 $rid_string = $wrapper->query()->retrieve(
444 $rid_strings = explode(
',', (
string) $rid_string);
446 $rid_strings = $wrapper->query()->retrieve(
453 if ($wrapper->post()->has(
'interruptive_items')) {
454 $rid_strings = $wrapper->post()->retrieve(
455 'interruptive_items',
460 if (empty($rid_strings)) {
462 $rid_strings = $this->
http->wrapper()->query()->has(self::P_RESOURCE_ID)
463 ? [$this->
http->wrapper()->query()->retrieve(self::P_RESOURCE_ID, $this->
refinery->kindlyTo()->string())]
467 if (isset($rid_strings[0]) && $rid_strings[0] ===
'ALL_OBJECTS') {
468 return $this->view_request->getCollection()->getResourceIdentifications();
471 if ($rid_strings === []) {
474 $resource_identifications = [];
475 foreach ($rid_strings as $rid_string) {
476 $resource_identification = $this->irss->manage()->find($this->unhash($rid_string));
477 if ($resource_identification ===
null) {
480 $resource_identifications[] = $resource_identification;
482 return $resource_identifications;
488 return self::P_RESOURCE_ID;
493 return $this->
ctrl->getLinkTarget($this, self::CMD_UPLOAD);
503 return $this->
ctrl->getLinkTarget($this, self::CMD_INFO);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Will keep the top directory of the ZIP file if there is one (simple unzip).
getInfoResult(string $identifier)
ViewFactory $view_factory
Interface InterruptiveItem.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
const CMD_RENDER_CONFIRM_REMOVE
ActionBuilder $action_builder
ILIAS UI Factory $ui_factory
static http()
Fetches the global http state from ILIAS.
__construct(private Configuration $view_configuration)
Class ResourceIdentification.
abortWithPermissionDenied()
Class BasicHandlerResult.
Interface FileInfoResult.
ILIAS ResourceStorage Services $irss
checkResourceOrRedirect()
ViewControlBuilder $view_control_builder
PreviewDefinition $preview_definition
getFileIdentifierParameterName()
getResourceIdsFromRequest()
getInfoForExistingFiles(array $file_ids)
language()
description: > Example for rendring a language glyph.
ilGlobalTemplateInterface $main_tpl