62 protected \ILIAS\HTTP\Wrapper\WrapperFactory
$wrapper;
72 $this->
ctrl = $DIC->ctrl();
73 $this->
lng = $DIC->language();
74 $this->tpl = $DIC->ui()->mainTemplate();
75 $this->wrapper = $DIC->http()->wrapper();
77 $this->main_absolute_dir = realpath($main_absolute_directory);
81 $this->
ctrl->saveParameter($this, self::PARAMETER_CDIR);
82 $this->
lng->loadLanguageModule(
"content");
93 $this->allowed_suffixes = $a_suffixes;
109 $this->forbidden_suffixes = $a_suffixes;
122 if (empty($a_suffix)) {
140 $this->allow_directories = $a_val;
150 $this->post_dir_path = $a_val;
160 $this->table_id = $a_val;
170 $this->title = $a_val;
180 $this->use_upload_directory = $a_val;
195 if (!is_array($pars)) {
219 $next_class = $this->
ctrl->getNextClass($this);
220 $cmd = $this->
ctrl->getCmd(
"listFiles");
221 if (substr($cmd, 0, 11) ==
"extCommand_") {
222 $ret = $this->
extCommand(substr($cmd, 11, strlen($cmd) - 11));
224 $ret = $this->$cmd();
234 bool $a_single =
true,
235 bool $a_allow_dir =
false 237 $i = count($this->commands);
239 $this->commands[
$i][
"object"] = $a_obj;
240 $this->commands[
$i][
"method"] = $a_func;
241 $this->commands[
$i][
"name"] = $a_name;
242 $this->commands[
$i][
"single"] = $a_single;
243 $this->commands[
$i][
"allow_dir"] = $a_allow_dir;
248 $this->commands = [];
251 public function labelFile(
string $a_file,
string $a_label): void
253 $this->file_labels[$a_file][] = $a_label;
258 $this->label_enable = $a_act;
259 $this->label_header = $a_label_header;
272 $cur_subdir = $this->wrapper->query()->has(self::PARAMETER_CDIR)
273 ? $this->wrapper->query()->retrieve(self::PARAMETER_CDIR, $this->
refinery->to()->string())
276 $new_subdir = $this->wrapper->query()->has(self::PARAMETER_NEWDIR)
277 ? $this->wrapper->query()->retrieve(self::PARAMETER_NEWDIR, $this->
refinery->to()->string())
283 if ($new_subdir ===
"..") {
284 $cur_subdir = substr($cur_subdir, 0, strrpos($cur_subdir,
"/"));
286 if (!empty($new_subdir)) {
287 if (!empty($cur_subdir)) {
288 $cur_subdir = $cur_subdir .
"/" . $new_subdir;
290 $cur_subdir = $new_subdir;
295 $cur_subdir = str_replace(
"..",
"", $cur_subdir);
296 $cur_dir = (!empty($cur_subdir))
297 ? $this->main_absolute_dir .
"/" . $cur_subdir
298 : $this->main_absolute_dir;
301 "dir" => realpath($cur_dir),
302 "subdir" => $cur_subdir
309 protected function getFileList(
string $a_dir, ?
string $a_subdir = null): array
313 $entries = (is_dir($a_dir))
315 : array(array(
"type" =>
"dir",
"entry" =>
".."));
318 foreach ($entries as
$e) {
319 if (($e[
"entry"] ==
".") ||
320 ($e[
"entry"] ==
".." && empty($a_subdir))) {
324 $cfile = (!empty($a_subdir))
325 ? $a_subdir .
"/" . $e[
"entry"]
329 self::POST_PARAM_FILE => $cfile,
330 "entry" => $e[
"entry"],
331 "type" => $e[
"type"],
332 "size" => $e[
"size"] ?? 0,
333 "hash" => md5($e[
"entry"])
345 $sel_files = $hashes = [];
346 if ($this->wrapper->post()->has(self::POST_PARAM_FILE)) {
347 $hashes = $this->wrapper->post()->retrieve(
348 self::POST_PARAM_FILE,
353 } elseif ($this->wrapper->query()->has(self::PARAMETER_FHSH)) {
354 $hashes = [$this->wrapper->query()->retrieve(
355 self::PARAMETER_FHSH,
361 if (count($hashes) > 0) {
363 $all_files = $this->
getFileList($dir[
"dir"], $dir[
"subdir"]);
364 foreach ($hashes as $hash) {
365 foreach ($all_files as $file) {
366 if ($file[
"hash"] == $hash) {
368 ? $file[self::POST_PARAM_FILE]
383 if (!count($selected)) {
384 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"no_checkbox"),
true);
385 $this->
ctrl->redirect($this,
"listFiles");
389 if (count($selected) > 1 && ($this->commands[$a_nr][
"single"] ??
false)) {
390 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"cont_select_max_one_item"),
true);
391 $this->
ctrl->redirect($this,
"listFiles");
398 foreach ($selected as $file) {
400 $file = (!empty($cur_subdir))
401 ? $cur_subdir .
"/" . $file
405 if (is_dir($this->main_absolute_dir .
"/" . $file) &&
406 !$this->commands[$a_nr][
"allow_dir"]) {
407 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"select_a_file"),
true);
408 $this->
ctrl->redirect($this,
"listFiles");
414 if ($this->commands[$a_nr][
"single"] ??
false) {
415 $files = array_shift($files);
418 $obj = $this->commands[$a_nr][
"object"];
419 $method = $this->commands[$a_nr][
"method"];
421 return (
string) $obj->$method($files);
426 $this->directory_creation = $a_val;
439 $this->file_creation = $a_val;
450 $ilToolbar = $DIC[
'ilToolbar'];
452 $ilCtrl = $DIC[
'ilCtrl'];
456 $this->
ctrl->setParameter($this, self::PARAMETER_CDIR, $dir[
"subdir"]);
459 $ilToolbar->setFormAction($ilCtrl->getFormAction($this),
true);
462 $ti =
new ilTextInputGUI($this->
lng->txt(
"cont_new_dir"), self::POST_PARAM_NEW_DIR);
463 $ti->setMaxLength(80);
465 $ilToolbar->addInputItem($ti,
true);
466 $ilToolbar->addFormButton($lng->
txt(
"create"),
"createDirectory");
468 $ilToolbar->addSeparator();
473 $ilToolbar->addInputItem($fi,
true);
474 $ilToolbar->addFormButton($lng->
txt(
"upload"),
"uploadFile");
477 $ilToolbar->addSeparator();
479 $options[
""] = $lng->
txt(
"cont_select_from_upload_dir");
480 foreach ($files as $file) {
481 $file = htmlspecialchars($file, ENT_QUOTES,
"utf-8");
482 $options[$file] = $file;
484 $si =
new ilSelectInputGUI($this->
lng->txt(
"cont_uploaded_file"), self::POST_PARAM_UPLOADED_FILE);
485 $si->setOptions($options);
486 $ilToolbar->addInputItem($si,
true);
487 $ilToolbar->addFormButton($lng->
txt(
"copy"),
"uploadFile");
490 $fs_table = $this->
getTable($dir[
"dir"], $dir[
"subdir"]);
493 $fs_table->setTitle($this->
getTitle());
496 $this->wrapper->query()->has(self::PARAM_RESETOFFSET)
497 && $this->wrapper->query()->retrieve(
498 self::PARAM_RESETOFFSET,
501 $fs_table->resetOffset();
503 $this->tpl->setContent($fs_table->getHTML());
525 $file = $this->main_absolute_dir .
"/" . $a_file;
527 $this->
ctrl->setParameter($this, self::PARAM_OLD_NAME, basename($a_file));
528 $this->
ctrl->saveParameter($this, self::PARAMETER_CDIR);
533 $ti->setMaxLength(200);
535 $ti->setValue(basename($a_file));
539 $form->addCommandButton(
"renameFile", $this->
lng->txt(
"rename"));
540 $form->addCommandButton(
"cancelRename", $this->
lng->txt(
"cancel"));
541 $form->setFormAction($this->
ctrl->getFormAction($this,
"renameFile"));
544 $form->setTitle($this->
lng->txt(
"cont_rename_dir"));
546 $form->setTitle($this->
lng->txt(
"rename_file"));
549 $this->tpl->setContent($form->getHTML());
554 $new_name = $this->wrapper->post()->has(self::POST_PARAM_NEW_NAME)
555 ? $this->wrapper->post()->retrieve(self::POST_PARAM_NEW_NAME, $this->
refinery->to()->string())
559 $new_name = str_replace(
"/",
"", $new_name);
560 if ($new_name ===
"") {
564 $pi = pathinfo($new_name);
565 $suffix = $pi[
"extension"] ??
"";
567 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"file_no_valid_file_type") .
" ($suffix)",
true);
568 $this->
ctrl->redirect($this,
"listFiles");
572 $dir = (!empty($cur_subdir))
573 ? $this->main_absolute_dir .
"/" . $cur_subdir .
"/" 574 : $this->main_absolute_dir .
"/";
576 $old_name = $this->wrapper->query()->has(self::PARAM_OLD_NAME)
577 ? $this->wrapper->query()->retrieve(self::PARAM_OLD_NAME, $this->
refinery->to()->string())
582 $realpath = realpath($dir . $old_name);
583 if (strpos($realpath, realpath($dir)) !== 0) {
587 if (is_dir($dir . $old_name)) {
588 rename($dir . $old_name, $dir . $new_name);
593 $this->tpl->setOnScreenMessage(
'failure', $e->getMessage(),
true);
594 $this->
ctrl->redirect($this,
"listFiles");
599 if (is_dir($dir . $new_name)) {
600 $this->tpl->setOnScreenMessage(
602 $this->
lng->txt(
"cont_dir_renamed"),
606 self::POST_PARAM_NEW_NAME => $new_name
609 $this->tpl->setOnScreenMessage(
611 $this->
lng->txt(
"cont_file_renamed"),
615 self::POST_PARAM_NEW_NAME => $new_name
618 $this->
ctrl->redirect($this,
"listFiles");
623 $this->
ctrl->redirect($this,
"listFiles");
633 $cur_dir = (!empty($cur_subdir))
634 ? $this->main_absolute_dir .
"/" . $cur_subdir
635 : $this->main_absolute_dir;
637 $new_dir = $this->wrapper->post()->has(self::POST_PARAM_NEW_DIR)
638 ? $this->wrapper->post()->retrieve(self::POST_PARAM_NEW_DIR, $this->
refinery->to()->string())
642 $new_dir = str_replace(
"/",
"", $new_dir);
644 if (!empty($new_dir)) {
646 if (is_dir($cur_dir .
"/" . $new_dir)) {
647 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"cont_dir_created"),
true);
651 $this->tpl->setOnScreenMessage(
'failure', $lng->
txt(
"cont_enter_a_dir_name"),
true);
653 $this->
ctrl->saveParameter($this, self::PARAMETER_CDIR);
654 $this->
ctrl->redirect($this,
'listFiles');
664 $cur_dir = (!empty($cur_subdir))
665 ? $this->main_absolute_dir .
"/" . $cur_subdir
666 : $this->main_absolute_dir;
670 $pi = pathinfo($_FILES[
"new_file"][
"name"]);
671 $suffix = $pi[
"extension"] ??
"";
673 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"file_no_valid_file_type") .
" ($suffix)",
true);
674 $this->
ctrl->redirect($this,
"listFiles");
677 $uploaded_file = $this->wrapper->post()->has(self::POST_PARAM_UPLOADED_FILE)
678 ? $this->wrapper->post()->retrieve(self::POST_PARAM_UPLOADED_FILE, $this->
refinery->to()->string())
680 if (is_file($_FILES[
"new_file"][
"tmp_name"])) {
682 $tgt_file = $cur_dir .
"/" .
$name;
686 $upload = $DIC->upload();
689 if (!$upload->hasBeenProcessed()) {
694 if (!$upload->hasUploads()) {
696 $DIC->language()->txt(
"upload_error_file_not_found")
699 $upload_result = $upload->getResults()[$_FILES[
"new_file"][
"tmp_name"]];
701 $processing_status = $upload_result->getStatus();
702 if ($processing_status->getCode() === ProcessingStatus::REJECTED) {
703 $this->tpl->setOnScreenMessage(
705 $processing_status->getMessage(),
708 $this->
ctrl->redirect($this,
"listFiles");
712 $upload->moveOneFileTo(
714 LegacyPathHelper::createRelativePath($cur_dir .
"/"),
715 LegacyPathHelper::deriveLocationFrom($cur_dir),
720 } elseif ($uploaded_file) {
728 } elseif (trim($_FILES[
"new_file"][
"name"]) ==
"") {
729 $this->tpl->setOnScreenMessage(
'failure', $lng->
txt(
"cont_enter_a_file"),
true);
732 if ($tgt_file && is_file($tgt_file)) {
734 if (MimeType::getMimeType($tgt_file) ==
"application/zip") {
735 $this->
ctrl->setParameter($this, self::PARAM_UPFILE, basename($tgt_file));
736 $url = $this->
ctrl->getLinkTarget($this,
"unzipFile");
737 $this->
ctrl->setParameter($this, self::PARAM_UPFILE,
"");
739 $unzip->setCaption(
"unzip");
740 $unzip->setUrl(
$url);
741 $unzip =
" " . $unzip->render();
744 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"cont_file_created") . $unzip,
true);
748 array(
"name" => substr($tgt_file, strlen($this->main_absolute_dir) + 1))
752 $this->
ctrl->saveParameter($this, self::PARAMETER_CDIR);
756 $this->
ctrl->redirect($this,
'listFiles');
762 $ilCtrl = $DIC[
'ilCtrl'];
767 $cgui->setFormAction($ilCtrl->getFormAction($this));
768 $cgui->setHeaderText($lng->
txt(
"info_delete_sure"));
769 $cgui->setCancel($lng->
txt(
"cancel"),
"listFiles");
770 $cgui->setConfirm($lng->
txt(
"delete"),
"deleteFile");
772 foreach ($a_files as
$i) {
773 $cgui->addItem(
"file[]", $i, $i);
781 if (!$this->wrapper->post()->has(self::POST_PARAM_FILE)) {
787 $postfiles = $this->wrapper->post()->retrieve(
788 self::POST_PARAM_FILE,
793 foreach ($postfiles as $post_file) {
800 $cur_dir = (!empty($cur_subdir))
801 ? $this->main_absolute_dir .
"/" . $cur_subdir
802 : $this->main_absolute_dir;
803 $pi = pathinfo($post_file);
806 if (is_file($file)) {
816 $this->
ctrl->saveParameter($this, self::PARAMETER_CDIR);
818 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"cont_dir_deleted"),
true);
824 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"cont_file_deleted"),
true);
830 $this->
ctrl->redirect($this,
'listFiles');
836 $upname = $this->wrapper->query()->has(self::PARAM_UPFILE)
837 ? $this->wrapper->query()->retrieve(self::PARAM_UPFILE, $this->
refinery->to()->string())
839 if (is_null($a_file) && $upname !== null) {
840 $a_file = basename($upname);
844 $cur_dir = (!empty($cur_subdir))
845 ? $this->main_absolute_dir .
"/" . $cur_subdir
846 : $this->main_absolute_dir;
847 $a_file = $this->main_absolute_dir .
"/" . $a_file;
849 if (is_file($a_file)) {
862 $diff = array_diff($new_files, $cur_files);
863 $diff_r = array_diff($new_files_r, $cur_files_r);
866 foreach ($diff_r as
$f =>
$d) {
868 if (!is_dir(
$f) && !$this->
isValidSuffix(strtolower($pi[
"extension"] ??
''))) {
869 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"file_some_invalid_file_types_removed") .
" (" . $pi[
"extension"] .
")",
true);
876 $new_files = array();
878 foreach ($diff as $new_item) {
879 if (is_dir($cur_dir .
"/" . $new_item)) {
884 if (isset($new_files[
"path"])) {
885 foreach ($new_files[
"path"] as $idx =>
$path) {
886 $path = substr(
$path, strlen($this->main_absolute_dir) + 1);
887 $diff[] =
$path . $new_files[self::POST_PARAM_FILE][$idx];
894 array(
"added" => $diff
902 $this->
ctrl->saveParameter($this, self::PARAMETER_CDIR);
903 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"cont_file_unzipped"),
true);
904 $this->
ctrl->redirect($this,
"listFiles");
909 $file = $this->main_absolute_dir .
"/" . $a_file;
911 if (is_file($file) && !(is_dir($file))) {
915 $this->
ctrl->saveParameter($this, self::PARAMETER_CDIR);
916 $this->
ctrl->redirect($this,
"listFiles");
930 $this->commands = array(
933 "method" =>
"downloadFile",
934 "name" => $this->
lng->txt(
"download"),
940 "method" =>
"confirmDeleteFile",
941 "name" => $this->
lng->txt(
"delete"),
947 "method" =>
"unzipFile",
948 "name" => $this->
lng->txt(
"unzip"),
955 "method" =>
"renameFileForm",
956 "name" => $this->
lng->txt(
"rename"),
966 $cur_subdir = $this->wrapper->query()->has(self::PARAMETER_CDIR)
967 ? $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)
ILIAS HTTP Wrapper WrapperFactory $wrapper
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()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const POST_PARAM_UPLOADED_FILE
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
static unzip(string $path_to_zip_file, bool $overwrite_existing=false, bool $unpack_flat=false)
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)
static renameExecutables(string $a_dir)
isValidSuffix(string $a_suffix)
__construct(string $main_absolute_directory)
sanitizeCurrentDirectory()
setContent(string $a_html)
Sets content for standard template.
setAllowedSuffixes(array $a_suffixes)
static recursive_dirscan(string $dir, array &$arr)
Recursively scans a given directory and writes path and filename into referenced array.
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
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.
for($i=6; $i< 13; $i++) for($i=1; $i< 13; $i++) $d
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 ...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setTableId(string $a_val)