ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjectCustomIcon.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 
32 {
33  private const ICON_BASENAME = 'icon_custom';
34 
35  public function __construct(
36  protected Filesystem $filesystem,
37  protected FileUpload $upload,
38  protected ilObjectCustomIconConfiguration $config,
39  protected int $objId
40  ) {
41  }
42 
43  protected function getObjId(): int
44  {
45  return $this->objId;
46  }
47 
48  public function copy(int $targetObjId): void
49  {
50  if (!$this->exists()) {
51  ilContainer::_writeContainerSetting($targetObjId, 'icon_custom', '0');
52  return;
53  }
54 
55  try {
56  $this->filesystem->copy(
57  $this->getRelativePath(),
58  preg_replace(
59  '/(' . $this->config->getSubDirectoryPrefix() . ')(\d*)\/(.*)$/',
60  '${1}' . $targetObjId . '/${3}',
61  $this->getRelativePath()
62  )
63  );
64 
65  ilContainer::_writeContainerSetting($targetObjId, 'icon_custom', '1');
66  } catch (Exception $e) {
67  ilContainer::_writeContainerSetting($targetObjId, 'icon_custom', '0');
68  }
69  }
70 
71  public function delete(): void
72  {
73  if ($this->filesystem->hasDir($this->getIconDirectory())) {
74  try {
75  $this->filesystem->deleteDir($this->getIconDirectory());
76  } catch (Exception $e) {
77  }
78  }
79 
80  ilContainer::_deleteContainerSettings($this->getObjId(), 'icon_custom');
81  }
82 
86  public function getSupportedFileExtensions(): array
87  {
88  return $this->config->getSupportedFileExtensions();
89  }
90 
91  public function saveFromSourceFile(string $sourceFilePath): void
92  {
94 
95  $fileName = $this->getRelativePath();
96 
97  if ($this->filesystem->has($fileName)) {
98  $this->filesystem->delete($fileName);
99  }
100 
101  $this->filesystem->copy($sourceFilePath, $fileName);
102 
103  $this->persistIconState($fileName);
104  }
105 
106  public function saveFromTempFileName(string $tempfile_name): void
107  {
108  $this->createCustomIconDirectory();
109 
110  $relative_path = $this->getRelativePath();
111 
112  if ($this->filesystem->has($relative_path)) {
113  $this->filesystem->delete($relative_path);
114  }
115 
116  rename(ilFileUtils::getDataDir() . '/temp/' . $tempfile_name, $this->getFullPath());
117  $this->filesystem->setVisibility($relative_path, 'public');
118 
119 
120  foreach ($this->config->getUploadPostProcessors() as $processor) {
121  $processor->process($relative_path);
122  }
123 
124  $this->persistIconState($relative_path);
125  }
126 
127  public function saveFromHttpRequest(): void
128  {
129  $this->createCustomIconDirectory();
130 
131  $fileName = $this->getRelativePath();
132 
133  if ($this->filesystem->has($fileName)) {
134  $this->filesystem->delete($fileName);
135  }
136 
137  if ($this->upload->hasUploads() && !$this->upload->hasBeenProcessed()) {
138  $this->upload->process();
139 
141  $result = array_values($this->upload->getResults())[0];
142  if ($result->isOK()) {
143  $this->upload->moveOneFileTo(
144  $result,
145  $this->getIconDirectory(),
146  Location::WEB,
147  $this->getIconFileName(),
148  true
149  );
150  }
151 
152  foreach ($this->config->getUploadPostProcessors() as $processor) {
153  $processor->process($fileName);
154  }
155  }
156 
157  $this->persistIconState($fileName);
158  }
159 
160  protected function persistIconState(string $fileName): void
161  {
162  if ($this->filesystem->has($fileName)) {
163  ilContainer::_writeContainerSetting($this->getObjId(), 'icon_custom', '1');
164  } else {
165  ilContainer::_writeContainerSetting($this->getObjId(), 'icon_custom', '0');
166  }
167  }
168 
169  public function remove(): void
170  {
171  $fileName = $this->getRelativePath();
172 
173  if ($this->filesystem->has($fileName)) {
174  $this->filesystem->delete($fileName);
175  }
176 
177  ilContainer::_writeContainerSetting($this->getObjId(), 'icon_custom', '0');
178  }
179 
183  protected function createCustomIconDirectory(): void
184  {
185  $iconDirectory = $this->getIconDirectory();
186 
187  if (!$this->filesystem->has(dirname($iconDirectory))) {
188  $this->filesystem->createDir(dirname($iconDirectory));
189  }
190 
191  if (!$this->filesystem->has($iconDirectory)) {
192  $this->filesystem->createDir($iconDirectory);
193  }
194  }
195 
196  protected function getIconDirectory(): string
197  {
198  return implode(DIRECTORY_SEPARATOR, [
199  $this->config->getBaseDirectory(),
200  $this->config->getSubDirectoryPrefix() . $this->getObjId()
201  ]);
202  }
203 
204  protected function getIconFileName(): string
205  {
206  return self::ICON_BASENAME . '.' . $this->config->getTargetFileExtension();
207  }
208 
209  protected function getRelativePath(): string
210  {
211  return implode(DIRECTORY_SEPARATOR, [
212  $this->getIconDirectory(),
213  $this->getIconFileName()
214  ]);
215  }
216 
217  public function exists(): bool
218  {
219  if (!ilContainer::_lookupContainerSetting($this->getObjId(), 'icon_custom', '0')) {
220  return false;
221  }
222 
223  return $this->filesystem->has($this->getRelativePath());
224  }
225 
226  public function getFullPath(): string
227  {
228  // TODO: Currently there is no option to get the relative base directory of a filesystem
229  return implode(DIRECTORY_SEPARATOR, [
231  $this->getRelativePath()
232  ]);
233  }
234 
235  public function createFromImportDir(string $source_dir): void
236  {
237  $target_dir = implode(DIRECTORY_SEPARATOR, [
239  $this->getIconDirectory()
240  ]);
241  ilFileUtils::rCopy($source_dir, $target_dir);
242  $this->persistIconState($this->getRelativePath());
243  }
244 }
static getWebspaceDir(string $mode="filesystem")
get webspace directory
Class ilObjectCustomIconImpl TODO: Inject database persistence in future instead of using ...
saveFromSourceFile(string $sourceFilePath)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$objId
Definition: xapitoken.php:57
static rCopy(string $a_sdir, string $a_tdir, bool $preserveTimeAttributes=false)
Copies content of a directory $a_sdir recursively to a directory $a_tdir.
saveFromTempFileName(string $tempfile_name)
Class FileUpload.
Definition: FileUpload.php:37
static getDataDir()
get data directory (outside webspace)
createFromImportDir(string $source_dir)
static _writeContainerSetting(int $a_id, string $a_keyword, string $a_value)
persistIconState(string $fileName)
static _lookupContainerSetting(int $a_id, string $a_keyword, ?string $a_default_value=null)
__construct(protected Filesystem $filesystem, protected FileUpload $upload, protected ilObjectCustomIconConfiguration $config, protected int $objId)
static _deleteContainerSettings(int $a_id, string $a_keyword="", bool $a_keyword_like=false)