ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilFileUtils.php
Go to the documentation of this file.
1 <?php
2 /*
3 +-----------------------------------------------------------------------------+
4 | ILIAS open source |
5 +-----------------------------------------------------------------------------+
6 | Copyright (c) 1998-2006 ILIAS open source, University of Cologne |
7 | |
8 | This program is free software; you can redistribute it and/or |
9 | modify it under the terms of the GNU General Public License |
10 | as published by the Free Software Foundation; either version 2 |
11 | of the License, or (at your option) any later version. |
12 | |
13 | This program is distributed in the hope that it will be useful, |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | GNU General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU General Public License |
19 | along with this program; if not, write to the Free Software |
20 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21 +-----------------------------------------------------------------------------+
22 */
23 
39 {
40 
44  protected static $new_files = array();
45 
46 
62  public static function processZipFile($a_directory, $a_file, $structure, $ref_id = null, $containerType = null, $tree = null, $access_handler = null)
63  {
64  global $DIC;
65 
66  $lng = $DIC->language();
67 
68  self::$new_files = array();
69 
70  $pathinfo = pathinfo($a_file);
71  $file = $pathinfo["basename"];
72 
73  // see 22727
74  if ($pathinfo["extension"] == "") {
75  $file .= ".zip";
76  }
77 
78  // Copy zip-file to new directory, unzip and remove it
79  // TODO: check archive for broken file
80  //copy ($a_file, $a_directory . "/" . $file);
81  ilUtil::moveUploadedFile($a_file, $file, $a_directory . "/" . $file);
82  ilUtil::unzip($a_directory . "/" . $file);
83  unlink($a_directory . "/" . $file);
84  //echo "-".$a_directory . "/" . $file."-";
85  // Stores filename and paths into $filearray to check for viruses
86  // Checks if filenames can be read, else -> throw exception and leave
87  ilFileUtils::recursive_dirscan($a_directory, $filearray);
88 
89  // if there are no files unziped (->broken file!)
90  if (empty($filearray)) {
91  throw new ilFileUtilsException($lng->txt("archive_broken"), ilFileUtilsException::$BROKEN_FILE);
92  }
93 
94  // virus handling
95  foreach ($filearray["file"] as $key => $value) {
96  // remove "invisible" files
97  if (substr($value, 0, 1) == "." || stristr($filearray["path"][$key], "/__MACOSX/")) {
98  unlink($filearray["path"][$key] . $value);
99  unset($filearray["path"][$key]);
100  unset($filearray["file"][$key]);
101  continue;
102  }
103 
104  $vir = ilUtil::virusHandling($filearray["path"][$key], $value);
105  if (!$vir[0]) {
106  // Unlink file and throw exception
107  unlink($filearray[path][$key]);
108  throw new ilFileUtilsException($lng->txt("file_is_infected") . "<br />" . $vir[1], ilFileUtilsException::$INFECTED_FILE);
109  break;
110  } else {
111  if ($vir[1] != "") {
113  break;
114  }
115  }
116  }
117 
118  // If archive is to be used "flat"
119  if (!$structure) {
120  foreach (array_count_values($filearray["file"]) as $key => $value) {
121  // Archive contains same filenames in different directories
122  if ($value != "1") {
123  $doublettes .= " '" . ilFileUtils::utf8_encode($key) . "'";
124  }
125  }
126  if (isset($doublettes)) {
127  throw new ilFileUtilsException(
128  $lng->txt("exc_upload_error") . "<br />" . $lng->txt("zip_structure_error") . $doublettes,
130  );
131  }
132  } else {
133  $mac_dir = $a_directory . "/__MACOSX";
134  if (file_exists($mac_dir)) {
135  ilUtil::delDir($mac_dir);
136  }
137  }
138 
139  // Everything fine since we got here; so we can store files and folders into the system (if ref_id is given)
140  if ($ref_id != null) {
141  ilFileUtils::createObjects($a_directory, $structure, $ref_id, $containerType, $tree, $access_handler);
142  }
143  }
144 
145 
156  public static function recursive_dirscan($dir, &$arr)
157  {
158  global $DIC;
159 
160  $lng = $DIC->language();
161 
162  $dirlist = opendir($dir);
163  while (false !== ($file = readdir($dirlist))) {
164  if (!is_file($dir . "/" . $file) && !is_dir($dir . "/" . $file)) {
165  throw new ilFileUtilsException($lng->txt("filenames_not_supported"), ilFileUtilsException::$BROKEN_FILE);
166  }
167 
168  if ($file != '.' && $file != '..') {
169  $newpath = $dir . '/' . $file;
170  $level = explode('/', $newpath);
171  if (is_dir($newpath)) {
172  ilFileUtils::recursive_dirscan($newpath, $arr);
173  } else {
174  $arr["path"][] = $dir . "/";
175  $arr["file"][] = end($level);
176  }
177  }
178  }
179  closedir($dirlist);
180  }
181 
182 
198  public static function createObjects($dir, $structure, $ref_id, $containerType, $tree = null, $access_handler = null)
199  {
200  $dirlist = opendir($dir);
201 
202  while (false !== ($file = readdir($dirlist))) {
203  if (!is_file($dir . "/" . $file) && !is_dir($dir . "/" . $file)) {
204  throw new ilFileUtilsException($lng->txt("filenames_not_supported"), ilFileUtilsException::$BROKEN_FILE);
205  }
206  if ($file != '.' && $file != '..') {
207  $newpath = $dir . '/' . $file;
208  $level = explode('/', $newpath);
209  if (is_dir($newpath)) {
210  if ($structure) {
211  $new_ref_id = ilFileUtils::createContainer(ilFileUtils::utf8_encode($file), $ref_id, $containerType, $tree, $access_handler);
212  ilFileUtils::createObjects($newpath, $structure, $new_ref_id, $containerType, $tree, $access_handler);
213  } else {
214  ilFileUtils::createObjects($newpath, $structure, $ref_id, $containerType, $tree, $access_handler);
215  }
216  } else {
217  ilFileUtils::createFile(end($level), $dir, $ref_id, $tree, $access_handler);
218  }
219  }
220  }
221  closedir($dirlist);
222  }
223 
224 
236  public static function createContainer($name, $ref_id, $containerType, $tree = null, $access_handler = null)
237  {
238  switch ($containerType) {
239  case "Category":
240  include_once("./Modules/Category/classes/class.ilObjCategory.php");
241  $newObj = new ilObjCategory();
242  $newObj->setType("cat");
243  break;
244 
245  case "Folder":
246  include_once("./Modules/Folder/classes/class.ilObjFolder.php");
247  $newObj = new ilObjFolder();
248  $newObj->setType("fold");
249  break;
250 
251  case "WorkspaceFolder":
252  include_once("./Modules/WorkspaceFolder/classes/class.ilObjWorkspaceFolder.php");
253  $newObj = new ilObjWorkspaceFolder();
254  break;
255  }
256 
257  $newObj->setTitle($name);
258  $newObj->create();
259 
260  // repository
261  if (!$access_handler) {
262  $newObj->createReference();
263  $newObj->putInTree($ref_id);
264  $newObj->setPermissions($ref_id);
265 
266  if ($newObj->getType() == "cat") {
267  global $DIC;
268 
269  $lng = $DIC->language();
270  $newObj->addTranslation($name, "", $lng->getLangKey(), $lng->getLangKey());
271  }
272 
273  self::$new_files[$ref_id][] = $newObj;
274 
275  return $newObj->getRefId();
276  } // workspace
277  else {
278  $node_id = $tree->insertObject($ref_id, $newObj->getId());
279  $access_handler->setPermissions($ref_id, $node_id);
280 
281  return $node_id;
282  }
283  }
284 
285 
296  public static function createFile($filename, $path, $ref_id, $tree = null, $access_handler = null)
297  {
298  global $DIC;
299 
300  $rbacsystem = $DIC->rbac()->system();
301  $lng = $DIC->language();
302  $ilErr = $DIC["ilErr"];
303 
304  if (!$access_handler) {
305  $permission = $rbacsystem->checkAccess("create", $ref_id, "file");
306  } else {
307  $permission = $access_handler->checkAccess("create", "", $ref_id, "file");
308  }
309  if ($permission) {
310 
311  // create and insert file in grp_tree
312  include_once("./Modules/File/classes/class.ilObjFile.php");
313  $fileObj = new ilObjFile();
314  $fileObj->setType('file');
317 
318  // better use this, mime_content_type is deprecated
319  include_once("./Services/MediaObjects/classes/class.ilObjMediaObject.php");
320  $fileObj->setFileType(ilObjMediaObject::getMimeType($path . "/" . $filename));
321  $fileObj->setFileSize(filesize($path . "/" . $filename));
322  $fileObj->create();
323 
324  // repository
325  if (!$access_handler) {
326  $fileObj->createReference();
327  $fileObj->putInTree($ref_id);
328  $fileObj->setPermissions($ref_id);
329 
330  self::$new_files[$ref_id][] = $fileObj;
331  } else {
332  $node_id = $tree->insertObject($ref_id, $fileObj->getId());
333  $access_handler->setPermissions($ref_id, $node_id);
334  }
335 
336  // upload file to filesystem
337  $fileObj->createDirectory();
338  $fileObj->storeUnzipedFile($path . "/" . $filename, ilFileUtils::utf8_encode(ilUtil::stripSlashes($filename)));
339  } else {
340  $ilErr->raiseError($lng->txt("permission_denied"), $ilErr->MESSAGE);
341  }
342  }
343 
344 
348  public static function getNewObjects()
349  {
350  return self::$new_files;
351  }
352 
353 
363  public static function utf8_encode($string)
364  {
365 
366  // From http://w3.org/International/questions/qa-forms-utf-8.html
367  return (preg_match('%^(?:
368  [\x09\x0A\x0D\x20-\x7E] # ASCII
369  | [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
370  | \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
371  | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
372  | \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
373  | \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
374  | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
375  | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
376  )*$%xs', $string)) ? $string : utf8_encode($string);
377  }
378 
379 
388  public static function fastBase64Decode($filein, $fileout)
389  {
390  $fh = fopen($filein, 'rb');
391  $fh2 = fopen($fileout, 'wb');
392  stream_filter_append($fh2, 'convert.base64-decode');
393 
394  while (!feof($fh)) {
395  $chunk = fgets($fh);
396  if ($chunk === false) {
397  break;
398  }
399  fwrite($fh2, $chunk);
400  }
401  fclose($fh);
402  fclose($fh2);
403 
404  return true;
405  }
406 
407 
415  public function fastBase64Encode($filein, $fileout)
416  {
417  $fh = fopen($filein, 'rb');
418  $fh2 = fopen($fileout, 'wb');
419  stream_filter_append($fh2, 'convert.base64-encode');
420 
421  while (feof($fh)) {
422  $chunk = fgets($fh, 76);
423  if ($chunk === false) {
424  break;
425  }
426  fwrite($fh2, $chunk);
427  }
428  fclose($fh);
429  fclose($fh2);
430  }
431 
432 
443  private function fastGZip($in, $out, $level = "9")
444  {
445  if (!file_exists($in) || !is_readable($in)) {
446  return false;
447  }
448  if ((!file_exists($out) && !is_writable(dirname($out)) || (file_exists($out) && !is_writable($out)))) {
449  return false;
450  }
451 
452  $in_file = fopen($in, "rb");
453  if (!$out_file = gzopen($out, "wb" . $param)) {
454  return false;
455  }
456 
457  while (!feof($in_file)) {
458  $buffer = fgets($in_file, 4096);
459  gzwrite($out_file, $buffer, 4096);
460  }
461 
462  fclose($in_file);
463  gzclose($out_file);
464 
465  return true;
466  }
467 
468 
478  public function fastGunzip($in, $out)
479  {
480  if (!file_exists($in) || !is_readable($in)) {
481  return false;
482  }
483  if ((!file_exists($out) && !is_writable(dirname($out)) || (file_exists($out) && !is_writable($out)))) {
484  return false;
485  }
486 
487  $in_file = gzopen($in, "rb");
488  $out_file = fopen($out, "wb");
489 
490  while (!gzeof($in_file)) {
491  $buffer = gzread($in_file, 4096);
492  fwrite($out_file, $buffer, 4096);
493  }
494 
495  gzclose($in_file);
496  fclose($out_file);
497 
498  return true;
499  }
500 
501 
507  public static function lookupContentMimeType($content)
508  {
509  $finfo = new finfo(FILEINFO_MIME);
510 
511  return $finfo->buffer($content);
512  }
513 
514 
520  public static function lookupFileMimeType($a_file)
521  {
522  if (!file_exists($a_file) or !is_readable($a_file)) {
523  return false;
524  }
525 
526  return self::lookupContentMimeType(file_get_contents($a_file));
527  }
528 
529 
535  public static function _lookupMimeType($a_file)
536  {
537  return self::lookupFileMimeType($a_file);
538  }
539 
540 
544  public static function getExplicitlyBlockedFiles()
545  {
546  global $DIC;
547  $setting = $DIC->settings();
548 
549  static $fileadmin_ref_id;
550 
551  if ($fileadmin_ref_id === null) {
552  $id = (int) reset(ilObject2::_getObjectsByType('facs'))['obj_id'];
553  $fileadmin_ref_id = (int) reset(ilObject2::_getAllReferences($id));
554  }
555  if ($DIC->rbac()->system()->checkAccess('upload_blacklisted_files', $fileadmin_ref_id)) {
556  return [];
557  }
558 
559  $blocked = [];
560  foreach (explode(",", $setting->get("suffix_custom_expl_black")) as $blocked_suffix) {
561  $blocked[] = trim(strtolower($blocked_suffix));
562  }
563  $blocked = array_filter($blocked, function($item){
564  return $item !== '';
565  });
566 
567  return $blocked;
568  }
569 
570 
576  public static function getValidExtensions()
577  {
578  global $DIC;
579 
580  $setting = $DIC->settings();
581 
582  // default white list
583  $whitelist = self::getDefaultValidExtensionWhiteList();
584 
585  // remove custom black list values
586  foreach (explode(",", $setting->get("suffix_repl_additional")) as $custom_black) {
587  $custom_black = trim(strtolower($custom_black));
588  if (($key = array_search($custom_black, $whitelist)) !== false) {
589  unset($whitelist[$key]);
590  }
591  }
592 
593  // add custom white list values
594  foreach (explode(",", $setting->get("suffix_custom_white_list")) as $custom_white) {
595  $custom_white = trim(strtolower($custom_white));
596  if (!in_array($custom_white, $whitelist)) {
597  $whitelist[] = $custom_white;
598  }
599  }
600 
601  // bugfix mantis 25498: add an empty entry to ensure that files without extensions are still valid
602  $whitelist[] = '';
603 
604  return $whitelist;
605  }
606 
607 
613  public static function getDefaultValidExtensionWhiteList()
614  {
615  return array(
616  '3gp', // VIDEO__3_GPP
617  '7z', // application/x-7z-compressed
618  'ai', // APPLICATION__POSTSCRIPT
619  'aif', // AUDIO__AIFF
620  'aifc', // AUDIO__AIFF
621  'aiff', // AUDIO__AIFF
622  'au', // AUDIO__BASIC
623  'arw', // IMAGE__X_SONY_ARW
624  'avi', // AUDIO__BASIC
625  'backup', // scorm wbts
626  'bak', // scorm wbts
627  'bas', // SPSS script
628  'bpmn', // bpmn
629  'bpmn2', // bpmn2
630  'bmp', // IMAGE__BMP
631  'bib', // bibtex
632  'bibtex', // bibtex
633  'bz', // APPLICATION__X_BZIP
634  'bz2', // APPLICATION__X_BZIP2
635  'c', // TEXT__PLAIN
636  'c++', // TEXT__PLAIN
637  'cc', // TEXT__PLAIN
638  'cct', // scorm wbts
639  'cdf', // (Wolfram) Computable Document Format
640  'cer', // APPLICATION__X_X509_CA_CERT
641  'class', // APPLICATION__X_JAVA_CLASS
642  'cls', // SPSS script
643  'conf', // TEXT__PLAIN
644  'cpp', // TEXT__X_C
645  'crt', // APPLICATION__X_X509_CA_CERT
646  'crs', // scorm wbts
647  'crw', // IMAGE__X_CANON_CRW
648  'cr2', // IMAGE__X_CANON_CR2
649  'css', // TEXT__CSS
650  'cst', // scorm wbts
651  'csv',
652  'cur', // scorm wbts
653  'db', // scorm wbts
654  'dcr', // scorm wbts
655  'des', // scorm wbts
656  'dng', // IMAGE__X_ADOBE_DNG
657  'doc', // APPLICATION__MSWORD,
658  'docx', // APPLICATION__VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_DOCUMENT,
659  'dot', // APPLICATION__MSWORD,
660  'dotx', // APPLICATION__VND_OPENXMLFORMATS_OFFICEDOCUMENT_WORDPROCESSINGML_TEMPLATE,
661  'dtd',
662  'dvi', // APPLICATION__X_DVI,
663  'el', // TEXT__X_SCRIPT_ELISP,
664  'eps', // APPLICATION__POSTSCRIPT,
665  'epub', // APPLICATION__EPUB,
666  'f', // TEXT__X_FORTRAN,
667  'f77', // TEXT__X_FORTRAN,
668  'f90', // TEXT__X_FORTRAN,
669  'flv', // VIDEO__X_FLV,
670  'for', // TEXT__X_FORTRAN,
671  'g3', // IMAGE__G3FAX,
672  'gif', // IMAGE__GIF,
673  'gl', // VIDEO__GL,
674  'gan',
675  'ggb', // GEOGEBRA
676  'gsd', // AUDIO__X_GSM,
677  'gsm', // AUDIO__X_GSM,
678  'gtar', // APPLICATION__X_GTAR,
679  'gz', // APPLICATION__X_GZIP,
680  'gzip', // APPLICATION__X_GZIP,
681  'h', // TEXT__X_C
682  'hpp', // TEXT__X_C
683  'htm', // TEXT__HTML,
684  'html', // TEXT__HTML,
685  'htmls', // TEXT__HTML,
686  'ibooks', // Apple IBook Format
687  'ico', // IMAGE__X_ICON,
688  'ics', // iCalendar, TEXT__CALENDAR
689  'ini', // scorm wbts
690  'ipynb', // iPython file for Jupyter Notebooks
691  'java', // TEXT__X_JAVA_SOURCE,
692  'jbf', // scorm wbts
693  'jpeg', // IMAGE__PJPEG,
694  'jpg', // IMAGE__JPEG,
695  'js', // APPLICATION__X_JAVASCRIPT,
696  'jsf', // scorm wbts
697  'jso', // scorm wbts
698  'json', // APPLICATION__JSON
699  'latex', // APPLICATION__X_LATEX,
700  'lang', // lang files
701  'less', // less
702  'log', // TEXT__PLAIN,
703  'lsp', // APPLICATION__X_LISP,
704  'ltx', // APPLICATION__X_LATEX,
705  'm1v', // VIDEO__MPEG,
706  'm2a', // AUDIO__MPEG,
707  'm2v', // VIDEO__MPEG,
708  'm3u', // AUDIO__X_MPEQURL,
709  'm4a', // AUDIO__MP4,
710  'm4v', // VIDEO__MP4,
711  'markdown', // TEXT__MARKDOWN,
712  'm', // MATLAB
713  'mat', // MATLAB
714  'md', // TEXT__MARKDOWN,
715  'mdl', // Vensim files
716  'mdown', // TEXT__MARKDOWN,
717  'mid', // AUDIO__MIDI,
718  'min', // scorm articulate?
719  'midi', // AUDIO__MIDI,
720  'mobi', // APPLICATION__X_MOBI,
721  'mod', // AUDIO__MOD,
722  'mov', // VIDEO__QUICKTIME,
723  'movie', // VIDEO__X_SGI_MOVIE,
724  'mp2', // AUDIO__X_MPEG,
725  'mp3', // AUDIO__X_MPEG3,
726  'mp4', // VIDEO__MP4,
727  'mpa', // AUDIO__MPEG,
728  'mpeg', // VIDEO__MPEG,
729  'mpg', // AUDIO__MPEG,
730  'mph', // COMSOL Multiphysics
731  'mpga', // AUDIO__MPEG,
732  'mpp', // APPLICATION__VND_MS_PROJECT,
733  'mpt', // APPLICATION__X_PROJECT,
734  'mpv', // APPLICATION__X_PROJECT,
735  'mpx', // APPLICATION__X_PROJECT,
736  'mv', // VIDEO__X_SGI_MOVIE,
737  'mw',
738  'mv4', // VIDEO__MP4,
739  'nb', // Wolfram Notebook files
740  'nbp', // Wolfram Notebook Player files
741  'nef', // IMAGE__X_NIKON_NEF,
742  'nif', // IMAGE__X_NIFF,
743  'niff', // IMAGE__X_NIFF,
744  'obj', // Wavefront .obj file
745  'obm', // SPSS script
746  'odt', // Open document text,
747  'ods', // Open document spreadsheet,
748  'odp', // Open document presentation,
749  'odg', // Open document graphics,
750  'odf', // Open document formula,
751  'oga', // AUDIO__OGG,
752  'ogg', // AUDIO__OGG,
753  'ogv', // VIDEO__OGG,
754  'old', // no real file extension, but used in mail/forum components,
755  'p', // TEXT__X_PASCAL,
756  'pas', // TEXT__PASCAL,
757  'pbm', // IMAGE__X_PORTABLE_BITMAP,
758  'pcl', // APPLICATION__VND_HP_PCL,
759  'pct', // IMAGE__X_PICT,
760  'pcx', // IMAGE__X_PCX,
761  'pdf', // APPLICATION__PDF,
762  'pgm', // IMAGE__X_PORTABLE_GRAYMAP,
763  'pic', // IMAGE__PICT,
764  'pict', // IMAGE__PICT,
765  'png', // IMAGE__PNG,
766  'por', // Portable SPSS file
767  'pov', // MODEL__X_POV,
768  'project', // scorm wbts
769  'properties', // scorm wbts
770  'ppa', // APPLICATION__VND_MS_POWERPOINT,
771  'ppm', // IMAGE__X_PORTABLE_PIXMAP,
772  'pps', // APPLICATION__VND_MS_POWERPOINT,
773  'ppsx', // APPLICATION__VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_SLIDESHOW,
774  'ppt', // APPLICATION__POWERPOINT,
775  'pptx', // APPLICATION__VND_OPENXMLFORMATS_OFFICEDOCUMENT_PRESENTATIONML_PRESENTATION,
776  'ppz', // APPLICATION__MSPOWERPOINT,
777  'ps', // APPLICATION__POSTSCRIPT,
778  'psd', // scorm wbts
779  'pwz', // APPLICATION__VND_MS_POWERPOINT,
780  'qt', // VIDEO__QUICKTIME,
781  'qtc', // VIDEO__X_QTC,
782  'qti', // IMAGE__X_QUICKTIME,
783  'qtif', // IMAGE__X_QUICKTIME,
784  'r', // R script file
785  'ra', // AUDIO__X_PN_REALAUDIO,
786  'ram', // AUDIO__X_PN_REALAUDIO,
787  'rar', // RAR (application/vnd.rar)
788  'rast', // IMAGE__CMU_RASTER,
789  'rda', // R data file
790  'rev', // RAR (application/vnd.rar)
791  'rexx', // TEXT__X_SCRIPT_REXX,
792  'ris', // ris
793  'rf', // IMAGE__VND_RN_REALFLASH,
794  'rgb', // IMAGE__X_RGB,
795  'rm', // APPLICATION__VND_RN_REALMEDIA,
796  'rmd', // R Markdown file
797  'rmi', // AUDIO__MID,
798  'rmm', // AUDIO__X_PN_REALAUDIO,
799  'rmp', // AUDIO__X_PN_REALAUDIO,
800  'rt', // TEXT__RICHTEXT,
801  'rtf', // TEXT__RICHTEXT,
802  'rtx', // TEXT__RICHTEXT,
803  'rv', // VIDEO__VND_RN_REALVIDEO,
804  's', // TEXT__X_ASM,
805  's3m', // AUDIO__S3M,
806  'sav', // SPSS data file
807  'sbs', // SPSS script
808  'sec', //
809  'sdml', // TEXT__PLAIN,
810  'sgm', // TEXT__SGML,
811  'sgml', // TEXT__SGML
812  'smi', // APPLICATION__SMIL,
813  'smil', // APPLICATION__SMIL,
814  'sps', // SPSS syntax file
815  'spv', // SPSS output file
816  'stl', // Stereolithography CAD file
817  'svg', // IMAGE__SVG_XML,
818  'swa', // scorm wbts
819  'swf', // APPLICATION__X_SHOCKWAVE_FLASH,
820  'swz', // scorm wbts
821  'tar', // application/x-tar
822  'tex', // APPLICATION__X_TEX,
823  'texi', // APPLICATION__X_TEXINFO,
824  'texinfo', // APPLICATION__X_TEXINFO,
825  'text', // TEXT__PLAIN,
826  'tgz', // APPLICATION__X_COMPRESSED,
827  'tif', // IMAGE__TIFF,
828  'tiff', // IMAGE__TIFF,
829  'ttf', // scorm wbts
830  'txt', // TEXT__PLAIN,
831  'tmp',
832  'uvproj',
833  'vdf',
834  'vimeo', // VIDEO__VIMEO,
835  'viv', // VIDEO__VIMEO,
836  'vivo', // VIDEO__VIVO,
837  'vrml', // APPLICATION__X_VRML,
838  'vsdx', // viseo
839  'wav', // wav
840  'webm', // VIDEO__WEBM,
841  'wmv', // VIDEO__X_MS_WMV,
842  'wmx', // VIDEO__X_MS_WMX,
843  'wmz', // VIDEO__X_MS_WMZ,
844  'woff', // web open font format,
845  'wwd', // SPSS script
846  'xhtml', // APPLICATION__XHTML_XML,
847  'xif', // IMAGE__VND_XIFF,
848  'xls', // APPLICATION__EXCEL,
849  'xlsx', // APPLICATION__VND_OPENXMLFORMATS_OFFICEDOCUMENT_SPREADSHEETML_SHEET,
850  'xmind',
851  'xml', // self::TEXT__XML,
852  'xsl', // APPLICATION__XML,
853  'xsd', // scorm
854  'zip' // APPLICATION__ZIP
855  );
856  }
857 
858 
867  public static function getValidFilename($a_filename)
868  {
869  if (!self::hasValidExtension($a_filename)) {
870  $pi = pathinfo($a_filename);
871  // if extension is not in white list, remove all "." and add ".sec" extension
872  $basename = str_replace(".", "", $pi["basename"]);
873  if (trim($basename) == "") {
874  include_once("./Services/Utilities/classes/class.ilFileUtilsException.php");
875  throw new ilFileUtilsException("Invalid upload filename.");
876  }
877  $basename .= ".sec";
878  if ($pi["dirname"] != "" && ($pi["dirname"] != "." || substr($a_filename, 0, 2) == "./")) {
879  $a_filename = $pi["dirname"] . "/" . $basename;
880  } else {
881  $a_filename = $basename;
882  }
883  }
884 
885  return $a_filename;
886  }
887 
888 
894  public static function hasValidExtension($a_filename)
895  {
896  $pi = pathinfo($a_filename);
897 
898  return (in_array(strtolower($pi["extension"]), self::getValidExtensions()));
899  }
900 
901 
911  public static function rename($a_source, $a_target)
912  {
913  $pi = pathinfo($a_target);
914  if (!in_array(strtolower($pi["extension"]), self::getValidExtensions())) {
915  include_once("./Services/Utilities/classes/class.ilFileUtilsException.php");
916  throw new ilFileUtilsException("Invalid target file");
917  }
918 
919  return rename($a_source, $a_target);
920  }
921 }
Class ilObjFolder.
static getMimeType($a_file, $a_external=null)
get mime type for file
static createFile($filename, $path, $ref_id, $tree=null, $access_handler=null)
Creates and inserts file object into tree.
static virusHandling($a_file, $a_orig_name="", $a_clean=true)
scan file for viruses and clean files if possible
fastBase64Encode($filein, $fileout)
decodes base encoded file row by row to prevent memory exhaust
static hasValidExtension($a_filename)
static unzip($a_file, $overwrite=false, $a_flat=false)
unzip file
static createObjects($dir, $structure, $ref_id, $containerType, $tree=null, $access_handler=null)
Recursively scans a given directory and creates file and folder/category objects. ...
static _getObjectsByType($a_obj_type="", $a_owner="")
$ilErr
Definition: raiseError.php:18
static createContainer($name, $ref_id, $containerType, $tree=null, $access_handler=null)
Creates and inserts container object (folder/category) into tree.
static _lookupMimeType($a_file)
static rename($a_source, $a_target)
Rename a file.
if($format !==null) $name
Definition: metadata.php:230
static getDefaultValidExtensionWhiteList()
Valid extensions.
static _getAllReferences($a_id)
$lng
static moveUploadedFile($a_file, $a_name, $a_target, $a_raise_errors=true, $a_mode="move_uploaded")
move uploaded file
static lookupFileMimeType($a_file)
$param
Definition: xapitoken.php:31
static processZipFile($a_directory, $a_file, $structure, $ref_id=null, $containerType=null, $tree=null, $access_handler=null)
unzips in given directory and processes uploaded zip for use as single files
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
static getValidExtensions()
Valid extensions.
Class ilObjCategory.
$filename
Definition: buildRTE.php:89
if(php_sapi_name() !='cli') $in
Definition: Utf8Test.php:37
Class ilObjWorkspaceFolder.
static utf8_encode($string)
utf8-encodes string if it is not a valid utf8-string.
static getExplicitlyBlockedFiles()
static fastBase64Decode($filein, $fileout)
decodes base encoded file row by row to prevent memory exhaust
fastGZip($in, $out, $level="9")
fast compressing the file with the zlib-extension without memory consumption
static getNewObjects()
$DIC
Definition: xapitoken.php:46
static recursive_dirscan($dir, &$arr)
Recursively scans a given directory and writes path and filename into referenced array.
static lookupContentMimeType($content)
fastGunzip($in, $out)
fast uncompressing the file with the zlib-extension without memory consumption
static delDir($a_dir, $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
static getValidFilename($a_filename)
Get valid filename.
Class to report exception.