19 declare(strict_types=1);
34 protected const DIR_PATH =
"sty/sty_%id%/images";
52 protected function dir(
int $style_id): string
54 return str_replace(
"%id%", (
string) $style_id, self::DIR_PATH);
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);
73 foreach ($unzip->getPaths() as
$path) {
74 if (str_starts_with(
$path,
".")) {
77 if (!str_starts_with(
$path,
"images")) {
80 if (!in_array(strtolower(pathinfo(
$path, PATHINFO_EXTENSION)), [
"jpg",
"png",
"gif",
"svg"])) {
83 $att = $zip_archive->statName(
$path);
84 $full_path = $this->irss->getContainerUri($rid,
$path);
86 $image_size = getimagesize($full_path);
89 $width = $image_size[0] ?? 0;
90 $height = $image_size[1] ?? 0;
92 $this->irss->getContainerUri($rid,
$path),
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(
109 $image_size = getimagesize($this->
getWebPath($meta->getPath()));
110 $width = $image_size[0] ?? 0;
111 $height = $image_size[1] ?? 0;
126 if (str_starts_with($path,
"http")) {
133 public function getByFilename(
int $style_id,
string $filename): ?
Image 136 foreach ($this->
getImages($style_id) as $i) {
147 $dir = $this->
dir($style_id);
148 $this->web_files->delete($dir .
"/" . $filename);
155 $this->irss->addUploadToContainer(
Filesystem Filesystem $web_files
This class provides the data size with additional information to remove the work to calculate the siz...
The filesystem interface provides the public interface for the Filesystem service API consumer...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
InternalDataService $factory
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(InternalDataService $factory, Filesystem\Filesystem $web_files, FileUpload $upload, protected IRSSWrapper $irss)
deleteImageByFilename(int $style_id, string $filename)
importFromUploadResult(string $rid, UploadResult $result,)
getImages(int $style_id, string $rid)
Get images of style.