ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilWorkspaceAccessGUI.php
Go to the documentation of this file.
1 <?php
2 
20 
29 {
30  public const PERMISSION_REGISTERED = -1;
31  public const PERMISSION_ALL_PASSWORD = -3;
32  public const PERMISSION_ALL = -5;
33  protected \ILIAS\PersonalWorkspace\InternalGUIService $gui;
34  protected bool $is_portfolio;
35  protected ilTabsGUI $tabs;
38  protected ilObjUser $user;
39  protected ilSetting $settings;
40  protected ilCtrl $ctrl;
41  protected ilLanguage $lng;
42  protected int $node_id;
46  protected $access_handler;
47  protected string $footer = "";
48 
49  protected string $blocking_message = "";
51 
55  public function __construct(
56  int $a_node_id,
57  $a_access_handler,
58  bool $a_is_portfolio = false,
59  string $a_footer = ""
60  ) {
61  global $DIC;
62 
63  $this->tabs = $DIC->tabs();
64  $this->tpl = $DIC->ui()->mainTemplate();
65  $this->toolbar = $DIC->toolbar();
66  $this->user = $DIC->user();
67  $this->settings = $DIC->settings();
68  $ilCtrl = $DIC->ctrl();
69  $lng = $DIC->language();
70 
71  $this->ctrl = $ilCtrl;
72  $this->lng = $lng;
73  $this->node_id = $a_node_id;
74  $this->access_handler = $a_access_handler;
75  $this->is_portfolio = $a_is_portfolio;
76  $this->footer = $a_footer;
77  $this->std_request = new StandardGUIRequest(
78  $DIC->http(),
79  $DIC->refinery()
80  );
81  $this->gui = $DIC->personalWorkspace()->internal()->gui();
82  }
83 
84  // Set blocking message
85  public function setBlockingMessage(string $a_val): void
86  {
87  $this->blocking_message = $a_val;
88  }
89 
90  public function getBlockingMessage(): string
91  {
93  }
94 
95  public function executeCommand(): void
96  {
97  $ilTabs = $this->tabs;
98  $tpl = $this->tpl;
99  $next_class = $this->ctrl->getNextClass($this);
100  $cmd = $this->ctrl->getCmd();
101 
102  switch ($next_class) {
103  case "ilmailsearchcoursesgui":
104  $ilTabs->setBackTarget(
105  $this->lng->txt("back"),
106  $this->ctrl->getLinkTarget($this, "share")
107  );
108  $csearch = new ilMailSearchCoursesGUI($this->access_handler, $this->node_id);
109  $this->ctrl->setReturn($this, 'share');
110  $this->ctrl->forwardCommand($csearch);
111 
112  $this->setObjectTitle();
113  break;
114 
115  case "ilmailsearchgroupsgui":
116  $ilTabs->setBackTarget(
117  $this->lng->txt("back"),
118  $this->ctrl->getLinkTarget($this, "share")
119  );
120  $gsearch = new ilMailSearchGroupsGUI($this->access_handler, $this->node_id);
121  $this->ctrl->setReturn($this, 'share');
122  $this->ctrl->forwardCommand($gsearch);
123 
124  $this->setObjectTitle();
125  break;
126 
127  case "ilmailsearchgui":
128  $ilTabs->setBackTarget(
129  $this->lng->txt("back"),
130  $this->ctrl->getLinkTarget($this, "share")
131  );
132  $usearch = new ilMailSearchGUI($this->access_handler, $this->node_id);
133  $this->ctrl->setReturn($this, 'share');
134  $this->ctrl->forwardCommand($usearch);
135 
136  $this->setObjectTitle();
137  break;
138 
139  case "ilsingleusersharegui":
140  $ilTabs->setBackTarget(
141  $this->lng->txt("back"),
142  $this->ctrl->getLinkTarget($this, "share")
143  );
144  $ushare = new ilSingleUserShareGUI($this->access_handler, $this->node_id);
145  $this->ctrl->setReturn($this, 'share');
146  $this->ctrl->forwardCommand($ushare);
147 
148  $this->setObjectTitle();
149  break;
150 
151  case "ilpublicuserprofilegui":
152  $ilTabs->clearTargets();
153  $ilTabs->setBackTarget(
154  $this->lng->txt("back"),
155  $this->ctrl->getLinkTarget($this, "share")
156  );
157 
158  $prof = new ilPublicUserProfileGUI(
159  $this->std_request->getUser()
160  );
161  $prof->setBackUrl($this->ctrl->getLinkTarget($this, "share"));
162  $tpl->setContent($prof->getHTML());
163  break;
164 
165  default:
166  // $this->prepareOutput();
167  if (!$cmd) {
168  $cmd = "share";
169  }
170  //return $this->$cmd();
171  $this->$cmd();
172  break;
173  }
174  }
175 
176  protected function setObjectTitle(): void
177  {
178  $tpl = $this->tpl;
179 
180  if (!$this->is_portfolio) {
181  $obj_id = $this->access_handler->getTree()->lookupObjectId($this->node_id);
182  } else {
183  $obj_id = $this->node_id;
184  }
185  $tpl->setTitle(ilObject::_lookupTitle($obj_id));
186  }
187 
191  protected function getAccessHandler()
192  {
193  return $this->access_handler;
194  }
195 
196  protected function share(): void
197  {
198  $ilToolbar = $this->toolbar;
199  $tpl = $this->tpl;
200  $ilUser = $this->user;
202 
203 
204  // blocking message
205  if ($this->getBlockingMessage() != "") {
206  $tpl->setContent($this->getBlockingMessage());
207  return;
208  }
209 
210  $options = array();
211  $options["user"] = $this->lng->txt("wsp_set_permission_single_user");
212 
213  $grp_ids = ilGroupParticipants::_getMembershipByType($ilUser->getId(), ['grp']);
214  if (sizeof($grp_ids)) {
215  $options["group"] = $this->lng->txt("wsp_set_permission_group");
216  }
217 
218  $crs_ids = ilCourseParticipants::_getMembershipByType($ilUser->getId(), ['crs']);
219  if (sizeof($crs_ids)) {
220  $options["course"] = $this->lng->txt("wsp_set_permission_course");
221  }
222 
223  if (!$this->getAccessHandler()->hasRegisteredPermission($this->node_id)) {
224  $options["registered"] = $this->lng->txt("wsp_set_permission_registered");
225  }
226 
227  if ($ilSetting->get("enable_global_profiles")) {
228  if (!$this->getAccessHandler()->hasGlobalPasswordPermission($this->node_id)) {
229  $options["password"] = $this->lng->txt("wsp_set_permission_all_password");
230  }
231 
232  if (!$this->getAccessHandler()->hasGlobalPermission($this->node_id)) {
233  $options["all"] = $this->lng->txt("wsp_set_permission_all");
234  }
235  }
236 
237  $actions = new ilSelectInputGUI("", "action");
238  $actions->setOptions($options);
239  $ilToolbar->addStickyItem($actions);
240 
241  $ilToolbar->setFormAction($this->ctrl->getFormAction($this));
242 
243  $this->gui->button(
244  $this->lng->txt("add"),
245  "addpermissionhandler"
246  )->submit()->toToolbar(true);
247 
248  $table = new ilWorkspaceAccessTableGUI($this, "share", $this->node_id, $this->getAccessHandler());
249  $tpl->setContent($table->getHTML() . $this->footer);
250  }
251 
252  public function addPermissionHandler(): void
253  {
254  switch ($this->std_request->getAction()) {
255  case "user":
256 
257  if (ilUserAccountSettings::getInstance()->isUserAccessRestricted()) {
258  $this->ctrl->redirectByClass("ilsingleusersharegui");
259  } else {
260  $this->ctrl->setParameterByClass("ilmailsearchgui", "ref", "wsp");
261  $this->ctrl->redirectByClass("ilmailsearchgui");
262  }
263  break;
264 
265  case "group":
266  $this->ctrl->setParameterByClass("ilmailsearchgroupsgui", "ref", "wsp");
267  $this->ctrl->redirectByClass("ilmailsearchgroupsgui");
268  break;
269 
270  case "course":
271  $this->ctrl->setParameterByClass("ilmailsearchcoursesgui", "ref", "wsp");
272  $this->ctrl->redirectByClass("ilmailsearchcoursesgui");
273  break;
274 
275  case "registered":
276  $this->getAccessHandler()->addMissingPermissionForObjects($this->node_id, [self::PERMISSION_REGISTERED]);
277  $this->tpl->setOnScreenMessage('success', $this->lng->txt("wsp_share_success"), true);
278  $this->ctrl->redirect($this, "share");
279  break;
280 
281  case "password":
282  $this->showPasswordForm();
283  break;
284 
285  case "all":
286  $this->getAccessHandler()->addMissingPermissionForObjects($this->node_id, [self::PERMISSION_ALL]);
287  $this->tpl->setOnScreenMessage('success', $this->lng->txt("wsp_permission_all_info"), true);
288  $this->ctrl->redirect($this, "share");
289  }
290  }
291 
292  public function removePermission(): void
293  {
294  $obj_id = $this->std_request->getObjId();
295  if ($obj_id !== 0) {
296  $this->getAccessHandler()->removePermission($this->node_id, $obj_id);
297  $this->tpl->setOnScreenMessage('success', $this->lng->txt("wsp_permission_removed"), true);
298  }
299 
300  $this->ctrl->redirect($this, "share");
301  }
302 
303  protected function initPasswordForm(): ilPropertyFormGUI
304  {
305  $form = new ilPropertyFormGUI();
306  $form->setFormAction($this->ctrl->getFormAction($this));
307  $form->setTitle($this->lng->txt("wsp_set_permission_all_password"));
308 
309  $password = new ilPasswordInputGUI($this->lng->txt("password"), "password");
310  $password->setRequired(true);
311  $form->addItem($password);
312 
313  $form->addCommandButton('savepasswordform', $this->lng->txt("save"));
314  $form->addCommandButton('share', $this->lng->txt("cancel"));
315 
316  return $form;
317  }
318 
319  protected function showPasswordForm(?ilPropertyFormGUI $a_form = null): void
320  {
321  $tpl = $this->tpl;
322 
323  if (!$a_form) {
324  $a_form = $this->initPasswordForm();
325  }
326  $tpl->setContent($a_form->getHTML());
327  }
328 
329  protected function savePasswordForm(): void
330  {
331  $form = $this->initPasswordForm();
332  if ($form->checkInput()) {
333  $this->getAccessHandler()->addPermission(
334  $this->node_id,
335  self::PERMISSION_ALL_PASSWORD,
336  md5($form->getInput("password"))
337  );
338  $this->tpl->setOnScreenMessage('success', $this->lng->txt("wsp_permission_all_pw_info"), true);
339  $this->ctrl->redirect($this, "share");
340  }
341 
342  $form->setValuesByPost();
343  $this->showPasswordForm($form);
344  }
345 }
This class represents a selection list property in a property form.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(int $a_node_id, $a_access_handler, bool $a_is_portfolio=false, string $a_footer="")
setContent(string $a_html)
Sets content for standard template.
setTitle(string $a_title, bool $hidden=false)
Sets title in standard template.
setBackUrl(string $backurl)
Set Back Link URL.
showPasswordForm(?ilPropertyFormGUI $a_form=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
GUI class for public user profile presentation.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupTitle(int $obj_id)
global $DIC
Definition: shib_login.php:22
ILIAS PersonalWorkspace InternalGUIService $gui
This class represents a password property in a property form.
setRequired(bool $a_required)
ACL access handler GUI.
global $ilSetting
Definition: privfeed.php:31
ilGlobalTemplateInterface $tpl
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getMembershipByType(int $a_usr_id, array $a_type, bool $a_only_member_role=false)
get membership by type Get course or group membership
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...