ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilChatroomBanGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 {
29  private readonly ilCtrlInterface $controller;
30  private readonly ilLanguage $language;
31  private readonly ilObjUser $user;
32 
33  public function __construct(
34  ?ilChatroomObjectGUI $gui,
35  ?ilCtrlInterface $controller = null,
36  ?ilLanguage $language = null,
37  ?ilObjUser $user = null
38  ) {
39  if ($controller === null) {
40  global $DIC;
41  $controller = $DIC->ctrl();
42  }
43  $this->controller = $controller;
44 
45  if ($language === null) {
46  global $DIC;
47  $language = $DIC->language();
48  }
49  $this->language = $language;
50 
51  if ($user === null) {
52  global $DIC;
53  $user = $DIC->user();
54  }
55  $this->user = $user;
56 
57  parent::__construct($gui);
58  }
59 
60  public function handleTableActions(): void
61  {
62  $action = $this->http->wrapper()->query()->retrieve(
63  'chat_ban_table_action',
64  $this->refinery->byTrying([
65  $this->refinery->kindlyTo()->string(),
66  $this->refinery->always('')
67  ])
68  );
69  match ($action) {
70  'delete' => $this->delete(),
71  default => $this->ilCtrl->redirect($this, 'show'),
72  };
73  }
74 
75  public function delete(): void
76  {
77  $userTrafo = $this->refinery->kindlyTo()->listOf($this->refinery->kindlyTo()->int());
78 
79  $users = $this->getRequestValue('chat_ban_table_user_ids', $userTrafo, []);
80  if ($users === []) {
81  $this->mainTpl->setOnScreenMessage('info', $this->ilLng->txt('no_checkbox'), true);
82  $this->ilCtrl->redirect($this->gui, 'ban-show');
83  }
84 
85  $room = ilChatroom::byObjectId($this->gui->getObject()->getId());
86  $this->exitIfNoRoomExists($room);
87 
88  $room->unbanUser($users);
89 
90  $this->mainTpl->setOnScreenMessage(
91  $this->mainTpl::MESSAGE_TYPE_SUCCESS,
92  $this->ilLng->txt('saved_successfully'),
93  true
94  );
95  $this->ilCtrl->redirect($this->gui, 'ban-show');
96  }
97 
98  public function executeDefault(string $requestedMethod): void
99  {
100  $this->show();
101  }
102 
106  public function show(): void
107  {
108  $this->redirectIfNoPermission('read');
109 
110  $this->gui->switchToVisibleMode();
111 
112  $room = ilChatroom::byObjectId($this->gui->getObject()->getId());
113  $this->exitIfNoRoomExists($room);
114 
115  $data = $room->getBannedUsers();
116  $actorId = array_filter(array_map(static function (array $row): int {
117  return (int) $row['actor_id'];
118  }, $data));
119 
120  $sortable_names = ilUserUtil::getNamePresentation($actorId);
121  $names = ilUserUtil::getNamePresentation($actorId, false, false, '', false, false, false);
122 
123  array_walk($data, function (&$row) use ($names, $sortable_names): void {
124  if ($row['actor_id'] > 0 && isset($names[$row['actor_id']])) {
125  $row['actor_display'] = $names[$row['actor_id']];
126  $row['actor'] = $sortable_names[$row['actor_id']];
127  } else {
128  $row['actor_display'] = $this->language->txt('unknown');
129  $row['actor'] = $this->language->txt('unknown');
130  }
131  });
132 
133  $tbl = new \ILIAS\Chatroom\Bans\BannedUsersTable(
134  $this->user,
135  $room->getRoomId(),
136  $data,
138  $this->ilLng,
139  $this->http,
141  );
142 
143  $this->mainTpl->setContent($this->uiRenderer->render($tbl->getComponent()));
144  }
145 
146  public function active(): void
147  {
148  $this->redirectIfNoPermission(['read', 'moderate']);
149 
150  $room = ilChatroom::byObjectId($this->gui->getObject()->getId());
151  $this->exitIfNoRoomExists($room);
152 
153  $userToBan = $this->getRequestValue('user', $this->refinery->kindlyTo()->int());
154 
155  $connector = $this->gui->getConnector();
156  $response = $connector->sendBan($room->getRoomId(), $userToBan);
157 
158  if ($this->isSuccessful($response)) {
159  $room->banUser($userToBan, $this->user->getId());
160  $room->disconnectUser($userToBan);
161  }
162 
163  $this->sendResponse($response, 'application/json');
164  }
165 }
redirectIfNoPermission($permission)
Checks for requested permissions and redirects if the permission check failed.
getRequestValue(string $key, Transformation $trafo, $default=null)
$response
Definition: xapitoken.php:93
exitIfNoRoomExists(?ilChatroom $room)
Checks if a ilChatroom exists.
show()
Displays banned users task.
Class ilChatroomBanGUI.
readonly ilObjUser $user
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
sendResponse(string $content, string $type)
Sends a response and exits the php process.
static http()
Fetches the global http state from ILIAS.
readonly ilCtrlInterface $controller
__construct(?ilChatroomObjectGUI $gui, ?ilCtrlInterface $controller=null, ?ilLanguage $language=null, ?ilObjUser $user=null)
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link='', bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path='ilpublicuserprofilegui')
Default behaviour is:
Class ilChatroomGUIHandler.
global $DIC
Definition: shib_login.php:22
readonly ilLanguage $language
isSuccessful($response)
Checks for success param in an json decoded response.
__construct(Container $dic, ilPlugin $plugin)
static byObjectId(int $object_id)
executeDefault(string $requestedMethod)
language()
description: > Example for rendring a language glyph.
Definition: language.php:41