ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjFileAbstractZipProcessor.php
Go to the documentation of this file.
1 <?php
2 
23 
30 {
34  private const IRSS_FILEPATH_KEY = 'uri';
35 
36  private ?ZipArchive $archive = null;
37  private int $id_type;
38 
47 
51  public function __construct(
52  ResourceStakeholder $stakeholder,
53  ilObjFileGUI $gui_object,
54  Services $storage,
55  ilFileServicesSettings $settings,
56  private $tree
57  ) {
58  parent::__construct($stakeholder, $gui_object, $storage, $settings);
59 
60  $this->id_type = $gui_object->getIdType();
61  }
62 
64  {
65  // create one base container with the name of the zip itself, all other containers will be created inside this one
66  $zip_name = $this->storage->manage()->getCurrentRevision($rid)->getInformation()->getTitle();
67  $info = new SplFileInfo($zip_name);
68  $base_path = $info->getBasename("." . $info->getExtension());
69  $base_container = $this->createContainerObj($base_path, $this->gui_object->getParentId());
70 
71  return (int) $base_container->getRefId();
72  }
73 
77  protected function createContainerObj(string $dir_name, int $parent_id): ilObject
78  {
79  $container_obj = $this->getPossibleContainerObj($parent_id);
80  $container_obj->setTitle($dir_name);
81 
82  $container_obj->create();
83  $container_obj->createReference();
84 
85  $this->gui_object->putObjectInTree($container_obj, $parent_id);
86 
87  return $container_obj;
88  }
89 
93  protected function openZip(ResourceIdentification $rid): void
94  {
95  if ($this->archive instanceof \ZipArchive) {
96  throw new LogicException("openZip() can only be called once, yet it was called again.");
97  }
98 
99  $file_uri = $this->storage->consume()->stream($rid)->getStream()->getMetadata(self::IRSS_FILEPATH_KEY);
100  $this->archive = new ZipArchive();
101  $this->archive->open($file_uri);
102  }
103 
108  private function getZipPaths(): Generator
109  {
110  if (!$this->archive instanceof \ZipArchive) {
111  throw new LogicException("cannot read content of unopened zip archive");
112  }
113 
114  for ($i = 0, $i_max = $this->archive->count(); $i < $i_max; $i++) {
115  $path = $this->archive->getNameIndex($i, ZipArchive::FL_UNCHANGED);
116  if (str_contains($path, '__MACOSX')) {
117  continue;
118  }
119  if (str_contains($path, '.DS_')) {
120  continue;
121  }
122 
123  yield $path;
124  }
125  }
126 
131  protected function getZipFiles(): Generator
132  {
133  foreach ($this->getZipPaths() as $path) {
134  if (str_ends_with($path, "/")) {
135  continue;
136  }
137  if (str_ends_with($path, "\\")) {
138  continue;
139  }
140  yield $path;
141  }
142  }
143 
144  protected function hasMultipleRootEntriesInZip(): bool
145  {
146  $amount = 0;
147  foreach ($this->getZipDirectories() as $zip_directory) {
148  $dirname = dirname($zip_directory);
149  if ($dirname === '.') {
150  $amount++;
151  }
152  if ($amount > 1) {
153  return true;
154  }
155  }
156  foreach ($this->getZipFiles() as $zip_file) {
157  $dirname = dirname($zip_file);
158  if ($dirname === '.') {
159  $amount++;
160  }
161  if ($amount > 1) {
162  return true;
163  }
164  }
165  return false;
166  }
167 
173  protected function getZipDirectories(): Generator
174  {
175  $directories = [];
176  foreach ($this->getZipPaths() as $path) {
177  if (str_ends_with($path, "/") || str_ends_with($path, "\\")) {
178  $directories[] = $path;
179  }
180  }
181 
182  $directories_with_parents = [];
183 
184  foreach ($directories as $directory) {
185  $parent = dirname($directory) . '/';
186  if ($parent !== './' && !in_array($parent, $directories)) {
187  $directories_with_parents[] = $parent;
188  }
189  $directories_with_parents[] = $directory;
190  }
191 
192  $directories_with_parents = array_unique($directories_with_parents);
193  sort($directories_with_parents);
194  yield from $directories_with_parents;
195  }
196 
200  protected function storeZippedFile(string $file_path): ResourceIdentification
201  {
202  if (!$this->archive instanceof \ZipArchive) {
203  throw new LogicException("No archive has been opened yet, call openZip() first in order to read files.");
204  }
205 
206  return $this->storage->manage()->stream(
207  Streams::ofString($this->archive->getFromName($file_path)),
208  $this->stakeholder,
209  basename($file_path)
210  );
211  }
212 
216  protected function closeZip(): void
217  {
218  if ($this->archive instanceof \ZipArchive) {
219  $this->archive->close();
220  }
221  }
222 
226  protected function isWorkspace(): bool
227  {
228  return (ilObject2GUI::WORKSPACE_NODE_ID === $this->id_type);
229  }
230 
236  private function getPossibleContainerObj(int $parent_id): ilObject
237  {
238  $type = ($this->isWorkspace()) ?
239  ilObject::_lookupType($this->tree->lookupObjectId($parent_id)) :
240  ilObject::_lookupType($parent_id, true);
241 
242  return match ($type) {
243  'wfld', 'wsrt' => new ilObjWorkspaceFolder(),
244  'cat', 'root' => new ilObjCategory(),
245  default => new ilObjFolder(),
246  };
247  }
248 }
Class ilObjFolder.
__construct(ResourceStakeholder $stakeholder, ilObjFileGUI $gui_object, Services $storage, ilFileServicesSettings $settings, private $tree)
isWorkspace()
Returns whether the current context is workspace.
getZipFiles()
Yields the file-paths of the currently open zip-archive.
createSurroundingContainer(ResourceIdentification $rid)
getZipDirectories()
Yields the directory-paths of the currently open zip-archive.
sort()
description: > Example for rendering a Sort Glyph.
Definition: sort.php:41
$path
Definition: ltiservices.php:29
Class ilObjFileAbstractZipProcessor.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
storeZippedFile(string $file_path)
Creates an IRSS resource from the given filepath.
Class ilObjCategory.
getPossibleContainerObj(int $parent_id)
Returns a container object that is possible for the given parent.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
closeZip()
Closes the currently open zip-archive.
getZipPaths()
Yields all paths of the currently open zip-archive (without some macos stuff).
Class ilObjFileAbstractProcessorInterface.
bool $create_base_container_for_multiple_root_entries
Unzip on operating systems may behave differently when unzipping if there are only one or more root n...
__construct(Container $dic, ilPlugin $plugin)
GUI class for file objects.
openZip(ResourceIdentification $rid)
Opens the zip archive of the given resource.
static _lookupType(int $id, bool $reference=false)
createContainerObj(string $dir_name, int $parent_id)
Creates a container object depending on the parent&#39;s node type and returns it.