50 $this->as_ascii = $this->
settings->isASCIIConvertionEnabled();
55 $filename = $this->sanitizer->sanitize(basename($filename_with_extension));
56 if ($this->as_ascii) {
67 foreach ($this->umlaut_mapping as $src => $tgt) {
68 $filename = str_replace($src, $tgt, $filename);
71 $ascii_filename = htmlentities($filename, ENT_NOQUOTES,
'UTF-8');
72 $ascii_filename = preg_replace(
'/\&(.)[^;]*;/',
'\\1', $ascii_filename);
73 $ascii_filename = preg_replace(
'/[\x7f-\xff]/',
'_', (
string) $ascii_filename);
76 $ascii_filename = preg_replace(
77 '/[:\x5c\/\*\?\"<>\|]/',
79 (
string) $ascii_filename
81 return $ascii_filename;
87 if ($this->
settings->isByPassAllowedForCurrentUser()) {
90 return parent::isBlockedExtension($extension);
Class ilFileServicesPolicy.
prepareFileNameForConsumer(string $filename_with_extension)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
isBlockedExtension(string $extension)
Class ilFileServicesFilenameSanitizer.
__construct(Container $dic, ilPlugin $plugin)
ilFileServicesFilenameSanitizer $sanitizer
Class WhiteAndBlacklistedFileNamePolicy.
__construct(protected ilFileServicesSettings $settings)