ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.assFormulaQuestionGUI.php
Go to the documentation of this file.
1 <?php
2 
21 
32 {
33  protected const HAS_SPECIAL_QUESTION_COMMANDS = true;
34 
37 
44  public function __construct($id = -1)
45  {
47  global $DIC;
48  $this->ui_factory = $DIC->ui()->factory();
49  $this->ui_renderer = $DIC->ui()->renderer();
50 
51  $this->object = new assFormulaQuestion();
52  if ($id >= 0) {
53  $this->object->loadFromDb($id);
54  }
55  }
56 
57  protected function setQuestionSpecificTabs(ilTabsGUI $ilTabs): void
58  {
59  $this->ctrl->setParameterByClass(ilLocalUnitConfigurationGUI::class, 'q_id', $this->object->getId());
60  $ilTabs->addTarget('units', $this->ctrl->getLinkTargetByClass(ilLocalUnitConfigurationGUI::class, ''), '', 'illocalunitconfigurationgui');
61  }
62 
63  public function suggestRange(): void
64  {
66  $suggest_range_for_result = $this->request_data_collector->string('suggest_range_for');
67  if ($this->writePostData()) {
68  $this->tpl->setOnScreenMessage('info', $this->getErrorMessage());
69  }
71  $this->editQuestion(false, null, $suggest_range_for_result);
72  }
73 
77  protected function writePostData(bool $always = false): int
78  {
79  $hasErrors = (!$always) ? $this->editQuestion(true) : false;
80  $checked = true;
81  if (!$hasErrors) {
82  $this->object->setTitle($this->request_data_collector->string('title'));
83  $this->object->setAuthor($this->request_data_collector->string('author'));
84  $this->object->setComment($this->request_data_collector->string('comment'));
85  $this->object->setQuestion($this->request_data_collector->string('question'));
86 
87  $this->object->parseQuestionText();
88  $found_vars = [];
89  $found_results = [];
90 
91  foreach ($this->request_data_collector->getParsedBody() as $key => $value) {
92  if (preg_match("/^unit_(\\\$v\d+)$/", $key, $matches)) {
93  array_push($found_vars, $matches[1]);
94  }
95  if (preg_match("/^unit_(\\\$r\d+)$/", $key, $matches)) {
96  array_push($found_results, $matches[1]);
97  }
98  }
99 
100  try {
101  $lifecycle = ilAssQuestionLifecycle::getInstance($this->request_data_collector->string('lifecycle'));
102  $this->object->setLifecycle($lifecycle);
104  }
105 
106  if (!$this->object->checkForDuplicateResults()) {
107  $this->addErrorMessage($this->lng->txt("err_duplicate_results"));
108  $checked = false;
109  }
110 
111  foreach ($found_vars as $variable) {
112  if ($this->object->getVariable($variable) != null) {
113  $unit = $this->request_data_collector->int("unit_{$variable}");
114  $varObj = new assFormulaQuestionVariable(
115  $variable,
116  $this->request_data_collector->float("range_min_{$variable}") ?? 0.0,
117  $this->request_data_collector->float("range_max_{$variable}") ?? 0.0,
118  $unit !== null ? $this->object->getUnitrepository()->getUnit(
119  $unit
120  ) : null,
121  $this->request_data_collector->float("precision_{$variable}"),
122  $this->request_data_collector->float("intprecision_{$variable}")
123  );
124  $this->object->addVariable($varObj);
125  }
126  }
127 
128  $tmp_form_vars = [];
129  $tmp_quest_vars = [];
130  foreach ($found_results as $result) {
131  $tmp_res_match = preg_match_all(
132  '/([$][v][0-9]*)/',
133  $this->request_data_collector->string("formula_{$result}"),
134  $form_vars
135  );
136  $tmp_form_vars = array_merge($tmp_form_vars, $form_vars[0]);
137 
138  $tmp_que_match = preg_match_all(
139  '/([$][v][0-9]*)/',
140  $this->request_data_collector->string('question'),
141  $quest_vars
142  );
143  $tmp_quest_vars = array_merge($tmp_quest_vars, $quest_vars[0]);
144  }
145  $result_has_undefined_vars = array_diff($tmp_form_vars, $found_vars);
146  $question_has_unused_vars = array_diff($tmp_quest_vars, $tmp_form_vars);
147 
148  if ($result_has_undefined_vars !== [] || $question_has_unused_vars !== []) {
149  $error_message = '';
150  if (count($result_has_undefined_vars) > 0) {
151  $error_message .= $this->lng->txt("res_contains_undef_var") . '<br>';
152  }
153  if (count($question_has_unused_vars) > 0) {
154  $error_message .= $this->lng->txt("que_contains_unused_var");
155  }
156  $checked = false;
157  if ($this->isSaveCommand()) {
158  $this->tpl->setOnScreenMessage('failure', $error_message);
159  }
160  }
161  foreach ($found_results as $result) {
162  if ($this->object->getResult($result) != null) {
163  $unit = $this->request_data_collector->int("unit_{$result}");
164  $resObj = new assFormulaQuestionResult(
165  $result,
166  $this->request_data_collector->float("range_min_{$result}") ?? 0.0,
167  $this->request_data_collector->float("range_max_{$result}") ?? 0.0,
168  $this->request_data_collector->float("tolerance_{$result}") ?? 0.0,
169  $unit !== null ? $this->object->getUnitrepository()->getUnit(
170  $unit
171  ) : null,
172  $this->request_data_collector->string("formula_{$result}"),
173  $this->request_data_collector->float("points_{$result}"),
174  $this->request_data_collector->float("precision_{$result}"),
175  $this->request_data_collector->int("rating_advanced_{$result}") !== 1,
176  $this->request_data_collector->int("rating_advanced_{$result}") === 1 ? $this->request_data_collector->float("rating_sign_{$result}") : null,
177  $this->request_data_collector->int("rating_advanced_{$result}") === 1 ? $this->request_data_collector->float("rating_value_{$result}") : null,
178  $this->request_data_collector->int("rating_advanced_{$result}") === 1 ? $this->request_data_collector->float("rating_unit_{$result}") : null,
179  $this->request_data_collector->int("result_type_{$result}")
180  );
181  $this->object->addResult($resObj);
182  $available_units = $this->request_data_collector->intArray("units_{$result}");
183  if (!empty($available_units)) {
184  $this->object->addResultUnits($resObj, $available_units);
185  }
186  }
187  }
188  if ($checked === false) {
189  $this->editQuestion();
190  return 1;
191  } else {
192  $this->saveTaxonomyAssignments();
193  $this->resetSavedPreviewSession();
194  return 0;
195  }
196  } else {
197  return 1;
198  }
199  }
200 
201  public function resetSavedPreviewSession(): void
202  {
203  global $DIC;
204  $ilUser = $DIC['ilUser'];
205  $user_id = $ilUser->getId();
206  $question_id = $this->object->getId();
207  $ilAssQuestionPreviewSession = new ilAssQuestionPreviewSession($user_id, $question_id);
208  $ilAssQuestionPreviewSession->setParticipantsSolution([]);
209  }
210 
211  public function editQuestion(
212  bool $checkonly = false,
213  ?bool $is_save_cmd = null,
214  ?string $suggest_range_for_result = null
215  ): bool {
216  $save = $is_save_cmd ?? $this->isSaveCommand();
217 
218  $form = new ilPropertyFormGUI();
219  $this->editForm = $form;
220 
221  $form->setFormAction($this->ctrl->getFormAction($this));
222  $form->setTitle($this->outQuestionType());
223  $form->setMultipart(false);
224  $form->setTableWidth('100%');
225  $form->setId('assformulaquestion');
226 
227  $this->addBasicQuestionFormProperties($form);
228 
229  // Add info text
230  $question = $form->getItemByPostVar('question');
231  $question->setInfo($this->lng->txt('fq_question_desc'));
232 
233  $variables = $this->object->getVariables();
234  $categorized_units = $this->object->getUnitrepository()->getCategorizedUnits();
235  $result_units = $this->object->getAllResultUnits();
236 
237  $unit_options = [];
238  $category_name = '';
239  $new_category = false;
240  foreach ($categorized_units as $item) {
244  if ($item instanceof assFormulaQuestionUnitCategory) {
245  if ($category_name != $item->getDisplayString()) {
246  $new_category = true;
247  $category_name = $item->getDisplayString();
248  }
249  continue;
250  }
251  $unit_options[$item->getId()] = $item->getDisplayString() . ($new_category ? ' (' . $category_name . ')' : '');
252  $new_category = false;
253  }
254 
255  if ($variables !== []) {
256  uasort($variables, function (assFormulaQuestionVariable $v1, assFormulaQuestionVariable $v2) {
257  $num_v1 = (int) substr($v1->getVariable(), 2);
258  $num_v2 = (int) substr($v2->getVariable(), 2);
259  if ($num_v1 > $num_v2) {
260  return 1;
261  } elseif ($num_v1 < $num_v2) {
262  return -1;
263  }
264 
265  return 0;
266  });
267 
268  foreach ($variables as $variable) {
272  $variable_header = new ilFormSectionHeaderGUI();
273  $variable_header->setTitle(sprintf($this->lng->txt('variable_x'), $variable->getVariable()));
274 
275  $range_min = new ilNumberInputGUI($this->lng->txt('range_min'), 'range_min_' . $variable->getVariable());
276  $range_min->allowDecimals(true);
277  $range_min->setSize(3);
278  $range_min->setRequired(true);
279  $range_min->setValue($variable->getRangeMin());
280 
281  $range_max = new ilNumberInputGUI($this->lng->txt('range_max'), 'range_max_' . $variable->getVariable());
282  $range_max->allowDecimals(true);
283  $range_max->setSize(3);
284  $range_max->setRequired(true);
285  $range_max->setValue($variable->getRangeMax());
286 
287  $units = new ilSelectInputGUI($this->lng->txt('unit'), 'unit_' . $variable->getVariable());
288  $units->setOptions([0 => $this->lng->txt('no_selection')] + $unit_options);
289  if (is_object($variable->getUnit())) {
290  $units->setValue($variable->getUnit()->getId());
291  }
292 
293  $precision = new ilNumberInputGUI($this->lng->txt('precision'), 'precision_' . $variable->getVariable());
294  $precision->setRequired(true);
295  $precision->setSize(3);
296  $precision->setMinValue(0);
297  $precision->setValue($variable->getPrecision());
298  $precision->setInfo($this->lng->txt('fq_precision_info'));
299 
300  $intprecision = new ilNumberInputGUI($this->lng->txt('intprecision'), 'intprecision_' . $variable->getVariable());
301  $intprecision->setSize(3);
302  $intprecision->setMinValue(1);
303  $intprecision->setValue($variable->getIntprecision());
304  $intprecision->setInfo($this->lng->txt('intprecision_info'));
305 
306  $form->addItem($variable_header);
307  $form->addItem($range_min);
308  $form->addItem($range_max);
309  $form->addItem($units);
310  $form->addItem($precision);
311  $form->addItem($intprecision);
312  }
313  }
314  $quest_vars = [];
315  $result_vars = [];
316  $results = $this->object->getResults();
317  if ($results !== []) {
318  uasort($results, function (assFormulaQuestionResult $r1, assFormulaQuestionResult $r2) {
319  $num_r1 = (int) substr($r1->getResult(), 2);
320  $num_r2 = (int) substr($r2->getResult(), 2);
321  if ($num_r1 > $num_r2) {
322  return 1;
323  } elseif ($num_r1 < $num_r2) {
324  return -1;
325  }
326 
327  return 0;
328  });
329 
330  foreach ($results as $result) {
331  $result_header = new ilFormSectionHeaderGUI();
332  $result_header->setTitle(sprintf($this->lng->txt('result_x'), $result->getResult()));
333 
334  $formula = new ilTextInputGUI($this->lng->txt('formula'), 'formula_' . $result->getResult());
335  $formula->setInfo($this->lng->txt('fq_formula_desc'));
336  $formula->setRequired(true);
337  $formula->setSize(50);
338  $formula->setValue($result->getFormula());
339  $formula->setSuffix(' = ' . $result->getResult());
340 
341  if (
342  $suggest_range_for_result !== null &&
343  $suggest_range_for_result === $result->getResult() &&
344  strlen($result->substituteFormula($variables, $results))
345  ) {
346  $result->suggestRange($variables, $results);
347  }
348 
349  $range_min = new ilNumberInputGUI($this->lng->txt('range_min'), 'range_min_' . $result->getResult());
350  $range_min->allowDecimals(true);
351  $range_min->setSize(3);
352  $range_min->setRequired(true);
353  $range_min->setValue($result->getRangeMin());
354 
355  $range_max = new ilNumberInputGUI($this->lng->txt('range_max'), 'range_max_' . $result->getResult());
356  $range_max->allowDecimals(true);
357  $range_max->setSize(3);
358  $range_max->setRequired(true);
359  $range_max->setValue($result->getRangeMax());
360 
361  $matches = [];
362 
363  $precision = new ilNumberInputGUI($this->lng->txt('precision'), 'precision_' . $result->getResult());
364  $precision->setRequired(true);
365  $precision->setSize(3);
366  $precision->setMinValue(0);
367  $precision->setInfo($this->lng->txt('fq_precision_info'));
368  $precision->setValue($result->getPrecision());
369 
370  $tolerance = new ilNumberInputGUI($this->lng->txt('tolerance'), 'tolerance_' . $result->getResult());
371  $tolerance->setSize(3);
372  $tolerance->setMinValue(0);
373  $tolerance->setMaxValue(100);
374  $tolerance->allowDecimals(true);
375  $tolerance->setInfo($this->lng->txt('tolerance_info'));
376  $tolerance->setValue($result->getTolerance());
377 
378  $suggest_range_button = new ilCustomInputGUI('', '');
379  $suggest_range_button->setHtml(
380  $this->ui_renderer->render(
381  $this->ui_factory->button()->standard(
382  $this->lng->txt('suggest_range'),
383  ''
385  $this->getSuggestRangeOnLoadCode($result->getResult())
386  )
387  )
388  );
389 
390  $sel_result_units = new ilSelectInputGUI($this->lng->txt('unit'), 'unit_' . $result->getResult());
391  $sel_result_units->setOptions([0 => $this->lng->txt('no_selection')] + $unit_options);
392  $sel_result_units->setInfo($this->lng->txt('result_unit_info'));
393  if (is_object($result->getUnit())) {
394  $sel_result_units->setValue($result->getUnit()->getId());
395  }
396 
397  $mc_result_units = new ilMultiSelectInputGUI($this->lng->txt('result_units'), 'units_' . $result->getResult());
398  $mc_result_units->setOptions($unit_options);
399  $mc_result_units->setInfo($this->lng->txt('result_units_info'));
400  $selectedvalues = [];
401  foreach ($unit_options as $unit_id => $txt) {
402  if ($this->hasResultUnit($result, $unit_id, $result_units)) {
403  $selectedvalues[] = $unit_id;
404  }
405  }
406  $mc_result_units->setValue($selectedvalues);
407 
408  $result_type = new ilRadioGroupInputGUI($this->lng->txt('result_type_selection'), 'result_type_' . $result->getResult());
409  $result_type->setRequired(true);
410 
411  $no_type = new ilRadioOption($this->lng->txt('no_result_type'), '0');
412  $no_type->setInfo($this->lng->txt('fq_no_restriction_info'));
413 
414  $result_dec = new ilRadioOption($this->lng->txt('result_dec'), '1');
415  $result_dec->setInfo($this->lng->txt('result_dec_info'));
416 
417  $result_frac = new ilRadioOption($this->lng->txt('result_frac'), '2');
418  $result_frac->setInfo($this->lng->txt('result_frac_info'));
419 
420  $result_co_frac = new ilRadioOption($this->lng->txt('result_co_frac'), '3');
421  $result_co_frac->setInfo($this->lng->txt('result_co_frac_info'));
422 
423  $result_type->addOption($no_type);
424  $result_type->addOption($result_dec);
425  $result_type->addOption($result_frac);
426  $result_type->addOption($result_co_frac);
427  $result_type->setValue(strlen($result->getResultType()) ? $result->getResultType() : 0);
428 
429  $points = new ilNumberInputGUI($this->lng->txt('points'), 'points_' . $result->getResult());
430  $points->allowDecimals(true);
431  $points->setRequired(true);
432  $points->setSize(3);
433  $points->setMinValue(0);
434  $points->setValue(strlen($result->getPoints()) ? $result->getPoints() : 1);
435 
436  $rating_type = new ilCheckboxInputGUI($this->lng->txt('advanced_rating'), 'rating_advanced_' . $result->getResult());
437  $rating_type->setValue(1);
438  $rating_type->setInfo($this->lng->txt('advanced_rating_info'));
439 
440  if (!$save) {
441  $advanced_rating = $this->canUseAdvancedRating($result);
442  if (!$advanced_rating) {
443  $rating_type->setDisabled(true);
444  $rating_type->setChecked(false);
445  } else {
446  $rating_type->setChecked(strlen($result->getRatingSimple()) && $result->getRatingSimple() ? false : true);
447  }
448  }
449 
450  $sign = new ilNumberInputGUI($this->lng->txt('rating_sign'), 'rating_sign_' . $result->getResult());
451  $sign->setRequired(true);
452  $sign->setSize(3);
453  $sign->setMinValue(0);
454  $sign->setValue($result->getRatingSign());
455  $rating_type->addSubItem($sign);
456 
457  $value = new ilNumberInputGUI($this->lng->txt('rating_value'), 'rating_value_' . $result->getResult());
458  $value->setRequired(true);
459  $value->setSize(3);
460  $value->setMinValue(0);
461  $value->setValue($result->getRatingValue());
462  $rating_type->addSubItem($value);
463 
464  $unit = new ilNumberInputGUI($this->lng->txt('rating_unit'), 'rating_unit_' . $result->getResult());
465  $unit->setRequired(true);
466  $unit->setSize(3);
467  $unit->setMinValue(0);
468  $unit->setValue($result->getRatingUnit());
469  $rating_type->addSubItem($unit);
470 
471  $info_text = new ilNonEditableValueGUI($this->lng->txt('additional_rating_info'));
472  $rating_type->addSubItem($info_text);
473 
474  $form->addItem($result_header);
475  $form->addItem($formula);
476  $form->addItem($range_min);
477  $form->addItem($range_max);
478  $form->addItem($suggest_range_button);
479  $form->addItem($precision);
480  $form->addItem($tolerance);
481  $form->addItem($sel_result_units);
482  $form->addItem($mc_result_units);
483  $form->addItem($result_type);
484  $form->addItem($points);
485  $form->addItem($rating_type);
486  }
487 
488  $defined_result_vars = [];
489 
490  $defined_result_res = [];
491 
492  foreach ($variables as $key => $object) {
493  $quest_vars[$key] = $key;
494  }
495 
496  foreach ($results as $key => $object) {
497  $result_vars[$key] = $key;
498  }
499 
500  foreach ($results as $tmp_result) {
504  $formula = $tmp_result->getFormula() ?? '';
505 
506  preg_match_all("/([$][v][0-9]*)/", $formula, $form_vars);
507  preg_match_all("/([$][r][0-9]*)/", $formula, $form_res);
508  foreach ($form_vars[0] as $res_var) {
509  $defined_result_vars[$res_var] = $res_var;
510  }
511 
512  foreach ($form_res[0] as $res_res) {
513  $defined_result_res[$res_res] = $res_res;
514  }
515  }
516  }
517 
518  $result_has_undefined_vars = [];
519  $question_has_unused_vars = [];
520  $result_has_undefined_res = [];
521 
522  if (is_array($quest_vars) && count($quest_vars) > 0) {
523  $result_has_undefined_vars = array_diff($defined_result_vars, $quest_vars);
524  $question_has_unused_vars = array_diff($quest_vars, $defined_result_vars);
525  }
526 
527  if (is_array($result_vars) && count($result_vars) > 0) {
528  $result_has_undefined_res = array_diff($defined_result_res, $result_vars);
529  }
530  $error_message = '';
531  $checked = true;
532  if ($result_has_undefined_vars !== [] || $question_has_unused_vars !== []) {
533  if (count($result_has_undefined_vars) > 0) {
534  $error_message .= $this->lng->txt("res_contains_undef_var") . '<br>';
535  }
536  if (count($question_has_unused_vars) > 0) {
537  $error_message .= $this->lng->txt("que_contains_unused_var") . '<br>';
538  }
539 
540  $checked = false;
541  if ($save) {
542  $this->tpl->setOnScreenMessage('failure', $error_message);
543  }
544  }
545 
546  if (is_array($result_has_undefined_res) && count($result_has_undefined_res) > 0) {
547  $error_message .= $this->lng->txt("res_contains_undef_res") . '<br>';
548  $checked = false;
549  }
550 
551  if ($save && !$checked) {
552  $this->tpl->setOnScreenMessage('failure', $error_message);
553  }
554 
555  $this->populateTaxonomyFormSection($form);
556 
557  $form->addCommandButton('parseQuestion', $this->lng->txt('parseQuestion'));
558  $form->addCommandButton('saveReturn', $this->lng->txt('save_return'));
559  $form->addCommandButton('save', $this->lng->txt('save'));
560 
561  $errors = !$checked;
562 
563  if ($save) {
564  $found_vars = [];
565  $found_results = [];
566  foreach ($this->request_data_collector->getParsedBody() as $key => $value) {
567  if (preg_match("/^unit_(\\\$v\d+)$/", $key, $matches)) {
568  array_push($found_vars, $matches[1]);
569  }
570  if (preg_match("/^unit_(\\\$r\d+)$/", $key, $matches)) {
571  array_push($found_results, $matches[1]);
572  }
573  }
574 
575 
576  foreach ($this->request_data_collector->getParsedBody() as $key => $value) {
577  $item = $form->getItemByPostVar($key);
578  if ($item !== null) {
579  switch (get_class($item)) {
580  case 'ilDurationInputGUI':
581  $item->setHours($value['hh']);
582  $item->setMinutes($value['mm']);
583  $item->setSeconds($value['ss']);
584  break;
585  default:
586  $item->setValue($value);
587  }
588  }
589  }
590 
591  $check = array_merge($found_vars, $found_results);
592  foreach ((array) $form->getItems() as $item) {
593  $postvar = $item->getPostVar();
594  if (preg_match("/_\\\$[r|v]\d+/", $postvar, $matches)) {
595  $k = substr(array_shift($matches), 1);
596  if (!in_array($k, $check)) {
597  $form->removeItemByPostVar($postvar);
598  }
599  }
600  }
601  $variables = array_filter($variables, fn($k, $v) => in_array($v, $check), ARRAY_FILTER_USE_BOTH);
602  $results = array_filter($results, fn($k, $v) => in_array($k, $check), ARRAY_FILTER_USE_BOTH);
603 
604  $errors = !$form->checkInput();
605 
606  $custom_errors = false;
607  if ($variables !== []) {
608  foreach ($variables as $variable) {
609  $min_range = $form->getItemByPostVar('range_min_' . $variable->getVariable());
610  $max_range = $form->getItemByPostVar('range_max_' . $variable->getVariable());
611  if ($min_range->getValue() > $max_range->getValue()) {
612  $min_range->setAlert($this->lng->txt('err_range'));
613  $max_range->setAlert($this->lng->txt('err_range'));
614  $custom_errors = true;
615  }
616  $intPrecision = $form->getItemByPostVar('intprecision_' . $variable->getVariable());
617  $decimal_spots = $form->getItemByPostVar('precision_' . $variable->getVariable());
618  if ($decimal_spots->getValue() == 0
619  && $min_range->getValue() !== null
620  && $max_range->getValue() !== null
621  && !$variable->isIntPrecisionValid(
622  $intPrecision->getValue(),
623  $min_range->getValue(),
624  $max_range->getValue()
625  )
626  ) {
627  $intPrecision->setAlert($this->lng->txt('err_division'));
628  $custom_errors = true;
629  }
630  }
631  }
632 
633  if ($results !== []) {
634  foreach ($results as $result) {
638  $min_range = $form->getItemByPostVar('range_min_' . $result->getResult());
639  $max_range = $form->getItemByPostVar('range_max_' . $result->getResult());
640  if ($min_range->getValue() > $max_range->getValue()) {
641  $min_range->setAlert($this->lng->txt('err_range'));
642  $max_range->setAlert($this->lng->txt('err_range'));
643  $custom_errors = true;
644  }
645 
646 
647  $formula = $form->getItemByPostVar('formula_' . $result->getResult());
648  if (strpos($formula->getValue(), $result->getResult()) !== false) {
649  $formula->setAlert($this->lng->txt('errRecursionInResult'));
650  $custom_errors = true;
651  }
652 
653  $result_unit = $form->getItemByPostVar('unit_' . $result->getResult());
654  $rating_advanced = $form->getItemByPostVar('rating_advanced_' . $result->getResult());
655  if (((int) $result_unit->getValue() <= 0) && $rating_advanced->getChecked()) {
656  unset($_POST['rating_advanced_' . $result->getResult()]); // TODO
657  $rating_advanced->setDisabled(true);
658  $rating_advanced->setChecked(false);
659  $rating_advanced->setAlert($this->lng->txt('err_rating_advanced_not_allowed'));
660  $custom_errors = true;
661  } elseif ($rating_advanced->getChecked()) {
662  $rating_sign = $form->getItemByPostVar('rating_sign_' . $result->getResult());
663  $rating_value = $form->getItemByPostVar('rating_value_' . $result->getResult());
664  $rating_unit = $form->getItemByPostVar('rating_unit_' . $result->getResult());
665 
666  $percentage = $rating_sign->getValue() + $rating_value->getValue() + $rating_unit->getValue();
667  if ($percentage != 100) {
668  $rating_advanced->setAlert($this->lng->txt('err_wrong_rating_advanced'));
669  $custom_errors = true;
670  }
671  }
672 
673  preg_match_all("/([$][v][0-9]*)/", $formula->getValue(), $form_vars);
674  $result_has_undefined_vars = array_diff($form_vars[0], $found_vars);
675  if (count($result_has_undefined_vars)) {
676  $errors = true;
677  $this->tpl->setOnScreenMessage('info', $this->lng->txt('res_contains_undef_var'));
678  }
679  }
680  }
681 
682  if ($custom_errors && !$errors) {
683  $errors = true;
684  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('form_input_not_valid'));
685  }
686  foreach ($this->request_data_collector->getParsedBody() as $key => $value) {
687  $item = $form->getItemByPostVar($key);
688  if ($item !== null) {
689  switch (get_class($item)) {
690  case 'ilDurationInputGUI':
691  $item->setHours($value['hh']);
692  $item->setMinutes($value['mm']);
693  $item->setSeconds($value['ss']);
694  break;
695  default:
696  $item->setValue($value);
697  }
698  }
699  } // again, because checkInput now performs the whole stripSlashes handling and we need this if we don't want to have duplication of backslashes
700  if ($errors) {
701  $checkonly = false;
702  }
703  }
704 
705  if (!$checkonly) {
706  $this->renderEditForm($form);
707  }
708  return $errors;
709  }
710 
711  private function getSuggestRangeOnLoadCode(string $result): Closure
712  {
713  return static function ($id) use ($result): string {
714  return "document.getElementById('$id').addEventListener('click', "
715  . '(e) => {'
716  . ' e.target.setAttribute("name", "cmd[suggestRange]");'
717  . ' let input = document.createElement("input");'
718  . ' input.type = "hidden";'
719  . ' input.name = "suggest_range_for";'
720  . " input.value = '$result';"
721  . ' e.target.form.appendChild(input);'
722  . ' e.target.form.requestSubmit(e.target);'
723  . '});';
724  };
725  }
726 
727  private function hasResultUnit($result, $unit_id, $resultunits): bool
728  {
729  if (array_key_exists($result->getResult(), $resultunits)) {
730  if (array_key_exists($unit_id, $resultunits[$result->getResult()])) {
731  return true;
732  }
733  }
734  return false;
735  }
736 
744  private function canUseAdvancedRating($result): bool
745  {
746  $resultunit = $result->getUnit();
747 
748  /*
749  * if there is a result-unit (unit selectbox) selected it is possible to use advanced rating
750  * if there is no result-unit selected it is NOT possible to use advanced rating, because there is no
751  * definition if the result-value or the unit-value should be the correct solution!!
752  *
753  */
754  if (is_object($resultunit)) {
755  return true;
756  } else {
757  return false;
758  }
759  }
760 
761  public function parseQuestion(): void
762  {
764  $this->writePostData();
765  $this->addSaveOnEnterOnLoadCode();
766  $this->setTestSpecificProperties();
767  $this->editQuestion();
768  }
769 
773  public function checkInput(): bool
774  {
775  $title = $this->request_data_collector->string('title');
776  $author = $this->request_data_collector->string('author');
777  $question = $this->request_data_collector->string('question');
778 
779  if (empty($title) || empty($author) || empty($question)) {
780  $this->addErrorMessage($this->lng->txt('fill_out_all_required_fields'));
781  return false;
782  }
783 
784  return true;
785  }
786 
787  public function getSolutionOutput(
788  int $active_id,
789  ?int $pass = null,
790  bool $graphical_output = false,
791  bool $result_output = false,
792  bool $show_question_only = true,
793  bool $show_feedback = false,
794  bool $show_correct_solution = false,
795  bool $show_manual_scoring = false,
796  bool $show_question_text = true,
797  bool $show_inline_feedback = true
798  ): string {
799  $user_solution = [];
800  if ($pass !== null) {
801  $user_solution = $this->object->getVariableSolutionValuesForPass($active_id, $pass);
802  } else {
803  $user_solution = array_reduce(
804  $this->object->fetchAllVariables($this->object->getQuestion()),
805  static function (array $c, assFormulaQuestionVariable $v): array {
806  $c[$v->getVariable()] = $v->getVariable();
807  return $c;
808  },
809  []
810  );
811  }
812  if (($active_id > 0) && (!$show_correct_solution)) {
813  $user_solution['active_id'] = $active_id;
814  $user_solution['pass'] = $pass;
815  $solutions = $this->object->getSolutionValues($active_id, $pass);
816  foreach ($solutions as $solution_value) {
817  if (preg_match('/^(\$v\d+)$/', $solution_value['value1'], $matches)) {
818  $user_solution[$matches[1]] = $solution_value['value2'];
819  } elseif (preg_match('/^(\$r\d+)$/', $solution_value['value1'], $matches)) {
820  if (!array_key_exists($matches[1], $user_solution)) {
821  $user_solution[$matches[1]] = [];
822  }
823  $user_solution[$matches[1]]["value"] = $solution_value['value2'];
824  } elseif (preg_match('/^(\$r\d+)_unit$/', $solution_value['value1'], $matches)) {
825  if (!array_key_exists($matches[1], $user_solution)) {
826  $user_solution[$matches[1]] = [];
827  }
828  $user_solution[$matches[1]]['unit'] = $solution_value['value2'];
829  }
830  }
831  } elseif ($active_id !== 0) {
832  $user_solution = $this->object->getBestSolution($this->object->getSolutionValues($active_id, $pass));
833  } elseif (is_object($this->getPreviewSession())) {
834  $solutionValues = [];
835  $participants_solution = $this->getPreviewSession()->getParticipantsSolution();
836  if (is_array($participants_solution)) {
837  foreach ($participants_solution as $val1 => $val2) {
838  $solutionValues[] = ['value1' => $val1, 'value2' => $val2];
839  }
840  }
841  $user_solution = $this->object->getBestSolution($solutionValues);
842  }
843 
844  return $this->renderSolutionOutput(
845  $user_solution,
846  $active_id,
847  $pass,
848  $graphical_output,
849  $result_output,
850  $show_question_only,
851  $show_feedback,
852  $show_correct_solution,
853  $show_manual_scoring,
854  $show_question_text,
855  false,
856  $show_inline_feedback
857  );
858  }
859 
860  public function renderSolutionOutput(
861  mixed $user_solutions,
862  int $active_id,
863  ?int $pass,
864  bool $graphical_output = false,
865  bool $result_output = false,
866  bool $show_question_only = true,
867  bool $show_feedback = false,
868  bool $show_correct_solution = false,
869  bool $show_manual_scoring = false,
870  bool $show_question_text = true,
871  bool $show_autosave_title = false,
872  bool $show_inline_feedback = false,
873  ): ?string {
874  $template = new ilTemplate("tpl.il_as_qpl_formulaquestion_output_solution.html", true, true, 'components/ILIAS/TestQuestionPool');
875  $correctness_icons = [
876  'correct' => $this->generateCorrectnessIconsForCorrectness(self::CORRECTNESS_OK),
877  'not_correct' => $this->generateCorrectnessIconsForCorrectness(self::CORRECTNESS_NOT_OK)
878  ];
879  $questiontext = $this->object->substituteVariables($user_solutions, $graphical_output, true, $result_output, $correctness_icons);
880  $template->setVariable("QUESTIONTEXT", ilLegacyFormElementsUtil::prepareTextareaOutput($questiontext, true));
881  $questionoutput = $template->get();
882  $solutiontemplate = new ilTemplate("tpl.il_as_tst_solution_output.html", true, true, "components/ILIAS/TestQuestionPool");
883  $feedback = ($show_feedback) ? $this->getGenericFeedbackOutput((int) $active_id, $pass) : "";
884  if (strlen($feedback)) {
885  $cssClass = (
886  $this->hasCorrectSolution($active_id, $pass) ?
888  );
889  $solutiontemplate->setVariable("ILC_FB_CSS_CLASS", $cssClass);
890  $solutiontemplate->setVariable("FEEDBACK", ilLegacyFormElementsUtil::prepareTextareaOutput($feedback, true));
891  }
892  $solutiontemplate->setVariable("SOLUTION_OUTPUT", $questionoutput);
893 
894  $solutionoutput = $solutiontemplate->get();
895  if (!$show_question_only) {
896  $solutionoutput = $this->getILIASPage($solutionoutput);
897  }
898  return $solutionoutput;
899  }
900 
901  public function getPreview(
902  bool $show_question_only = false,
903  bool $show_inline_feedback = false
904  ): string {
905  $user_solution = [];
906  if (is_object($this->getPreviewSession())) {
907  $solutions = $this->getPreviewSession()->getParticipantsSolution() ?? [];
908  foreach ($solutions as $val1 => $val2) {
909  if (preg_match('/^(\$v\d+)$/', $val1, $matches)) {
910  $user_solution[$matches[1]] = $val2;
911  } elseif (preg_match('/^(\$r\d+)$/', $val1, $matches)) {
912  if (!array_key_exists($matches[1], $user_solution)) {
913  $user_solution[$matches[1]] = [];
914  }
915  $user_solution[$matches[1]]['value'] = $val2;
916  } elseif (preg_match('/^(\$r\d+)_unit$/', $val1, $matches)) {
917  if (!array_key_exists($matches[1], $user_solution)) {
918  $user_solution[$matches[1]] = [];
919  }
920  $user_solution[$matches[1]]['unit'] = $val2;
921  }
922 
923  if (preg_match('/^(\$r\d+)/', $val1, $matches) && !isset($user_solution[$matches[1]]['result_type'])) {
924  $user_solution[$matches[1]]['result_type'] = assFormulaQuestionResult::getResultTypeByQstId($this->object->getId(), $val1);
925  }
926  }
927  }
928 
929  if (!$this->object->hasRequiredVariableSolutionValues($user_solution)) {
930  $user_solution = $this->object->getInitialVariableSolutionValues();
931 
932  if (is_object($this->getPreviewSession())) {
933  $this->getPreviewSession()->setParticipantsSolution($user_solution);
934  }
935  }
936 
937  $template = new ilTemplate("tpl.il_as_qpl_formulaquestion_output.html", true, true, 'components/ILIAS/TestQuestionPool');
938  if (is_object($this->getPreviewSession())) {
939  $questiontext = $this->object->substituteVariables($user_solution);
940  } else {
941  $questiontext = $this->object->substituteVariables([]);
942  }
943  $template->setVariable("QUESTIONTEXT", ilLegacyFormElementsUtil::prepareTextareaOutput($questiontext, true));
944  $questionoutput = $template->get();
945  if (!$show_question_only) {
946  // get page object output
947  $questionoutput = $this->getILIASPage($questionoutput);
948  }
949  return $questionoutput;
950  }
951 
952  public function getTestOutput(
953  int $active_id,
954  int $pass,
955  bool $is_question_postponed = false,
956  array|bool $user_post_solutions = false,
957  bool $show_specific_inline_feedback = false
958  ): string {
959  $this->tpl->setOnScreenMessage('info', $this->lng->txt('enter_valid_values'));
960  // get the solution of the user for the active pass or from the last pass if allowed
961  $user_solution = [];
962  if ($active_id) {
963  $solutions = $this->object->getTestOutputSolutions($active_id, $pass);
964  $actualPassIndex = null;
965  if ($this->object->getTestPresentationConfig()->isSolutionInitiallyPrefilled()) {
966  $actualPassIndex = ilObjTest::_getPass($active_id);
967  }
968  foreach ($solutions as $idx => $solution_value) {
969  if (preg_match('/^(\$v\d+)$/', $solution_value['value1'], $matches)) {
970  if ($this->object->getTestPresentationConfig()->isSolutionInitiallyPrefilled()) {
971  $this->object->saveCurrentSolution($active_id, $actualPassIndex, $matches[1], $solution_value['value2'], true);
972  }
973  $user_solution[$matches[1]] = $solution_value['value2'];
974  } elseif (preg_match('/^(\$r\d+)$/', $solution_value['value1'], $matches)) {
975  if (!array_key_exists($matches[1], $user_solution)) {
976  $user_solution[$matches[1]] = [];
977  }
978  $user_solution[$matches[1]]['value'] = $solution_value['value2'];
979  } elseif (preg_match('/^(\$r\d+)_unit$/', $solution_value['value1'], $matches)) {
980  if (!array_key_exists($matches[1], $user_solution)) {
981  $user_solution[$matches[1]] = [];
982  }
983  $user_solution[$matches[1]][['unit']] = $solution_value['value2'];
984  }
985  if (preg_match('/^(\$r\d+)/', $solution_value['value1'], $matches) && !isset($user_solution[$matches[1]]['result_type'])) {
986  $user_solution[$matches[1]]['result_type'] = assFormulaQuestionResult::getResultTypeByQstId($this->object->getId(), $solution_value['value1']);
987  }
988  }
989  }
990 
991  // fau: testNav - take question variables always from authorized solution because they are saved with this flag, even if an authorized solution is not saved
992  $solutions = $this->object->getSolutionValues($active_id, $pass, true);
993  foreach ($solutions as $idx => $solution_value) {
994  if (preg_match('/^(\$v\d+)$/', $solution_value['value1'], $matches)) {
995  $user_solution[$matches[1]] = $solution_value['value2'];
996  }
997  }
998 
999  if ($user_solution === []) {
1000  $user_solution = $this->object->getVariableSolutionValuesForPass($active_id, $pass);
1001  }
1002 
1003  // generate the question output
1004  $template = new ilTemplate("tpl.il_as_qpl_formulaquestion_output.html", true, true, 'components/ILIAS/TestQuestionPool');
1005 
1006  $questiontext = $this->object->substituteVariables($user_solution);
1007 
1008  $template->setVariable("QUESTIONTEXT", ilLegacyFormElementsUtil::prepareTextareaOutput($questiontext, true));
1009 
1010  $questionoutput = $template->get();
1011  $pageoutput = $this->outQuestionPage("", $is_question_postponed, $active_id, $questionoutput);
1012  return $pageoutput;
1013  }
1014 
1015  public function getSpecificFeedbackOutput(array $userSolution): string
1016  {
1017  return '';
1018  }
1019 }
renderSolutionOutput(mixed $user_solutions, int $active_id, ?int $pass, bool $graphical_output=false, bool $result_output=false, bool $show_question_only=true, bool $show_feedback=false, bool $show_correct_solution=false, bool $show_manual_scoring=false, bool $show_question_text=true, bool $show_autosave_title=false, bool $show_inline_feedback=false,)
hasCorrectSolution($activeId, $passIndex)
This class represents an option in a radio group.
generateCorrectnessIconsForCorrectness(int $correctness)
static _getPass($active_id)
Retrieves the actual pass of a given user for a given test.
This class represents a selection list property in a property form.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addTarget(string $a_text, string $a_link, $a_cmd="", $a_cmdClass="", string $a_frame="", bool $a_activate=false, bool $a_dir_text=false)
setInfo(string $a_info)
addBasicQuestionFormProperties(ilPropertyFormGUI $form)
Class for single choice questions assFormulaQuestion is a class for single choice questions...
canUseAdvancedRating($result)
Check if advanced rating can be used for a result.
setOptions(array $a_options)
$c
Definition: deliver.php:25
populateTaxonomyFormSection(ilPropertyFormGUI $form)
static getResultTypeByQstId($a_qst_id, $a_result)
editQuestion(bool $checkonly=false, ?bool $is_save_cmd=null)
writePostData(bool $always=false)
{}
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getSolutionOutput(int $active_id, ?int $pass=null, bool $graphical_output=false, bool $result_output=false, bool $show_question_only=true, bool $show_feedback=false, bool $show_correct_solution=false, bool $show_manual_scoring=false, bool $show_question_text=true, bool $show_inline_feedback=true)
allowDecimals(bool $a_value)
This class represents a multi selection list property in a property form.
This class represents a property in a property form.
This class represents a number property in a property form.
global $DIC
Definition: shib_login.php:22
getPreview(bool $show_question_only=false, bool $show_inline_feedback=false)
$results
$lifecycle
$txt
Definition: error.php:31
setRequired(bool $a_required)
__construct($id=-1)
assFormulaQuestionGUI constructor The constructor takes possible arguments an creates an instance of ...
setQuestionSpecificTabs(ilTabsGUI $ilTabs)
getILIASPage(string $html="")
Returns the ILIAS Page around a question.
outQuestionPage($a_temp_var, $a_postponed=false, $active_id="", $html="", $inlineFeedbackEnabled=false)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
__construct(Container $dic, ilPlugin $plugin)
getSpecificFeedbackOutput(array $userSolution)
addErrorMessage(string $errormessage)
$check
Definition: buildRTE.php:81
static prepareTextareaOutput(string $txt_output, bool $prepare_for_latex_output=false, bool $omitNl2BrWhenTextArea=false)
Prepares a string for a text area output where latex code may be in it If the text is HTML-free...
hasResultUnit($result, $unit_id, $resultunits)
getTestOutput(int $active_id, int $pass, bool $is_question_postponed=false, array|bool $user_post_solutions=false, bool $show_specific_inline_feedback=false)
renderEditForm(ilPropertyFormGUI $form)
getGenericFeedbackOutput(int $active_id, ?int $pass)