ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
BaseDelivery.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 
31 abstract class BaseDelivery
32 {
33  protected const MIME_TYPE_MAP = __DIR__ . '/../../../FileUpload/src/mime_type_map.php';
34 
35  protected array $mime_type_map;
36 
37  public function __construct(
38  protected Services $http,
39  protected ResponseBuilder $response_builder,
40  protected ResponseBuilder $fallback_response_builder,
41  ) {
42  if (is_readable(self::MIME_TYPE_MAP)) {
43  $map = include self::MIME_TYPE_MAP;
44  }
45  $this->mime_type_map = $map ?? [];
46  }
47 
48  protected function saveAndClose(
49  ResponseInterface $r,
50  ?string $path_to_delete = null
51  ): never {
52  $sender = function () use ($r): void {
53  $this->http->saveResponse($r);
54  $this->http->sendResponse();
55  $this->http->close();
56  };
57 
58  if ($path_to_delete !== null && file_exists($path_to_delete)) {
59  ignore_user_abort(true);
60  set_time_limit(0);
61  ob_start();
62 
63  $sender();
64 
65  ob_flush();
66  ob_end_flush();
67  flush();
68 
69  unlink($path_to_delete);
70  } else {
71  $sender();
72  }
73  }
74 
75  protected function setGeneralHeaders(
76  ResponseInterface $r,
77  string $uri,
78  string $mime_type,
79  string $file_name,
80  Disposition $disposition = Disposition::INLINE
81  ): ResponseInterface {
82  $r = $r->withHeader('X-ILIAS-FileDelivery-Method', $this->response_builder->getName());
83  $r = $r->withHeader(ResponseHeader::CONTENT_TYPE, $mime_type);
84  $r = $r->withHeader(
86  $disposition->value . '; filename="' . $file_name . '"'
87  );
88  $r = $r->withHeader(ResponseHeader::CACHE_CONTROL, 'max-age=31536000, immutable, private');
89  $r = $r->withHeader(
91  date("D, j M Y H:i:s", strtotime('+5 days')) . " GMT"
92  );
93 
94  return $r;
95  }
96 }
__construct(protected Services $http, protected ResponseBuilder $response_builder, protected ResponseBuilder $fallback_response_builder,)
setGeneralHeaders(ResponseInterface $r, string $uri, string $mime_type, string $file_name, Disposition $disposition=Disposition::INLINE)
saveAndClose(ResponseInterface $r, ?string $path_to_delete=null)
$http
Definition: deliver.php:30
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static http()
Fetches the global http state from ILIAS.
$r