ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ParticipantTableFinishTestAction.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Test\Participants;
22 
27 use ILIAS\Test\Results\Data\Repository as TestResultRepository;
34 
36 {
37  public const ACTION_ID = 'finish_test';
38 
39  public function __construct(
40  private readonly Language $lng,
41  private readonly \ilGlobalTemplateInterface $tpl,
42  private readonly UIFactory $ui_factory,
43  private readonly \ilDBInterface $db,
44  private readonly \ilTestProcessLockerFactory $process_locker_factory,
45  private readonly \ilObjUser $user,
46  private readonly \ilTestAccess $test_access,
47  private readonly \ilObjTest $test_obj,
48  private readonly TestResultRepository $test_pass_result_repository
49  ) {
50  }
51 
52  public function getActionId(): string
53  {
54  return self::ACTION_ID;
55  }
56 
57  public function isAvailable(): bool
58  {
59  return $this->test_access->checkManageParticipantsAccess();
60  }
61 
62  public function getTableAction(
63  URLBuilder $url_builder,
64  URLBuilderToken $row_id_token,
65  URLBuilderToken $action_token,
66  URLBuilderToken $action_type_token
67  ): Action {
68  return $this->ui_factory->table()->action()->standard(
69  $this->lng->txt(self::ACTION_ID),
70  $url_builder
71  ->withParameter($action_token, self::ACTION_ID)
72  ->withParameter($action_type_token, ParticipantTableActions::SHOW_ACTION),
73  $row_id_token
74  )->withAsync();
75  }
76 
77  public function getModal(
78  URLBuilder $url_builder,
79  array $selected_participants,
80  bool $all_participants_selected
81  ): ?Modal {
82  $modal = $this->ui_factory->modal()->interruptive(
83  $this->lng->txt('finish_test'),
84  $this->resolveMessage($selected_participants, $all_participants_selected),
85  $url_builder->buildURI()->__toString()
86  )->withActionButtonLabel($this->lng->txt('finish_test'));
87 
88  if (count($selected_participants) > 1) {
89  $modal = $modal->withAffectedItems(
90  array_map(
91  fn(Participant $participant) => $this->ui_factory->modal()->interruptiveItem()->standard(
92  (string) $participant->getUserId(),
93  sprintf(
94  '%s, %s',
95  $participant->getLastname(),
96  $participant->getFirstname()
97  )
98  ),
99  $selected_participants
100  )
101  );
102  }
103 
104  return $modal;
105  }
106 
107  public function onSubmit(
108  URLBuilder $url_builder,
109  ServerRequestInterface $request,
110  array $selected_participants,
111  bool $all_participants_selected
112  ): ?Modal {
113  if (!$this->test_access->checkManageParticipantsAccess()) {
114  $this->tpl->setOnScreenMessage(
116  $this->lng->txt('no_permission'),
117  true
118  );
119  return null;
120  }
121 
122  if (!$this->test_obj->getResetProcessingTime() && count($selected_participants) > 1) {
123  foreach ($selected_participants as $participant) {
124  if ($participant->hasUnfinishedAttempts()) {
125  $this->tpl->setOnScreenMessage(
127  $this->lng->txt('finish_test_more_than_one_selected'),
128  true
129  );
130  return null;
131  }
132  }
133  }
134 
135  // This is required here because of late test object binding
136  $test_session_factory = new \ilTestSessionFactory(
137  $this->test_obj,
138  $this->db,
139  $this->user
140  );
141 
142  foreach ($selected_participants as $participant) {
143  $process_locker = $this->process_locker_factory->withContextId($participant->getActiveId())->getLocker();
144  (new \ilTestPassFinishTasks(
145  $test_session_factory->getSession($participant->getActiveId()),
146  $this->test_obj,
147  $this->test_pass_result_repository
148  ))->performFinishTasks($process_locker, StatusOfAttempt::FINISHED_BY_ADMINISTRATOR);
149  }
150 
151  $logger = $this->test_obj->getTestLogger();
152  if ($logger->isLoggingEnabled()) {
153  $logger->logTestAdministrationInteraction(
154  $logger->getInteractionFactory()->buildTestAdministrationInteraction(
155  $this->test_obj->getRefId(),
156  $this->user->getId(),
157  TestAdministrationInteractionTypes::TEST_RUN_OF_PARTICIPANT_CLOSED,
158  [
160  fn(Participant $participant) => $participant->getUserId(),
161  $selected_participants
162  )
163  ]
164  )
165  );
166  }
167 
168  $this->tpl->setOnScreenMessage(
170  $this->lng->txt('test_attempts_finished'),
171  true
172  );
173  return null;
174  }
175 
176  public function allowActionForRecord(Participant $record): bool
177  {
178  return $record->hasUnfinishedAttempts();
179  }
180 
181  private function resolveMessage(
182  array $selected_participants,
183  bool $all_participants_selected
184  ): string {
185  if ($all_participants_selected) {
186  return $this->lng->txt('finish_test_all');
187  }
188 
189  if (count($selected_participants) === 1) {
190  return sprintf(
191  $this->lng->txt('finish_test_single'),
192  sprintf(
193  '%s, %s',
194  $selected_participants[0]->getLastname(),
195  $selected_participants[0]->getFirstname()
196  )
197  );
198  }
199 
200  return $this->lng->txt('finish_test_multiple');
201  }
202 
203  public function getSelectionErrorMessage(): ?string
204  {
205  return $this->lng->txt('finish_test_no_valid_participants_selected');
206  }
207 }
This describes commonalities between the different modals.
Definition: Modal.php:34
onSubmit(URLBuilder $url_builder, ServerRequestInterface $request, array $selected_participants, bool $all_participants_selected)
buildURI()
Get a URI representation of the full URL including query string and fragment/hash.
Definition: URLBuilder.php:212
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Participant.php:21
__construct(private readonly Language $lng, private readonly \ilGlobalTemplateInterface $tpl, private readonly UIFactory $ui_factory, private readonly \ilDBInterface $db, private readonly \ilTestProcessLockerFactory $process_locker_factory, private readonly \ilObjUser $user, private readonly \ilTestAccess $test_access, private readonly \ilObjTest $test_obj, private readonly TestResultRepository $test_pass_result_repository)
getTableAction(URLBuilder $url_builder, URLBuilderToken $row_id_token, URLBuilderToken $action_token, URLBuilderToken $action_type_token)
resolveMessage(array $selected_participants, bool $all_participants_selected)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getModal(URLBuilder $url_builder, array $selected_participants, bool $all_participants_selected)
withParameter(URLBuilderToken $token, string|array $value)
Change an acquired parameter&#39;s value if the supplied token is valid.
Definition: URLBuilder.php:166
global $lng
Definition: privfeed.php:31
URLBuilder.
Definition: URLBuilder.php:40