ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ServerTable.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 readonly class ServerTable implements \ILIAS\UI\Component\Table\DataRetrieval
24 {
25  private \ILIAS\UI\URLBuilder $url_builder;
26  private \ILIAS\UI\URLBuilderToken $action_parameter_token;
27  private \ILIAS\UI\URLBuilderToken $row_id_token;
28 
32  public function __construct(
33  private array $servers,
34  private \ilLDAPSettingsGUI $parent_gui,
35  private \ILIAS\UI\Factory $ui_factory,
36  private \ILIAS\UI\Renderer $ui_renderer,
37  private \ilLanguage $lng,
38  private \ilCtrlInterface $ctrl,
39  private \Psr\Http\Message\ServerRequestInterface $http_request,
40  private \ILIAS\Data\Factory $df,
41  private string $parent_cmd,
42  private bool $has_write_access
43  ) {
44  $form_action = $this->df->uri(
45  \ilUtil::_getHttpPath() . '/' .
46  $this->ctrl->getLinkTarget($this->parent_gui, $this->parent_cmd)
47  );
48 
49  [
53  ] = (new \ILIAS\UI\URLBuilder($form_action))->acquireParameters(
54  ['ldap', 'servers'],
55  'table_action',
56  'server_id'
57  );
58  }
59 
63  private function getRecords(\ILIAS\Data\Range $range, \ILIAS\Data\Order $order): array
64  {
65  $servers = $this->servers;
66 
67  [$order_field, $order_direction] = $order->join([], static function ($ret, $key, $value) {
68  return [$key, $value];
69  });
70 
71  array_walk(
72  $servers,
73  static function (array &$server): void {
74  $server['user'] = \count(\ilObjUser::_getExternalAccountsByAuthMode('ldap_' . $server['server_id']));
75  }
76  );
77 
78  $records = \ilArrayUtil::sortArray(
79  $servers,
80  $order_field,
81  strtolower($order_direction),
82  \in_array($order_field, ['user', 'active'], true)
83  );
84 
85  if ($order_field === 'active') {
86  $records = array_reverse($records);
87  }
88 
89  $records = \array_slice($records, $range->getStart(), $range->getLength());
90 
91  return $records;
92  }
93 
94  public function getRows(
95  \ILIAS\UI\Component\Table\DataRowBuilder $row_builder,
96  array $visible_column_ids,
98  \ILIAS\Data\Order $order,
99  ?array $filter_data,
100  ?array $additional_parameters
101  ): \Generator {
102  foreach ($this->getRecords($range, $order) as $server) {
103  $title = $server['name'];
104  if ($this->has_write_access) {
105  $this->ctrl->setParameter($this->parent_gui, 'ldap_server_id', $server['server_id']);
106  $title = $this->ui_renderer->render(
107  $this->ui_factory->link()->standard(
108  $title,
109  $this->ctrl->getLinkTarget($this->parent_gui, 'editServerSettings')
110  )
111  );
112  }
113 
114  yield $row_builder
115  ->buildDataRow(
116  (string) $server['server_id'],
117  [
118  'title' => $title,
119  'active' => (bool) $server['active'],
120  'user' => $server['user']
121  ]
122  )
123  ->withDisabledAction(
124  'activateServer',
125  (bool) $server['active'],
126  )
127  ->withDisabledAction(
128  'deactivateServer',
129  !$server['active'],
130  );
131  }
132  }
133 
134  public function getTotalRowCount(?array $filter_data, ?array $additional_parameters): ?int
135  {
136  return \count($this->servers);
137  }
138 
142  private function getColumnDefinition(): array
143  {
144  return [
145  'active' => $this->ui_factory
146  ->table()
147  ->column()
148  ->boolean(
149  $this->lng->txt('status'),
150  $this->ui_factory->symbol()->icon()->custom(
151  'assets/images/standard/icon_ok.svg',
152  $this->lng->txt('active'),
153  'small'
154  ),
155  $this->ui_factory->symbol()->icon()->custom(
156  'assets/images/standard/icon_not_ok.svg',
157  $this->lng->txt('inactive'),
158  'small'
159  )
160  )
161  ->withIsSortable(true)
162  ->withOrderingLabels(
163  "{$this->lng->txt('status')}, {$this->lng->txt('active')} {$this->lng->txt('order_option_first')}",
164  "{$this->lng->txt('status')}, {$this->lng->txt('inactive')} {$this->lng->txt('order_option_first')}"
165  ),
166  'title' => $this->ui_factory
167  ->table()
168  ->column()
169  ->text($this->lng->txt('title'))
170  ->withIsSortable(true),
171  'user' => $this->ui_factory
172  ->table()
173  ->column()
174  ->number($this->lng->txt('user'))
175  ->withIsSortable(true)
176  ];
177  }
178 
182  private function getActions(): array
183  {
184  if (!$this->has_write_access) {
185  return [];
186  }
187 
188  return [
189  'editServerSettings' => $this->ui_factory->table()->action()->single(
190  $this->lng->txt('edit'),
191  $this->url_builder->withParameter($this->action_parameter_token, 'editServerSettings'),
193  ),
194  'activateServer' => $this->ui_factory->table()->action()->single(
195  $this->lng->txt('activate'),
196  $this->url_builder->withParameter($this->action_parameter_token, 'activateServer'),
198  ),
199  'deactivateServer' => $this->ui_factory->table()->action()->single(
200  $this->lng->txt('deactivate'),
201  $this->url_builder->withParameter($this->action_parameter_token, 'deactivateServer'),
203  ),
204  'confirmDeleteServerSettings' => $this->ui_factory->table()->action()->single(
205  $this->lng->txt('delete'),
206  $this->url_builder->withParameter($this->action_parameter_token, 'confirmDeleteServerSettings'),
208  )
209  ];
210  }
211 
212  public function getComponent(): \ILIAS\UI\Component\Table\Table
213  {
214  return $this->ui_factory
215  ->table()
216  ->data(
217  $this,
218  $this->lng->txt('ldap_servers'),
219  $this->getColumnDefinition(),
220  )
221  ->withId(self::class)
222  ->withOrder(new \ILIAS\Data\Order('title', \ILIAS\Data\Order::ASC))
223  ->withActions($this->getActions())
224  ->withRequest($this->http_request);
225  }
226 }
Interface Observer Contains several chained tasks and infos about them.
ILIAS UI URLBuilderToken $row_id_token
Definition: ServerTable.php:27
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...
ILIAS UI URLBuilderToken $action_parameter_token
Definition: ServerTable.php:26
Both the subject and the direction need to be specified when expressing an order. ...
Definition: Order.php:28
static _getExternalAccountsByAuthMode(string $a_auth_mode, bool $a_read_auth_default=false)
Get list of external account by authentication method Note: If login == ext_account for two user with...
getRows(\ILIAS\UI\Component\Table\DataRowBuilder $row_builder, array $visible_column_ids, \ILIAS\Data\Range $range, \ILIAS\Data\Order $order, ?array $filter_data, ?array $additional_parameters)
Definition: ServerTable.php:94
Builds data types.
Definition: Factory.php:35
static _getHttpPath()
global $lng
Definition: privfeed.php:31
$server
Definition: shib_login.php:24
A simple class to express a naive range of whole positive numbers.
Definition: Range.php:28
getRecords(\ILIAS\Data\Range $range, \ILIAS\Data\Order $order)
Definition: ServerTable.php:63
__construct(private array $servers, private \ilLDAPSettingsGUI $parent_gui, private \ILIAS\UI\Factory $ui_factory, private \ILIAS\UI\Renderer $ui_renderer, private \ilLanguage $lng, private \ilCtrlInterface $ctrl, private \Psr\Http\Message\ServerRequestInterface $http_request, private \ILIAS\Data\Factory $df, private string $parent_cmd, private bool $has_write_access)
Definition: ServerTable.php:32
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)