19 declare(strict_types=1);
39 if (($participants_list = $this->test_obj->getAccessFilteredParticipantList()) !==
null) {
40 return $participants_list->getAllActiveIds();
42 return array_keys($this->test_obj->getTestParticipants());
51 SELECT tst_test_result.question_fi, 52 tst_test_result.points result_points, 53 tst_test_result.answered, 54 tst_test_result.manual, 56 qpl_questions.original_id, 57 qpl_questions.title questiontitle, 58 qpl_questions.points qpl_maxpoints, 62 tst_active.last_finished_pass, 73 LEFT JOIN tst_pass_result ON tst_active.active_id = tst_pass_result.active_fi 74 LEFT JOIN tst_test_result ON tst_active.active_id = tst_test_result.active_fi AND tst_test_result.pass = tst_pass_result.pass 75 LEFT JOIN qpl_questions ON qpl_questions.question_id = tst_test_result.question_fi 76 LEFT JOIN usr_data ON tst_active.user_fi = usr_data.usr_id 78 WHERE tst_active.test_fi = %s 81 ORDER BY tst_active.active_id ASC, tst_pass_result.pass ASC, tst_test_result.tstamp DESC 85 $result = $this->db->query(
88 $this->db->quote($this->test_obj->getTestId(),
'integer'),
89 $this->db->in(
'tst_active.active_id', $active_ids,
false,
'integer'),
92 while ($row = $this->db->fetchAssoc($result)) {
100 $current_user =
null;
101 $current_attempt =
null;
104 $active_id = $row[
'active_id'];
105 $pass = $row[
'pass'];
107 if ($current_user !== $active_id) {
108 $current_user = $active_id;
109 $current_attempt =
null;
113 if ($current_attempt !== $pass) {
114 $current_attempt = $pass;
119 $user_eval_data->addPass($pass, $attempt);
120 $participants[$active_id] = $user_eval_data;
129 $current_user =
null;
130 $current_attempt =
null;
132 foreach ($eval_data_rows as $row) {
133 if($row[
'pass'] ===
null) {
137 if ($current_user !== $row[
'active_id']) {
138 $current_user = $row[
'active_id'];
139 $current_attempt =
null;
146 if ($row[
'pass'] !==
null && $current_attempt !== $row[
'pass']) {
147 $current_attempt = $row[
'pass'];
154 if ($start_time !==
null) {
155 $attempt->setStartTime($start_time);
157 $attempt->setStatusOfAttempt(
158 $this->
buildFinalizedBy($current_attempt, $row[
'last_finished_pass'], $row[
'finalized_by'])
163 $participants[$row[
'active_id']] = $user_eval_data;
177 $this->test_obj->buildName($row[
'usr_id'], $row[
'firstname'], $row[
'lastname'])
180 if ($row[
'login'] !==
null) {
181 $user_data->setLogin($row[
'login']);
183 if ($row[
'usr_id'] !==
null) {
184 $user_data->setUserID($row[
'usr_id']);
186 $user_data->setSubmitted((
bool) $row[
'submitted']);
187 $user_data->setLastFinishedPass($row[
'last_finished_pass']);
193 $attempt = new \ilTestEvaluationPassData();
194 $attempt->setPass($row[
'pass']);
195 $attempt->setReachedPoints($row[
'points']);
196 $attempt->setNrOfAnsweredQuestions($row[
'answeredquestions']);
197 $attempt->setWorkingTime($row[
'workingtime']);
198 $attempt->setExamId((
string) $row[
'exam_id']);
199 $attempt->setRequestedHintsCount($row[
'hint_count']);
200 $attempt->setDeductedHintPoints($row[
'hint_points']);
208 $visiting_time = $this->test_obj->getVisitingTimeOfParticipant($active_id);
210 $user_data->
setLastVisit($visiting_time[
'last_access']);
218 if ($row[
'questioncount'] !== 0) {
224 list($count, $points) = array_values(
225 $this->test_obj->getQuestionCountAndPointsForPassOfParticipant($row[
'active_id'], $row[
'pass'])
236 if ($row[
'question_fi'] ===
null) {
242 $row[
"qpl_maxpoints"],
243 $row[
"result_points"],
244 (
bool) $row[
'answered'],
255 $add_user_questions = $this->test_obj->isRandomTest() ?
259 $this->test_obj->getQuestionCountWithoutReloading()
263 foreach ($add_user_questions as
$q) {
264 $user_eval_data->addQuestion(
274 return $evaluation_data;
283 for ($testpass = 0; $testpass <= $user_eval_data->
getLastPass(); $testpass++) {
284 $this->db->setLimit($question_count, 0);
286 SELECT tst_test_rnd_qst.sequence, tst_test_rnd_qst.question_fi, qpl_questions.original_id, 287 tst_test_rnd_qst.pass, qpl_questions.points, qpl_questions.title 288 FROM tst_test_rnd_qst, qpl_questions 289 WHERE tst_test_rnd_qst.question_fi = qpl_questions.question_id 290 AND tst_test_rnd_qst.pass = %s 291 AND tst_test_rnd_qst.active_fi = %s ORDER BY tst_test_rnd_qst.sequence 294 $result = $this->db->queryF(
296 [
'integer',
'integer'],
297 [$testpass, $active_id]
300 if ($result->numRows()) {
301 while ($row = $this->db->fetchAssoc($result)) {
302 $tpass = array_key_exists(
'pass', $row) ? $row[
'pass'] : 0;
305 !isset($row[
'question_fi'], $row[
'points'], $row[
'sequence']) ||
306 !is_numeric($row[
'question_fi']) || !is_numeric($row[
'points']) || !is_numeric($row[
'sequence'])
312 'original_id' => (
int) $row[
'original_id'],
313 'question_id' => (
int) $row[
'question_fi'],
314 'max_points' => (float) $row[
'points'],
315 'sequence' => (
int) $row[
'sequence'],
317 'title' => $row[
'title']
331 SELECT tst_test_question.sequence, tst_test_question.question_fi, 332 qpl_questions.points, qpl_questions.title, qpl_questions.original_id 333 FROM tst_test_question, tst_active, qpl_questions 334 WHERE tst_test_question.question_fi = qpl_questions.question_id 335 AND tst_active.active_id = %s 336 AND tst_active.test_fi = tst_test_question.test_fi 337 ORDER BY tst_test_question.sequence 340 $result = $this->db->queryF(
346 if ($result->numRows()) {
347 $questionsbysequence = [];
348 while ($row = $this->db->fetchAssoc($result)) {
349 $questionsbysequence[$row[
'sequence']] = $row;
352 $seqresult = $this->db->queryF(
353 'SELECT * FROM tst_sequence WHERE active_fi = %s',
358 while ($seqrow = $this->db->fetchAssoc($seqresult)) {
359 $questionsequence = unserialize($seqrow[
"sequence"]);
360 foreach ($questionsequence as $sidx => $seq) {
361 if (!isset($questionsbysequence[$seq])) {
365 'original_id' => $questionsbysequence[$seq][
'original_id'] ?? 0,
366 'question_id' => $questionsbysequence[$seq][
'question_fi'],
367 'max_points' => $questionsbysequence[$seq][
'points'],
368 'sequence' => $sidx + 1,
369 'pass' => $seqrow[
'pass'],
370 'title' => $questionsbysequence[$seq][
"title"]
380 $mark_schema = $this->test_obj->getMarkSchema();
385 $mark = $mark_schema->getMatchingMark(
386 $user_eval_data->getReachedPointsInPercent()
389 if ($mark ===
null) {
393 $user_eval_data->setMark($mark);
394 for ($i = 0; $i < $user_eval_data->getPassCount(); $i++) {
395 $pass_data = $user_eval_data->getPass($i);
396 if ($pass_data ===
null) {
399 $mark = $mark_schema->getMatchingMark(
400 $pass_data->getReachedPointsInPercent()
402 if ($mark !==
null) {
403 $pass_data->setMark($mark);
408 return $evaluation_data;
414 SELECT active_fi, pass 415 FROM tst_active actives 416 INNER JOIN tst_pass_result passes 417 ON active_fi = active_id 421 $res = $this->db->queryF($query, [
'integer'], [$this->test_obj->getTestId()]);
424 while ($row = $this->db->fetchAssoc(
$res)) {
425 if (!isset($passes[$row[
'active_fi']])) {
426 $passes[$row[
'active_fi']] = [];
429 $passes[$row[
'active_fi']][] = $row[
'pass'];
437 $times = $this->db->fetchAssoc(
439 'SELECT MIN(started) AS first_access ' 440 .
'FROM tst_times WHERE active_fi = %s AND pass = %s',
441 [
'integer',
'integer'],
442 [$active_id, $attempt]
446 return $times[
'first_access'];
451 if ($last_finished_attempt ===
null || $current_attempt > $last_finished_attempt) {
452 return StatusOfAttempt::RUNNING;
455 if ($finalized_by ===
null) {
456 return StatusOfAttempt::FINISHED_BY_UNKNOWN;
459 return StatusOfAttempt::tryFrom($finalized_by);
retrieveQuestionsForParticipantPassesForSequencedTests(int $active_id)
getCorrectionsEvaluationData()
setFirstVisit(?\DateTimeImmutable $time)
retrieveEvaluationData(array $active_ids)
addPointsAndQuestionCountToAttempt(ilTestEvaluationPassData $attempt, array $row)
addQuestionsToParticipantPasses(ilTestEvaluationData $evaluation_data)
setQuestionCount(int $questioncount)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
buildBasicUserEvaluationDataFromDB(array $row)
addAnsweredQuestion(int $question_id, float $max_points, float $reached_points, bool $is_answered, ?int $sequence=null, int $manual=0)
setMaxPoints(float $maxpoints)
getFirstVisitForActiveIdAndAttempt(int $active_id, int $attempt)
retrieveQuestionsForParticipantPassesForRandomTests(int $active_id, ilTestEvaluationUserData $user_eval_data, int $question_count)
buildBasicAttemptEvaluationDataFromDB(array $row)
setLastVisit(?\DateTimeImmutable $time)
addVisitingTimeToUserEvalData(ilTestEvaluationUserData $user_data, int $active_id)
addMarksToParticipants(ilTestEvaluationData $evaluation_data)
addQuestionToAttempt(ilTestEvaluationPassData $attempt, array $row)
addQuestionTitle(int $question_id, string $question_title)
__construct(protected ilDBInterface $db, protected ilObjTest $test_obj)
getParticipant(int $active_id)
buildFinalizedBy(int $current_attempt, ?int $last_finished_attempt, ?string $finalized_by)
getAccessFilteredActiveIds()