78 $this->
ctrl = $DIC->ctrl();
79 $this->
lng = $DIC->language();
80 $this->tpl = $DIC->ui()->mainTemplate();
81 $this->wrapper = $DIC->http()->wrapper();
83 $this->main_absolute_dir = realpath($main_absolute_directory);
84 $this->ui_factory = $DIC->ui()->factory();
85 $this->ui_renderer = $DIC->ui()->renderer();
86 $this->unzip = $DIC->legacyArchives();
90 $this->
ctrl->saveParameter($this, self::PARAMETER_CDIR);
91 $this->
lng->loadLanguageModule(
"content");
102 $this->allowed_suffixes = $a_suffixes;
118 $this->forbidden_suffixes = $a_suffixes;
131 if (empty($a_suffix)) {
146 $this->allow_directories = $a_val;
156 $this->post_dir_path = $a_val;
166 $this->table_id = $a_val;
176 $this->title = $a_val;
186 $this->use_upload_directory = $a_val;
201 if (!is_array($pars)) {
225 $next_class = $this->
ctrl->getNextClass($this);
226 $cmd = $this->
ctrl->getCmd(
"listFiles");
227 if (str_starts_with((
string) $cmd,
"extCommand_")) {
228 $ret = $this->
extCommand(substr((
string) $cmd, 11, strlen((
string) $cmd) - 11));
230 $ret = $this->$cmd();
240 bool $a_single =
true,
241 bool $a_allow_dir =
false 243 $i = count($this->commands);
245 $this->commands[$i][
"object"] = $a_obj;
246 $this->commands[$i][
"method"] = $a_func;
247 $this->commands[$i][
"name"] = $a_name;
248 $this->commands[$i][
"single"] = $a_single;
249 $this->commands[$i][
"allow_dir"] = $a_allow_dir;
254 $this->commands = [];
257 public function labelFile(
string $a_file,
string $a_label): void
259 $this->file_labels[$a_file][] = $a_label;
264 $this->label_enable = $a_act;
265 $this->label_header = $a_label_header;
278 $cur_subdir = $this->wrapper->query()->has(self::PARAMETER_CDIR)
279 ? $this->wrapper->query()->retrieve(self::PARAMETER_CDIR, $this->
refinery->to()->string())
282 $new_subdir = $this->wrapper->query()->has(self::PARAMETER_NEWDIR)
283 ? $this->wrapper->query()->retrieve(self::PARAMETER_NEWDIR, $this->
refinery->to()->string())
289 if ($new_subdir ===
"..") {
290 $cur_subdir = substr($cur_subdir, 0, strrpos($cur_subdir,
"/"));
291 } elseif (!empty($new_subdir)) {
292 $cur_subdir = empty($cur_subdir) ? $new_subdir : $cur_subdir .
"/" . $new_subdir;
295 $cur_subdir = str_replace(
"..",
"", $cur_subdir);
296 $cur_dir = (empty($cur_subdir))
297 ? $this->main_absolute_dir
298 : $this->main_absolute_dir .
"/" . $cur_subdir;
301 "dir" => realpath($cur_dir),
302 "subdir" => $cur_subdir
313 $entries = (is_dir($a_dir))
315 : [[
"type" =>
"dir",
"entry" =>
".."]];
318 foreach ($entries as
$e) {
319 if ($e[
"entry"] ==
".") {
322 if ($e[
"entry"] ==
".." && empty($a_subdir)) {
325 $cfile = (empty($a_subdir))
327 : $a_subdir .
"/" . $e[
"entry"];
330 self::POST_PARAM_FILE => $cfile,
331 "entry" => $e[
"entry"],
332 "type" => $e[
"type"],
333 "size" => $e[
"size"] ?? 0,
334 "hash" => md5((
string) $e[
"entry"])
346 $sel_files = $hashes = [];
347 if ($this->wrapper->post()->has(self::POST_PARAM_FILE)) {
348 $hashes = $this->wrapper->post()->retrieve(
349 self::POST_PARAM_FILE,
354 } elseif ($this->wrapper->query()->has(self::PARAMETER_FHSH)) {
355 $hashes = [$this->wrapper->query()->retrieve(
356 self::PARAMETER_FHSH,
362 if (count($hashes) > 0) {
364 $all_files = $this->
getFileList($dir[
"dir"], $dir[
"subdir"]);
365 foreach ($hashes as $hash) {
366 foreach ($all_files as $file) {
367 if ($file[
"hash"] == $hash) {
369 ? $file[self::POST_PARAM_FILE]
384 if ($selected === []) {
385 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"no_checkbox"),
true);
386 $this->
ctrl->redirect($this,
"listFiles");
390 if (count($selected) > 1 && ($this->commands[$a_nr][
"single"] ??
false)) {
391 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"cont_select_max_one_item"),
true);
392 $this->
ctrl->redirect($this,
"listFiles");
399 foreach ($selected as $file) {
401 $file = (empty($cur_subdir))
403 : $cur_subdir .
"/" . $file;
406 if (is_dir($this->main_absolute_dir .
"/" . $file) &&
407 !$this->commands[$a_nr][
"allow_dir"]) {
408 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"select_a_file"),
true);
409 $this->
ctrl->redirect($this,
"listFiles");
415 if ($this->commands[$a_nr][
"single"] ??
false) {
416 $files = array_shift($files);
419 $obj = $this->commands[$a_nr][
"object"];
420 $method = $this->commands[$a_nr][
"method"];
422 return (
string) $obj->$method($files);
427 $this->directory_creation = $a_val;
440 $this->file_creation = $a_val;
451 $ilToolbar = $DIC[
'ilToolbar'];
453 $ilCtrl = $DIC[
'ilCtrl'];
457 $this->
ctrl->setParameter($this, self::PARAMETER_CDIR, $dir[
"subdir"]);
460 $ilToolbar->setFormAction($ilCtrl->getFormAction($this),
true);
463 $ti =
new ilTextInputGUI($this->
lng->txt(
"cont_new_dir"), self::POST_PARAM_NEW_DIR);
464 $ti->setMaxLength(80);
466 $ilToolbar->addInputItem($ti,
true);
467 $ilToolbar->addFormButton($lng->
txt(
"create"),
"createDirectory");
469 $ilToolbar->addSeparator();
474 $ilToolbar->addInputItem($fi,
true);
475 $ilToolbar->addFormButton($lng->
txt(
"upload"),
"uploadFile");
478 $ilToolbar->addSeparator();
480 $options[
""] = $lng->
txt(
"cont_select_from_upload_dir");
481 foreach ($files as $file) {
482 $file = htmlspecialchars($file, ENT_QUOTES,
"utf-8");
483 $options[$file] = $file;
485 $si =
new ilSelectInputGUI($this->
lng->txt(
"cont_uploaded_file"), self::POST_PARAM_UPLOADED_FILE);
487 $ilToolbar->addInputItem($si,
true);
488 $ilToolbar->addFormButton($lng->
txt(
"copy"),
"uploadFile");
491 $fs_table = $this->
getTable($dir[
"dir"], $dir[
"subdir"]);
494 $fs_table->setTitle($this->
getTitle());
497 $this->wrapper->query()->has(self::PARAM_RESETOFFSET)
498 && $this->wrapper->query()->retrieve(
499 self::PARAM_RESETOFFSET,
502 $fs_table->resetOffset();
504 $this->tpl->setContent($fs_table->getHTML());
526 $file = $this->main_absolute_dir .
"/" . $a_file;
528 $this->
ctrl->setParameter($this, self::PARAM_OLD_NAME, basename($a_file));
529 $this->
ctrl->saveParameter($this, self::PARAMETER_CDIR);
534 $ti->setMaxLength(200);
536 $ti->setValue(basename($a_file));
540 $form->addCommandButton(
"renameFile", $this->
lng->txt(
"rename"));
541 $form->addCommandButton(
"cancelRename", $this->
lng->txt(
"cancel"));
542 $form->setFormAction($this->
ctrl->getFormAction($this,
"renameFile"));
545 $form->setTitle($this->
lng->txt(
"cont_rename_dir"));
547 $form->setTitle($this->
lng->txt(
"rename_file"));
550 $this->tpl->setContent($form->getHTML());
555 $new_name = $this->wrapper->post()->has(self::POST_PARAM_NEW_NAME)
556 ? $this->wrapper->post()->retrieve(self::POST_PARAM_NEW_NAME, $this->
refinery->to()->string())
560 $new_name = str_replace(
"/",
"", $new_name);
561 if ($new_name ===
"") {
565 $pi = pathinfo($new_name);
566 $suffix = $pi[
"extension"] ??
"";
568 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"file_no_valid_file_type") .
" ($suffix)",
true);
569 $this->
ctrl->redirect($this,
"listFiles");
573 $dir = (empty($cur_subdir))
574 ? $this->main_absolute_dir .
"/" 575 : $this->main_absolute_dir .
"/" . $cur_subdir .
"/";
577 $old_name = $this->wrapper->query()->has(self::PARAM_OLD_NAME)
578 ? $this->wrapper->query()->retrieve(self::PARAM_OLD_NAME, $this->
refinery->to()->string())
583 $realpath = realpath($dir . $old_name);
584 if (!str_starts_with($realpath, realpath($dir))) {
588 if (is_dir($dir . $old_name)) {
589 rename($dir . $old_name, $dir . $new_name);
594 $this->tpl->setOnScreenMessage(
'failure', $e->getMessage(),
true);
595 $this->
ctrl->redirect($this,
"listFiles");
600 if (is_dir($dir . $new_name)) {
601 $this->tpl->setOnScreenMessage(
603 $this->
lng->txt(
"cont_dir_renamed"),
607 self::POST_PARAM_NEW_NAME => $new_name
610 $this->tpl->setOnScreenMessage(
612 $this->
lng->txt(
"cont_file_renamed"),
616 self::POST_PARAM_NEW_NAME => $new_name
619 $this->
ctrl->redirect($this,
"listFiles");
624 $this->
ctrl->redirect($this,
"listFiles");
634 $cur_dir = (empty($cur_subdir))
635 ? $this->main_absolute_dir
636 : $this->main_absolute_dir .
"/" . $cur_subdir;
638 $new_dir = $this->wrapper->post()->has(self::POST_PARAM_NEW_DIR)
639 ? $this->wrapper->post()->retrieve(self::POST_PARAM_NEW_DIR, $this->
refinery->to()->string())
643 $new_dir = str_replace(
"/",
"", $new_dir);
645 if (!empty($new_dir)) {
647 if (is_dir($cur_dir .
"/" . $new_dir)) {
648 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"cont_dir_created"),
true);
652 $this->tpl->setOnScreenMessage(
'failure', $lng->
txt(
"cont_enter_a_dir_name"),
true);
654 $this->
ctrl->saveParameter($this, self::PARAMETER_CDIR);
655 $this->
ctrl->redirect($this,
'listFiles');
665 $cur_dir = (empty($cur_subdir))
666 ? $this->main_absolute_dir
667 : $this->main_absolute_dir .
"/" . $cur_subdir;
671 $pi = pathinfo((
string) $_FILES[
"new_file"][
"name"]);
672 $suffix = $pi[
"extension"] ??
"";
674 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"file_no_valid_file_type") .
" ($suffix)",
true);
675 $this->
ctrl->redirect($this,
"listFiles");
678 $uploaded_file = $this->wrapper->post()->has(self::POST_PARAM_UPLOADED_FILE)
679 ? $this->wrapper->post()->retrieve(self::POST_PARAM_UPLOADED_FILE, $this->
refinery->to()->string())
681 if (is_file($_FILES[
"new_file"][
"tmp_name"])) {
683 $tgt_file = $cur_dir .
"/" . $name;
687 $upload = $DIC->upload();
690 if (!$upload->hasBeenProcessed()) {
695 if (!$upload->hasUploads()) {
697 $DIC->language()->txt(
"upload_error_file_not_found")
700 $upload_result = $upload->getResults()[$_FILES[
"new_file"][
"tmp_name"]];
702 $processing_status = $upload_result->getStatus();
703 if ($processing_status->getCode() === ProcessingStatus::REJECTED) {
704 $this->tpl->setOnScreenMessage(
706 $processing_status->getMessage(),
709 $this->
ctrl->redirect($this,
"listFiles");
713 $upload->moveOneFileTo(
715 LegacyPathHelper::createRelativePath($cur_dir .
"/"),
716 LegacyPathHelper::deriveLocationFrom($cur_dir),
721 } elseif ($uploaded_file) {
729 } elseif (trim((
string) $_FILES[
"new_file"][
"name"]) ===
"") {
730 $this->tpl->setOnScreenMessage(
'failure', $lng->
txt(
"cont_enter_a_file"),
true);
733 if ($tgt_file && is_file($tgt_file)) {
735 if (MimeType::getMimeType($tgt_file) ===
"application/zip") {
736 $this->
ctrl->setParameter($this, self::PARAM_UPFILE, basename($tgt_file));
737 $url = $this->
ctrl->getLinkTarget($this, self::CMD_UNZIP_FILE);
738 $this->
ctrl->setParameter($this, self::PARAM_UPFILE,
"");
740 $unzip_link = $this->ui_factory->link()->standard(
741 $this->
lng->txt(
"unzip"),
745 $unzip =
" " . $this->ui_renderer->render($unzip_link);
748 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"cont_file_created") .
$unzip,
true);
752 [
"name" => substr($tgt_file, strlen($this->main_absolute_dir) + 1)]
756 $this->
ctrl->saveParameter($this, self::PARAMETER_CDIR);
760 $this->
ctrl->redirect($this,
'listFiles');
766 $ilCtrl = $DIC[
'ilCtrl'];
771 $cgui->setFormAction($ilCtrl->getFormAction($this));
772 $cgui->setHeaderText($lng->
txt(
"info_delete_sure"));
773 $cgui->setCancel($lng->
txt(
"cancel"),
"listFiles");
774 $cgui->setConfirm($lng->
txt(
"delete"),
"deleteFile");
776 foreach ($a_files as $i) {
777 $cgui->addItem(
"file[]", $i, $i);
785 if (!$this->wrapper->post()->has(self::POST_PARAM_FILE)) {
791 $postfiles = $this->wrapper->post()->retrieve(
792 self::POST_PARAM_FILE,
797 foreach ($postfiles as $post_file) {
804 $cur_dir = (empty($cur_subdir))
805 ? $this->main_absolute_dir
806 : $this->main_absolute_dir .
"/" . $cur_subdir;
807 $pi = pathinfo((
string) $post_file);
810 if (is_file($file)) {
820 $this->
ctrl->saveParameter($this, self::PARAMETER_CDIR);
822 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"cont_dir_deleted"),
true);
828 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"cont_file_deleted"),
true);
834 $this->
ctrl->redirect($this,
'listFiles');
840 $upname = $this->wrapper->query()->has(self::PARAM_UPFILE)
841 ? $this->wrapper->query()->retrieve(self::PARAM_UPFILE, $this->
refinery->to()->string())
843 if (is_null($a_file) && $upname !==
null) {
844 $a_file = basename((
string) $upname);
848 $cur_dir = (empty($cur_subdir))
849 ? $this->main_absolute_dir
850 : $this->main_absolute_dir .
"/" . $cur_subdir;
851 $a_file = $this->main_absolute_dir .
"/" . $a_file;
853 if (is_file($a_file)) {
868 $diff = array_diff($new_files, $cur_files);
869 $diff_r = array_diff($new_files_r, $cur_files_r);
872 foreach (array_keys($diff_r) as
$f) {
874 if (!is_dir($f) && !$this->
isValidSuffix(strtolower($pi[
"extension"] ??
''))) {
875 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"file_some_invalid_file_types_removed") .
" (" . $pi[
"extension"] .
")",
true);
884 foreach ($diff as $new_item) {
885 if (is_dir($cur_dir .
"/" . $new_item)) {
890 if (isset($new_files[
"path"])) {
891 foreach ($new_files[
"path"] as $idx =>
$path) {
892 $path = substr((
string)
$path, strlen($this->main_absolute_dir) + 1);
893 $diff[] = $path . $new_files[self::POST_PARAM_FILE][$idx];
908 $this->
ctrl->saveParameter($this, self::PARAMETER_CDIR);
909 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"cont_file_unzipped"),
true);
910 $this->
ctrl->redirect($this,
"listFiles");
915 $file = $this->main_absolute_dir .
"/" . $a_file;
917 if (is_file($file) && !(is_dir($file))) {
921 $this->
ctrl->saveParameter($this, self::PARAMETER_CDIR);
922 $this->
ctrl->redirect($this,
"listFiles");
938 "method" =>
"downloadFile",
939 "name" => $this->
lng->txt(
"download"),
945 "method" =>
"confirmDeleteFile",
946 "name" => $this->
lng->txt(
"delete"),
952 "method" => self::CMD_UNZIP_FILE,
953 "name" => $this->
lng->txt(
"unzip"),
960 "method" =>
"renameFileForm",
961 "name" => $this->
lng->txt(
"rename"),
971 $cur_subdir = $this->wrapper->query()->has(self::PARAMETER_CDIR)
972 ? $this->wrapper->query()->retrieve(self::PARAMETER_CDIR, $this->
refinery->to()->string())
const SESSION_LAST_COMMAND
static get(string $a_var)
activateLabels(bool $a_act, string $a_label_header)
static _copyUploadFile(string $a_file, string $a_target, bool $a_raise_errors=true)
downloadFile(string $a_file)
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...
renameFileForm(string $a_file)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
ilGlobalTemplateInterface $tpl
getAllowDirectoryCreation()
const POST_PARAM_UPLOADED_FILE
setContent(string $a_html)
Sets content for standard template.
static _getUploadDirectory()
addCommand(object $a_obj, string $a_func, string $a_name, bool $a_single=true, bool $a_allow_dir=false)
setAllowDirectoryCreation(bool $a_val)
listFiles(?ilTable2GUI $a_table_gui=null)
getLastPerformedCommand()
bool $use_upload_directory
getTable(string $a_dir, string $a_subdir)
static deliverFileLegacy(string $a_file, ?string $a_filename=null, ?string $a_mime=null, ?bool $isInline=false, ?bool $removeAfterDelivery=false, ?bool $a_exit_after=true)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static renameExecutables(string $a_dir)
isValidSuffix(string $a_suffix)
__construct(string $main_absolute_directory)
sanitizeCurrentDirectory()
setAllowedSuffixes(array $a_suffixes)
static recursive_dirscan(string $dir, array &$arr)
Recursively scans a given directory and writes path and filename into referenced array.
This is how the factory for UI elements looks.
array $forbidden_suffixes
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
setUseUploadDirectory(bool $a_val)
const POST_PARAM_NEW_NAME
setAllowDirectories(bool $a_val)
static getDir(string $a_dir, bool $a_rec=false, ?string $a_sub_dir="")
get directory
labelFile(string $a_file, string $a_label)
getFileList(string $a_dir, ?string $a_subdir=null)
setPostDirPath(bool $a_val)
static _checkUploadFile(string $a_file)
setPerformedCommand($command, array $pars=[])
setForbiddenSuffixes(array $a_suffixes)
ILIAS Refinery Factory $refinery
confirmDeleteFile(array $a_files)
static rename(string $a_source, string $a_target)
File System Explorer GUI class.
string $main_absolute_dir
exit
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 set(string $a_var, $a_val)
Set a value.
setAllowFileCreation(bool $a_val)
Set allowed file creation.
unzipFile(?string $a_file=null)
static makeDir(string $a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
setTableId(string $a_val)