ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjectCustomIconUploadHandlerGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 
34 {
36 
37  protected ilLanguage $language;
38  protected bool $has_access = false;
39 
40  public function __construct(
41  protected ?ilObjectCustomIcon $custom_icon = null
42  ) {
44  global $DIC;
45  $this->language = $DIC->language();
46 
47  $ref_id = null;
48  if ($DIC->http()->wrapper()->query()->has('ref_id')) {
49  $transformation = $DIC->refinery()->kindlyTo()->int();
50  $ref_id = $DIC->http()->wrapper()->query()->retrieve('ref_id', $transformation);
51  }
52 
53  $this->has_access = $this->getAccess(
54  $ref_id,
55  $DIC->access()
56  );
57 
58  $DIC->ctrl()->setParameterByClass(self::class, 'ref_id', $ref_id);
59 
61  }
62 
66  protected function getUploadResult(): HandlerResult
67  {
68  $tempfile = '';
69  if ($this->has_access === false) {
70  return $this->getAccessFailureResult(
72  $file_name,
73  $this->language
74  );
75  }
76 
77  $this->upload->process();
78 
79  $result_array = $this->upload->getResults();
80  $result = end($result_array);
81 
82  if ($result instanceof UploadResult
83  && in_array($result->getMimeType(), ilObjectPropertyIcon::SUPPORTED_MIME_TYPES)
84  && $result->isOK()) {
85  $status = HandlerResult::STATUS_OK;
86  $message = 'Upload ok';
87  $tempfile = ilFileUtils::ilTempnam();
88  rename($result->getPath(), $tempfile);
89  } else {
90  $status = HandlerResult::STATUS_FAILED;
91  $message = $result->getStatus()->getMessage();
92  }
93 
94  return new BasicHandlerResult(
96  $status,
97  basename($tempfile),
98  $message
99  );
100  }
101 
102  protected function getRemoveResult(string $file_name): HandlerResult
103  {
104  if ($this->has_access === false) {
105  return $this->getAccessFailureResult(
107  $file_name,
108  $this->language
109  );
110  }
111 
112  return new BasicHandlerResult(
114  HandlerResult::STATUS_OK,
115  $file_name,
116  'There is nothing to do here.'
117  );
118  }
119 
120  public function getInfoResult(string $file_name): ?FileInfoResult
121  {
122  if ($this->has_access === false) {
123  return null;
124  }
125 
126  $file_path = $this->custom_icon->getFullPath();
127 
128  return new BasicFileInfoResult(
130  'custom_icon',
131  $this->language->txt('custom_icon'),
132  filesize($file_path),
133  MimeType::IMAGE__SVG_XML
134  );
135  }
136 
140  public function getInfoForExistingFiles(array $file_names): array
141  {
142  return [$this->getInfoResult('custom_icon')];
143  }
144 }
Class ilObjectCustomIconImpl TODO: Inject database persistence in future instead of using ...
custom_icon()
description: > Example for rendering custom icons.
Definition: custom_icon.php:33
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...
$ref_id
Definition: ltiauth.php:65
global $DIC
Definition: shib_login.php:22
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
__construct(Container $dic, ilPlugin $plugin)
$message
Definition: xapiexit.php:31
language()
description: > Example for rendring a language glyph.
Definition: language.php:41