ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjFileServicesGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
31 {
32  public const CMD_EDIT_SETTINGS = 'editSettings';
33  protected const TAB_PERMISSIONS = 'perm_settings';
34  protected const TAB_SETTINGS = 'settings';
35  protected const TAB_OVERVIEW = 'resource_overview';
36  protected const TAB_UPLOAD_LIMITS = 'upload_limits';
37 
38  protected ilTabsGUI $tabs;
39  public ilLanguage $lng;
41  protected ilCtrl $ctrl;
42  protected ilSetting $settings;
44  protected Factory $refinery;
45  protected WrapperFactory $http;
47 
52  public function __construct(int $id = 0, int $id_type = self::REPOSITORY_NODE_ID, int $parent_node_id = 0)
53  {
54  global $DIC;
55 
57  parent::__construct($id, $id_type, $parent_node_id);
58 
59  $this->tabs = $DIC['ilTabs'];
60  $this->lng = $DIC->language();
61  $this->lng->loadLanguageModule('adn');
62  $this->lng->loadLanguageModule('irss');
63  $this->ctrl = $DIC['ilCtrl'];
64  $this->tpl = $DIC['tpl'];
65  $this->tree = $DIC['tree'];
66  $this->settings = $DIC['ilSetting'];
67  $this->error_handling = $DIC["ilErr"];
68  $this->http = $DIC->http()->wrapper();
69  $this->ref_id = $this->http->query()->retrieve('ref_id', $DIC->refinery()->kindlyTo()->int());
70  $this->refinery = $DIC->refinery();
71  $this->file_service_settings = $DIC->fileServiceSettings();
72  }
73 
74  public function getType(): string
75  {
77  }
78 
79  protected function checkPermissionOrFail(string $str): void
80  {
81  if (!$this->hasUserPermissionTo($str)) {
82  $this->error_handling->raiseError(
83  $this->lng->txt('no_permission'),
84  $this->error->MESSAGE
85  );
86  }
87  }
88 
89  protected function hasUserPermissionTo(string $str): bool
90  {
91  return $this->access->checkAccess($str, '', $this->ref_id);
92  }
93 
98  #[\Override]
99  public function executeCommand(): void
100  {
101  $this->lng->loadLanguageModule("fils");
102 
103  $next_class = $this->ctrl->getNextClass($this);
104  $cmd = $this->ctrl->getCmd();
105 
106  $this->prepareOutput();
107  $this->checkPermissionOrFail('read');
108 
109  switch ($next_class) {
110  case strtolower(ilPermissionGUI::class):
111  $this->tabs_gui->activateTab(self::TAB_PERMISSIONS);
112  $perm_gui = new ilPermissionGUI($this);
113  $this->ctrl->forwardCommand($perm_gui);
114  break;
115  case strtolower(ilResourceOverviewGUI::class):
116  $this->tabs_gui->activateTab(self::TAB_OVERVIEW);
117  $overview = new ilResourceOverviewGUI();
118  $this->ctrl->forwardCommand($overview);
119  break;
120  case strtolower(ilUploadLimitsOverviewGUI::class):
121  $this->tabs_gui->activateTab(self::TAB_UPLOAD_LIMITS);
122  $limits_gui = new ilUploadLimitsOverviewGUI();
123  $this->ctrl->forwardCommand($limits_gui);
124  break;
125  default:
126  if (!$cmd || $cmd === 'view') {
127  $cmd = self::CMD_EDIT_SETTINGS;
128  }
129  $this->$cmd();
130  break;
131  }
132  }
133 
137  #[\Override]
138  public function getAdminTabs(): void
139  {
140  // General Settings for File-Services
141  if ($this->rbac_system->checkAccess(
142  "visible,read",
143  $this->object->getRefId()
144  )
145  ) {
146  $this->tabs_gui->addTab(
147  self::TAB_SETTINGS,
148  $this->lng->txt(self::TAB_SETTINGS),
149  $this->ctrl->getLinkTarget($this, self::CMD_EDIT_SETTINGS)
150  );
151  }
152  // Resource-Overview
153  if ($this->rbac_system->checkAccess(
154  "visible,read",
155  $this->object->getRefId()
156  )
157  ) {
158  $this->tabs_gui->addTab(
159  self::TAB_OVERVIEW,
160  $this->lng->txt(self::TAB_OVERVIEW),
161  $this->ctrl->getLinkTargetByClass(ilResourceOverviewGUI::class),
162  );
163  }
164  // Upload-Limit
165  if ($this->rbac_system->checkAccess(
166  "visible,read",
167  $this->object->getRefId()
168  )
169  ) {
170  $this->tabs_gui->addTab(
171  self::TAB_UPLOAD_LIMITS,
172  $this->lng->txt(self::TAB_UPLOAD_LIMITS),
173  $this->ctrl->getLinkTargetByClass(ilUploadLimitsOverviewGUI::class),
174  );
175  }
176  // Permissions-tab
177  if ($this->rbac_system->checkAccess(
178  'edit_permission',
179  $this->object->getRefId()
180  )
181  ) {
182  $this->tabs_gui->addTab(
183  self::TAB_PERMISSIONS,
184  $this->lng->txt(self::TAB_PERMISSIONS),
185  $this->ctrl->getLinkTargetByClass(ilPermissionGUI::class, "perm")
186  );
187  }
188  }
189 
190  #[\Override]
191  public function setTitleAndDescription(): void
192  {
193  parent::setTitleAndDescription();
194  $this->tpl->setDescription($this->object->getDescription());
195  }
196 
198  {
199  $permission_to_write = $this->hasUserPermissionTo('write');
200 
201  $form = new ilPropertyFormGUI();
202  $form->setFormAction($this->ctrl->getFormAction($this));
203  $form->setTitle($this->lng->txt(self::TAB_SETTINGS));
204 
205  // default positive list
206  $ne = new ilNonEditableValueGUI($this->lng->txt("file_suffix_default_positive"), "");
207  $ne->setValue(implode(", ", $this->file_service_settings->getDefaultWhitelist()));
208  $ne->setInfo($this->lng->txt("file_suffix_default_positive_info"));
209  $form->addItem($ne);
210 
211  // file suffix custom negative list
212  $ta = new ilTextAreaInputGUI(
213  $this->lng->txt(
214  "file_suffix_custom_negative"
215  ),
216  "suffix_repl_additional"
217  );
218  $ta->setInfo($this->lng->txt("file_suffix_custom_negative_info"));
219  $ta->setRows(5);
220  $ta->setDisabled(!$permission_to_write);
221  $form->addItem($ta);
222 
223  // file suffix custom positive list
224  $ta = new ilTextAreaInputGUI(
225  $this->lng->txt(
226  "file_suffix_custom_positive"
227  ),
228  "suffix_custom_white_list"
229  );
230  $ta->setInfo($this->lng->txt("file_suffix_custom_positive_info"));
231  $ta->setRows(5);
232  $ta->setDisabled(!$permission_to_write);
233  $form->addItem($ta);
234 
235  // resulting overall positive list
236  $ne = new ilNonEditableValueGUI($this->lng->txt("file_suffix_overall_positive"), "");
237  $ne->setValue(implode(", ", $this->file_service_settings->getWhiteListedSuffixes()));
238  $ne->setInfo($this->lng->txt("file_suffix_overall_positive_info"));
239  $form->addItem($ne);
240 
241  // explicit negative list
242  $ta = new ilTextAreaInputGUI(
243  $this->lng->txt("file_suffix_custom_expl_negative"),
244  "suffix_custom_expl_black"
245  );
246  $ta->setInfo($this->lng->txt("file_suffix_custom_expl_negative_info"));
247  $ta->setRows(5);
248  $ta->setDisabled(!$permission_to_write);
249  $form->addItem($ta);
250 
251  // command buttons
252  if ($permission_to_write) {
253  $form->addCommandButton('saveSettings', $this->lng->txt('save'));
254  $form->addCommandButton('view', $this->lng->txt('cancel'));
255  }
256 
257  return $form;
258  }
259 
260  protected function editSettings(): void
261  {
262  $this->tabs_gui->setTabActive(self::TAB_SETTINGS);
263 
264  $this->checkPermissionOrFail("visible,read");
265 
266  // get form
267  $form = $this->initSettingsForm();
268 
269  // set current values
270  $val = [];
271  $val["suffix_repl_additional"] = implode(", ", $this->file_service_settings->getWhiteListNegative());
272  $val["suffix_custom_white_list"] = implode(", ", $this->file_service_settings->getWhiteListPositive());
273  $val["suffix_custom_expl_black"] = implode(", ", $this->file_service_settings->getProhibited());
274  $form->setValuesByArray($val);
275 
276  // set content
277  $this->tpl->setContent($form->getHTML());
278  }
279 
280  protected function saveSettings(): void
281  {
282  $this->checkPermissionOrFail("write");
283 
284  // get form
285  $form = $this->initSettingsForm();
286  if ($form->checkInput()) {
287  $trafo = (fn(string $id): ?string => $this->http->post()->has($id)
288  ? $this->http->post()->retrieve($id, $this->refinery->to()->string())
289  : null);
290 
291 
292  $this->settings->set("suffix_repl_additional", $trafo("suffix_repl_additional"));
293  $this->settings->set("suffix_custom_white_list", $trafo("suffix_custom_white_list"));
294  $this->settings->set("suffix_custom_expl_black", $trafo("suffix_custom_expl_black"));
295 
296  $this->tpl->setOnScreenMessage('success', $this->lng->txt('settings_saved'), true);
297  $this->ctrl->redirect($this, self::CMD_EDIT_SETTINGS);
298  } else {
299  $form->setValuesByPost();
300  $this->tpl->setContent($form->getHTML());
301  }
302  }
303 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
New implementation of ilObjectGUI.
prepareOutput(bool $show_sub_objects=true)
ilGlobalTemplateInterface $tpl
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static http()
Fetches the global http state from ILIAS.
Class ilObjFileServicesGUI.
executeCommand()
Execute command public.
global $DIC
Definition: shib_login.php:22
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
__construct(int $id=0, int $id_type=self::REPOSITORY_NODE_ID, int $parent_node_id=0)
Constructor public.
ilFileServicesSettings $file_service_settings