58 protected \ILIAS\HTTP\Wrapper\WrapperFactory
$http;
64 public function __construct(
int $a_id = 0,
int $a_id_type = self::REPOSITORY_NODE_ID,
int $a_parent_node_id = 0)
67 $this->
http = $DIC->http()->wrapper();
68 $this->request = $DIC->http()->request();
70 $this->file_service_settings = $DIC->fileServiceSettings();
71 $this->
user = $DIC->user();
72 $this->
lng = $DIC->language();
74 $this->
ui = $DIC->ui();
75 $this->storage = $DIC->resourceStorage();
79 $this->obj_service = $DIC->object();
96 $ilNavigationHistory = $DIC[
'ilNavigationHistory'];
97 $ilCtrl = $DIC[
'ilCtrl'];
99 $ilTabs = $DIC[
'ilTabs'];
102 $next_class = $this->
ctrl->getNextClass($this);
103 $cmd = $this->
ctrl->getCmd();
106 if ($this->id_type == self::REPOSITORY_NODE_ID
109 $ilCtrl->setParameterByClass(
"ilrepositorygui",
"ref_id", $this->node_id);
110 $link = $ilCtrl->getLinkTargetByClass(
"ilrepositorygui",
"infoScreen");
111 $ilCtrl->setParameterByClass(
"ilrepositorygui",
"ref_id", $this->ref_id);
114 $ilNavigationHistory->addItem(
124 switch ($next_class) {
125 case "ilinfoscreengui":
129 case 'ilobjectmetadatagui':
131 $ilErr->raiseError($this->
lng->txt(
'permission_denied'),
$ilErr->WARNING);
134 $ilTabs->activateTab(
"id_meta");
141 $this->
ctrl->forwardCommand($md_gui);
145 case 'ilpermissiongui':
146 $ilTabs->activateTab(
"id_permissions");
148 $this->
ctrl->forwardCommand($perm_gui);
152 $ilTabs->activateTab(
"export");
154 $exp_gui->addFormat(
"xml");
155 $this->
ctrl->forwardCommand($exp_gui);
158 case 'ilobjectcopygui':
161 $this->
ctrl->forwardCommand($cp);
165 case "ilworkspaceaccessgui":
166 $ilTabs->activateTab(
"id_permissions");
168 $this->
ctrl->forwardCommand($wspacc);
171 case "ilcommonactiondispatchergui":
173 $this->
ctrl->forwardCommand($gui);
176 case "illearningprogressgui":
177 $ilTabs->activateTab(
'learning_progress');
178 $user_id = $this->
http->query()->has(
'user_id')
179 ? $this->
http->query()->retrieve(
'user_id', $this->
refinery->kindlyTo()->int())
183 $this->
object->getRefId(),
186 $this->
ctrl->forwardCommand($new_gui);
187 $this->tabs_gui->setTabActive(
'learning_progress');
189 case strtolower(ilFileVersionsGUI::class):
190 $this->tabs_gui->activateTab(
"id_versions");
193 $this->error->raiseError($this->
lng->txt(
"permission_denied"), $this->error->MESSAGE);
199 case strtolower(ilObjFileUploadHandlerGUI::class):
205 if ($this->id_type === self::WORKSPACE_NODE_ID) {
210 $ilCtrl->setCmd(
"infoScreen");
212 $ilTabs->clearTargets();
214 parent::executeCommand();
217 if (empty($cmd) || $cmd ===
'render') {
240 if (!in_array($form_type, [self::CFORM_NEW, self::CFORM_CLONE, self::CFORM_IMPORT],
true)) {
249 $tpl =
new ilTemplate(
"tpl.creation_acc_head.html",
true,
true,
"Services/Object");
250 $tpl->
setVariable(
"TITLE", $this->
lng->txt(
"option") .
" " . $form_type .
": " . $title);
261 if (!in_array($form_type, [self::CFORM_NEW, self::CFORM_CLONE, self::CFORM_IMPORT],
true)) {
266 if (method_exists($this,
"getCreationFormTitle")) {
267 if (!empty(($title = $this->getCreationFormTitle($form_type)))) {
272 $tpl =
new ilTemplate(
"tpl.creation_acc_head.html",
true,
true,
"Services/Object");
281 if (empty($a_forms)) {
285 if (1 === count($a_forms)) {
286 $creation_form = end($a_forms);
287 if ($creation_form instanceof
Standard) {
288 return $this->
ui->renderer()->render($creation_form);
292 return $creation_form->getHTML();
299 foreach ($a_forms as
$type => $form) {
309 return "<div class='ilCreationFormSection'>{$accordion->getHTML()}</div>";
320 if ($this->id_type !== self::WORKSPACE_NODE_ID) {
330 $this->
ctrl->setParameterByClass(self::class,
'new_type', $this->
getType());
331 $this->
ctrl->setParameterByClass(
333 self::PARAM_UPLOAD_ORIGIN,
334 self::UPLOAD_ORIGIN_STANDARD
337 return $this->
ui->factory()->input()->container()->form()->standard(
338 $this->
ctrl->getFormActionByClass(self::class, self::CMD_UPLOAD_FILES),
340 self::PARAM_FILES => $this->
ui->factory()->input()->field()->file(
341 $this->upload_handler,
342 $this->
lng->txt(
'upload_files'),
344 $this->
ui->factory()->input()->field()->group([
348 )->withMaxFiles(self::UPLOAD_MAX_FILES)
350 ->withRequired(
true),
352 )->withSubmitCaption($this->
lng->txt(
'upload_files'));
360 $origin = ($this->
http->query()->has(self::PARAM_UPLOAD_ORIGIN)) ?
361 $this->
http->query()->retrieve(
362 self::PARAM_UPLOAD_ORIGIN,
363 $this->
refinery->kindlyTo()->string()
364 ) : self::UPLOAD_ORIGIN_STANDARD;
366 if (self::UPLOAD_ORIGIN_DROPZONE === $origin) {
368 $dropzone = $dropzone->getDropzone()->withRequest($this->request);
369 $files = $dropzone->getData()[self::PARAM_FILES] ?? null;
373 $files = $form->getData()[self::PARAM_FILES] ?? null;
378 $this->tpl->setContent($this->
ui->renderer()->render($form));
386 $this->file_service_settings
390 foreach ($files as $file_data) {
391 $rid = $this->storage->manage()->find($file_data[$this->upload_handler->getFileIdentifierParameterName()]);
394 $processor->process($rid, [
400 if (null !== $this->log) {
401 $this->log->error($t->getMessage() .
": " . $t->getTraceAsString());
408 $this->
ui->mainTemplate()->setOnScreenMessage(
410 $this->
lng->txt(
'could_not_create_file_objs'),
415 if ($processor->getInvalidFileNames() !== []) {
416 $this->
ui->mainTemplate()->setOnScreenMessage(
419 $this->
lng->txt(
'file_upload_info_file_with_critical_extension'),
420 implode(
', ', $processor->getInvalidFileNames())
426 switch ($this->id_type) {
427 case self::WORKSPACE_NODE_ID:
428 $link = $this->
ctrl->getLinkTargetByClass(ilObjWorkspaceRootFolderGUI::class);
430 case self::REPOSITORY_NODE_ID:
436 $this->
ctrl->redirectToURL($link);
443 parent::putObjectInTree($obj, $parent_node_id);
444 $this->node_id = $backup_node_id;
453 $ilTabs = $DIC[
'ilTabs'];
456 if (!$form->checkInput()) {
457 $ilTabs->activateTab(
"settings");
458 $form->setValuesByPost();
459 $this->tpl->setContent($form->getHTML());
464 $title = $form->getInput(
'title');
466 $filename = $this->
object->getFileName();
467 if (trim($title) ===
'') {
470 $title = $this->
object->appendSuffixToTitle($title,
$filename);
472 $this->
object->handleChangedObjectTitle($title);
473 $this->
object->setDescription($form->getInput(
'description'));
474 $this->
object->setRating($form->getInput(
'rating'));
476 $this->
object->update();
477 $this->obj_service->commonSettings()->legacyForm($form, $this->
object)->saveTileImage();
480 if (!empty(
$data[
"name"])) {
490 $ecs->handleSettingsUpdate();
492 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"msg_obj_modified"),
true);
499 $ilTabs = $DIC[
'ilTabs'];
503 $ilErr->raiseError($this->
lng->txt(
"msg_no_perm_write"));
506 $ilTabs->activateTab(
"settings");
511 $val[
'title'] = $this->
object->getTitle();
512 $val[
'description'] = $this->
object->getLongDescription();
513 $val[
'rating'] = $this->
object->hasRating();
514 $form->setValuesByArray($val);
518 $this->tpl->setContent($form->getHTML());
524 $form->setFormAction($this->
ctrl->getFormAction($this,
'update'));
526 $form->setTitle($this->
lng->txt(
'file_edit'));
527 $form->addCommandButton(
'update', $this->
lng->txt(
'save'));
528 $form->addCommandButton(
'cancel', $this->
lng->txt(
'cancel'));
531 $title->setValue($this->
object->getTitle());
532 $title->setInfo($this->
lng->txt(
"if_no_title_then_filename"));
533 $form->addItem($title);
541 $form->addItem($desc);
543 if ($this->id_type === self::REPOSITORY_NODE_ID) {
544 $this->
lng->loadLanguageModule(
'rating');
546 $rate->
setInfo($this->
lng->txt(
'rating_activate_rating_info'));
547 $form->addItem($rate);
551 $presentationHeader->setTitle($this->
lng->txt(
'settings_presentation_header'));
552 $form->addItem($presentationHeader);
553 $this->obj_service->commonSettings()->legacyForm($form, $this->
object)->addTileImage();
560 $hist_entry_id = $this->
http->query()->has(
'hist_id')
561 ? $this->
http->query()->retrieve(
'hist_id', $this->
refinery->kindlyTo()->int())
565 $this->
object->sendFile($hist_entry_id);
572 $this->
object->getRefId(),
573 $this->
object->getId(),
578 $this->
object->sendFile($hist_entry_id);
580 $this->error->raiseError($this->
lng->txt(
"permission_denied"), $this->error->MESSAGE);
583 $this->error->raiseError($e->getMessage(), $this->error->MESSAGE);
594 $this->
ctrl->redirectByClass(ilFileVersionsGUI::class);
609 $this->
ctrl->setCmd(
"showSummary");
610 $this->
ctrl->setCmdClass(
"ilinfoscreengui");
619 $this->tabs_gui->activateTab(
"id_info");
622 $GLOBALS[
'DIC'][
'ilErr']->raiseError($this->
lng->txt(
"msg_no_perm_read"));
629 $button->setTarget(
'_blank');
630 $button->setCaption(
"file_download");
631 $button->setPrimary(
true);
634 if ($this->id_type === self::REPOSITORY_NODE_ID) {
637 $button->setUrl($this->
ctrl->getLinkTarget($this,
"sendfile"));
640 $this->
toolbar->addButtonInstance($button);
643 $info->enablePrivateNotes();
650 $info->enableNewsEditing(
false);
653 $enable_internal_rss = $news_set->get(
"enable_rss_for_internal");
655 if ($enable_internal_rss) {
656 $info->setBlockProperty(
"news",
"settings",
true);
657 $info->setBlockProperty(
"news",
"public_notifications_option",
true);
662 $info->addMetaDataSections($this->
object->getId(), 0, $this->
object->getType());
665 $info->addSection($this->
lng->txt(
"file_info"));
666 $info->addProperty($this->
lng->txt(
"filename"), $this->
object->getFileName());
667 $info->addProperty($this->
lng->txt(
"type"), $this->
object->getFileType());
668 $info->addProperty($this->
lng->txt(
"resource_id"), $this->
object->getResourceId());
669 $info->addProperty($this->
lng->txt(
"storage_id"), $this->
object->getStorageID());
672 $this->
lng->txt(
"size"),
675 $info->addProperty($this->
lng->txt(
"version"), $this->
object->getVersion());
677 $version = $this->
object->getVersions([$this->
object->getVersion()]);
681 $this->
lng->txt(
"version_uploaded"),
686 if ($this->
object->getPageCount() > 0) {
687 $info->addProperty($this->
lng->txt(
"page_count"), $this->
object->getPageCount());
691 $version_uploader =
$version[
"user_id"] ?? -1;
695 if ($this->id_type == self::REPOSITORY_NODE_ID && $this->
checkPermissionBool(
"read",
"sendfile")) {
696 $tpl =
new ilTemplate(
"tpl.download_link.html",
true,
true,
"Modules/File");
698 $info->addProperty($this->
lng->txt(
"download_link"),
$tpl->
get());
701 if ($this->id_type == self::WORKSPACE_NODE_ID) {
704 if (!$this->
ctrl->isAsynch()
709 switch ($this->id_type) {
710 case self::WORKSPACE_NODE_ID:
711 case self::WORKSPACE_OBJECT_ID:
721 $info->addProperty($this->
lng->txt(
"preview"),
$preview->getInlineHTML());
727 $this->
ctrl->forwardCommand($info);
734 $ilTabs = $DIC[
'ilTabs'];
736 $ilHelp = $DIC[
'ilHelp'];
740 $this->
ctrl->setParameter($this,
"ref_id", $this->node_id);
745 $lng->
txt(self::CMD_VERSIONS),
753 $lng->
txt(
"info_short"),
754 $this->
ctrl->getLinkTargetByClass(array(
"ilobjfilegui",
"ilinfoscreengui"),
"showSummary")
761 $lng->
txt(
"settings"),
762 $this->
ctrl->getLinkTarget($this, self::CMD_EDIT)
769 $lng->
txt(
'learning_progress'),
770 $this->
ctrl->getLinkTargetByClass(array(__CLASS__,
'illearningprogressgui'),
'')
777 $mdtab = $mdgui->getTab();
781 $lng->
txt(
"meta_data"),
792 $this->
ctrl->getLinkTargetByClass(
"ilexportgui",
"")
800 public static function _goto($a_target, $a_additional = null): void
803 $main_tpl = $DIC->ui()->mainTemplate();
806 $ilAccess = $DIC[
'ilAccess'];
808 if ($a_additional && substr($a_additional, -3) ==
"wsp") {
813 if ($a_additional && substr($a_additional, -8) ===
"download") {
819 if ($ilAccess->checkAccess(
"visible",
"", $a_target)
820 || $ilAccess->checkAccess(
"read",
"", $a_target)
825 $main_tpl->setOnScreenMessage(
'failure', sprintf(
826 $lng->
txt(
"msg_no_perm_read_item"),
842 $ilLocator = $DIC[
'ilLocator'];
844 if (is_object($this->
object)) {
851 $lg = parent::initHeaderAction($a_sub_type, $a_sub_id);
857 [ilCommonActionDispatcherGUI::class, ilRatingGUI::class]
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...
infoScreenForward()
show information screen
Class ilObjFileStakeholder.
addItem(string $a_header, string $a_content, bool $a_force_open=false)
initImportForm(string $new_type)
executeCommand()
execute command
fillCloneTemplate(?string $tpl_varname, string $type)
static getLogger(string $a_component_id)
Get component logger.
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link="", bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path="ilpublicuserprofilegui")
Default behaviour is:
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
render()
This Method is needed if called from personal resources.
const UPLOAD_ORIGIN_STANDARD
New implementation of ilObjectGUI.
GUI class for the workflow of copying objects.
initCreationForms($a_new_type)
ILIAS HTTP Wrapper WrapperFactory $http
addLegacyFormToAccordion(ilAccordionGUI $accordion, ilPropertyFormGUI $form, int $form_type)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ChatMainBarProvider .
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
static _gotoRepositoryNode(int $ref_id, string $cmd="")
Class ilObjFileProcessorInterface.
prepareOutput(bool $show_sub_objects=true)
addUIFormToAccordion(ilAccordionGUI $accordion, Standard $form, int $form_type)
setVariable(string $variable, $value='')
Sets the given variable to the given value.
__construct(int $a_id=0, int $a_id_type=self::REPOSITORY_NODE_ID, int $a_parent_node_id=0)
Constructor.
static checkAccess(int $a_ref_id, bool $a_allow_only_read=true)
check access to learning progress
static getUploadSizeLimitBytes()
static _goto($a_target, $a_additional=null)
getCreationFormsHTML(array $a_forms)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupObjId(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ResourceStakeholder $stakeholder
ilObjectService $obj_service
Provides fluid interface to RBAC services.
static http()
Fetches the global http state from ILIAS.
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $node_id=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupTitle(int $obj_id)
initHeaderAction($a_sub_type=null, $a_sub_id=null)
const CMD_UNZIP_CURRENT_REVISION
static formatSize(int $size, string $a_mode='short', ?ilLanguage $a_lng=null)
Returns the specified file size value in a human friendly form.
static _recordReadEvent(string $a_type, int $a_ref_id, int $obj_id, int $usr_id, bool $isCatchupWriteEvents=true, $a_ext_rc=null, $a_ext_time=null)
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
ilGlobalTemplateInterface $tpl
static _recordWriteEvent(int $obj_id, int $usr_id, string $action, ?int $parent_obj_id=null)
Records a write event.
uploadFiles()
MUST be protected, since this is Called from ilObject2GUI when used in Personal Workspace.
static _getLink(?int $a_ref_id, string $a_type='', array $a_params=array(), string $append="")
static redirect(string $a_script)
getPermanentLinkWidget(string $append=null, bool $center=false)
putObjectInTree(ilObject $obj, int $parent_node_id=null)
static hasPreview(int $a_obj_id, string $a_type="")
Determines whether the object with the specified reference id has a preview.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
infoScreen()
this one is called from the info button in the repository not very nice to set cmdClass/Cmd manually...
__construct(Container $dic, ilPlugin $plugin)
GUI class for file objects.
static _gotoSharedWorkspaceNode(int $wsp_id)
const LP_CONTEXT_REPOSITORY
This class represents a text area property in a property form.
static _getPermanentDownloadLink(int $ref_id)
Gets the permanent download link for the file.
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
Interface ResourceStakeholder.
ILIAS Refinery Factory $refinery
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const UPLOAD_ORIGIN_DROPZONE
static _catchupWriteEvents(int $obj_id, int $usr_id, ?string $timestamp=null)
Catches up with all write events which occured before the specified timestamp.
addHeaderAction()
Add header action menu.
const PARAM_UPLOAD_ORIGIN
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class FlySystemFileAccessTest disabled disabled disabled.
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
UploadHandler $upload_handler
static _gotoRepositoryRoot(bool $raise_error=false)
Goto repository root.
update()
updates object entry in object_data
static _updateStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null, bool $a_percentage=false, bool $a_force_raise=false)
ilFileServicesSettings $file_service_settings