ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilForumModeratorsGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 {
29  private readonly ilCtrlInterface $ctrl;
30  private readonly ilGlobalTemplateInterface $tpl;
31  private readonly ilLanguage $lng;
32  private readonly ilTabsGUI $tabs;
33  private readonly ilErrorHandling $error;
34  private readonly ilObjUser $user;
35  private readonly ilToolbarGUI $toolbar;
37  private int $ref_id = 0;
38  private readonly ilAccessHandler $access;
39  private readonly \ILIAS\HTTP\Wrapper\WrapperFactory $http_wrapper;
40  private readonly \ILIAS\Refinery\Factory $refinery;
41  private readonly \ILIAS\HTTP\Services $http;
42  private readonly \ILIAS\UI\Factory $ui_factory;
43  protected \ILIAS\UI\Renderer $ui_renderer;
44 
45  public function __construct()
46  {
48  global $DIC;
49 
50  $this->ctrl = $DIC->ctrl();
51  $this->tpl = $DIC->ui()->mainTemplate();
52  $this->lng = $DIC->language();
53  $this->access = $DIC->access();
54  $this->tabs = $DIC->tabs();
55  $this->error = $DIC['ilErr'];
56  $this->user = $DIC->user();
57  $this->toolbar = $DIC->toolbar();
58 
59  $this->tabs->activateTab('frm_moderators');
60  $this->lng->loadLanguageModule('search');
61  $this->http_wrapper = $DIC->http()->wrapper();
62  $this->http = $DIC->http();
63  $this->refinery = $DIC->refinery();
64  $this->ui_renderer = $DIC->ui()->renderer();
65  $this->ui_factory = $DIC->ui()->factory();
66 
67  if ($this->http_wrapper->query()->has('ref_id')) {
68  $this->ref_id = $this->http_wrapper->query()->retrieve(
69  'ref_id',
70  $this->refinery->kindlyTo()->int()
71  );
72  }
73 
74  if (!$this->access->checkAccess('write', '', $this->ref_id)) {
75  $this->error->raiseError($this->lng->txt('permission_denied'), $this->error->MESSAGE);
76  }
77 
78  $this->oForumModerators = new ilForumModerators($this->ref_id);
79  }
80 
81  public function executeCommand(): void
82  {
83  $next_class = $this->ctrl->getNextClass($this) ?? '';
84  $cmd = $this->ctrl->getCmd() ?? '';
85 
86  switch (strtolower($next_class)) {
87  case strtolower(ilRepositorySearchGUI::class):
88  $rep_search = new ilRepositorySearchGUI();
89  $rep_search->setCallback($this, 'addModerator');
90  $this->ctrl->setReturn($this, 'showModerators');
91  $this->ctrl->forwardCommand($rep_search);
92  break;
93 
94  default:
95  if (!$cmd) {
96  $cmd = 'showModerators';
97  }
98  $this->$cmd();
99  break;
100  }
101  }
102 
103  public function addModerator($users = []): void
104  {
105  if (!$users) {
106  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('frm_moderators_select_one'));
107  return;
108  }
109 
110  $isCrsGrp = ilForumNotification::_isParentNodeGrpCrs($this->ref_id);
111  $objFrmProps = ilForumProperties::getInstance(ilObject::_lookupObjId($this->ref_id));
112  $frm_noti_type = $objFrmProps->getNotificationType();
113 
114  foreach ($users as $user_id) {
115  $this->oForumModerators->addModeratorRole((int) $user_id);
116  if ($isCrsGrp && $frm_noti_type !== 'default') {
117  $tmp_frm_noti = new ilForumNotification($this->ref_id);
118  $tmp_frm_noti->setUserId((int) $user_id);
119  $tmp_frm_noti->setUserIdNoti($this->user->getId());
120  $tmp_frm_noti->setUserToggle($objFrmProps->getUserToggleNoti());
121  $tmp_frm_noti->setAdminForce($objFrmProps->getAdminForceNoti());
122 
123  $tmp_frm_noti->insertAdminForce();
124  }
125  }
126 
127  $this->tpl->setOnScreenMessage('success', $this->lng->txt('frm_moderator_role_added_successfully'), true);
128  $this->ctrl->redirect($this, 'showModerators');
129  }
130 
131  public function detachModeratorRole(): void
132  {
133  $usr_ids = [];
134  if ($this->http_wrapper->query()->has('frm_moderators_table_usr_ids')) {
135  $usr_ids = $this->http_wrapper->query()->retrieve(
136  'frm_moderators_table_usr_ids',
137  $this->refinery->kindlyTo()->listOf($this->refinery->kindlyTo()->int())
138  );
139  }
140 
141  if (!isset($usr_ids) || !is_array($usr_ids)) {
142  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('frm_moderators_select_at_least_one'));
143  $this->ctrl->redirect($this, 'showModerators');
144  }
145 
146  $entries = $this->oForumModerators->getCurrentModerators();
147  if (count($usr_ids) === count($entries)) {
148  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('frm_at_least_one_moderator'), true);
149  $this->ctrl->redirect($this, 'showModerators');
150  }
151 
152  $isCrsGrp = ilForumNotification::_isParentNodeGrpCrs($this->ref_id);
153 
154  $objFrmProps = ilForumProperties::getInstance(ilObject::_lookupObjId($this->ref_id));
155  $frm_noti_type = $objFrmProps->getNotificationType();
156 
157  foreach ($usr_ids as $usr_id) {
158  $this->oForumModerators->detachModeratorRole((int) $usr_id);
159 
160  if ($isCrsGrp && $frm_noti_type !== 'default' && !ilParticipants::_isParticipant($this->ref_id, $usr_id)) {
161  $tmp_frm_noti = new ilForumNotification($this->ref_id);
162  $tmp_frm_noti->setUserId((int) $usr_id);
163  $tmp_frm_noti->setForumId(ilObject::_lookupObjId($this->ref_id));
164 
165  $tmp_frm_noti->deleteAdminForce();
166  }
167  }
168 
169  $this->tpl->setOnScreenMessage('success', $this->lng->txt('frm_moderators_detached_role_successfully'), true);
170  $this->ctrl->redirect($this, 'showModerators');
171  }
172 
173  public function showModerators(): void
174  {
176  $this,
177  $this->toolbar,
178  [
179  'auto_complete_name' => $this->lng->txt('user'),
180  'submit_name' => $this->lng->txt('add'),
181  'add_search' => true,
182  'add_from_container' => $this->oForumModerators->getRefId()
183  ]
184  );
185  if ($this->http_wrapper->query()->has('ref_id')) {
186  $this->ref_id = $this->http_wrapper->query()->retrieve(
187  'ref_id',
188  $this->refinery->kindlyTo()->int()
189  );
190  }
191 
192  $tbl = new \ILIAS\Forum\Moderation\ForumModeratorsTable(
193  $this->oForumModerators,
194  $this->ctrl,
195  $this->lng,
196  $this->http,
197  $this->ui_factory
198  );
199 
200  $this->tpl->setContent($this->ui_renderer->render($tbl->getComponent()));
201  }
202 
203  private function handleModeratorActions(): void
204  {
205  $action = $this->http_wrapper->query()->retrieve(
206  'frm_moderators_table_action',
207  $this->refinery->byTrying([
208  $this->refinery->kindlyTo()->string(),
209  $this->refinery->always('')
210  ])
211  );
212  match ($action) {
213  'detachModeratorRole' => $this->detachModeratorRole(),
214  default => $this->ctrl->redirect($this, 'showModerators'),
215  };
216  }
217 }
readonly ilGlobalTemplateInterface $tpl
readonly ILIAS Refinery Factory $refinery
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
readonly ilToolbarGUI $toolbar
readonly ILIAS HTTP Wrapper WrapperFactory $http_wrapper
readonly ilErrorHandling $error
Class ilForumNotification.
readonly ilCtrlInterface $ctrl
static _lookupObjId(int $ref_id)
readonly ilAccessHandler $access
static getInstance(int $a_obj_id=0)
readonly ILIAS HTTP Services $http
readonly ilForumModerators $oForumModerators
static http()
Fetches the global http state from ILIAS.
global $DIC
Definition: shib_login.php:22
readonly ILIAS UI Factory $ui_factory
static _isParentNodeGrpCrs(int $a_ref_id)
static fillAutoCompleteToolbar(object $parent_object, ?ilToolbarGUI $toolbar=null, array $a_options=[], bool $a_sticky=false)
array( auto_complete_name = $lng->txt(&#39;user&#39;), auto_complete_size = 15, user_type = array(ilCoursePar...
__construct(Container $dic, ilPlugin $plugin)
static _isParticipant(int $a_ref_id, int $a_usr_id)
Static function to check if a user is a participant of the container object.