19 declare(strict_types=1);
58 return is_readable($path_to_file);
68 if ($possible_stream !==
null) {
69 $this->file = $possible_stream->detach();
71 $resource = fopen($path_to_file,
'rb');
72 $this->file = $resource ===
false ?
null : $resource;
81 public function deliver(
string $path_to_file,
bool $file_marked_to_delete): void
83 $file = $path_to_file;
88 $response = $this->httpService->response()->withStatus(404);
89 $this->httpService->saveResponse(
$response);
93 $size = filesize(
$file);
109 $response = $this->httpService->response()->withHeader(
"Accept-Ranges",
"0-$length");
110 $this->httpService->saveResponse(
$response);
111 $server = $this->httpService->request()->getServerParams();
115 if (isset(
$server[
'HTTP_RANGE'])) {
120 [,
$range] = explode(
'=', (
string)
$server[
'HTTP_RANGE'], 2);
122 if (str_contains(
$range,
',')) {
127 $this->httpService->saveResponse(
$response);
138 $c_start = $size - substr(
$range, 1);
148 $c_end = ($c_end > $end) ? $end : $c_end;
150 if ($c_start > $c_end || $c_start > $size - 1 || $c_end >= $size) {
153 $this->httpService->saveResponse(
$response);
160 $length = $end - $start + 1;
161 fseek($fp, (
int) $start);
163 $response = $this->httpService->response()->withStatus(206);
165 $this->httpService->saveResponse(
$response);
171 $this->httpService->saveResponse(
$response);
174 $this->httpService->sendResponse();
178 while (!feof($fp) && ($p = ftell($fp)) <= $end) {
179 if ($p + $buffer > $end) {
182 $buffer = $end - $p + 1;
186 echo fread($fp, $buffer);
224 $this->httpService->sendResponse();
234 return unlink($path_to_file);
prepare(string $path_to_file, ?FileStream $possible_stream)
handleFileDeletion(string $path_to_file)
bool
__construct(private Services $httpService)
PHP constructor.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Interface ilFileDeliveryType.
doesFileExists(string $path_to_file)
deliver(string $path_to_file, bool $file_marked_to_delete)
absolute path to fileThis is needed at this point for header-based delivery methodsvoid ...
supportsAttachmentDelivery()
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
The base interface for all filesystem streams.