3 declare(strict_types=1);
46 $this->httpService = $httpState;
55 return is_readable($path_to_file);
62 public function prepare(
string $path_to_file): bool
72 public function deliver(
string $path_to_file,
bool $file_marked_to_delete): void
74 $delivery =
function () use ($path_to_file):
void {
75 $response = $this->httpService->response()
76 ->withHeader(self::X_SENDFILE, realpath($path_to_file));
77 $this->httpService->saveResponse(
$response);
78 $this->httpService->sendResponse();
81 if ($file_marked_to_delete) {
82 $this->sendFileUnbufferedUsingHeaders($delivery);
121 return unlink($path_to_file);
doesFileExists(string $path_to_file)
supportsAttachmentDelivery()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Interface ilFileDeliveryType.
handleFileDeletion(string $path_to_file)
bool
__construct(Services $httpState)
PHP constructor.
prepare(string $path_to_file)
bool
const X_SENDFILE_TEMPORARY
ILIAS HTTP Services $httpService
deliver(string $path_to_file, bool $file_marked_to_delete)
absolute path to fileThis is needed at this point for header-based delivery methodsvoid ...