ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjectTileImageUploadHandlerGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
32 
38 {
39  use \ilObjectPropertiesUploadSecurityFunctionsTrait;
40 
41  protected \ilLanguage $language;
45 
47  protected bool $has_access = false;
48 
49  public function __construct(
50  protected ?ilObjectTileImage $tile_image = null
51  ) {
53  global $DIC;
54  $this->language = $DIC->language();
55 
56  $ref_id = null;
57  if ($DIC->http()->wrapper()->query()->has('ref_id')) {
58  $transformation = $DIC->refinery()->kindlyTo()->int();
59  $ref_id = $DIC->http()->wrapper()->query()->retrieve('ref_id', $transformation);
60  }
61 
62  $this->has_access = $this->getAccess(
63  $ref_id,
64  $DIC->access()
65  );
66 
67  if ($DIC->http()->wrapper()->post()->has('rid')) {
68  $id = $DIC->http()->wrapper()->post()->retrieve(
69  'rid',
70  $DIC->refinery()->to()->string()
71  );
72  $this->rid = $DIC->resourceStorage()->manage()->find($id);
73  }
74 
75  $DIC->ctrl()->setParameterByClass(self::class, 'ref_id', $ref_id);
76 
77  $this->storage = $DIC->resourceStorage();
78  $this->stakeholder = new ilObjectTileImageStakeholder();
79  $this->flavour = new ilObjectTileImageFlavourDefinition();
80 
82  }
83 
87  protected function getUploadResult(): HandlerResult
88  {
89  $this->upload->process();
90 
91  $result_array = $this->upload->getResults();
92  $result = end($result_array);
93 
94  if (!($result instanceof UploadResult) || !$result->isOK()) {
95  return new BasicHandlerResult(
97  HandlerResult::STATUS_FAILED,
98  '',
99  $result->getStatus()->getMessage()
100  );
101  }
102 
103  $status = HandlerResult::STATUS_OK;
104  $message = "file upload OK";
105  if ($this->rid === null) {
106  $i = $this->storage->manage()->upload($result, $this->stakeholder);
107  } else {
108  $i = $this->rid;
109  $this->storage->manage()->replaceWithUpload(
110  $i,
111  $result,
112  $this->stakeholder
113  );
114  }
115 
116  $this->storage->flavours()->ensure($i, $this->flavour);
117 
118  return new BasicHandlerResult(
120  $status,
121  $i->serialize(),
122  $message
123  );
124  }
125 
126  protected function getRemoveResult(string $identifier): HandlerResult
127  {
128  if ($this->has_access === false) {
129  return $this->getAccessFailureResult(
131  $identifier,
132  $this->language
133  );
134  }
135 
136  return new BasicHandlerResult(
138  HandlerResult::STATUS_OK,
139  $identifier,
140  "We just don't do anything here."
141  );
142  }
143 
144  public function getInfoResult(string $identifier): ?FileInfoResult
145  {
146  if (null !== ($id = $this->storage->manage()->find($identifier))) {
147  $revision = $this->storage->manage()->getCurrentRevision($id)->getInformation();
148  $title = $revision->getTitle();
149  $size = $revision->getSize();
150  $mime = $revision->getMimeType();
151  } else {
152  $title = $mime = 'unknown';
153  $size = 0;
154  }
155 
156  return new BasicFileInfoResult(
158  $identifier,
159  $title,
160  $size,
161  $mime
162  );
163  }
164 
168  public function getInfoForExistingFiles(array $file_ids): array
169  {
170  $info_results = [];
171  foreach ($file_ids as $identifier) {
172  $info_results[] = $this->getInfoResult($identifier);
173  }
174 
175  return $info_results;
176  }
177 }
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
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: shib_login.php:22
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
__construct(Container $dic, ilPlugin $plugin)
$message
Definition: xapiexit.php:31
language()
description: > Example for rendring a language glyph.
Definition: language.php:41