ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
SettingsAccess.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
31 
33 {
34  private const MAX_PASSWORD_LENGTH = 20;
35 
36  public function __construct(
37  int $test_id,
38  protected bool $start_time_enabled = false,
39  protected ?\DateTimeImmutable $start_time = null,
40  protected bool $end_time_enabled = false,
41  protected ?\DateTimeImmutable $end_time = null,
42  protected bool $password_enabled = false,
43  protected ?string $password = null,
44  protected ?string $ip_range_from = null,
45  protected ?string $ip_range_to = null,
46  protected bool $fixed_participants = false
47  ) {
48  parent::__construct($test_id);
49  }
50 
51  public function toForm(
55  ?array $environment = null
56  ): FormInput {
57  $inputs['access_window'] = $this->getInputAccessWindow($lng, $f, $refinery, $environment);
58  $inputs['test_password'] = $this->getInputPassword($lng, $f, $refinery);
59  $inputs['ip_range'] = $this->getInputIpRange($lng, $f, $refinery);
60 
61  $inputs['fixed_participants_enabled'] = $f->checkbox(
62  $lng->txt('participants_invitation'),
63  $lng->txt('participants_invitation_description')
64  )->withValue($this->getFixedParticipants());
65  if ($environment['participant_data_exists']) {
66  $inputs['fixed_participants_enabled'] = $inputs['fixed_participants_enabled']
67  ->withDisabled(true);
68  }
69 
70  return $f->section($inputs, $lng->txt('tst_settings_header_execution'));
71  }
72 
73  private function getInputAccessWindow(
77  ?array $environment = null
78  ): Group {
79  $constraint = $refinery->custom()->constraint(
80  static fn (array $vs) =>
81  $vs['start_time'] === null || $vs['end_time'] === null || $vs['start_time'] < $vs['end_time'],
82  $lng->txt('duration_end_must_not_be_earlier_than_start')
83  );
84 
85  $trafo = $refinery->custom()->transformation(
86  static function (array $vs): array {
87  $vs['start_time_enabled'] = $vs['start_time'] !== null;
88  $vs['end_time_enabled'] = $vs['end_time'] !== null;
89  return $vs;
90  }
91  );
92 
93  return $f->group($this->getSubInputsAccessWindow($lng, $f, $environment))
94  ->withAdditionalTransformation($constraint)
95  ->withAdditionalTransformation($trafo);
96  }
97 
98  private function getSubInputsAccessWindow(
101  array $environment
102  ): array {
103  $sub_inputs_access_window['start_time'] = $f->dateTime(
104  $lng->txt('tst_starting_time'),
105  $lng->txt('tst_starting_time_desc')
106  )->withTimezone($environment['user_time_zone'])
107  ->withFormat($environment['user_date_format'])
108  ->withUseTime(true);
109  if ($this->getStartTime() !== null) {
110  $sub_inputs_access_window['start_time'] = $sub_inputs_access_window['start_time']
111  ->withValue($this->getStartTime()->setTimezone(new \DateTimeZone($environment['user_time_zone'])));
112  }
113  if ($environment['participant_data_exists']) {
114  $sub_inputs_access_window['start_time'] = $sub_inputs_access_window['start_time']->withDisabled(true);
115  }
116 
117  $sub_inputs_access_window['end_time'] = $f->dateTime(
118  $lng->txt('tst_ending_time'),
119  $lng->txt('tst_ending_time_desc')
120  )->withTimezone($environment['user_time_zone'])
121  ->withFormat($environment['user_date_format'])
122  ->withUseTime(true);
123  if ($this->getEndTime() !== null) {
124  $sub_inputs_access_window['end_time'] = $sub_inputs_access_window['end_time']
125  ->withValue($this->getEndTime()->setTimezone(new \DateTimeZone($environment['user_time_zone'])));
126  }
127 
128  return $sub_inputs_access_window;
129  }
130 
131  private function getInputPassword(
132  \ilLanguage $lng,
135  ): OptionalGroup {
136  $trafo = $refinery->custom()->transformation(
137  static function (?array $vs): array {
138  if ($vs === null) {
139  return [
140  'password_enabled' => false,
141  'password_value' => null
142  ];
143  }
144 
145  $vs['password_enabled'] = true;
146  return $vs;
147  }
148  );
149 
150  $sub_inputs_password['password_value'] = $f->text($lng->txt('tst_password_enter'))
151  ->withRequired(true)->withMaxLength(self::MAX_PASSWORD_LENGTH);
152 
153  $password_input = $f->optionalGroup(
154  $sub_inputs_password,
155  $lng->txt('tst_password'),
156  $lng->txt('tst_password_details')
157  )->withValue(null)
158  ->withAdditionalTransformation($trafo);
159 
160  if (!$this->getPasswordEnabled()) {
161  return $password_input;
162  }
163 
164  return $password_input->withValue(
165  ['password_value' => $this->getPassword()]
166  );
167  }
168 
169  private function getInputIpRange(
170  \ilLanguage $lng,
173  ): FormInput {
174  $validate_ip = $refinery->custom()->constraint(
175  static function (?string $v): bool {
176  if ($v === null) {
177  return true;
178  }
179  return filter_var($v, FILTER_VALIDATE_IP) !== false;
180  },
181  $lng->txt('invalid_ip')
182  );
183 
184  $validate_order = $refinery->custom()->constraint(
185  function (?array $vs): bool {
186  if ($vs === null) {
187  return true;
188  }
189  return $this->checkIpRangeValidity(
190  $vs['ip_range_from'],
191  $vs['ip_range_to']
192  );
193  },
194  sprintf($lng->txt('not_greater_than'), $lng->txt('max_ip_label'), $lng->txt('min_ip_label'))
195  );
196  $trafo = $refinery->custom()->transformation(
197  static function (?array $vs): array {
198  if ($vs === null) {
199  $vs = [
200  'ip_range_from' => null,
201  'ip_range_to' => null
202  ];
203  }
204  return $vs;
205  }
206  );
207 
208  $get_ip_range = $f->optionalGroup(
209  [
210  'ip_range_from' => $f->text($lng->txt('min_ip_label'))
211  ->withAdditionalTransformation($validate_ip),
212  'ip_range_to' => $f->text($lng->txt('max_ip_label'))
213  ->withAdditionalTransformation($validate_ip)
214  ],
215  $lng->txt('ip_range_label'),
216  $lng->txt('ip_range_info')
217  )->withValue(null);
218 
219  if ($this->isIpRangeEnabled()) {
220  $get_ip_range = $get_ip_range->withValue(
221  [
222  'ip_range_from' => $this->getIpRangeFrom(),
223  'ip_range_to' => $this->getIpRangeTo()
224  ]
225  );
226  }
227 
228  return $get_ip_range->withAdditionalTransformation($validate_order)
229  ->withAdditionalTransformation($trafo);
230  }
231 
232  private function checkIpRangeValidity(string $start, string $end): bool
233  {
234  if (filter_var($start, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4) !== false
235  && filter_var($end, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4) !== false) {
236  return ip2long($start) <= ip2long($end);
237  }
238 
239  if (filter_var($start, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) !== false
240  && filter_var($end, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) !== false) {
241  return bin2hex(inet_pton($start)) <= bin2hex(inet_pton($end));
242  }
243  return false;
244  }
245 
246  public function toStorage(): array
247  {
248  return [
249  'starting_time_enabled' => ['integer', (int) $this->getStartTimeEnabled()],
250  'starting_time' => ['integer', $this->getStartTime() !== null ? $this->getStartTime()->getTimestamp() : 0],
251  'ending_time_enabled' => ['integer', (int) $this->getEndTimeEnabled()],
252  'ending_time' => ['integer', $this->getEndTime() !== null ? $this->getEndTime()->getTimestamp() : 0],
253  'password_enabled' => ['integer', (int) $this->getPasswordEnabled()],
254  'password' => ['text', $this->getPassword()],
255  'ip_range_from' => ['text', $this->getIpRangeFrom()],
256  'ip_range_to' => ['text', $this->getIpRangeTo()],
257  'fixed_participants' => ['integer', (int) $this->getFixedParticipants()]
258  ];
259  }
260 
261  public function toLog(AdditionalInformationGenerator $additional_info): array
262  {
263  $starting_time = $additional_info->getNoneTag();
264  if (($st_immutable = $this->getStartTime()) instanceof \DateTimeImmutable) {
265  $starting_time = $st_immutable->format(AdditionalInformationGenerator::DATE_STORAGE_FORMAT);
266  }
267 
268  $end_time = $additional_info->getNoneTag();
269  if (($et_immutable = $this->getEndTime()) instanceof \DateTimeImmutable) {
270  $end_time = $et_immutable->format(AdditionalInformationGenerator::DATE_STORAGE_FORMAT);
271  }
272 
273  return [
278  ? $this->getIpRangeFrom() . ' - ' . $this->getIpRangeTo()
279  : $additional_info->getEnabledDisabledTagForBool(false),
282  ];
283  }
284 
285  public function getStartTimeEnabled(): bool
286  {
287  return $this->start_time_enabled;
288  }
289  public function withStartTimeEnabled(bool $start_time_enabled): self
290  {
291  $clone = clone $this;
292  $clone->start_time_enabled = $start_time_enabled;
293  return $clone;
294  }
295 
296  public function getStartTime(): ?\DateTimeImmutable
297  {
298  return $this->start_time;
299  }
300  public function withStartTime(?\DateTimeImmutable $start_time): self
301  {
302  $clone = clone $this;
303  $clone->start_time = $start_time;
304  return $clone;
305  }
306 
307  public function getEndTimeEnabled(): bool
308  {
309  return $this->end_time_enabled;
310  }
311  public function withEndTimeEnabled(bool $end_time_enabled): self
312  {
313  $clone = clone $this;
314  $clone->end_time_enabled = $end_time_enabled;
315  return $clone;
316  }
317 
318  public function getEndTime(): ?\DateTimeImmutable
319  {
320  return $this->end_time;
321  }
322  public function withEndTime(?\DateTimeImmutable $end_time): self
323  {
324  $clone = clone $this;
325  $clone->end_time = $end_time;
326  return $clone;
327  }
328 
329  public function getPasswordEnabled(): bool
330  {
331  return $this->password_enabled;
332  }
333  public function withPasswordEnabled(bool $password_enabled): self
334  {
335  $clone = clone $this;
336  $clone->password_enabled = $password_enabled;
337  return $clone;
338  }
339 
340  public function getPassword(): ?string
341  {
342  return $this->password;
343  }
344  public function withPassword(?string $password): self
345  {
346  $clone = clone $this;
347  $clone->password = $password;
348  return $clone;
349  }
350 
351  public function getIpRangeFrom(): ?string
352  {
353  return $this->ip_range_from;
354  }
355  public function withIpRangeFrom(?string $ip_range_from): self
356  {
357  $clone = clone $this;
358  $clone->ip_range_from = $ip_range_from;
359  return $clone;
360  }
361 
362  public function getIpRangeTo(): ?string
363  {
364  return $this->ip_range_to;
365  }
366  public function withIpRangeTo(?string $ip_range_to): self
367  {
368  $clone = clone $this;
369  $clone->ip_range_to = $ip_range_to;
370  return $clone;
371  }
372 
373  public function isIpRangeEnabled(): ?bool
374  {
375  return $this->ip_range_from !== null && $this->ip_range_to !== null;
376  }
377 
378  public function getFixedParticipants(): bool
379  {
380  return $this->fixed_participants;
381  }
382  public function withFixedParticipants(bool $fixed_participants): self
383  {
384  $clone = clone $this;
385  $clone->fixed_participants = $fixed_participants;
386  return $clone;
387  }
388 }
getInputAccessWindow(\ilLanguage $lng, FieldFactory $f, Refinery $refinery, ?array $environment=null)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
toLog(AdditionalInformationGenerator $additional_info)
checkIpRangeValidity(string $start, string $end)
This describes optional group inputs.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
toForm(\ilLanguage $lng, FieldFactory $f, Refinery $refinery, ?array $environment=null)
getInputPassword(\ilLanguage $lng, FieldFactory $f, Refinery $refinery)
withValue($value)
Get an input like this with another value displayed on the client side.
Definition: Group.php:61
withEndTime(?\DateTimeImmutable $end_time)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getSubInputsAccessWindow(\ilLanguage $lng, FieldFactory $f, array $environment)
__construct(Container $dic, ilPlugin $plugin)
global $lng
Definition: privfeed.php:31
__construct(int $test_id, protected bool $start_time_enabled=false, protected ?\DateTimeImmutable $start_time=null, protected bool $end_time_enabled=false, protected ?\DateTimeImmutable $end_time=null, protected bool $password_enabled=false, protected ?string $password=null, protected ?string $ip_range_from=null, protected ?string $ip_range_to=null, protected bool $fixed_participants=false)
This describes inputs that can be used in forms.
Definition: FormInput.php:32
withStartTime(?\DateTimeImmutable $start_time)
getInputIpRange(\ilLanguage $lng, FieldFactory $f, Refinery $refinery)