ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
SettingsTestBehaviour.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 
30 {
31  private const DEFAULT_PROCESSING_TIME_MINUTES = 90;
32 
33  public function __construct(
34  int $test_id,
35  protected int $number_of_tries = 0,
36  protected bool $block_after_passed_enabled = false,
37  protected ?string $pass_waiting = null,
38  protected bool $processing_time_enabled = false,
39  protected ?string $processing_time = null,
40  protected bool $reset_processing_time = false,
41  protected int $kiosk_mode = 0,
42  protected bool $examid_in_test_attempt_enabled = false
43  ) {
44  $this->pass_waiting = $this->cleanupPassWaiting($this->pass_waiting);
45  parent::__construct($test_id);
46  }
47 
48  public function toForm(
52  ?array $environment = null
53  ): FormInput {
54  $inputs['limit_attempts'] = $this->getInputLimitAttempts(
55  $lng,
56  $f,
57  $refinery,
58  $environment
59  );
60  $inputs['force_waiting_between_attempts'] = $this->getInputForceWaitingBetweenAttempts(
61  $lng,
62  $f,
63  $refinery,
64  $environment
65  );
66  $inputs['time_limit_for_completion'] = $this->getInputTimeLimitForCompletion(
67  $lng,
68  $f,
69  $refinery,
70  $environment
71  );
72  $inputs['kiosk_mode'] = $this->getInputKioskMode($lng, $f, $refinery);
73 
74  $inputs['show_exam_id'] = $f->checkbox(
75  $lng->txt('examid_in_test_pass'),
76  $lng->txt('examid_in_test_pass_desc')
78 
79  return $f->section($inputs, $lng->txt('tst_settings_header_test_run'));
80  }
81 
82  private function getInputLimitAttempts(
86  array $environment
87  ): FormInput {
88  $trafo = $refinery->custom()->transformation(
89  static function (?array $vs): array {
90  if ($vs === null) {
91  return [
92  'number_of_available_attempts' => 0,
93  'block_after_passed' => false
94  ];
95  }
96 
97  return $vs;
98  }
99  );
100 
101  $sub_inputs['number_of_available_attempts'] = $f->numeric($lng->txt('tst_nr_of_tries'));
102  $sub_inputs['block_after_passed'] = $f->checkbox(
103  $lng->txt('tst_block_passes_after_passed'),
104  $lng->txt('tst_block_passes_after_passed_info')
105  );
106 
107  if (!$environment['participant_data_exists']) {
108  $sub_inputs['number_of_available_attempts'] =
109  $sub_inputs['number_of_available_attempts']->withRequired(true)
110  ->withAdditionalTransformation($refinery->int()->isGreaterThan(0));
111  }
112 
113  $limit_attempts = $f->optionalGroup(
114  $sub_inputs,
115  $lng->txt('tst_limit_nr_of_tries'),
116  $lng->txt('tst_nr_of_tries_desc')
117  )->withValue(null)
118  ->withAdditionalTransformation($trafo);
119 
120  if ($this->getNumberOfTries() > 0) {
121  $limit_attempts = $limit_attempts->withValue(
122  [
123  'number_of_available_attempts' => $this->getNumberOfTries(),
124  'block_after_passed' => $this->getBlockAfterPassedEnabled()
125  ]
126  );
127  }
128 
129  if (!$environment['participant_data_exists']) {
130  return $limit_attempts;
131  }
132 
133  return $limit_attempts->withDisabled(true);
134  }
135 
137  \ilLanguage $lng,
140  array $environment
141  ): FormInput {
142  $constraint = $refinery->custom()->constraint(
143  static function (?string $vs): bool {
144  return $vs !== '0:0:0';
145  },
146  sprintf($lng->txt('not_greater_than'), $lng->txt('tst_pass_waiting_time'), 0)
147  );
148 
149  $trafo = $refinery->custom()->transformation(
150  static function (?array $vs): ?string {
151  return $vs === null ? null : implode(':', $vs);
152  }
153  );
154 
155  $force_waiting_between_attempts = $f->optionalGroup(
156  $this->getSubInputsForceWaitingBetweenAttempts($lng, $f, $refinery, ),
157  $lng->txt('tst_pass_waiting_enabled'),
158  $lng->txt('tst_pass_waiting_info')
159  )->withValue(null)
160  ->withAdditionalTransformation($trafo);
161 
162  if ($this->getPassWaitingEnabled()) {
163  list($days, $hours, $minutes) = explode(':', $this->getPassWaiting());
164  $force_waiting_between_attempts = $force_waiting_between_attempts->withValue(
165  [
166  'days' => $days,
167  'hours' => $hours,
168  'minutes' => $minutes
169  ]
170  );
171  }
172 
173  if (!$environment['participant_data_exists']) {
174  return $force_waiting_between_attempts->withAdditionalTransformation($constraint);
175  }
176 
177  return $force_waiting_between_attempts->withDisabled(true);
178  }
179 
181  \ilLanguage $lng,
184  ): array {
185  $sub_inputs_force_waiting_between_attempts['days'] = $f->numeric($lng->txt('days'))
186  ->withAdditionalTransformation($refinery->int()->isGreaterThanOrEqual(0))
187  ->withRequired(true)
188  ->withValue(0);
189  $sub_inputs_force_waiting_between_attempts['hours'] = $f->numeric($lng->txt('hours'))
190  ->withAdditionalTransformation($refinery->int()->isGreaterThanOrEqual(0))
191  ->withAdditionalTransformation($refinery->int()->isLessThanOrEqual(24))
192  ->withRequired(true)
193  ->withValue(0);
194  $sub_inputs_force_waiting_between_attempts['minutes'] = $f->numeric($lng->txt('minutes'))
195  ->withAdditionalTransformation($refinery->int()->isGreaterThanOrEqual(0))
196  ->withAdditionalTransformation($refinery->int()->isLessThanOrEqual(60))
197  ->withRequired(true)
198  ->withValue(0);
199 
200  return $sub_inputs_force_waiting_between_attempts;
201  }
202 
203  private function cleanupPassWaiting(?string $pass_waiting): ?string
204  {
205  if ($pass_waiting === null || $pass_waiting === '') {
206  return null;
207  }
208 
209  $pass_waiting_array = array_map(
210  fn(string $v) => strval((int) $v),
211  explode(':', $pass_waiting)
212  );
213  if (count($pass_waiting_array) === 3) {
214  return implode(':', $pass_waiting_array);
215  }
216 
217  $month = array_shift($pass_waiting_array);
218  $pass_waiting_array[0] = strval((int) $pass_waiting_array[0] + (int) $month * 31);
219  return implode(':', $pass_waiting_array);
220  }
221 
223  \ilLanguage $lng,
226  array $environment
227  ): FormInput {
228  $trafo = $refinery->custom()->transformation(
229  static function (?array $vs): array {
230  if ($vs === null) {
231  return [
232  'processing_time_limit' => false,
233  'time_limit_for_completion_value' => null,
234  'reset_time_limit_for_completion_by_attempt' => false
235  ];
236  }
237 
238  $vs['processing_time_limit'] = true;
239  $vs['time_limit_for_completion_value'] = sprintf(
240  '%02d:%02d:00',
241  floor(
242  $vs['time_limit_for_completion_value'] / 60
243  ),
244  $vs['time_limit_for_completion_value'] % 60
245  );
246  return $vs;
247  }
248  );
249 
250  $sub_inputs_time_limit_for_completion['time_limit_for_completion_value'] = $f
251  ->numeric(
252  $lng->txt('tst_processing_time_duration'),
253  $lng->txt('tst_processing_time_desc')
254  )
255  ->withRequired(true)
256  ->withAdditionalTransformation($refinery->int()->isGreaterThan(0))
257  ->withValue(self::DEFAULT_PROCESSING_TIME_MINUTES);
258  $sub_inputs_time_limit_for_completion['reset_time_limit_for_completion_by_attempt'] = $f->checkbox(
259  $lng->txt('tst_reset_processing_time'),
260  $lng->txt('tst_reset_processing_time_desc')
261  );
262 
263  $time_limit_for_completion = $f->optionalGroup(
264  $sub_inputs_time_limit_for_completion,
265  $lng->txt('tst_processing_time'),
266  $lng->txt('tst_processing_time_desc')
267  )->withValue(null)
268  ->withAdditionalTransformation($trafo);
269 
270  if ($this->getProcessingTimeEnabled()) {
271  $time_limit_for_completion = $time_limit_for_completion->withValue(
272  [
273  'time_limit_for_completion_value' => (int) $this->getProcessingTimeAsMinutes(),
274  'reset_time_limit_for_completion_by_attempt' => (bool) $this->getResetProcessingTime()
275  ]
276  );
277  }
278 
279  if (!$environment['participant_data_exists']) {
280  return $time_limit_for_completion;
281  }
282 
283  return $time_limit_for_completion->withDisabled(true);
284  }
285 
286  private function getInputKioskMode(
287  \ilLanguage $lng,
290  ): FormInput {
291  $trafo = $refinery->custom()->transformation(
292  static function (?array $vs): ?int {
293  if ($vs === null) {
294  return 0;
295  }
296 
297  $kiosk_mode = 1;
298 
299  if ($vs['show_title'] === true) {
300  $kiosk_mode += 2;
301  }
302 
303  if ($vs['show_participant_name'] === true) {
304  $kiosk_mode += 4;
305  }
306 
307  return $kiosk_mode;
308  }
309  );
310 
311  $sub_inputs_kiosk_mode['show_title'] = $f->checkbox($lng->txt('kiosk_show_title'));
312 
313  $sub_inputs_kiosk_mode['show_participant_name'] = $f->checkbox($lng->txt('kiosk_show_participant'));
314 
315  $kiosk_mode = $f->optionalGroup(
316  $sub_inputs_kiosk_mode,
317  $lng->txt('kiosk'),
318  $lng->txt('kiosk_description')
319  )->withValue(null)
320  ->withAdditionalTransformation($trafo);
321 
322  if (!$this->getKioskMode()) {
323  return $kiosk_mode;
324  }
325 
326  return $kiosk_mode->withValue([
327  'show_title' => $this->getShowTitleInKioskMode(),
328  'show_participant_name' => $this->getShowParticipantNameInKioskMode()
329  ]);
330  }
331 
332  public function toStorage(): array
333  {
334  return [
335  'nr_of_tries' => ['integer', $this->getNumberOfTries()],
336  'block_after_passed' => ['integer', (int) $this->getBlockAfterPassedEnabled()],
337  'pass_waiting' => ['string', $this->getPassWaiting()],
338  'enable_processing_time' => ['integer', (int) $this->getProcessingTimeEnabled()],
339  'processing_time' => ['string', $this->getProcessingTime()],
340  'reset_processing_time' => ['integer', (int) $this->getResetProcessingTime()],
341  'kiosk' => ['integer', $this->getKioskMode()],
342  'examid_in_test_pass' => ['integer', (int) $this->getExamIdInTestAttemptEnabled()]
343  ];
344  }
345 
346  public function toLog(AdditionalInformationGenerator $additional_info): array
347  {
349  ? $this->getNumberOfTries() : $additional_info->getEnabledDisabledTagForBool(false);
350  if ($this->getNumberOfTries() > 0) {
353  }
354 
356  ? $this->getPassWaiting() : $additional_info->getEnabledDisabledTagForBool(false);
357 
359  ? $this->getProcessingTimeAsMinutes() : $additional_info->getEnabledDisabledTagForBool(false);
360  if ($this->getProcessingTimeEnabled()) {
363  }
364 
365  $log_array[AdditionalInformationGenerator::KEY_TEST_KIOSK_ENABLED] = $additional_info
367  if ($this->getKioskModeEnabled()) {
368  $log_array[AdditionalInformationGenerator::KEY_TEST_KIOSK_SHOW_TITLE] = $additional_info
372  }
373 
374  $log_array[AdditionalInformationGenerator::KEY_TEST_SHOW_EXAM_ID] = $additional_info
376  return $log_array;
377  }
378 
379  public function getNumberOfTries(): int
380  {
381  return $this->number_of_tries;
382  }
383 
384  public function withNumberOfTries(int $number_of_tries): self
385  {
386  $clone = clone $this;
387  $clone->number_of_tries = $number_of_tries;
388  return $clone;
389  }
390 
391  public function getBlockAfterPassedEnabled(): bool
392  {
393  return $this->block_after_passed_enabled;
394  }
395 
396  public function withBlockAfterPassedEnabled(bool $block_after_passed_enabled): self
397  {
398  $clone = clone $this;
399  $clone->block_after_passed_enabled = $block_after_passed_enabled;
400  return $clone;
401  }
402 
403  public function getPassWaiting(): ?string
404  {
405  return $this->pass_waiting;
406  }
407 
408  public function withPassWaiting(?string $pass_waiting): self
409  {
410  $clone = clone $this;
411  $clone->pass_waiting = $this->cleanupPassWaiting($pass_waiting);
412  return $clone;
413  }
414 
415  public function getPassWaitingEnabled(): bool
416  {
417  if ($this->pass_waiting === null) {
418  return false;
419  }
420  if (array_sum(explode(':', $this->pass_waiting)) > 0) {
421  return true;
422  }
423  return false;
424  }
425 
426  public function getProcessingTimeEnabled(): bool
427  {
428  return $this->processing_time_enabled;
429  }
430 
431  public function withProcessingTimeEnabled(bool $processing_time_enabled): self
432  {
433  $clone = clone $this;
434  $clone->processing_time_enabled = $processing_time_enabled;
435  return $clone;
436  }
437 
438  public function getProcessingTime(): ?string
439  {
440  return $this->processing_time;
441  }
442 
443  public function withProcessingTime(?string $processing_time): self
444  {
445  $clone = clone $this;
446  $clone->processing_time = $processing_time;
447  return $clone;
448  }
449 
450  public function getProcessingTimeAsMinutes(): int
451  {
452  if ($this->processing_time !== null && preg_match("/(\d{2}):(\d{2}):(\d{2})/is", $this->processing_time, $matches)) {
453  return ((int) $matches[1] * 60) + (int) $matches[2];
454  }
455 
456  return self::DEFAULT_PROCESSING_TIME_MINUTES;
457  }
458 
459  public function getResetProcessingTime(): bool
460  {
461  return $this->reset_processing_time;
462  }
463 
464  public function withResetProcessingTime(bool $reset_processing_time): self
465  {
466  $clone = clone $this;
467  $clone->reset_processing_time = $reset_processing_time;
468  return $clone;
469  }
470 
471  public function getKioskMode(): int
472  {
473  return $this->kiosk_mode;
474  }
475 
476  public function withKioskMode(int $kiosk_mode): self
477  {
478  $clone = clone $this;
479  $clone->kiosk_mode = $kiosk_mode;
480  return $clone;
481  }
482 
483  public function getKioskModeEnabled(): bool
484  {
485  return ($this->kiosk_mode & 1) > 0;
486  }
487 
488  public function getShowTitleInKioskMode(): bool
489  {
490  return ($this->kiosk_mode & 2) > 0;
491  }
492 
493  public function getShowParticipantNameInKioskMode(): bool
494  {
495  return ($this->kiosk_mode & 4) > 0;
496  }
497 
498  public function getExamIdInTestAttemptEnabled(): bool
499  {
500  return $this->examid_in_test_attempt_enabled;
501  }
502 
503  public function withExamIdInTestAttemptEnabled(bool $exam_id_in_test_pass_enabled): self
504  {
505  $clone = clone $this;
506  $clone->examid_in_test_attempt_enabled = $exam_id_in_test_pass_enabled;
507  return $clone;
508  }
509 }
toForm(\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...
withExamIdInTestAttemptEnabled(bool $exam_id_in_test_pass_enabled)
getSubInputsForceWaitingBetweenAttempts(\ilLanguage $lng, FieldFactory $f, Refinery $refinery)
__construct(int $test_id, protected int $number_of_tries=0, protected bool $block_after_passed_enabled=false, protected ?string $pass_waiting=null, protected bool $processing_time_enabled=false, protected ?string $processing_time=null, protected bool $reset_processing_time=false, protected int $kiosk_mode=0, protected bool $examid_in_test_attempt_enabled=false)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getInputLimitAttempts(\ilLanguage $lng, FieldFactory $f, Refinery $refinery, array $environment)
withValue($value)
Get an input like this with another value displayed on the client side.
Definition: Group.php:61
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
toLog(AdditionalInformationGenerator $additional_info)
__construct(Container $dic, ilPlugin $plugin)
global $lng
Definition: privfeed.php:31
getInputTimeLimitForCompletion(\ilLanguage $lng, FieldFactory $f, Refinery $refinery, array $environment)
This describes inputs that can be used in forms.
Definition: FormInput.php:32
getInputKioskMode(\ilLanguage $lng, FieldFactory $f, Refinery $refinery)
getInputForceWaitingBetweenAttempts(\ilLanguage $lng, FieldFactory $f, Refinery $refinery, array $environment)