19 declare(strict_types=1);
84 $this->resource = $input;
85 $this->path_to_file = $input->getMetadata(
'uri');
86 } elseif ($input === self::DIRECT_PHP_OUTPUT) {
103 if (!$this->
delivery()->supportsStreaming()) {
120 !$this->
delivery()->doesFileExists($this->path_to_file)
121 && $this->path_to_file !== self::DIRECT_PHP_OUTPUT
125 $this->
http->sendResponse();
189 $this->
http->close();
196 if ($info !==
'' && $info !==
'0') {
201 $finfo = finfo_open(FILEINFO_MIME_TYPE);
223 if (self::$delivery_type_static) {
229 if (function_exists(
'apache_get_modules')
230 && in_array(
'mod_xsendfile', apache_get_modules(),
true)
239 if (is_file(
'./components/ILIAS/FileDelivery/classes/override.php')) {
240 $override_delivery_type =
false;
242 require_once(
'./components/ILIAS/FileDelivery/classes/override.php');
243 if ($override_delivery_type) {
248 if ((!$ilRuntime->isFPM() && !$ilRuntime->isHHVM())
470 $ob_get_contents = ob_get_contents();
471 if ($ob_get_contents) {
521 foreach ($umlaut_mapping as $src => $tgt) {
522 $original_filename = str_replace($src, $tgt, $original_filename);
525 $ascii_filename = htmlentities($original_filename, ENT_NOQUOTES,
'UTF-8');
526 $ascii_filename = preg_replace(
'/\&(.)[^;]*;/',
'\\1', $ascii_filename);
527 $ascii_filename = preg_replace(
'/[\x7f-\xff]/',
'_', (
string) $ascii_filename);
530 $ascii_filename = preg_replace(
531 '/[:\x5c\/\*\?\"<>\|]/',
533 (
string) $ascii_filename
535 return $ascii_filename;
static returnASCIIFileName(string $original_filename)
Converts a UTF-8 filename to ASCII.
setConvertFileNameToAsci(bool $convert_file_name_to_asci)
setDeleteFile(bool $delete_file)
setMimeType(string $mime_type)
FileDeliveryTypeFactory $factory
static string $delivery_type_static
setHasContext(bool $has_context)
Class FileDeliveryTypeFactory.
static lookupMimeType(string $path_to_file, string $fallback=self::APPLICATION__OCTET_STREAM, bool $a_external=false)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setDisposition(string $disposition)
isConvertFileNameToAsci()
static http()
Fetches the global http state from ILIAS.
static setDEBUG(bool $DEBUG)
bool $convert_file_name_to_asci
cleanDownloadFileName()
Converts the filename to ASCII.
setExitAfter(bool $exit_after)
const APPLICATION__OCTET_STREAM
setDownloadFileName(string $download_file_name)
setDeliveryType(string $delivery_type)
setHashFilename(bool $hash_filename)
static getType()
Get context type.
__construct($input, private Services $http)
setShowLastModified(bool $show_last_modified)
determineDownloadFileName()
string $download_file_name
The base interface for all filesystem streams.
setPathToFile(string $path_to_file)
setSendMimeType(bool $send_mime_type)