ILIAS  trunk Revision v11.0_alpha-1713-gd8962da2f67
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ScoringByQuestionTableBinder.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 
30 {
31  private ?array $participant_data = null;
32  private array $filter_data = [];
33 
34  public function __construct(
35  private readonly Language $lng,
36  private readonly \DateTimeZone $timezone,
37  private readonly \ilTestParticipantAccessFilterFactory $participant_access_filter_factory,
38  private readonly \ilObjTest $test_obj,
39  private readonly int $question_id
40  ) {
41  }
42 
43  public function withFilterData(array $filter_data): self
44  {
45  $clone = clone $this;
46  $clone->filter_data = $filter_data;
47  return $clone;
48  }
49 
50  public function getRows(
51  DataRowBuilder $row_builder,
52  array $visible_column_ids,
53  Range $range,
54  Order $order,
55  ?array $filter_data,
56  ?array $additional_parameters
57  ): \Generator {
58  if ($this->participant_data === null) {
59  $this->participant_data = $this->getFilteredData($this->question_id);
60  }
61  $this->sortData($order);
62  $data = array_slice($this->participant_data, $range->getStart(), $range->getLength());
63  foreach ($data as $row) {
64  yield $row_builder->buildDataRow(
65  array_shift($row),
66  $row
67  );
68  }
69  }
70 
71  public function getTotalRowCount(
72  ?array $filter_data,
73  ?array $additional_parameters
74  ): ?int {
75  if ($this->participant_data === null) {
76  $this->participant_data = $this->getFilteredData($this->question_id);
77  }
78  return count($this->participant_data);
79  }
80 
81  public function getMaxAttempts(): int
82  {
83  return $this->test_obj->getMaxPassOfTest();
84  }
85 
86  private function getFilteredData(int $question_id): array
87  {
88  $complete_feedback = $this->test_obj->getCompleteManualFeedback($question_id);
89  $data = $this->test_obj->getCompleteEvaluationData();
90 
91  $participants = $data->getParticipants();
92  $accessible_user_ids = call_user_func(
93  $this->participant_access_filter_factory->getScoreParticipantsUserFilter($this->test_obj->getRefId()),
94  $this->buildUserIdArrayFromParticipants($participants)
95  );
96  $accessible_participants = array_filter(
97  $participants,
98  static fn(\ilTestEvaluationUserData $v): bool => in_array($v->getUserID(), $accessible_user_ids)
99  );
100 
101  return array_reduce(
102  array_keys($accessible_participants),
103  $this->getDataRowClosure($question_id, $accessible_participants, $complete_feedback),
104  []
105  );
106  }
107 
108  private function sortData(
109  Order $order
110  ): void {
111  $key = key($order->get());
112  $direction = $order->get()[$key];
113  usort(
114  $this->participant_data,
115  static function (array $a, array $b) use ($key, $direction): int {
116  $left = $a[$key] ?? null;
117  $right = $b[$key] ?? null;
118  if ($direction === 'ASC') {
119  return $left <=> $right;
120  }
121  return $right <=> $left;
122  }
123  );
124  }
125 
126  private function getDataRowClosure(
127  int $question_id,
128  array $filtered_participants,
129  array $complete_feedback
130  ): \Closure {
131  return function (
132  array $c,
133  int $active_id
134  ) use ($question_id, $filtered_participants, $complete_feedback): array {
135  $array_of_attempts = $this->buildFilteredArrayOfAttempts(
136  $question_id,
137  $active_id,
138  $filtered_participants,
139  $complete_feedback
140  );
141  return [...$c, ...$array_of_attempts];
142  };
143  }
144 
146  int $question_id,
147  int $active_id,
148  array $filtered_participants,
149  array $complete_feedback
150  ): array {
151  return array_reduce(
152  $filtered_participants[$active_id]->getPasses(),
153  function (
154  array $c,
156  ) use ($question_id, $active_id, $filtered_participants, $complete_feedback): array {
157  $question_result = $pd->getAnsweredQuestionByQuestionId($question_id);
158  $feedback_data = $complete_feedback[$active_id][$pd->getPass()][$question_id] ?? [];
159  if ($this->isFilteredAttempt($pd, $question_result, $feedback_data)) {
160  return $c;
161  }
162 
163  $current_participant = $filtered_participants[$active_id];
164 
165  $row = [
166  "{$active_id}_{$pd->getPass()}",
167  ScoringByQuestionTable::COLUMN_NAME => $this->buildParticipantName($current_participant),
169  ScoringByQuestionTable::COLUMN_POINTS_REACHED => $question_result['reached'] ?? 0.0,
170  ScoringByQuestionTable::COLUMN_POINTS_AVAILABLE => $current_participant->getQuestionByAttemptAndId($pd->getPass(), $question_id)['points'] ?? 0.0,
171  ScoringByQuestionTable::COLUMN_FEEDBACK => $feedback_data['feedback'] ?? '',
172  ScoringByQuestionTable::COLUMN_FINALIZED => isset($feedback_data['finalized_evaluation']) && $feedback_data['finalized_evaluation'] === 1,
174  ];
175 
176  if (isset($feedback_data['finalized_tstamp'])
177  && $feedback_data['finalized_tstamp'] !== 0) {
178  $row[ScoringByQuestionTable::COLUMN_FINALIZED_ON] = (new \DateTimeImmutable(
179  '@' . $feedback_data['finalized_tstamp']
180  )
181  )->setTimezone($this->timezone);
182  }
183  $c[] = $row;
184 
185  return $c;
186  },
187  []
188  );
189  }
190 
191  private function isFilteredAttempt(
193  ?array $question_info,
194  array $feedback_data
195  ): bool {
196  if ($this->filter_data === []) {
197  return false;
198  }
199 
200  if ($this->filter_data[ScoringByQuestionTable::FILTER_FIELD_ONLY_ANSWERED] === '1'
201  && ($question_info === null || $question_info['isAnwered'] === false)
202  || $this->filter_data[ScoringByQuestionTable::COLUMN_ATTEMPT] !== ''
203  && $pd->getPass() !== (int) $this->filter_data[ScoringByQuestionTable::COLUMN_ATTEMPT]
204  || $this->filter_data[ScoringByQuestionTable::COLUMN_FINALIZED] === '1'
205  && (!isset($feedback_data['finalized_evaluation']) || $feedback_data['finalized_evaluation'] !== 1)
206  || $this->filter_data[ScoringByQuestionTable::COLUMN_FINALIZED] === '2'
207  && isset($feedback_data['finalized_evaluation']) && $feedback_data['finalized_evaluation'] === 1) {
208  return true;
209  }
210  return false;
211  }
212 
218  private function buildUserIdArrayFromParticipants(array $participants): array
219  {
220  return array_reduce(
221  $participants,
222  static function (array $c, \ilTestEvaluationUserData $v): array {
223  if ($v->getUserID() === null) {
224  return $c;
225  }
226 
227  $c[] = $v->getUserID();
228  return $c;
229  },
230  []
231  );
232  }
233 
234  private function buildParticipantName(\ilTestEvaluationUserData $participant_data): string
235  {
236  if ($this->test_obj->getAnonymity()) {
237  return $this->lng->txt('anonymous');
238  }
239  return $participant_data->getName();
240  }
241 
242  private function buildFinalizedByName(array $feedback_data): string
243  {
244  if (isset($feedback_data['finalized_by_usr_id'])
245  && $feedback_data['finalized_by_usr_id'] !== '') {
246  return \ilObjUser::_lookupFullname($feedback_data['finalized_by_usr_id']);
247  }
248  return '';
249  }
250 }
getRows(DataRowBuilder $row_builder, array $visible_column_ids, Range $range, Order $order, ?array $filter_data, ?array $additional_parameters)
This is called by the table to retrieve rows; map data-records to rows using the $row_builder e...
isFilteredAttempt(\ilTestEvaluationPassData $pd, ?array $question_info, array $feedback_data)
buildFilteredArrayOfAttempts(int $question_id, int $active_id, array $filtered_participants, array $complete_feedback)
getTotalRowCount(?array $filter_data, ?array $additional_parameters)
Mainly for the purpose of pagination-support, it is important to know about the total number of recor...
buildParticipantName(\ilTestEvaluationUserData $participant_data)
$c
Definition: deliver.php:25
Both the subject and the direction need to be specified when expressing an order. ...
Definition: Order.php:28
buildDataRow(string $id, array $record)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(private readonly Language $lng, private readonly \DateTimeZone $timezone, private readonly \ilTestParticipantAccessFilterFactory $participant_access_filter_factory, private readonly \ilObjTest $test_obj, private readonly int $question_id)
global $lng
Definition: privfeed.php:31
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
A simple class to express a naive range of whole positive numbers.
Definition: Range.php:28
getDataRowClosure(int $question_id, array $filtered_participants, array $complete_feedback)