19 declare(strict_types=1);
60 $this->
http->saveResponse($r->withStatus(404));
61 $this->
http->sendResponse();
74 Disposition::ATTACHMENT
78 public function inline(
93 string $download_file_name,
94 ?
string $mime_type =
null,
97 $r = $this->
http->response();
98 $uri = $stream->getMetadata()[
'uri'];
100 if ($stream instanceof
ZIPStream || $stream->getMetadata()[
'uri'] ===
'php://memory') {
101 $this->response_builder = $this->fallback_response_builder;
107 $mime_type ?? mime_content_type($uri),
112 $r = $this->response_builder->buildForStream(
113 $this->
http->request(),
123 $parts = explode(self::SUBREQUEST_SEPARATOR, $token);
127 $sub_request = implode(
'/', array_slice(
$parts, 1));
130 $r = $this->
http->response();
131 $payload = $this->data_signer->verifyStreamToken($token);
136 $mime_type =
$payload->getMimeType();
137 $file_name =
$payload->getFilename();
143 $file_name =
$payload->getFilename();
153 if ($sub_request ===
null) {
162 $this->
http->saveResponse(
163 $this->response_builder->buildForStream(
164 $this->http->request(),
170 $requested_zip = $uri;
171 $sub_request = urldecode($sub_request);
173 $sub_request = explode(
'?', $sub_request)[0];
180 $file_inside_zip_uri = $file_inside_ZIP->getMetadata()[
'uri'];
181 $file_inside_zip_stream = fopen($file_inside_zip_uri,
'rb');
183 if ($file_inside_zip_stream ===
false) {
188 $this->response_builder = $this->fallback_response_builder;
193 $file_inside_zip_uri,
195 basename($sub_request),
200 $this->
http->saveResponse(
201 $this->response_builder->buildForStream(
202 $this->http->request(),
208 $this->
http->sendResponse();
209 $this->
http->close();
214 $suffix = strtolower(pathinfo($filename, PATHINFO_EXTENSION));
215 if (isset($this->mime_type_map[$suffix])) {
216 if (is_array($this->mime_type_map[$suffix]) && isset($this->mime_type_map[$suffix][0])) {
217 return $this->mime_type_map[$suffix][0];
220 return $this->mime_type_map[$suffix];
223 $mime_type = mime_content_type($filename);
224 if ($mime_type ===
'application/octet-stream') {
225 $mime_type = mime_content_type(substr($filename, 64));
227 return $mime_type ?:
'application/octet-stream';
setGeneralHeaders(ResponseInterface $r, string $uri, string $mime_type, string $file_name, Disposition $disposition=Disposition::INLINE)
deliver(FileStream $stream, string $download_file_name, ?string $mime_type=null, Disposition $disposition=Disposition::INLINE)
attached(FileStream $stream, string $download_file_name, ?string $mime_type=null)
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
if(count($parts) !=3) $payload
static ofFileInsideZIP(string $path_to_zip, string $path_inside_zip)
saveAndClose(ResponseInterface $r, ?string $path_to_delete=null)
const SUBREQUEST_SEPARATOR
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static ofResource($resource)
Wraps an already created resource with the stream abstraction.
static http()
Fetches the global http state from ILIAS.
__construct(private DataSigner $data_signer, Services $http, ResponseBuilder $response_builder, ResponseBuilder $fallback_response_builder,)
determineMimeType(string $filename)
notFound(ResponseInterface $r)
__construct(Container $dic, ilPlugin $plugin)
deliverFromToken(string $token)
string $download_file_name
The base interface for all filesystem streams.