ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilFileInputGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 
31 {
32  private string $filename = "";
33  private string $filename_post = "";
34  protected int $size = 40;
35  protected string $pending = "";
36  protected bool $allow_deletion = false;
37  protected bool $filename_selection = false;
38  protected array $forbidden_suffixes = [];
39  protected array $suffixes = [];
40  protected string $value = "";
43 
44  public function __construct(
45  string $a_title = "",
46  string $a_postvar = ""
47  ) {
48  global $DIC;
49 
50  $this->lng = $DIC->language();
51  $lng = $DIC->language();
52  $this->upload_service = $DIC->upload();
53  $this->upload_limit = $DIC['ui.upload_limit_resolver'];
54 
55  parent::__construct($a_title, $a_postvar);
56  $this->setType("file");
57  $this->setHiddenTitle("(" . $lng->txt("form_file_input") . ")");
58  }
59 
60  public function setValueByArray(array $a_values): void
61  {
62  $value = $a_values[$this->getPostVar()] ?? null;
63  if (!is_array($value)) {
64  $this->setValue((string) $value);
65  }
66  $filenam = $a_values[$this->getFileNamePostVar()] ?? '';
67  $this->setFilename($filenam);
68  }
69 
73  public function setValue(string $a_value): void
74  {
75  $this->value = $a_value;
76  }
77 
78  public function getValue(): string
79  {
80  return $this->value;
81  }
82 
83  public function setSize(int $a_size): void
84  {
85  $this->size = $a_size;
86  }
87 
88  public function getSize(): int
89  {
90  return $this->size;
91  }
92 
93  // Set filename value (if filename selection is enabled)
94  public function setFilename(string $a_val): void
95  {
96  $this->filename = $a_val;
97  }
98 
99  public function getFilename(): string
100  {
101  return $this->filename;
102  }
103 
104  public function setSuffixes(array $a_suffixes): void
105  {
106  $this->suffixes = $a_suffixes;
107  }
108 
109  public function getSuffixes(): array
110  {
111  return $this->suffixes;
112  }
113 
114  public function setForbiddenSuffixes(array $a_suffixes): void
115  {
116  $this->forbidden_suffixes = $a_suffixes;
117  }
118 
119  public function getForbiddenSuffixes(): array
120  {
122  }
123 
124  // Set pending filename value
125  public function setPending(string $a_val): void
126  {
127  $this->pending = $a_val;
128  }
129 
130  public function getPending(): string
131  {
132  return $this->pending;
133  }
134 
135  // If enabled, users get the possibility to enter a filename for the uploaded file
136  public function enableFileNameSelection(string $a_post_var): void
137  {
138  $this->filename_selection = true;
139  $this->filename_post = $a_post_var;
140  }
141 
142  public function isFileNameSelectionEnabled(): bool
143  {
145  }
146 
147  public function getFileNamePostVar(): string
148  {
149  return $this->filename_post;
150  }
151 
152  public function setAllowDeletion(bool $a_val): void
153  {
154  $this->allow_deletion = $a_val;
155  }
156 
157  public function getALlowDeletion(): bool
158  {
159  return $this->allow_deletion;
160  }
161 
162  public function checkInput(): bool
163  {
164  if (!$this->upload_service->hasBeenProcessed()) {
165  try {
166  $this->upload_service->process();
167  } catch (IllegalStateException $e) {
168  $this->setAlert($e->getMessage());
169  return false;
170  }
171  }
172 
173  $lng = $this->lng;
174 
175  // #18756
176  if ($this->getDisabled()) {
177  return true;
178  }
179 
180  // if no information is received, something went wrong
181  // this is e.g. the case, if the post_max_size has been exceeded
182  if (!isset($_FILES[$this->getPostVar()]) || !is_array($_FILES[$this->getPostVar()])) {
183  $this->setAlert($lng->txt("form_msg_file_size_exceeds"));
184  return false;
185  }
186 
187  $_FILES[$this->getPostVar()]["name"] = ilUtil::stripSlashes($_FILES[$this->getPostVar()]["name"]);
188 
189  $utf_normal = $this->refinery->string()->utfnormal()->formC();
190  $_FILES[$this->getPostVar()]["name"] = $utf_normal->transform(($_FILES[$this->getPostVar()]["name"]));
191 
192  // remove trailing '/'
193  $_FILES[$this->getPostVar()]["name"] = rtrim($_FILES[$this->getPostVar()]["name"], '/');
194 
195  $filename = $_FILES[$this->getPostVar()]["name"];
196  $filename_arr = pathinfo($_FILES[$this->getPostVar()]["name"]);
197  $suffix = $filename_arr["extension"] ?? '';
198  $temp_name = $_FILES[$this->getPostVar()]["tmp_name"];
199  $error = $_FILES[$this->getPostVar()]["error"];
200 
201  // error handling
202  if ($error > 0) {
203  switch ($error) {
204  case UPLOAD_ERR_FORM_SIZE:
205  case UPLOAD_ERR_INI_SIZE:
206  $this->setAlert($lng->txt("form_msg_file_size_exceeds"));
207  return false;
208 
209  case UPLOAD_ERR_PARTIAL:
210  $this->setAlert($lng->txt("form_msg_file_partially_uploaded"));
211  return false;
212 
213  case UPLOAD_ERR_NO_FILE:
214  if ($this->getRequired()) {
215  if (!strlen($this->getValue())) {
216  $this->setAlert($lng->txt("form_msg_file_no_upload"));
217  return false;
218  }
219  }
220  break;
221 
222  case UPLOAD_ERR_NO_TMP_DIR:
223  $this->setAlert($lng->txt("form_msg_file_missing_tmp_dir"));
224  return false;
225 
226  case UPLOAD_ERR_CANT_WRITE:
227  $this->setAlert($lng->txt("form_msg_file_cannot_write_to_disk"));
228  return false;
229 
230  case UPLOAD_ERR_EXTENSION:
231  $this->setAlert($lng->txt("form_msg_file_upload_stopped_ext"));
232  return false;
233  }
234  }
235 
236  // check suffixes
237  if ($_FILES[$this->getPostVar()]["tmp_name"] != "") {
238  if (is_array($this->forbidden_suffixes) && in_array(strtolower($suffix), $this->forbidden_suffixes)) {
239  $this->setAlert($lng->txt("form_msg_file_type_is_not_allowed") . " (" . $suffix . ")");
240  return false;
241  }
242  if (is_array($this->getSuffixes()) && count($this->getSuffixes()) > 0) {
243  if (!in_array(strtolower($suffix), $this->getSuffixes())) {
244  $this->setAlert($lng->txt("form_msg_file_wrong_file_type"));
245  return false;
246  }
247  }
248  }
249 
250  // virus handling
251  if ($_FILES[$this->getPostVar()]["tmp_name"] != "") {
252  $vir = ilVirusScanner::virusHandling($temp_name, $filename);
253  if ($vir[0] == false) {
254  $this->setAlert($lng->txt("form_msg_file_virus_found") . "<br />" . $vir[1]);
255  return false;
256  }
257  }
258 
259  $file_name = $this->str('file_name');
260  if ($file_name === "") {
261  $file_name = $_FILES[$this->getPostVar()]["name"];
262  }
263  $this->setFilename($file_name);
264 
265  return true;
266  }
267 
268  public function getInput(): array
269  {
270  return $_FILES[$this->getPostVar()];
271  }
272 
273  public function render(string $a_mode = ""): string
274  {
275  $lng = $this->lng;
276 
277  $quota_exceeded = $quota_legend = false;
278 
279  $f_tpl = new ilTemplate("tpl.prop_file.html", true, true, "components/ILIAS/Form");
280 
281 
282  // show filename selection if enabled
283  if ($this->isFileNameSelectionEnabled()) {
284  $f_tpl->setCurrentBlock('filename');
285  $f_tpl->setVariable('POST_FILENAME', $this->getFileNamePostVar());
286  $f_tpl->setVariable('VAL_FILENAME', $this->getFilename());
287  $f_tpl->setVariable('FILENAME_ID', $this->getFieldId());
288  $f_tpl->setVariable('TXT_FILENAME_HINT', $lng->txt('if_no_title_then_filename'));
289  $f_tpl->parseCurrentBlock();
290  } else {
291  if (trim($this->getValue()) != "") {
292  if (!$this->getDisabled() && $this->getALlowDeletion()) {
293  $f_tpl->setCurrentBlock("delete_bl");
294  $f_tpl->setVariable("POST_VAR_D", $this->getPostVar());
295  $f_tpl->setVariable(
296  "TXT_DELETE_EXISTING",
297  $lng->txt("delete_existing_file")
298  );
299  $f_tpl->parseCurrentBlock();
300  }
301 
302  $f_tpl->setCurrentBlock('prop_file_propval');
303  $f_tpl->setVariable('FILE_VAL', $this->getValue());
304  $f_tpl->parseCurrentBlock();
305  }
306  }
307 
308  if ($a_mode != "toolbar") {
309  if (!$quota_exceeded) {
310  $this->outputSuffixes($f_tpl);
311 
312  $f_tpl->setCurrentBlock("max_size");
313  $f_tpl->setVariable("TXT_MAX_SIZE", $lng->txt("file_notice") . " " .
314  $this->getMaxFileSizeString());
315  $f_tpl->parseCurrentBlock();
316 
317  if ($quota_legend) {
318  $f_tpl->setVariable("TXT_MAX_SIZE", true);
319  $f_tpl->parseCurrentBlock();
320  }
321  } else {
322  $f_tpl->setCurrentBlock("max_size");
323  $f_tpl->setVariable("TXT_MAX_SIZE", $quota_exceeded);
324  $f_tpl->parseCurrentBlock();
325  }
326  } elseif ($quota_exceeded) {
327  return $quota_exceeded;
328  }
329 
330  $pending = $this->getPending();
331  if ($pending) {
332  $f_tpl->setCurrentBlock("pending");
333  $f_tpl->setVariable("TXT_PENDING", $lng->txt("file_upload_pending") .
334  ": " . htmlentities($pending));
335  $f_tpl->parseCurrentBlock();
336  }
337 
338  if ($this->getDisabled() || $quota_exceeded) {
339  $f_tpl->setVariable(
340  "DISABLED",
341  " disabled=\"disabled\""
342  );
343  }
344 
345  $f_tpl->setVariable('MAX_SIZE_WARNING', $this->lng->txt('form_msg_file_size_exceeds'));
346  $f_tpl->setVariable('MAX_SIZE', $this->upload_limit->getPhpUploadLimitInBytes());
347  $f_tpl->setVariable("POST_VAR", $this->getPostVar());
348  $f_tpl->setVariable("ID", $this->getFieldId());
349  $f_tpl->setVariable("SIZE", $this->getSize());
350  $f_tpl->setVariable("LABEL_SELECTED_FILES_INPUT", $this->lng->txt('selected_files'));
351 
352 
353  /* experimental: bootstrap'ed file upload */
354  $f_tpl->setVariable("TXT_BROWSE", $lng->txt("select_file"));
355 
356 
357  return $f_tpl->get();
358  }
359 
360  public function insert(ilTemplate $a_tpl): void
361  {
362  $html = $this->render();
363 
364  $a_tpl->setCurrentBlock("prop_generic");
365  $a_tpl->setVariable("PROP_GENERIC", $html);
366  $a_tpl->parseCurrentBlock();
367  }
368 
369 
370  protected function outputSuffixes(
371  ilTemplate $a_tpl,
372  string $a_block = "allowed_suffixes"
373  ): void {
374  $lng = $this->lng;
375 
376  if (is_array($this->getSuffixes()) && count($this->getSuffixes()) > 0) {
377  $suff_str = $delim = "";
378  foreach ($this->getSuffixes() as $suffix) {
379  $suff_str .= $delim . "." . $suffix;
380  $delim = ", ";
381  }
382  $a_tpl->setCurrentBlock($a_block);
383  $a_tpl->setVariable(
384  "TXT_ALLOWED_SUFFIXES",
385  $lng->txt("file_allowed_suffixes") . " " . $suff_str
386  );
387  $a_tpl->parseCurrentBlock();
388  }
389  }
390 
391  protected function getMaxFileSizeString(): string
392  {
393  //format for display in mega-bytes
394  return sprintf("%.1f MB", $this->upload_limit->getPhpUploadLimitInBytes() / 1024 / 1024);
395  }
396 
400  protected function getMaxFileUploads(): int
401  {
402  return (int) ini_get("max_file_uploads");
403  }
404 
405  public function getDeletionFlag(): bool
406  {
407  if ($this->int($this->getPostVar() . "_delete")) {
408  return true;
409  }
410  return false;
411  }
412 
413  public function getToolbarHTML(): string
414  {
415  $html = $this->render("toolbar");
416  return $html;
417  }
418 }
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
setFilename(string $a_val)
insert(ilTemplate $a_tpl)
enableFileNameSelection(string $a_post_var)
setPending(string $a_val)
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...
This class represents a file property in a property form.
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
setValue(string $a_value)
Set Value.
static virusHandling(string $a_file, string $a_orig_name='', bool $a_clean=true)
getToolbarHTML()
Get input item HTML to be inserted into ilToolbarGUI.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
outputSuffixes(ilTemplate $a_tpl, string $a_block="allowed_suffixes")
setSuffixes(array $a_suffixes)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setVariable($variable, $value='')
Sets a variable value.
Definition: IT.php:544
setValueByArray(array $a_values)
render(string $a_mode="")
global $DIC
Definition: shib_login.php:22
FileUpload $upload_service
Class FileUpload.
Definition: FileUpload.php:37
__construct(string $a_title="", string $a_postvar="")
setAllowDeletion(bool $a_val)
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
UploadLimitResolver $upload_limit
__construct(Container $dic, ilPlugin $plugin)
This class represents a property that may include a sub form.
getMaxFileUploads()
Get number of maximum file uploads as declared in php.ini.
setForbiddenSuffixes(array $a_suffixes)