ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilFileWizardInputGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
29 {
31  protected \ILIAS\UI\Factory $ui_factory;
32  protected \ILIAS\UI\Renderer $ui_renderer;
33  protected array $filenames = array();
34  protected bool $allowMove = false;
35  protected string $imagepath_web = "";
36 
37  public function __construct(
38  string $a_title = "",
39  string $a_postvar = ""
40  ) {
41  global $DIC;
42 
43  $this->lng = $DIC->language();
44  $this->lng->loadLanguageModule("form");
45  $this->tpl = $DIC["tpl"];
46  $this->ui_factory = $DIC->ui()->factory();
47  $this->ui_renderer = $DIC->ui()->renderer();
48  parent::__construct($a_title, $a_postvar);
49  }
50 
51  public function setImagePathWeb(string $a_path): void
52  {
53  $this->imagepath_web = $a_path;
54  }
55 
56  public function getImagePathWeb(): string
57  {
58  return $this->imagepath_web;
59  }
60 
61  public function setFilenames(array $a_filenames): void
62  {
63  $this->filenames = $a_filenames;
64  }
65 
66  public function getFilenames(): array
67  {
68  return $this->filenames;
69  }
70 
71  public function setAllowMove(bool $a_allow_move): void
72  {
73  $this->allowMove = $a_allow_move;
74  }
75 
76  public function getAllowMove(): bool
77  {
78  return $this->allowMove;
79  }
80 
81  public function checkInput(): bool
82  {
83  $lng = $this->lng;
84 
85  // see ilFileInputGUI
86  // if no information is received, something went wrong
87  // this is e.g. the case, if the post_max_size has been exceeded
88  if (!isset($_FILES[$this->getPostVar()]) || !is_array($_FILES[$this->getPostVar()])) {
89  $this->setAlert($lng->txt("form_msg_file_size_exceeds"));
90  return false;
91  }
92 
93  $pictures = $_FILES[$this->getPostVar()];
94  $uploadcheck = true;
95  if (is_array($pictures)) {
96  foreach ($pictures['name'] as $index => $name) {
97  // remove trailing '/'
98  $name = rtrim($name, '/');
99 
100  $filename = $name;
101  $filename_arr = pathinfo($name);
102  $suffix = $filename_arr["extension"] ?? "";
103  $temp_name = $pictures["tmp_name"][$index];
104  $error = $pictures["error"][$index];
105 
106  $_FILES[$this->getPostVar()]["name"][$index] = Util::sanitizeFileName($_FILES[$this->getPostVar()]["name"][$index]);
107 
108 
109  // error handling
110  if ($error > 0) {
111  switch ($error) {
112  case UPLOAD_ERR_FORM_SIZE:
113  case UPLOAD_ERR_INI_SIZE:
114  $this->setAlert($lng->txt("form_msg_file_size_exceeds"));
115  $uploadcheck = false;
116  break;
117 
118  case UPLOAD_ERR_PARTIAL:
119  $this->setAlert($lng->txt("form_msg_file_partially_uploaded"));
120  $uploadcheck = false;
121  break;
122 
123  case UPLOAD_ERR_NO_FILE:
124  if ($this->getRequired()) {
125  $filename = $this->filenames[$index];
126  if (!strlen($filename)) {
127  $this->setAlert($lng->txt("form_msg_file_no_upload"));
128  $uploadcheck = false;
129  }
130  }
131  break;
132 
133  case UPLOAD_ERR_NO_TMP_DIR:
134  $this->setAlert($lng->txt("form_msg_file_missing_tmp_dir"));
135  $uploadcheck = false;
136  break;
137 
138  case UPLOAD_ERR_CANT_WRITE:
139  $this->setAlert($lng->txt("form_msg_file_cannot_write_to_disk"));
140  $uploadcheck = false;
141  break;
142 
143  case UPLOAD_ERR_EXTENSION:
144  $this->setAlert($lng->txt("form_msg_file_upload_stopped_ext"));
145  $uploadcheck = false;
146  break;
147  }
148  }
149 
150  // check suffixes
151  if ($pictures["tmp_name"][$index] != "" && is_array($this->getSuffixes()) && count($this->getSuffixes()) > 0) {
152  if (!in_array(strtolower($suffix), $this->getSuffixes())) {
153  $this->setAlert($lng->txt("form_msg_file_wrong_file_type"));
154  $uploadcheck = false;
155  }
156  }
157 
158  // virus handling
159  if ($pictures["tmp_name"][$index] != "") {
160  $vir = ilVirusScanner::virusHandling($temp_name, $filename);
161  if ($vir[0] == false) {
162  $this->setAlert($lng->txt("form_msg_file_virus_found") . "<br />" . $vir[1]);
163  $uploadcheck = false;
164  }
165  }
166  }
167  }
168 
169  if (!$uploadcheck) {
170  return false;
171  }
172 
173  return $this->checkSubItemsInput();
174  }
175 
176  public function insert(ilTemplate $a_tpl): void
177  {
178  $lng = $this->lng;
179 
180  $tpl = new ilTemplate("tpl.prop_filewizardinput.html", true, true, "components/ILIAS/Form");
181 
182  $i = 0;
183  foreach ($this->filenames as $value) {
184  if (strlen($value)) {
185  $tpl->setCurrentBlock("image");
186  $tpl->setVariable(
187  "SRC_IMAGE",
189  $value
190  )
191  );
192  $tpl->setVariable("PICTURE_FILE", ilLegacyFormElementsUtil::prepareFormOutput($value));
193  $tpl->setVariable("ID", $this->getFieldId() . "[$i]");
194  $tpl->setVariable("ALT_IMAGE", ilLegacyFormElementsUtil::prepareFormOutput($value));
195  $tpl->parseCurrentBlock();
196  }
197  if ($this->getAllowMove()) {
198  $tpl->setCurrentBlock("move");
199  $tpl->setVariable("CMD_UP", "cmd[up" . $this->getFieldId() . "][$i]");
200  $tpl->setVariable("CMD_DOWN", "cmd[down" . $this->getFieldId() . "][$i]");
201  $tpl->setVariable("ID", $this->getFieldId() . "[$i]");
202  $tpl->setVariable(
203  "UP_BUTTON",
204  $this->ui_renderer->render(
205  $this->ui_factory->symbol()->glyph()->up()
206  )
207  );
208  $tpl->setVariable(
209  "DOWN_BUTTON",
210  $this->ui_renderer->render(
211  $this->ui_factory->symbol()->glyph()->down()
212  )
213  );
214  $tpl->parseCurrentBlock();
215  }
216 
217  $this->outputSuffixes($tpl, "allowed_image_suffixes");
218 
219  $tpl->setCurrentBlock("row");
220  $tpl->setVariable("POST_VAR", $this->getPostVar() . "[$i]");
221  $tpl->setVariable("ID", $this->getFieldId() . "[$i]");
222  $tpl->setVariable("CMD_ADD", "cmd[add" . $this->getFieldId() . "][$i]");
223  $tpl->setVariable("CMD_REMOVE", "cmd[remove" . $this->getFieldId() . "][$i]");
224  $tpl->setVariable("ALT_ADD", $lng->txt("add"));
225  $tpl->setVariable("ALT_REMOVE", $lng->txt("remove"));
226  if ($this->getDisabled()) {
227  $tpl->setVariable(
228  "DISABLED",
229  " disabled=\"disabled\""
230  );
231  }
232 
233  $tpl->setVariable(
234  "ADD_BUTTON",
235  $this->ui_renderer->render(
236  $this->ui_factory->symbol()->glyph()->add()
237  )
238  );
239  $tpl->setVariable(
240  "REMOVE_BUTTON",
241  $this->ui_renderer->render(
242  $this->ui_factory->symbol()->glyph()->remove()
243  )
244  );
245  $tpl->setVariable("TXT_MAX_SIZE", $lng->txt("file_notice") . " " . $this->getMaxFileSizeString());
246  $tpl->setVariable("MAX_UPLOAD_VALUE", $this->getMaxFileUploads());
247  $tpl->setVariable("TXT_MAX_UPLOADS", $lng->txt("form_msg_max_upload") . " " . $this->getMaxFileUploads());
248  $tpl->parseCurrentBlock();
249  $i++;
250  }
251  $tpl->setVariable("ELEMENT_ID", $this->getFieldId());
252 
253  $a_tpl->setCurrentBlock("prop_generic");
254  $a_tpl->setVariable("PROP_GENERIC", $tpl->get());
255  $a_tpl->parseCurrentBlock();
256 
257  $main_tpl = $this->tpl;
258  $main_tpl->addJavascript("assets/js/ServiceFormWizardInput.js");
259  $main_tpl->addJavascript("assets/js/filewizard.js");
260  }
261 }
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
setFilenames(array $a_filenames)
parseCurrentBlock(string $block_name=self::DEFAULT_BLOCK)
Parses the given block.
setAllowMove(bool $a_allow_move)
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...
setCurrentBlock(string $part=self::DEFAULT_BLOCK)
Sets the template to the given block.
This class represents a file property in a property form.
static virusHandling(string $a_file, string $a_orig_name='', bool $a_clean=true)
This class represents a file wizard property in a property form.
outputSuffixes(ilTemplate $a_tpl, string $a_block="allowed_suffixes")
__construct(string $a_title="", string $a_postvar="")
static prepareFormOutput($a_str, bool $a_strip=false)
setVariable(string $variable, $value='')
Sets the given variable to the given value.
setVariable($variable, $value='')
Sets a variable value.
Definition: IT.php:544
global $DIC
Definition: shib_login.php:22
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
__construct(Container $dic, ilPlugin $plugin)
ilGlobalTemplateInterface $tpl
getMaxFileUploads()
Get number of maximum file uploads as declared in php.ini.