ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ContainerWrapper.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 
33 final class ContainerWrapper
34 {
38  private const BASE = '/';
39  private array $ignored = ['.', '..', '__MACOSX', '.info', '.DS_Store'];
40 
41  private string $current_level;
42  private array $data;
43  private Services $irss;
44  private bool $use_flavour = true;
45  private ZipReader $reader;
46  private \ILIAS\FileDelivery\Services $file_delivery;
47 
48  public function __construct(
49  private ResourceIdentification $rid,
50  ?string $current_level = self::BASE ?? self::BASE
51  ) {
52  global $DIC;
53  // dependencies
54  $this->irss = $DIC->resourceStorage();
55  $this->file_delivery = $DIC->fileDelivery();
56  $this->reader = new ZipReader(
57  $this->irss->consume()->stream($rid)->getStream()
58  );
59 
60  // Init Data
61  $this->initData($rid);
62 
63  $this->initCurrentLevel($current_level);
64  }
65 
66  protected function initData(
68  ): void {
69  // init ZIP
70 
71  if ($this->use_flavour) {
72  $flavour_definition = new \ZipStructureDefinition();
73  $flavour = $this->irss->flavours()->get(
74  $rid,
75  $flavour_definition
76  );
77  $flavour_stream = $flavour->getStreamResolvers()[0] ?? null;
78  if ($flavour_stream !== null) {
79  $this->data = $flavour_definition->wake((string) $flavour_stream->getStream());
80  }
81  }
82 
83  if (empty($this->data)) {
84  $this->data = $this->reader->getStructure();
85  }
86 
87  // remove items from array with key . or /
88  $this->data = array_filter(
89  $this->data,
90  static fn($key): bool => !in_array($key, ['.', '/', './', '..'], true),
91  ARRAY_FILTER_USE_KEY
92  );
93  }
94 
95  public function download(string $path_inside_zip): never
96  {
97  [$stream, $info] = $this->reader->getItem($path_inside_zip, $this->data);
98 
99  $supported_for_inline = [
100  'image/*',
101  'application/pdf',
102  ];
103 
104  $regex = array_map(
105  static fn(string $mime_type): string => str_replace('*', '.*', preg_quote($mime_type, '/')),
106  $supported_for_inline
107  );
108  $regex = implode('|', $regex);
109 
110  $disposition = preg_match("/($regex)/", (string) $info['mime_type']) ? Disposition::INLINE : Disposition::ATTACHMENT;
111 
112  $this->file_delivery->delivery()->deliver(
113  $stream,
114  $info['basename'],
115  $info['mime_type'],
116  $disposition
117  );
118  }
119 
120  public function unzip(string $path_inside_zip): bool
121  {
122  [$stream, $info] = $this->reader->getItem($path_inside_zip, $this->data);
123  if ($info['mime_type'] !== 'application/zip' && $info['mime_type'] !== 'application/x-zip-compressed') {
124  return false;
125  }
126 
127  // save stream to temporary file
128  $tmp_file = tempnam(sys_get_temp_dir(), 'ilias_zip_');
129 
131  $return = file_put_contents($tmp_file, $stream->detach());
132 
133  $zip_reader = new ZipReader(
134  Streams::ofResource(fopen($tmp_file, 'rb'))
135  );
136 
137  foreach ($zip_reader->getStructure() as $append_path_inside_zip => $item) {
138  if ($item['is_dir']) {
139  continue;
140  }
141  [$stream, $info] = $zip_reader->getItem($append_path_inside_zip, $this->data);
142  $this->irss->manageContainer()->addStreamToContainer(
143  $this->rid,
144  $stream,
145  $this->current_level . '/' . ltrim($append_path_inside_zip, './')
146  );
147  }
148 
149  unlink($tmp_file);
150  return true;
151  }
152 
153  public function getEntries(): \Generator
154  {
155  // sort by basename, but directories after files
156  uasort($this->data, static function (array $a, array $b): int {
157  if ($a['is_dir'] === $b['is_dir']) {
158  return strnatcasecmp((string) $a['basename'], (string) $b['basename']);
159  }
160  return $a['is_dir'] ? 1 : -1;
161  });
162 
163  foreach ($this->data as $path => $path_data) {
164  $dirname = $path_data['dirname'] ?? './';
165  if ($dirname !== $this->current_level) {
166  continue;
167  }
168  $basename = $path_data['basename'] ?? '';
169  if (in_array($basename, $this->ignored, true)) {
170  continue;
171  }
172 
173  if ($path_data['is_dir'] ?? false) {
174  // directory
175  yield $this->directory($path, $path_data);
176  } else {
177  // file
178  $file = $this->file($path, $path_data);
179  if ($file !== null) {
180  yield $file;
181  }
182  }
183  }
184  }
185 
186  public function getData(): array
187  {
188  return $this->data;
189  }
190 
191  private function basename(string $full_path): string
192  {
193  return basename($full_path);
194  // return preg_replace('/^' . preg_quote($this->current_level, '/') . '/', '', $full_path);
195  }
196 
197  public function initCurrentLevel(string $current_level): void
198  {
199  // init current level
200  $current_level = '/' . ltrim($current_level, './');
201  $current_level = rtrim($current_level, '/');
202  $this->current_level = $current_level === '' ? self::BASE : $current_level;
203  }
204 
205  protected function directory(string $path_inside_zip, array $data): ?Dir
206  {
207  return new Dir(
208  $path_inside_zip,
209  $this->basename($path_inside_zip),
210  new \DateTimeImmutable('@' . ($data['modified'] ?? 0))
211  );
212  }
213 
214  protected function file(string $path_inside_zip, array $data): ?File
215  {
216  return new File(
217  $path_inside_zip,
218  $this->basename($path_inside_zip),
219  $data['mime_type'] ?? 'application/octet-stream',
220  $data['size'] ?? 0,
221  new \DateTimeImmutable('@' . ($data['modified'] ?? 0))
222  );
223  }
224 
225 }
$path
Definition: ltiservices.php:29
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static ofResource($resource)
Wraps an already created resource with the stream abstraction.
Definition: Streams.php:64
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(private ResourceIdentification $rid, ?string $current_level=self::BASE ?? self::BASE)
global $DIC
Definition: shib_login.php:22
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples