ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilRemoteObjectBaseGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 abstract class ilRemoteObjectBaseGUI extends ilObject2GUI
25 {
26  private ilLogger $logger;
27 
28  public const TAB_ID_PERMISSIONS = "id_permissions";
29 
30  public function __construct($a_id = 0, $a_id_type = self::REPOSITORY_NODE_ID, $a_parent_node_id = 0)
31  {
32  global $DIC;
33 
34  parent::__construct($a_id, $a_id_type, $a_parent_node_id);
35 
36  $this->logger = $DIC->logger()->wsrv();
37 
38  $this->lng->loadLanguageModule('ecs');
39  }
40 
41  public function executeCommand(): void
42  {
43  $next_class = $this->ctrl->getNextClass($this);
44  $cmd = $this->ctrl->getCmd();
45 
46  $this->prepareOutput();
47  $this->logger->info("Can write:" . print_r($this->checkPermissionBool('write'), true));
48 
49  switch ($next_class) {
50  case 'ilinfoscreengui':
51  // forwards command
52  $this->infoScreen();
53  break;
54 
55  case 'ilpermissiongui':
56  $this->tabs_gui->activateTab('id_permissions');
57  $this->ctrl->forwardCommand(new ilPermissionGUI($this));
58  break;
59 
60  case "ilcommonactiondispatchergui":
62  $this->ctrl->forwardCommand($gui);
63  break;
64 
65  case strtolower(ilECSUserConsentModalGUI::class):
66  $consent_gui = new ilECSUserConsentModalGUI(
67  $this->user->getId(),
69  $this
70  );
71  $this->ctrl->setReturn($this, 'call');
72  $this->ctrl->forwardCommand($consent_gui);
73  break;
74 
75  default:
76  if (!$cmd || $cmd === 'view') {
77  $cmd = "infoScreen";
78  }
79  $cmd .= "Object";
80  $this->logger->info("cmd before call:" . print_r($cmd, true));
81  $this->$cmd();
82  break;
83  }
84  $this->logger->info("cmd:" . print_r($cmd, true));
85  }
86 
90  public function showObject(): void
91  {
92  if ($this->user->getId() === ANONYMOUS_USER_ID ||
93  $this->object->isLocalObject()) {
94  $this->ctrl->redirectToURL($this->object->getRemoteLink());
95  } else {
96  $link = $this->object->getFullRemoteLink();
97  $this->ctrl->redirectToURL($link);
98  }
99  }
100 
104  protected function setTabs(): void
105  {
106  if ($this->checkPermissionBool('visible')) {
107  $this->tabs_gui->addTab(
108  "info",
109  $this->lng->txt("info_short"),
110  $this->ctrl->getLinkTarget($this, "infoScreen")
111  );
112  }
113 
114  if ($this->checkPermissionBool('write')) {
115  $this->tabs_gui->addTab(
116  "edit",
117  $this->lng->txt("edit"),
118  $this->ctrl->getLinkTarget($this, "edit")
119  );
120  }
121  if ($this->checkPermissionBool("edit_permission")) {
122  $this->tabs_gui->addTab(
123  self::TAB_ID_PERMISSIONS,
124  $this->lng->txt("perm_settings"),
125  $this->ctrl->getLinkTargetByClass("ilpermissiongui", "perm")
126  );
127  }
128  }
129 
135  public function callObject(): bool
136  {
138  $this->getType(),
139  $this->object->getRefId(),
140  $this->object->getId(),
141  $this->user->getId()
142  );
143 
144 
145  // check if the assigned object is hosted on the same installation
146  $link = $this->object->getFullRemoteLink();
147  if ($link) {
148  $this->ctrl->redirectToURL($link);
149  return true;
150  }
151 
152  $this->tpl->setOnScreenMessage('failure', 'Cannot call remote object.');
153  $this->infoScreenObject();
154  return false;
155  }
156 
162  public function infoScreenObject(): void
163  {
164  // @todo: removed deprecated ilCtrl methods, this needs inspection by a maintainer.
165  // $this->ctrl->setCmd("showSummary");
166  // $this->ctrl->setCmdClass("ilinfoscreengui");
167  $this->infoScreen();
168  }
169 
173  public function infoScreen(): void
174  {
175  if (!$this->access->checkAccess("visible", "", $this->object->getRefId())) {
176  $this->error->raiseError(
177  $this->lng->txt('msg_no_perm_read'),
178  $this->error->MESSAGE
179  );
180  }
181 
182  $this->ctrl->setReturn($this, 'call');
183  $consent_gui = new ilECSUserConsentModalGUI(
184  $this->user->getId(),
186  $this
187  );
188  $consent_gui->addLinkToToolbar($this->toolbar);
189 
190  $this->tabs_gui->activateTab('info');
191 
192  $info = new ilInfoScreenGUI($this);
193 
194  $info->addSection($this->lng->txt('ecs_general_info'));
195  $info->addProperty($this->lng->txt('title'), $this->object->getTitle());
196  if ($this->object->getOrganization()) {
197  $info->addProperty($this->lng->txt('organization'), $this->object->getOrganization());
198  }
199  if ($this->object->getDescription()) {
200  $info->addProperty($this->lng->txt('description'), $this->object->getDescription());
201  }
202  if ($this->object->getLocalInformation()) {
203  $info->addProperty($this->lng->txt('ecs_local_information'), $this->object->getLocalInformation());
204  }
205 
206  $this->addCustomInfoFields($info);
207 
208  $record_gui = new ilAdvancedMDRecordGUI(
210  $this->getType(),
211  $this->object->getId()
212  );
213  $record_gui->setInfoObject($info);
214  $record_gui->parse();
215 
216  $this->ctrl->forwardCommand($info);
217  }
218 
224  protected function addCustomInfoFields(ilInfoScreenGUI $a_info): void
225  {
226  // can be overwritten by subclasses
227  }
228 
232  public function editObject(?ilPropertyFormGUI $form = null): void
233  {
234  if (!$this->access->checkAccess("write", "", $this->object->getRefId())) {
235  $this->error->raiseError($this->lng->txt('msg_no_perm_read'), $this->error->MESSAGE);
236  }
237  $this->logger->info("Can write:" . print_r($this->checkPermissionBool('write'), true));
238  $this->tabs_gui->activateTab('edit');
239 
240  if (!$form) {
241  $form = $this->initEditForm();
242  }
243  $this->tpl->setContent($form->getHTML());
244  }
245 
249  protected function initEditForm(): ilPropertyFormGUI
250  {
251  $form = new ilPropertyFormGUI();
252  $form->setFormAction($this->ctrl->getFormAction($this));
253  $form->setTitle($this->lng->txt('ecs_general_info'));
254  $form->addCommandButton('update', $this->lng->txt('save'));
255  $form->addCommandButton('edit', $this->lng->txt('cancel'));
256 
257  $text = new ilTextInputGUI($this->lng->txt('title'), 'title');
258  $text->setValue($this->object->getTitle());
259  $text->setSize(min(40, ilObject::TITLE_LENGTH));
260  $text->setMaxLength(ilObject::TITLE_LENGTH);
261  $text->setDisabled(true);
262  $form->addItem($text);
263 
264  $area = new ilTextAreaInputGUI($this->lng->txt('description'), 'description');
265  $area->setValue($this->object->getDescription());
266  $area->setRows(3);
267  $area->setCols(80);
268  $area->setDisabled(true);
269  $form->addItem($area);
270 
271  $area = new ilTextAreaInputGUI($this->lng->txt('ecs_local_information'), 'local_info');
272  $area->setValue($this->object->getLocalInformation());
273  $area->setRows(3);
274  $area->setCols(80);
275  $form->addItem($area);
276 
277  $this->addCustomEditForm($form);
278 
279  $record_gui = new ilAdvancedMDRecordGUI(
281  $this->getType(),
282  $this->object->getId()
283  );
284  $record_gui->setPropertyForm($form);
285  $record_gui->parse();
286 
287  return $form;
288  }
289 
295  protected function addCustomEditForm(ilPropertyFormGUI $a_form): void
296  {
297  }
298 
299  public function updateObject(): void
300  {
301  if (!$this->checkPermissionBool('write')) {
302  $this->error->raiseError($this->lng->txt('msg_no_perm_read'), $this->error->MESSAGE);
303  }
304 
305  $form = $this->initEditForm();
306  if ($form->checkInput()) {
307  $this->object->setLocalInformation($form->getInput('local_info'));
308 
309  $this->updateCustomValues($form);
310 
311  $this->object->update();
312 
313  // Save advanced meta data
314  $record_gui = new ilAdvancedMDRecordGUI(
316  $this->getType(),
317  $this->object->getId()
318  );
319  $record_gui->importEditFormPostValues();
320  $record_gui->writeEditForm();
321 
322  $this->tpl->setOnScreenMessage('success', $this->lng->txt("settings_saved"));
323  $this->editObject();
324  }
325 
326  $form->setValuesByPost();
327  $this->editObject($form);
328  }
329 
335  protected function updateCustomValues(ilPropertyFormGUI $a_form): void
336  {
337  }
338 
339  public static function _goto(string $a_target): void
340  {
341  global $DIC;
342 
343  $ilAccess = $DIC->access();
344  $ilErr = $DIC["ilErr"];
345  $lng = $DIC->language();
346  if ($ilAccess->checkAccess("read", "", (int) $a_target)) {
347  ilObjectGUI::_gotoRepositoryNode((int) $a_target);
348  }
349 
350  if ($ilAccess->checkAccess("visible", "", (int) $a_target)) {
351  ilObjectGUI::_gotoRepositoryNode((int) $a_target, "infoScreen");
352  }
353  $ilErr->raiseError($lng->txt("msg_no_perm_read"), $ilErr->FATAL);
354  }
355 }
editObject(?ilPropertyFormGUI $form=null)
Edit settings.
setPropertyForm(ilPropertyFormGUI $form)
const ANONYMOUS_USER_ID
Definition: constants.php:27
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
New implementation of ilObjectGUI.
const TITLE_LENGTH
importEditFormPostValues()
Load edit form values from post.
static _gotoRepositoryNode(int $ref_id, string $cmd="")
addCustomInfoFields(ilInfoScreenGUI $a_info)
Add custom fields to info screen.
prepareOutput(bool $show_sub_objects=true)
$ilErr
Definition: raiseError.php:33
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $node_id=null)
infoScreenObject()
this one is called from the info button in the repository not very nice to set cmdClass/Cmd manually...
getType()
Functions that must be overwritten.
static _recordReadEvent(string $a_type, int $a_ref_id, int $obj_id, int $usr_id, bool $isCatchupWriteEvents=true, $a_ext_rc=null, $a_ext_time=null)
global $DIC
Definition: shib_login.php:22
__construct($a_id=0, $a_id_type=self::REPOSITORY_NODE_ID, $a_parent_node_id=0)
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
setInfoObject(ilInfoScreenGUI $info)
get info sections
updateCustomValues(ilPropertyFormGUI $a_form)
Update object custom values.
initEditForm()
Init edit settings form.
static _goto(string $a_target)
addCustomEditForm(ilPropertyFormGUI $a_form)
Add custom fields to edit form.
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call