ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.SettingsScoringGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 use ILIAS\Test\Scoring\Settings\Settings as SettingsScoring;
33 use ilInfoScreenGUI;
34 use ilObjTestGUI;
36 
49 {
53  public const CMD_SHOW_FORM = 'showForm';
54  public const CMD_SAVE_FORM = 'saveForm';
55  public const CMD_CONFIRMED_RECALC = 'saveFormAndRecalc';
56  public const CMD_CANCEL_RECALC = 'cancelSaveForm';
57  private const F_CONFIRM_SETTINGS = 'f_settings';
58 
59  public function __construct(
60  protected readonly \ilCtrlInterface $ctrl,
61  protected readonly \ilAccessHandler $access,
62  protected readonly \ilLanguage $lng,
63  protected readonly \ilTree $tree,
64  protected readonly \ilDBInterface $db,
65  protected readonly \ilComponentRepository $component_repository,
66  protected readonly \ilObjTestGUI $test_gui,
67  protected readonly \ilGlobalTemplateInterface $tpl,
68  protected readonly \ilTabsGUI $tabs,
69  protected readonly TestLogger $logger,
70  protected readonly ScoreSettingsRepository $score_settings_repo,
71  protected readonly int $test_id,
72  protected readonly UIFactory $ui_factory,
73  protected readonly UIRenderer $ui_renderer,
74  protected readonly Refinery $refinery,
75  protected readonly Request $request,
76  protected readonly \ilObjUser $active_user
77  ) {
78  parent::__construct($test_gui->getObject());
79  }
80 
81  protected function loadScoreSettings(): ScoreSettings
82  {
83  return $this->score_settings_repo->getFor($this->test_id);
84  }
85  protected function storeScoreSettings(ScoreSettings $score_settings): void
86  {
87  $this->score_settings_repo->store($score_settings);
88  }
89 
93  public function executeCommand()
94  {
95  if (!$this->access->checkAccess('write', '', $this->test_gui->getRefId())) {
96  $this->tpl->setOnScreenMessage('info', $this->lng->txt('cannot_edit_test'), true);
97  $this->ctrl->redirectByClass([\ilRepositoryGUI::class, \ilObjTestGUI::class, \ilInfoScreenGUI::class]);
98  }
99 
100  $this->tabs->activateSubTab(TabsManager::SETTINGS_SUBTAB_ID_SCORING);
101 
102  $nextClass = $this->ctrl->getNextClass();
103  switch ($nextClass) {
104  default:
105  $cmd = $this->ctrl->getCmd(self::CMD_SHOW_FORM);
106 
107  switch ($cmd) {
108  case self::CMD_SHOW_FORM:
109  $this->showForm();
110  break;
111  case self::CMD_SAVE_FORM:
112  $this->saveForm();
113  break;
114  case self::CMD_CONFIRMED_RECALC:
115  $this->saveForm();
116  $settings = $this->buildForm()
117  ->withRequest($this->getRelayedRequest())
118  ->getData();
119  $this->storeScoreSettings($settings);
120  $this->test_object->recalculateScores(true);
121  $this->tpl->setOnScreenMessage('success', $this->lng->txt("msg_score_settings_modified_and_recalc"), true);
122  $this->ctrl->redirect($this, self::CMD_SHOW_FORM);
123  break;
124  case self::CMD_CANCEL_RECALC:
125  $this->tpl->setOnScreenMessage('info', $this->lng->txt("msg_score_settings_not_modified"), true);
126  $form = $this->buildForm()->withRequest($this->getRelayedRequest());
127  $this->showForm($form);
128  break;
129  default:
130  throw new \Exception('unknown command: ' . $cmd);
131  }
132  }
133  }
134 
135  private function showForm(?Form $form = null): void
136  {
137  if ($form === null) {
138  $form = $this->buildForm();
139  }
140 
141  $this->tpl->setContent($this->ui_renderer->render($form));
142  }
143 
144  private function saveForm(): void
145  {
146  $form = $this->buildForm()
147  ->withRequest($this->request);
148 
149  $settings = $form->getData();
150 
151  if (is_null($settings)) {
152  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('form_input_not_valid'));
153  $this->showForm($form);
154  return;
155  }
156 
157  if ($this->isScoreRecalculationRequired(
158  $settings->getScoringSettings(),
159  $this->loadScoreSettings()->getScoringSettings()
160  )) {
161  $this->showConfirmation($this->request);
162  return;
163  }
164 
165  $this->storeScoreSettings($settings);
166  if ($this->logger->isLoggingEnabled()) {
167  $this->logger->logTestAdministrationInteraction(
168  $this->logger->getInteractionFactory()->buildTestAdministrationInteraction(
169  $this->test_gui->getRefId(),
170  $this->active_user->getId(),
171  TestAdministrationInteractionTypes::SCORING_SETTINGS_MODIFIED,
172  $settings->getArrayForLog($this->logger->getAdditionalInformationGenerator())
173  )
174  );
175  }
176  $this->tpl->setOnScreenMessage('success', $this->lng->txt("msg_obj_modified"), true);
177  $this->ctrl->redirect($this, self::CMD_SHOW_FORM);
178  }
179 
180  private function getRelayedRequest(): Request
181  {
182  return unserialize(
183  base64_decode(
184  $this->request->getParsedBody()[self::F_CONFIRM_SETTINGS]
185  )
186  );
187  }
188 
189  private function buildForm(): Form
190  {
191  $ui_pack = [
192  $this->lng,
193  $this->ui_factory->input()->field(),
195  ];
196 
197  $environment = [
198  'user_date_format' => $this->active_user->getDateTimeFormat(),
199  'user_time_zone' => $this->active_user->getTimeZone()
200  ];
201 
202  $disabled_flag = ($this->areScoringSettingsWritable() === false);
203 
204  $settings = $this->loadScoreSettings();
205  $sections = [
206  'scoring' => $settings->getScoringSettings()->toForm(...$ui_pack)
207  ->withDisabled($disabled_flag),
208  'summary' => $settings->getResultSummarySettings()->toForm(...array_merge($ui_pack, [$environment])),
209  'details' => $settings->getResultDetailsSettings()->toForm(
210  ...array_merge($ui_pack, [['taxonomy_options' => $this->getTaxonomyOptions()]])
211  ),
212  'gameification' => $settings->getGamificationSettings()->toForm(...$ui_pack)
213  ];
214 
215  $action = $this->ctrl->getFormAction($this, self::CMD_SAVE_FORM);
216  $form = $this->ui_factory->input()->container()->form()
217  ->standard($action, $sections)
218  ->withAdditionalTransformation(
219  $this->refinery->custom()->transformation(
220  function ($v) use ($settings) {
221  return $settings
222  ->withScoringSettings($v['scoring'])
223  ->withResultSummarySettings($v['summary'])
224  ->withResultDetailsSettings($v['details'])
225  ->withGamificationSettings($v['gameification'])
226  ;
227  }
228  )
229  );
230  return $form;
231  }
232 
233  private function isScoreReportingAvailable(): bool
234  {
235  $result_summary_settings = $this->test_object->getScoreSettings()
236  ->getResultSummarySettings();
237  if ($result_summary_settings->getScoreReporting()->isReportingEnabled()) {
238  return false;
239  }
240 
241  if ($result_summary_settings->getScoreReporting() === ScoreReportingTypes::SCORE_REPORTING_DATE) {
242  return $result_summary_settings->getResultSummarySettings()
243  ->getReportingDate() <= new \DateTimeImmutable('now', new \DateTimeZone('UTC'));
244  }
245 
246  return true;
247  }
248 
249  private function areScoringSettingsWritable(): bool
250  {
251  if (!$this->test_object->participantDataExist()) {
252  return true;
253  }
254 
255  if (!$this->isScoreReportingAvailable()) {
256  return true;
257  }
258 
259  return false;
260  }
261 
262  protected function getTaxonomyOptions(): array
263  {
264  $available_taxonomy_ids = \ilObjTaxonomy::getUsageOfObject($this->test_object->getId());
265  $taxononmy_translator = new \ilTestQuestionFilterLabelTranslator($this->db, $this->lng);
266  $taxononmy_translator->loadLabelsFromTaxonomyIds($available_taxonomy_ids);
267 
268  $taxonomy_options = [];
269  foreach ($available_taxonomy_ids as $tax_id) {
270  $taxonomy_options[$tax_id] = $taxononmy_translator->getTaxonomyTreeLabel($tax_id);
271  }
272  return $taxonomy_options;
273  }
274 
275  protected function isScoreRecalculationRequired(
276  SettingsScoring $new_settings,
277  SettingsScoring $old_settings
278  ): bool {
279  $settings_changed = (
280  $new_settings->getCountSystem() !== $old_settings->getCountSystem() ||
281  $new_settings->getScoreCutting() !== $old_settings->getScoreCutting() ||
282  $new_settings->getPassScoring() !== $old_settings->getPassScoring()
283  );
284 
285  return
286  $this->test_object->participantDataExist() &&
287  $this->areScoringSettingsWritable() &&
288  $settings_changed;
289  }
290 
291 
292  private function showConfirmation(Request $request)
293  {
294  $confirmation = new \ilConfirmationGUI();
295  $confirmation->setHeaderText($this->lng->txt('tst_trigger_result_refreshing'));
296  $confirmation->setFormAction($this->ctrl->getFormAction($this));
297  $confirmation->setCancel($this->lng->txt('cancel'), self::CMD_CANCEL_RECALC);
298  $confirmation->setConfirm($this->lng->txt('confirm'), self::CMD_CONFIRMED_RECALC);
299  $confirmation->addHiddenItem(self::F_CONFIRM_SETTINGS, base64_encode(serialize($request)));
300  $this->tpl->setContent($this->ctrl->getHTML($confirmation));
301  }
302 }
Readable part of repository interface to ilComponentDataDB.
This describes commonalities between all forms.
Definition: Form.php:32
isScoreRecalculationRequired(SettingsScoring $new_settings, SettingsScoring $old_settings)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getUsageOfObject(int $a_obj_id, bool $a_include_titles=false)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(protected readonly \ilCtrlInterface $ctrl, protected readonly \ilAccessHandler $access, protected readonly \ilLanguage $lng, protected readonly \ilTree $tree, protected readonly \ilDBInterface $db, protected readonly \ilComponentRepository $component_repository, protected readonly \ilObjTestGUI $test_gui, protected readonly \ilGlobalTemplateInterface $tpl, protected readonly \ilTabsGUI $tabs, protected readonly TestLogger $logger, protected readonly ScoreSettingsRepository $score_settings_repo, protected readonly int $test_id, protected readonly UIFactory $ui_factory, protected readonly UIRenderer $ui_renderer, protected readonly Refinery $refinery, protected readonly Request $request, protected readonly \ilObjUser $active_user)
__construct(Container $dic, ilPlugin $plugin)
global $lng
Definition: privfeed.php:31