ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjFileListGUI.php
Go to the documentation of this file.
1 <?php
2 
26 
35 {
37 
42  protected string $title;
44  private Services $irss;
45 
46  public function __construct(int $context = self::CONTEXT_REPOSITORY)
47  {
48  global $DIC;
49  $this->capability_context = new Context(
50  0,
51  0,
52  ($context === self::CONTEXT_REPOSITORY) ? Context::CONTEXT_REPO : Context::CONTEXT_WORKSPACE
53  );
54 
56 
57 
58  $DIC->language()->loadLanguageModule('wopi');
59  $this->file_info = new ilObjFileInfoRepository();
60  $this->capability_builder = new CapabilityBuilder(
61  $this->file_info,
62  $this->access,
63  $this->ctrl,
64  new ActionDBRepository($DIC->database()),
65  $DIC->http(),
66  $DIC['static_url.uri_builder']
67  );
68 
69 
70  }
71 
72  protected function updateContext(): void
73  {
74  $this->capability_context = $this->capability_context
75  ->withCallingId($this->ref_id ?? 0)
76  ->withObjectId($this->obj_id ?? 0);
77  }
78 
83  public function insertCommands(): void
84  {
85  }
89  #[\Override]
90  public function init(): void
91  {
92  $this->delete_enabled = true;
93  $this->cut_enabled = true;
94  $this->copy_enabled = true;
95  $this->subscribe_enabled = true;
96  $this->link_enabled = true;
97  $this->info_screen_enabled = false;
98  $this->type = ilObjFile::OBJECT_TYPE;
99  $this->gui_class_name = ilObjFileGUI::class;
100  $this->icon_repo = new IconDatabaseRepository();
101 
102  $this->substitutions = ilAdvancedMDSubstitution::_getInstanceByObjectType($this->type);
103  if ($this->substitutions->isActive()) {
104  $this->substitutions_enabled = true;
105  }
106 
107  $this->commands = ilObjFileAccess::_getCommands();
108  $this->updateContext();
109  }
110 
111  #[\Override]
112  public function getCommands(): array
113  {
114  $this->updateContext();
115  $this->capabilities = $this->capability_builder->get($this->capability_context);
116 
117  $best = $this->capabilities->getBest();
118 
119  foreach ($this->commands as $key => $command) {
120  if ($command['cmd'] === $best->getCapability()->value) {
121  $default_set = true;
122  $this->commands[$key]['default'] = true;
123  }
124  }
125 
126  return parent::getCommands();
127  }
128 
129  #[\Override]
130  public function getCommandLink(string $cmd): string
131  {
132  $this->updateContext();
133  $info = $this->file_info->getByObjectId($this->obj_id);
134  $this->capabilities = $this->capability_builder->get($this->capability_context);
135 
136  $needed_capability = Capabilities::fromCommand($cmd);
137  $capability = $this->capabilities->get($needed_capability);
138  if ($capability === false || !$capability->isUnlocked()) {
139  return '';
140  }
141 
142  switch ($this->context) {
143  case self::CONTEXT_REPOSITORY:
144  return (string) $capability->getURI();
145  case self::CONTEXT_WORKSPACE:
146  $this->ctrl->setParameterByClass(ilObjFileGUI::class, 'wsp_id', $this->ref_id);
147  if ($cmd === "sendfile" && !ilObjFileAccess::_shouldDownloadDirectly($this->obj_id)) {
148  return $this->ctrl->getLinkTargetByClass(
149  ilObjFileGUI::class,
150  Capabilities::INFO_PAGE->value
151  );
152  }
153  break;
154 
155  }
156 
157  return parent::getCommandLink($cmd);
158  }
159 
160 
161 
162  #[\Override]
163  public function getTitle(): string
164  {
165  return $this->file_info->getByObjectId($this->obj_id)->getListTitle();
166  }
167 
168  public function stripTitleOfFileExtension(string $a_title): string
169  {
170  return $this->secure(preg_replace('/\.[^.]*$/', '', $a_title));
171  }
172 
173  #[\Override]
174  public function getCommandFrame(string $cmd): string
175  {
176  $this->updateContext();
177  $info = $this->file_info->getByObjectId($this->obj_id);
178 
179  if ($cmd === Capabilities::DOWNLOAD->value) {
180  return $info->shouldDeliverInline() ? '_blank' : '';
181  }
182 
183  return '';
184  }
185 
193  #[\Override]
194  public function getIconImageType(): string
195  {
196  return $this->file_info->getByObjectId($this->obj_id)->shouldDeliverInline()
197  ? $this->type . '_inline'
198  : $this->type;
199  }
200 
201 
209  #[\Override]
210  public function getProperties(): array
211  {
212  global $DIC;
213 
214  $this->capabilities = $this->capability_builder->get($this->capability_context);
215 
216  $props = parent::getProperties();
217 
218  $info = $this->file_info->getByObjectId($this->obj_id);
219 
220  $revision = $info->getVersion();
221 
222  $props[] = [
223  "alert" => false,
224  "property" => $DIC->language()->txt("type"),
225  "value" => $info->getSuffix(),
226  'propertyNameVisible' => false,
227  ];
228 
229  $props[] = [
230  "alert" => false,
231  "property" => $DIC->language()->txt("size"),
232  "value" => (string) $info->getFileSize(),
233  'propertyNameVisible' => false,
234  ];
235 
236  $version = $info->getVersion();
237  if ($version > 1) {
238 
239  // add versions link
240  if ($this->capabilities->get(Capabilities::MANAGE_VERSIONS)->isUnlocked()) {
241  $link = $this->getCommandLink("versions");
242  $value = "<a href=\"$link\">" . $DIC->language()->txt("version") . ": $version</a>";
243  } else {
244  $value = $DIC->language()->txt("version") . ": $version";
245  }
246  $props[] = [
247  "alert" => false,
248  "property" => $DIC->language()->txt("version"),
249  "value" => $value,
250  "propertyNameVisible" => false
251  ];
252  }
253 
254  $props[] = [
255  "alert" => false,
256  "property" => $DIC->language()->txt("last_update"),
258  new ilDateTime($info->getCreationDate()->format('U'), IL_CAL_UNIX)
259  ),
260  'propertyNameVisible' => false,
261  ];
262 
263  if ($info->getPageCount() !== null && $info->getPageCount() > 0) {
264  $props[] = [
265  "alert" => false,
266  "property" => $DIC->language()->txt("page_count"),
267  "value" => $info->getPageCount(),
268  'propertyNameVisible' => true,
269  ];
270  }
271 
272  return $props;
273  }
274 
278  #[\Override]
279  public function getCommandImage($a_cmd): string
280  {
281  return "";
282  }
283 
284  #[\Override]
285  public function checkCommandAccess(
286  string $permission,
287  string $cmd,
288  int $ref_id,
289  string $type,
290  ?int $obj_id = null
291  ): bool {
292  $this->updateContext();
293 
294  $this->capability_context = $this->capability_context
295  ->withCallingId($ref_id)
296  ->withObjectId($obj_id ?? $this->capability_context->getObjectId());
297 
298  // LP settings only in repository
299  if ($this->context !== self::CONTEXT_REPOSITORY && $permission === "edit_learning_progress") {
300  return false;
301  }
302 
303  $this->capabilities = $this->capability_builder->get($this->capability_context);
304 
305  $capability = Capabilities::fromCommand($cmd);
306  $additional_check = $this->capabilities->get($capability)->isUnlocked();
307 
308  return $additional_check && parent::checkCommandAccess(
309  $permission,
310  $cmd,
311  $ref_id,
312  $type,
313  $obj_id
314  );
315  }
316 
317 
318 }
$version
Definition: plugin.php:24
getIconImageType()
Returns the icon image type.
const OBJECT_TYPE
static _getCommands()
get commands this method returns an array of all possible commands/permission combinations example: $...
const IL_CAL_UNIX
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
insertCommands()
This methods seems to be called by ItemRenderer
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
static _shouldDownloadDirectly(int $obj_id)
__construct(int $context=self::CONTEXT_REPOSITORY)
ilObjFileInfoRepository $file_info
CapabilityCollection $capabilities
CapabilityBuilder $capability_builder
trait ilObjFileSecureString
Trait ilObjFileSecureString.
getProperties()
Get item properties.
__construct(Container $dic, ilPlugin $plugin)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
IconDatabaseRepository $icon_repo
stripTitleOfFileExtension(string $a_title)
Class ilObjFileListGUI.
checkCommandAccess(string $permission, string $cmd, int $ref_id, string $type, ?int $obj_id=null)
getCommandImage($a_cmd)
Get command icon image.
static _getInstanceByObjectType(string $a_type)