ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ForumModeratorsTable.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use ILIAS\Data;
24 use ILIAS\UI;
26 use ilArrayUtil;
27 use ilObjUser;
28 use ilObjectFactory;
30 use ilLanguage;
32 use ilCtrlInterface;
33 
34 class ForumModeratorsTable implements UI\Component\Table\DataRetrieval
35 {
37  protected Data\Factory $data_factory;
41  private ?array $records = null;
42 
43  public function __construct(
44  private readonly ilForumModerators $forum_moderators,
45  private readonly ilCtrlInterface $ctrl,
46  private readonly ilLanguage $lng,
48  private readonly \ILIAS\UI\Factory $ui_factory
49  ) {
50  $this->request = $http->request();
51  $this->data_factory = new Data\Factory();
52  }
53 
54  public function getComponent(): UI\Component\Table\Data
55  {
56  $columns = $this->getColumns();
57  $actions = $this->getActions();
58 
59  return $this->ui_factory
60  ->table()
61  ->data($this, $this->lng->txt('frm_moderators'), $columns)
62  ->withId(self::class . '_' . $this->forum_moderators->getRefId())
63  ->withOrder(new \ILIAS\Data\Order('login', \ILIAS\Data\Order::ASC))
64  ->withActions($actions)
65  ->withRequest($this->request);
66  }
67 
71  private function getColumns(): array
72  {
73  return [
74  'login' => $this->ui_factory
75  ->table()
76  ->column()
77  ->text($this->lng->txt('login'))
78  ->withIsSortable(true),
79  'firstname' => $this->ui_factory
80  ->table()
81  ->column()
82  ->text($this->lng->txt('firstname'))
83  ->withIsSortable(true),
84 
85  'lastname' => $this->ui_factory
86  ->table()
87  ->column()
88  ->text($this->lng->txt('lastname'))
89  ->withIsSortable(true),
90  ];
91  }
92 
96  protected function getActions(): array
97  {
98  $query_params_namespace = ['frm', 'moderators', 'table'];
99 
100  $uri_detach = $this->data_factory->uri(
101  ILIAS_HTTP_PATH . '/' . $this->ctrl->getLinkTargetByClass(
102  ilForumModeratorsGUI::class,
103  'handleModeratorActions'
104  )
105  );
106 
107  $url_builder_detach = new UI\URLBuilder($uri_detach);
108  [
109  $url_builder_detach,
110  $action_parameter_token_copy,
111  $row_id_token_detach
112  ] = $url_builder_detach->acquireParameters(
113  $query_params_namespace,
114  'action',
115  'usr_ids'
116  );
117 
118  return [
119  'detachModeratorRole' => $this->ui_factory->table()->action()->single(
120  $this->lng->txt('remove'),
121  $url_builder_detach->withParameter($action_parameter_token_copy, 'detachModeratorRole'),
122  $row_id_token_detach
123  ),
124  ];
125  }
126 
127  private function initRecords(): void
128  {
129  if ($this->records === null) {
130  $this->records = [];
131  $i = 0;
132  $entries = $this->forum_moderators->getCurrentModerators();
133  foreach ($entries as $usr_id) {
135  $user = ilObjectFactory::getInstanceByObjId($usr_id, false);
136  if (!($user instanceof ilObjUser)) {
137  $this->forum_moderators->detachModeratorRole($usr_id);
138  continue;
139  }
140 
141  $this->records[$i]['usr_id'] = $user->getId();
142  $this->records[$i]['login'] = $user->getLogin();
143  $this->records[$i]['firstname'] = $user->getFirstname();
144  $this->records[$i]['lastname'] = $user->getLastname();
145  ++$i;
146  }
147  }
148  }
149 
150  public function getRows(
151  UI\Component\Table\DataRowBuilder $row_builder,
152  array $visible_column_ids,
153  Data\Range $range,
154  Data\Order $order,
155  ?array $filter_data,
156  ?array $additional_parameters
157  ): \Generator {
158  $records = $this->getRecords($range, $order);
159 
160  foreach ($records as $record) {
161  $row_id = (string) $record['usr_id'];
162  yield $row_builder->buildDataRow($row_id, $record);
163  }
164  }
165 
166  public function getTotalRowCount(
167  ?array $filter_data,
168  ?array $additional_parameters
169  ): ?int {
170  $this->initRecords();
171 
172  return count($this->records);
173  }
174 
178  private function sortedRecords(Data\Order $order): array
179  {
180  $records = $this->records;
181  [$order_field, $order_direction] = $order->join([], fn($ret, $key, $value) => [$key, $value]);
182 
183  return ilArrayUtil::stableSortArray($records, $order_field, strtolower($order_direction));
184  }
185 
189  private function getRecords(Data\Range $range, Data\Order $order): array
190  {
191  $this->initRecords();
192 
193  $records = $this->sortedRecords($order);
194 
195  return $this->limitRecords($records, $range);
196  }
197 
202  private function limitRecords(array $records, Data\Range $range): array
203  {
204  return array_slice($records, $range->getStart(), $range->getLength());
205  }
206 }
Interface Observer Contains several chained tasks and infos about them.
getRecords(Data\Range $range, Data\Order $order)
$http
Definition: deliver.php:30
Both the subject and the direction need to be specified when expressing an order. ...
Definition: Order.php:28
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getTotalRowCount(?array $filter_data, ?array $additional_parameters)
Mainly for the purpose of pagination-support, it is important to know about the total number of recor...
Builds data types.
Definition: Factory.php:35
getRows(UI\Component\Table\DataRowBuilder $row_builder, array $visible_column_ids, Data\Range $range, Data\Order $order, ?array $filter_data, ?array $additional_parameters)
static stableSortArray(array $array, string $a_array_sortby, string $a_array_sortorder="asc", bool $a_numeric=false)
Sort an aray using a stable sort algorithm, which preveserves the sequence of array elements which ha...
__construct(private readonly ilForumModerators $forum_moderators, private readonly ilCtrlInterface $ctrl, private readonly ilLanguage $lng, \ILIAS\HTTP\Services $http, private readonly \ILIAS\UI\Factory $ui_factory)
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
global $lng
Definition: privfeed.php:31
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
A simple class to express a naive range of whole positive numbers.
Definition: Range.php:28
limitRecords(array $records, Data\Range $range)