ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAdministrationGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
63 {
65  protected ilHelpGUI $help;
66  protected ilDBInterface $db;
67  public ilLanguage $lng;
69  public ilTree $tree;
71  public int $cur_ref_id;
72  public string $cmd;
73  public ilCtrl $ctrl;
74  protected string $admin_mode = "";
75  protected bool $creation_mode = false;
76  protected int $requested_obj_id = 0;
78  protected ilObjectGUI $gui_obj;
79  private readonly ilErrorHandling $error;
80 
81  public function __construct()
82  {
84  global $DIC;
85 
86  $this->help = $DIC["ilHelp"];
87  $this->db = $DIC->database();
88  $lng = $DIC->language();
89  $tpl = $DIC->ui()->mainTemplate();
90  $tree = $DIC->repositoryTree();
91  $rbacsystem = $DIC->rbac()->system();
92  $objDefinition = $DIC["objDefinition"];
93  $ilCtrl = $DIC->ctrl();
94  $this->error = $DIC['ilErr'];
95 
96  $this->lng = $lng;
97  $this->lng->loadLanguageModule('administration');
98  $this->tpl = $tpl;
99  $this->tree = $tree;
100  $this->rbacsystem = $rbacsystem;
101  $this->objDefinition = $objDefinition;
102  $this->ctrl = $ilCtrl;
103 
104  $context = $DIC->globalScreen()->tool()->context();
105  $context->claim()->administration();
106 
107  $this->request = new AdminGUIRequest(
108  $DIC->http(),
109  $DIC->refinery()
110  );
111 
112  $this->ctrl->saveParameter($this, array("ref_id", "admin_mode"));
113 
114  $this->admin_mode = $this->request->getAdminMode();
115  if ($this->admin_mode !== ilObjectGUI::ADMIN_MODE_REPOSITORY) {
116  $this->admin_mode = ilObjectGUI::ADMIN_MODE_SETTINGS;
117  }
118 
119  $this->ctrl->setReturn($this, "");
120 
121  // determine current ref id and mode
122  $ref_id = $this->request->getRefId();
123  if ($tree->isInTree($ref_id)) {
124  $this->cur_ref_id = $ref_id;
125  } else {
126  throw new ilPermissionException("Invalid ref id.");
127  }
128 
129  $this->requested_obj_id = $this->request->getObjId();
130  }
131 
132 
137  public function executeCommand(): void
138  {
139  $rbacsystem = $this->rbacsystem;
140  $objDefinition = $this->objDefinition;
141  $ilHelp = $this->help;
142  $ilDB = $this->db;
143 
144  // permission checks
145  if (!$rbacsystem->checkAccess("visible", SYSTEM_FOLDER_ID) &&
146  !$rbacsystem->checkAccess("read", SYSTEM_FOLDER_ID)) {
147  $this->error->raiseError($this->lng->txt('permission_denied'), $this->error->MESSAGE);
148  }
149 
150  // check creation mode
151  // determined by "new_type" parameter
152  // e.g. creation of a new role, user org unit, talk template
153  $new_type = $this->request->getNewType();
154  if ($new_type) {
155  $this->creation_mode = true;
156  }
157  // determine next class
158  if ($this->creation_mode) {
159  $obj_type = $new_type;
160  $class_name = $this->objDefinition->getClassName($obj_type);
161  $next_class = strtolower("ilObj" . $class_name . "GUI");
162  }
163 
164  // set next_class directly for page translations
165  // (no cmdNode is given in translation link)
166  if ($this->ctrl->getCmdClass() === "ilobjlanguageextgui") {
167  $next_class = "ilobjlanguageextgui";
168  } else {
169  $next_class = $this->ctrl->getNextClass($this);
170  }
171 
172  if ((
173  $next_class === "iladministrationgui" || $next_class == ""
174  ) && ($this->ctrl->getCmd() === "return")) {
175  // get GUI of current object
176  $obj_type = ilObject::_lookupType($this->cur_ref_id, true);
177  $class_name = $this->objDefinition->getClassName($obj_type);
178  $next_class = strtolower("ilObj" . $class_name . "GUI");
179  }
180 
181  $cmd = $this->ctrl->getCmd("forward");
182 
183  //echo "<br>cmd:$cmd:nextclass:$next_class:-".$_GET["cmdClass"]."-".$_GET["cmd"]."-";
184  switch ($next_class) {
185  default:
186 
187  // forward all other classes to gui commands
188  if ($next_class != "" && $next_class !== "iladministrationgui") {
189  $class_path = $this->ctrl->lookupClassPath($next_class);
190  if (is_file($class_path)) {
191  require_once $class_path; // note: org unit plugins still need the require
192  }
193  // get gui class instance
194  $class_name = $this->ctrl->getClassForClasspath($class_path);
195  if (($next_class === "ilobjrolegui" || $next_class === "ilobjusergui"
196  || $next_class === "ilobjroletemplategui")) {
197  if ($this->requested_obj_id > 0) {
198  $this->gui_obj = new $class_name(null, $this->requested_obj_id, false, false);
199  $this->gui_obj->setCreationMode(false);
200  } else {
201  $this->gui_obj = new $class_name(null, $this->cur_ref_id, true, false);
202  $this->gui_obj->setCreationMode(true);
203  }
204  } else {
205  if ($objDefinition->isPlugin(ilObject::_lookupType($this->cur_ref_id, true))) {
206  $this->gui_obj = new $class_name($this->cur_ref_id);
207  } else {
208  if (!$this->creation_mode) {
209  if (is_subclass_of($class_name, "ilObject2GUI")) {
210  $this->gui_obj = new $class_name($this->cur_ref_id, ilObject2GUI::REPOSITORY_NODE_ID);
211  } else {
212  $this->gui_obj = new $class_name(null, $this->cur_ref_id, true, false);
213  }
214  } else {
215  if (is_subclass_of($class_name, "ilObject2GUI")) {
216  $this->gui_obj = new $class_name(null, ilObject2GUI::REPOSITORY_NODE_ID, $this->cur_ref_id);
217  } else {
218  $this->gui_obj = new $class_name("", 0, true, false);
219  }
220  }
221  }
222  $this->gui_obj->setCreationMode($this->creation_mode);
223  }
224  $this->gui_obj->setAdminMode($this->admin_mode);
225  $tabs_out = true;
226  $ilHelp->setScreenIdComponent(ilObject::_lookupType($this->cur_ref_id, true));
227  $this->showTree();
228 
229  $this->ctrl->setReturn($this, "return");
230  $ret = $this->ctrl->forwardCommand($this->gui_obj);
231  $html = $this->gui_obj->getHTML();
232 
233  if ($html != "") {
234  $this->tpl->setVariable("OBJECTS", $html);
235  }
236  $this->tpl->printToStdout();
237  } else { //
238  $cmd = $this->ctrl->getCmd("forward");
239  $this->$cmd();
240  }
241  break;
242  }
243  }
244 
250  public function forward(): void
251  {
252  if ($this->admin_mode !== "repository") { // settings
253  if ($this->request->getRefId() == USER_FOLDER_ID) {
254  $this->ctrl->setParameter($this, "ref_id", USER_FOLDER_ID);
255  $this->ctrl->setParameterByClass("iladministrationgui", "admin_mode", "settings");
256  if (ilObject::_lookupType($this->request->getJumpToUserId()) === "usr") {
257  $this->ctrl->setParameterByClass(
258  "ilobjuserfoldergui",
259  "jmpToUser",
260  $this->request->getJumpToUserId()
261  );
262  $this->ctrl->redirectByClass("ilobjuserfoldergui", "jumpToUser");
263  } else {
264  $this->ctrl->redirectByClass("ilobjuserfoldergui", "view");
265  }
266  } else {
267  // this code should not be necessary anymore...
268  throw new ilPermissionException("Missing AdmiGUI parameter.");
269 
270  /*
271  $this->ctrl->setParameter($this, "ref_id", SYSTEM_FOLDER_ID);
272  $this->ctrl->setParameterByClass("iladministrationgui", "admin_mode", "settings");
273 
274 
275  if ($_GET['fr']) {
276  // Security check: We do only allow relative urls
277  $url_parts = parse_url(base64_decode(rawurldecode($_GET['fr'])));
278  if ($url_parts['http'] || $url_parts['host']) {
279  throw new ilPermissionException($this->lng->txt('permission_denied'));
280  }
281 
282  $fs_gui->setMainFrameSource(
283  base64_decode(rawurldecode($_GET['fr']))
284  );
285  ilUtil::redirect(ILIAS_HTTP_PATH . '/' . base64_decode(rawurldecode($_GET['fr'])));
286  } else {
287  $fs_gui->setMainFrameSource(
288  $this->ctrl->getLinkTargetByClass("ilobjsystemfoldergui", "view")
289  );
290  $this->ctrl->redirectByClass("ilobjsystemfoldergui", "view");
291  }*/
292  }
293  } else {
294  $this->ctrl->setParameter($this, "ref_id", ROOT_FOLDER_ID);
295  $this->ctrl->setParameterByClass("iladministrationgui", "admin_mode", "repository");
296  $this->ctrl->redirectByClass("ilobjrootfoldergui", "view");
297  }
298  }
299 
300  public function showTree(): void
301  {
302  global $DIC;
303 
304  if ($this->admin_mode !== "repository") {
305  return;
306  }
307 
308  $DIC->globalScreen()->tool()->context()->current()->addAdditionalData(ilAdminGSToolProvider::SHOW_ADMIN_TREE, true);
309 
310  $exp = new ilAdministrationExplorerGUI(self::class, "showTree");
311  $exp->handleCommand();
312  }
313 
314  // Special jump to plugin slot after ilCtrl has been reloaded
315  public function jumpToPluginSlot(): void
316  {
317  $ilCtrl = $this->ctrl;
318  $ilCtrl->redirectByClass("ilobjcomponentsettingsgui", "listPlugins");
319  }
320 
321  // Jump to node
322  public function jump(): void
323  {
324  $ilCtrl = $this->ctrl;
325  $objDefinition = $this->objDefinition;
326 
327  $ref_id = $this->request->getRefId();
328  $obj_id = ilObject::_lookupObjId($ref_id);
329  $obj_type = ilObject::_lookupType($obj_id);
330  $class_name = $objDefinition->getClassName($obj_type);
331  $class = strtolower("ilObj" . $class_name . "GUI");
332  $ilCtrl->setParameterByClass($class, "ref_id", $ref_id);
333  $ilCtrl->redirectByClass($class, "view");
334  }
335 }
Class ilAdministratioGUI.
readonly ilErrorHandling $error
const ADMIN_MODE_REPOSITORY
$context
Definition: webdav.php:31
const USER_FOLDER_ID
Definition: constants.php:33
const ROOT_FOLDER_ID
Definition: constants.php:32
Help GUI class.
isInTree(?int $a_node_id)
get all information of a node.
redirectByClass( $a_class, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
const SYSTEM_FOLDER_ID
Definition: constants.php:35
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
checkAccess(string $a_operations, int $a_ref_id, string $a_type="")
checkAccess represents the main method of the RBAC-system in ILIAS3 developers want to use With this ...
forward()
Forward to class/command.
$ref_id
Definition: ltiauth.php:65
const ADMIN_MODE_SETTINGS
Class ilObjectGUI Basic methods of all Output classes.
global $DIC
Definition: shib_login.php:22
getClassName(string $obj_name)
Administration explorer GUI class.
ilObjectDefinition $objDefinition
ilGlobalTemplateInterface $tpl
__construct(Container $dic, ilPlugin $plugin)
isPlugin(string $obj_name)
get RBAC status by type returns true if object type is an (activated) plugin type ...
static _lookupType(int $id, bool $reference=false)