19 declare(strict_types=1);
39 private array
$ignored = [
'.',
'..',
'__MACOSX',
'.info',
'.DS_Store'];
50 ?
string $current_level = self::BASE ?? self::BASE
54 $this->irss = $DIC->resourceStorage();
55 $this->file_delivery = $DIC->fileDelivery();
57 $this->irss->consume()->stream($rid)->getStream()
71 if ($this->use_flavour) {
72 $flavour_definition = new \ZipStructureDefinition();
73 $flavour = $this->irss->flavours()->get(
77 $flavour_stream = $flavour->getStreamResolvers()[0] ??
null;
78 if ($flavour_stream !==
null) {
79 $this->data = $flavour_definition->wake((
string) $flavour_stream->getStream());
83 if (empty($this->data)) {
84 $this->data = $this->reader->getStructure();
88 $this->data = array_filter(
90 static fn($key):
bool => !in_array($key, [
'.',
'/',
'./',
'..'],
true),
95 public function download(
string $path_inside_zip): never
97 [$stream, $info] = $this->reader->getItem($path_inside_zip, $this->data);
99 $supported_for_inline = [
105 static fn(
string $mime_type):
string => str_replace(
'*',
'.*', preg_quote($mime_type,
'/')),
106 $supported_for_inline
108 $regex = implode(
'|', $regex);
110 $disposition = preg_match(
"/($regex)/", (
string) $info[
'mime_type']) ? Disposition::INLINE : Disposition::ATTACHMENT;
112 $this->file_delivery->delivery()->deliver(
120 public function unzip(
string $path_inside_zip):
bool 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') {
128 $tmp_file = tempnam(sys_get_temp_dir(),
'ilias_zip_');
131 $return = file_put_contents($tmp_file, $stream->detach());
137 foreach ($zip_reader->getStructure() as $append_path_inside_zip => $item) {
138 if ($item[
'is_dir']) {
141 [$stream, $info] = $zip_reader->getItem($append_path_inside_zip, $this->data);
142 $this->irss->manageContainer()->addStreamToContainer(
145 $this->current_level .
'/' . ltrim($append_path_inside_zip,
'./')
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']);
160 return $a[
'is_dir'] ? 1 : -1;
163 foreach ($this->data as
$path => $path_data) {
164 $dirname = $path_data[
'dirname'] ??
'./';
165 if ($dirname !== $this->current_level) {
168 $basename = $path_data[
'basename'] ??
'';
169 if (in_array($basename, $this->ignored,
true)) {
173 if ($path_data[
'is_dir'] ??
false) {
179 if ($file !==
null) {
191 private function basename(
string $full_path): string
200 $current_level =
'/' . ltrim($current_level,
'./');
201 $current_level = rtrim($current_level,
'/');
202 $this->current_level = $current_level ===
'' ? self::BASE :
$current_level;
205 protected function directory(
string $path_inside_zip, array $data): ?
Dir 214 protected function file(
string $path_inside_zip, array $data): ?
File 219 $data[
'mime_type'] ??
'application/octet-stream',
file(string $path_inside_zip, array $data)
initCurrentLevel(string $current_level)
download(string $path_inside_zip)
basename(string $full_path)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static ofResource($resource)
Wraps an already created resource with the stream abstraction.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
directory(string $path_inside_zip, array $data)
Class ResourceIdentification.
__construct(private ResourceIdentification $rid, ?string $current_level=self::BASE ?? self::BASE)
initData(ResourceIdentification $rid)
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
ILIAS FileDelivery Services $file_delivery