ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ImageFileRepo.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Style\Content;
22 
26 use Generator;
31 
33 {
34  protected const DIR_PATH = "sty/sty_%id%/images";
35 
38  protected FileUpload $upload;
39 
40  public function __construct(
41  InternalDataService $factory,
42  Filesystem\Filesystem $web_files,
43  FileUpload $upload,
44  protected IRSSWrapper $irss
45  ) {
46  $this->web_files = $web_files;
47  $this->factory = $factory;
48  $this->upload = $upload;
49  }
50 
51  // get image directory
52  protected function dir(int $style_id): string
53  {
54  return str_replace("%id%", (string) $style_id, self::DIR_PATH);
55  }
56 
63  public function getImages(
64  int $style_id,
65  string $rid
66  ): Generator {
67  if ($rid !== "") {
68  $unzip = $this->irss->getContainerZip($rid);
69  $uri = $this->irss->stream($rid)->getMetadata("uri");
70  $zip_archive = new \ZipArchive();
71  $zip_archive->open($uri, \ZipArchive::RDONLY);
72 
73  foreach ($unzip->getPaths() as $path) {
74  if (str_starts_with($path, ".")) {
75  continue;
76  }
77  if (!str_starts_with($path, "images")) {
78  continue;
79  }
80  if (!in_array(strtolower(pathinfo($path, PATHINFO_EXTENSION)), ["jpg", "png", "gif", "svg"])) {
81  continue;
82  }
83  $att = $zip_archive->statName($path);
84  $full_path = $this->irss->getContainerUri($rid, $path);
85  try {
86  $image_size = getimagesize($full_path);
87  } catch (\Exception $e) {
88  }
89  $width = $image_size[0] ?? 0;
90  $height = $image_size[1] ?? 0;
91  yield $this->factory->image(
92  $this->irss->getContainerUri($rid, $path),
93  new DataSize($att["size"], DataSize::KB),
94  $width,
95  $height
96  );
97  }
98  }
99 
100 
101  $dir = $this->dir($style_id);
102  if ($this->web_files->hasDir($dir)) {
103  foreach ($this->web_files->listContents($dir) as $meta) {
104  if ($meta->isFile()) {
105  $size = $this->web_files->getSize(
106  $meta->getPath(),
108  );
109  $image_size = getimagesize($this->getWebPath($meta->getPath()));
110  $width = $image_size[0] ?? 0;
111  $height = $image_size[1] ?? 0;
112  yield $this->factory->image(
113  $meta->getPath(),
114  $size,
115  $width,
116  $height
117  );
118  }
119  }
120  }
121  }
122 
123  // get full web path for relative file path
124  public function getWebPath(string $path): string
125  {
126  if (str_starts_with($path, "http")) {
127  return $path;
128  }
129  return ILIAS_WEB_DIR . "/" . CLIENT_ID . "/" . $path;
130  }
131 
132  // get image data object by filename
133  public function getByFilename(int $style_id, string $filename): ?Image
134  {
136  foreach ($this->getImages($style_id) as $i) {
137  if ($i->getFilename() == $filename) {
138  return $i;
139  }
140  }
141  return null;
142  }
143 
144  // delete image
145  public function deleteImageByFilename(int $style_id, string $filename): void
146  {
147  $dir = $this->dir($style_id);
148  $this->web_files->delete($dir . "/" . $filename);
149  }
150 
151  public function importFromUploadResult(
152  string $rid,
153  UploadResult $result,
154  ): void {
155  $this->irss->addUploadToContainer(
156  $rid,
157  $result
158  );
159  }
160 }
factory()
This class provides the data size with additional information to remove the work to calculate the siz...
Definition: DataSize.php:30
The filesystem interface provides the public interface for the Filesystem service API consumer...
Definition: Filesystem.php:36
$path
Definition: ltiservices.php:29
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...
const CLIENT_ID
Definition: constants.php:41
Class FileUpload.
Definition: FileUpload.php:37
$filename
Definition: buildRTE.php:78
__construct(InternalDataService $factory, Filesystem\Filesystem $web_files, FileUpload $upload, protected IRSSWrapper $irss)
deleteImageByFilename(int $style_id, string $filename)
importFromUploadResult(string $rid, UploadResult $result,)
const ILIAS_WEB_DIR
Definition: constants.php:45
getImages(int $style_id, string $rid)
Get images of style.