19 declare(strict_types=1);
48 $this->zip = new \ZipArchive();
49 if (!$this->zip->open($this->stream->getMetadata()[
'uri'], \ZipArchive::RDONLY)) {
50 throw new \InvalidArgumentException(
'Could not open ZIP-File');
56 if ($this->structure !==
null) {
61 for ($i = 0; $i < $this->zip->count(); $i++) {
62 $path_original = $this->zip->getNameIndex($i);
63 $path =
'/' . ltrim($path_original,
'./');
67 $dirname = dirname(
$path);
68 $basename = basename($path_original);
69 if (in_array($basename, $this->ignored,
true)) {
73 $is_dir = (str_ends_with(
$path,
'/') || str_ends_with(
$path,
'\\'));
75 $stats = $this->zip->statIndex($i, \ZipArchive::FL_UNCHANGED);
79 $modified = $modified = (
int) ($stats[
'mtime'] ?? 0);
82 $finfo = finfo_open(FILEINFO_MIME_TYPE);
84 $stream = $this->zip->getStream($path_original);
85 $fread = fread($stream, 256);
86 $mime_type = finfo_buffer($finfo, $fread);
88 $size = (
int) ($stats[
'size'] ?? 0);
91 $mime_type = self::APPLICATION_OCTET_STREAM;
95 $parent = dirname($path_original);
96 $structure[$parent] = [
98 'dirname' => dirname($parent),
99 'basename' => basename($parent),
103 'modified' => $modified,
107 $structure[$path_original] = [
109 'dirname' => $dirname,
110 'basename' => $basename,
112 'mime_type' => $mime_type,
114 'modified' => $modified,
124 public function getItem(
string $path_inside_zip, ?array $structure =
null): array
127 $info = $structure[$path_inside_zip] ?? [];
132 $this->stream->getMetadata()[
'uri'],
136 return [$stream, $info];
__construct(private FileStream $stream)
static ofFileInsideZIP(string $path_to_zip, string $path_inside_zip)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getItem(string $path_inside_zip, ?array $structure=null)
const APPLICATION_OCTET_STREAM
The base interface for all filesystem streams.