ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjFileAccess.php
Go to the documentation of this file.
1 <?php
2 
21 
30 {
36  protected static array $inline_file_extensions = [];
37 
38  protected static array $preload_list_gui_data = [];
39 
40  protected function checkAccessToObjectId(int $obj_id): bool
41  {
42  global $DIC;
43  $ilAccess = $DIC['ilAccess'];
47  foreach (ilObject::_getAllReferences($obj_id) as $ref_id) {
48  if ($ilAccess->checkAccess('read', '', $ref_id)) {
49  return true;
50  }
51  }
52 
53  return false;
54  }
55 
56  #[\Override]
57  public function canBeDelivered(ilWACPath $ilWACPath): bool
58  {
59  return false;
60  }
61 
73  #[\Override]
74  public static function _getCommands(): array
75  {
76  return [
77  [
78  "permission" => Permissions::READ->value,
79  "cmd" => Capabilities::DOWNLOAD->value,
80  "lang_var" => "download",
81  // "default" => true, // we decide the best matching capability later in ListGUI
82  ],
83  [
84  "permission" => Permissions::VISIBLE->value,
85  "cmd" => Capabilities::INFO_PAGE->value,
86  "lang_var" => "info",
87  ],
88  [
89  "permission" => Permissions::VISIBLE->value,
90  "cmd" => Capabilities::FORCED_INFO_PAGE->value,
91  "lang_var" => "info",
92  ],
93  [
94  "permission" => Permissions::WRITE->value,
95  "cmd" => Capabilities::UNZIP->value,
96  "lang_var" => "unzip",
97  ],
98  [
99  "permission" => Permissions::EDIT_CONTENT->value,
100  "cmd" => Capabilities::EDIT_EXTERNAL->value,
101  "lang_var" => "open_external_editor",
102  ],
103  [
104  "permission" => Permissions::VIEW_CONTENT->value,
105  "cmd" => Capabilities::VIEW_EXTERNAL->value,
106  "lang_var" => "open_external_viewer",
107  ],
108  [
109  "permission" => Permissions::WRITE->value,
110  "cmd" => Capabilities::MANAGE_VERSIONS->value,
111  "lang_var" => "versions",
112  ],
113  [
114  "permission" => Permissions::WRITE->value,
115  "cmd" => Capabilities::EDIT_SETTINGS->value,
116  "lang_var" => "settings"
117  ]
118  ];
119  }
120 
125  #[\Override]
126  public function _checkAccess(string $cmd, string $permission, int $ref_id, int $obj_id, ?int $user_id = null): bool
127  {
128  global $DIC;
129  $ilUser = $DIC['ilUser'];
130  $lng = $DIC['lng'];
131  $rbacsystem = $DIC['rbacsystem'];
132  $ilAccess = $DIC['ilAccess'];
133  if (is_null($user_id)) {
134  $user_id = $ilUser->getId();
135  }
136 
137  switch ($cmd) {
138  case "view":
139  if (!self::_lookupOnline($obj_id)
140  && !$rbacsystem->checkAccessOfUser($user_id, 'write', $ref_id)
141  ) {
142  $ilAccess->addInfoItem(ilAccessInfo::IL_NO_OBJECT_ACCESS, $lng->txt("offline"));
143 
144  return false;
145  }
146  break;
147  // for permission query feature
148  case Capabilities::INFO_PAGE->value:
149  if (!self::_lookupOnline($obj_id)) {
150  $ilAccess->addInfoItem(ilAccessInfo::IL_NO_OBJECT_ACCESS, $lng->txt("offline"));
151  } else {
152  $ilAccess->addInfoItem(ilAccessInfo::IL_STATUS_MESSAGE, $lng->txt("online"));
153  }
154  break;
155  }
156  switch ($permission) {
157  case "read":
158  case "visible":
159  if (!self::_lookupOnline($obj_id)
160  && (!$rbacsystem->checkAccessOfUser($user_id, 'write', $ref_id))
161  ) {
162  $ilAccess->addInfoItem(ilAccessInfo::IL_NO_OBJECT_ACCESS, $lng->txt("offline"));
163 
164  return false;
165  }
166  break;
167  }
168 
169  return true;
170  }
171 
175  #[\Override]
176  public static function _checkGoto(string $a_target): bool
177  {
178  global $DIC;
179  $ilAccess = $DIC['ilAccess'];
180 
181  $t_arr = explode("_", $a_target);
182 
183  // personal workspace context: do not force normal login
184  if (isset($t_arr[2]) && $t_arr[2] === "wsp") {
185  return ilSharedResourceGUI::hasAccess($t_arr[1]);
186  }
187  if ($t_arr[0] !== "file") {
188  return false;
189  }
190  if (((int) $t_arr[1]) <= 0) {
191  return false;
192  }
193  if ($ilAccess->checkAccess("visible", "", $t_arr[1])) {
194  return true;
195  }
196  return (bool) $ilAccess->checkAccess("read", "", $t_arr[1]);
197  }
198 
199  public static function _shouldDownloadDirectly(int $obj_id): bool
200  {
201  global $DIC;
202 
203  $result = $DIC->database()->fetchAssoc(
204  $DIC->database()->queryF(
205  "SELECT on_click_mode FROM file_data WHERE file_id = %s;",
206  ['integer'],
207  [$obj_id]
208  )
209  );
210 
211  if (empty($result)) {
212  return false;
213  }
214 
215  return (((int) $result['on_click_mode']) === ilObjFile::CLICK_MODE_DOWNLOAD);
216  }
217 
221  public static function _lookupFileSize(int $a_id, bool $by_reference = true): int
222  {
223  try {
224  $info_repo = new ilObjFileInfoRepository();
225  $info = $by_reference ? $info_repo->getByRefId($a_id) : $info_repo->getByObjectId($a_id);
226 
227  return (int) $info->getFileSize()->inBytes();
228  } catch (Throwable) {
229  return 0;
230  }
231  }
232 
240  public static function _getFileExtension(string $a_file_name): string
241  {
242  if (preg_match('/\.([a-z0-9]+)\z/i', $a_file_name, $matches) == 1) {
243  return strtolower($matches[1]);
244  }
245  return '';
246  }
247 
256  public static function _isFileHidden(string $a_file_name): bool
257  {
258  return str_starts_with($a_file_name, '.') || str_ends_with($a_file_name, '~')
259  || str_starts_with($a_file_name, '~$')
260  || $a_file_name === 'Thumbs.db';
261  }
262 
283  public static function _appendNumberOfCopyToFilename($a_file_name, $nth_copy = null): string
284  {
285  global $DIC;
286  $lng = $DIC['lng'];
287 
288  $filenameWithoutExtension = $a_file_name;
289 
290  $extension = null;
291 
292  // create a regular expression from the language text copy_n_of_suffix, so that
293  // we can match it against $filenameWithoutExtension, and retrieve the number of the copy.
294  // for example, if copy_n_of_suffix is 'Copy (%1s)', this creates the regular
295  // expression '/ Copy \\([0-9]+)\\)$/'.
296  $nthCopyRegex = preg_replace(
297  '/([\^$.\[\]|()?*+{}])/',
298  '\\\\${1}',
299  ' '
300  . $lng->txt('copy_n_of_suffix')
301  );
302  $nthCopyRegex = '/' . preg_replace('/%1\\\\\$s/', '(\d+)', (string) $nthCopyRegex) . '$/';
303 
304  // Get the filename without any previously added number of copy.
305  // Determine the number of copy, if it has not been specified.
306  if (preg_match($nthCopyRegex, (string) $filenameWithoutExtension, $matches)) {
307  // this is going to be at least the third copy of the filename
308  $filenameWithoutCopy = substr((string) $filenameWithoutExtension, 0, -strlen($matches[0]));
309  if ($nth_copy == null) {
310  $nth_copy = $matches[1] + 1;
311  }
312  } elseif (str_ends_with((string) $filenameWithoutExtension, ' ' . $lng->txt('copy_of_suffix'))) {
313  // this is going to be the second copy of the filename
314  $filenameWithoutCopy = substr(
315  (string) $filenameWithoutExtension,
316  0,
317  -strlen(
318  ' '
319  . $lng->txt('copy_of_suffix')
320  )
321  );
322  if ($nth_copy == null) {
323  $nth_copy = 2;
324  }
325  } else {
326  // this is going to be the first copy of the filename
327  $filenameWithoutCopy = $filenameWithoutExtension;
328  if ($nth_copy == null) {
329  $nth_copy = 1;
330  }
331  }
332 
333  // Construct the new filename
334  if ($nth_copy > 1) {
335  // this is at least the second copy of the filename, append " - Copy ($nth_copy)"
336  return $filenameWithoutCopy . sprintf(
337  ' '
338  . $lng->txt('copy_n_of_suffix'),
339  $nth_copy
340  )
341  . $extension;
342  }
343 
344  // this is the first copy of the filename, append " - Copy"
345  return $filenameWithoutCopy . ' ' . $lng->txt('copy_of_suffix') . $extension;
346  }
347 
351  public static function _getPermanentDownloadLink(int $ref_id): string
352  {
353  return ilLink::_getStaticLink($ref_id, "file", true, "download");
354  }
355 
360  public static function _preloadData(array $obj_ids, array $ref_ids): void
361  {
362  $info = new ilObjFileInfoRepository();
363  $info->preloadData($obj_ids);
364  }
365 
366  public static function _lookupOnline(int $a_obj_id): bool
367  {
368  $file_obj = new ilObjFile($a_obj_id, false);
369  return $file_obj->getObjectProperties()->getPropertyIsOnline()->getIsOnline();
370  }
371 }
static array $preload_list_gui_data
static _getAllReferences(int $id)
get all reference ids for object ID
static _isFileHidden(string $a_file_name)
Returns true, if a file with the specified name, is usually hidden from the user. ...
static _getCommands()
get commands this method returns an array of all possible commands/permission combinations example: $...
static _lookupFileSize(int $a_id, bool $by_reference=true)
_checkAccess(string $cmd, string $permission, int $ref_id, int $obj_id, ?int $user_id=null)
checks whether a user may invoke a command or not (this method is called by ilAccessHandler::checkAcc...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _appendNumberOfCopyToFilename($a_file_name, $nth_copy=null)
Appends the text " - Copy" to a filename in the language of the current user.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
$ref_id
Definition: ltiauth.php:65
const CLICK_MODE_DOWNLOAD
static _preloadData(array $obj_ids, array $ref_ids)
Class ilObjFile.
global $DIC
Definition: shib_login.php:22
static hasAccess(int $a_node_id, bool $a_is_portfolio=false)
static _shouldDownloadDirectly(int $obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static array $inline_file_extensions
Contains an array of extensions separated by space.
global $lng
Definition: privfeed.php:31
static _getPermanentDownloadLink(int $ref_id)
Gets the permanent download link for the file.
static _lookupOnline(int $a_obj_id)
static _getFileExtension(string $a_file_name)
Gets the file extension of the specified file name.
canBeDelivered(ilWACPath $ilWACPath)
static _checkGoto(string $a_target)
check whether goto script will succeed