19 declare(strict_types=1);
38 protected bool $start_time_enabled =
false,
40 protected bool $end_time_enabled =
false,
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 55 ?array $environment =
null 61 $inputs[
'fixed_participants_enabled'] = $f->checkbox(
62 $lng->
txt(
'participants_invitation'),
63 $lng->
txt(
'participants_invitation_description')
65 if ($environment[
'participant_data_exists']) {
66 $inputs[
'fixed_participants_enabled'] =
$inputs[
'fixed_participants_enabled']
70 return $f->section(
$inputs, $lng->
txt(
'tst_settings_header_execution'));
77 ?array $environment =
null 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')
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;
94 ->withAdditionalTransformation($constraint)
95 ->withAdditionalTransformation($trafo);
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'])
110 $sub_inputs_access_window[
'start_time'] = $sub_inputs_access_window[
'start_time']
113 if ($environment[
'participant_data_exists']) {
114 $sub_inputs_access_window[
'start_time'] = $sub_inputs_access_window[
'start_time']->withDisabled(
true);
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'])
124 $sub_inputs_access_window[
'end_time'] = $sub_inputs_access_window[
'end_time']
128 return $sub_inputs_access_window;
136 $trafo = $refinery->custom()->transformation(
137 static function (?array $vs): array {
140 'password_enabled' =>
false,
141 'password_value' =>
null 145 $vs[
'password_enabled'] =
true;
150 $sub_inputs_password[
'password_value'] = $f->text($lng->
txt(
'tst_password_enter'))
151 ->withRequired(
true)->withMaxLength(self::MAX_PASSWORD_LENGTH);
153 $password_input = $f->optionalGroup(
154 $sub_inputs_password,
155 $lng->
txt(
'tst_password'),
156 $lng->
txt(
'tst_password_details')
158 ->withAdditionalTransformation($trafo);
161 return $password_input;
164 return $password_input->withValue(
174 $validate_ip = $refinery->custom()->constraint(
175 static function (?
string $v):
bool {
179 return filter_var($v, FILTER_VALIDATE_IP) !==
false;
181 $lng->
txt(
'invalid_ip')
184 $validate_order = $refinery->custom()->constraint(
185 function (?array $vs):
bool {
190 $vs[
'ip_range_from'],
194 sprintf($lng->
txt(
'not_greater_than'), $lng->
txt(
'max_ip_label'), $lng->
txt(
'min_ip_label'))
196 $trafo = $refinery->custom()->transformation(
197 static function (?array $vs): array {
200 'ip_range_from' =>
null,
201 'ip_range_to' =>
null 208 $get_ip_range = $f->optionalGroup(
210 'ip_range_from' => $f->text($lng->
txt(
'min_ip_label'))
212 'ip_range_to' => $f->text($lng->
txt(
'max_ip_label'))
215 $lng->
txt(
'ip_range_label'),
216 $lng->
txt(
'ip_range_info')
220 $get_ip_range = $get_ip_range->withValue(
228 return $get_ip_range->withAdditionalTransformation($validate_order)
229 ->withAdditionalTransformation($trafo);
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);
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));
263 $starting_time = $additional_info->
getNoneTag();
269 if (($et_immutable = $this->
getEndTime()) instanceof \DateTimeImmutable) {
287 return $this->start_time_enabled;
291 $clone = clone $this;
292 $clone->start_time_enabled = $start_time_enabled;
298 return $this->start_time;
302 $clone = clone $this;
303 $clone->start_time = $start_time;
309 return $this->end_time_enabled;
313 $clone = clone $this;
314 $clone->end_time_enabled = $end_time_enabled;
320 return $this->end_time;
324 $clone = clone $this;
325 $clone->end_time = $end_time;
331 return $this->password_enabled;
335 $clone = clone $this;
336 $clone->password_enabled = $password_enabled;
342 return $this->password;
346 $clone = clone $this;
347 $clone->password = $password;
353 return $this->ip_range_from;
357 $clone = clone $this;
358 $clone->ip_range_from = $ip_range_from;
364 return $this->ip_range_to;
368 $clone = clone $this;
369 $clone->ip_range_to = $ip_range_to;
375 return $this->ip_range_from !==
null && $this->ip_range_to !==
null;
380 return $this->fixed_participants;
384 $clone = clone $this;
385 $clone->fixed_participants = $fixed_participants;
withPassword(?string $password)
getInputAccessWindow(\ilLanguage $lng, FieldFactory $f, Refinery $refinery, ?array $environment=null)
withFixedParticipants(bool $fixed_participants)
withIpRangeTo(?string $ip_range_to)
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)
withPasswordEnabled(bool $password_enabled)
checkIpRangeValidity(string $start, string $end)
const MAX_PASSWORD_LENGTH
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
toForm(\ilLanguage $lng, FieldFactory $f, Refinery $refinery, ?array $environment=null)
withIpRangeFrom(?string $ip_range_from)
withStartTimeEnabled(bool $start_time_enabled)
getInputPassword(\ilLanguage $lng, FieldFactory $f, Refinery $refinery)
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)
__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)
withStartTime(?\DateTimeImmutable $start_time)
getInputIpRange(\ilLanguage $lng, FieldFactory $f, Refinery $refinery)
withEndTimeEnabled(bool $end_time_enabled)