30 include_once
'./webservice/soap/classes/class.ilSoapAdministration.php';
41 $ilAccess = $DIC[
'ilAccess'];
43 $permission_ok =
false;
44 $result =
$ilDB->queryF(
45 "SELECT tst_tests.obj_fi FROM tst_active, tst_tests WHERE tst_active.active_id = %s AND tst_active.test_fi = tst_tests.test_id",
49 $row =
$ilDB->fetchAssoc($result);
51 $obj_id = $row[
'obj_fi'];
53 if ($ilAccess->checkAccess(
"write",
"", $ref_id)) {
54 $permission_ok =
true;
59 return $permission_ok;
62 public function isAllowedCall(
string $sid,
int $active_id,
bool $saveaction =
true) : bool
76 $result =
$ilDB->queryF(
77 "SELECT * FROM tst_times WHERE active_fi = %s ORDER BY started DESC",
81 if ($result->numRows()) {
82 $row =
$ilDB->fetchAssoc($result);
83 if (preg_match(
"/(\\d{4})-(\\d{2})-(\\d{2}) (\\d{2}):(\\d{2}):(\\d{2})/", $row[
"started"], $matches)) {
84 $time = mktime($matches[4], $matches[5], $matches[6], $matches[2], $matches[3], $matches[1]);
90 $ilClientIniFile = $DIC[
'ilClientIniFile'];
91 $expires = $ilClientIniFile->readVariable(
'session',
'expire');
92 return $diff <= $expires;
101 $result =
$ilDB->queryF(
102 "SELECT user_fi FROM tst_active WHERE active_id = %s",
106 $row =
$ilDB->fetchAssoc($result);
108 return (
int) $row[
'user_fi'] ===
$ilUser->getId();
114 public function saveQuestion(
string $sid,
int $active_id,
int $question_id,
int $pass, array $solution)
123 return $this->
raiseError(
"The required user information is only available for active users.",
"");
128 $ilDB = $DIC[
'ilDB'];
131 require_once
'Modules/TestQuestionPool/classes/class.ilAssQuestionProcessLockerFactory.php';
133 $processLockerFactory->setQuestionId($question_id);
134 $processLockerFactory->setUserId(
$ilUser->getId());
135 include_once(
"./Modules/Test/classes/class.ilObjAssessmentFolder.php");
137 $processLocker = $processLockerFactory->getLocker();
141 $processLocker->executePersistWorkingStateLockOperation(
function () use (
149 $processLocker->executeUserSolutionUpdateLockOperation(
function () use (
157 if (($active_id > 0) && ($question_id > 0) && ($pass > 0)) {
158 $affectedRows =
$ilDB->manipulateF(
159 "DELETE FROM tst_solutions WHERE active_fi = %s AND question_fi = %s AND pass = %s",
160 array(
'integer',
'integer',
'integer'),
161 array($active_id, $question_id, $pass)
164 for (
$i = 0, $iMax = count($solution);
$i < $iMax;
$i += 3) {
165 $next_id =
$ilDB->nextId(
'tst_solutions');
166 $affectedRows =
$ilDB->insert(
"tst_solutions", array(
167 "solution_id" => array(
"integer", $next_id),
168 "active_fi" => array(
"integer", $active_id),
169 "question_fi" => array(
"integer", $question_id),
170 "value1" => array(
"clob", $solution[
$i]),
171 "value2" => array(
"clob", $solution[$i + 1]),
172 "points" => array(
"float", $solution[$i + 2]),
173 "pass" => array(
"integer", $pass),
174 "tstamp" => array(
"integer", time())
176 $totalrows += $affectedRows;
180 if ($totalrows !== 0) {
181 include_once
"./Modules/TestQuestionPool/classes/class.assQuestion.php";
183 $question->setProcessLocker($processLocker);
184 $question->calculateResultsFromSolution($active_id, $pass);
188 if ($totalrows === 0) {
190 "Wrong solution data. ILIAS did not execute any database queries: Solution data: " . print_r(
212 return $this->
raiseError(
"The required user information is only available for active users.",
"");
216 if (preg_match(
"/<values>(.*?)<\/values>/is", $solution, $matches)) {
218 "/<value>(.*?)<\/value><value>(.*?)<\/value><points>(.*?)<\/points>/is",
223 foreach ($matches as $match) {
224 if (count($match) === 4) {
225 for (
$i = 1, $iMax = count($match);
$i < $iMax;
$i++) {
226 $solutions[] = trim($match[
$i]);
233 if (count($solutions) === 0) {
235 "Wrong solution data. ILIAS did not find one or more solution triplets: $solution",
241 if (($active_id > 0) && ($question_id > 0) && ($pass > 0)) {
242 $affectedRows =
$ilDB->manipulateF(
243 "DELETE FROM tst_solutions WHERE active_fi = %s AND question_fi = %s AND pass = %s",
244 array(
'integer',
'integer',
'integer'),
245 array($active_id, $question_id, $pass)
249 for (
$i = 0, $iMax = count($solutions);
$i < $iMax;
$i += 3) {
250 $next_id =
$ilDB->nextId(
'tst_solutions');
251 $affectedRows =
$ilDB->insert(
"tst_solutions", array(
252 "solution_id" => array(
"integer", $next_id),
253 "active_fi" => array(
"integer", $active_id),
254 "question_fi" => array(
"integer", $question_id),
255 "value1" => array(
"clob", $solutions[
$i]),
256 "value2" => array(
"clob", $solutions[$i + 1]),
257 "points" => array(
"float", $solutions[$i + 2]),
258 "pass" => array(
"integer", $pass),
259 "tstamp" => array(
"integer", time())
261 $totalrows += $affectedRows;
263 if ($totalrows === 0) {
264 return $this->
raiseError(
"Wrong solution data. ILIAS did not execute any database queries",
'');
267 include_once
"./Modules/TestQuestionPool/classes/class.assQuestion.php";
269 $question->calculateResultsFromSolution($active_id, $pass);
285 return $this->
raiseError(
"The required user information is only available for active users.",
"");
291 $ilDB = $DIC[
'ilDB'];
293 $use_previous_answers = 1;
295 $result =
$ilDB->queryF(
296 "SELECT tst_tests.use_previous_answers FROM tst_tests, tst_active WHERE tst_tests.test_id = tst_active.test_fi AND tst_active.active_id = %s",
300 if ($result->numRows()) {
301 $row =
$ilDB->fetchAssoc($result);
302 $use_previous_answers = $row[
"use_previous_answers"];
305 if ($use_previous_answers) {
306 $result =
$ilDB->queryF(
307 "SELECT MAX(pass) maxpass FROM tst_test_result WHERE active_fi = %s AND question_fi = %s",
308 array(
'integer',
'integer'),
309 array($active_id, $question_id)
311 if ($result->numRows() === 1) {
312 $row =
$ilDB->fetchAssoc($result);
313 $lastpass = (
int) $row[
"maxpass"];
319 if (($active_id > 0) && ($question_id > 0) && ($lastpass > 0)) {
320 $result =
$ilDB->queryF(
321 "SELECT * FROM tst_solutions WHERE active_fi = %s AND question_fi = %s AND pass = %s",
322 array(
'integer',
'integer',
'integer'),
323 array($active_id, $question_id, $lastpass)
325 if ($result->numRows()) {
326 while ($row =
$ilDB->fetchAssoc($result)) {
327 $solution[] = $row[
"value1"];
328 $solution[] = $row[
"value2"];
329 $solution[] = $row[
"points"];
348 return $this->
raiseError(
"The required user information is only available for active users.",
"");
354 $ilDB = $DIC[
'ilDB'];
356 $result =
$ilDB->queryF(
357 "SELECT user_fi, test_fi FROM tst_active WHERE active_id = %s",
361 $row =
$ilDB->fetchAssoc($result);
362 $user_id = $row[
"user_fi"];
363 $test_id = $row[
"test_fi"];
365 $result =
$ilDB->queryF(
366 "SELECT anonymity FROM tst_tests WHERE test_id = %s",
370 $row =
$ilDB->fetchAssoc($result);
371 $anonymity = $row[
"anonymity"];
373 $result =
$ilDB->queryF(
374 "SELECT firstname, lastname, title, login FROM usr_data WHERE usr_id = %s",
380 if ($result->numRows() === 0) {
381 $userdata[
"fullname"] =
$lng->txt(
"deleted_user");
382 $userdata[
"title"] =
"";
383 $userdata[
"firstname"] =
"";
384 $userdata[
"lastname"] =
$lng->txt(
"anonymous");
385 $userdata[
"login"] =
"";
389 $userdata[
"fullname"] =
$lng->txt(
"anonymous");
390 $userdata[
"title"] =
"";
391 $userdata[
"firstname"] =
"";
392 $userdata[
"lastname"] =
$lng->txt(
"anonymous");
393 $userdata[
"login"] =
"";
395 $userdata[
"fullname"] = trim(
$data[
"title"] .
" " .
$data[
"firstname"] .
" " .
$data[
"lastname"]);
396 $userdata[
"title"] = $data[
"title"];
397 $userdata[
"firstname"] = $data[
"firstname"];
398 $userdata[
"lastname"] = $data[
"lastname"];
399 $userdata[
"login"] = $data[
"login"];
402 return array_values($userdata);
417 return $this->
raiseError(
"The required user information is only available for active users.",
"");
423 $ilDB = $DIC[
'ilDB'];
425 $result =
$ilDB->queryF(
426 "SELECT tst_tests.random_test FROM tst_active, tst_tests WHERE tst_active.active_id = %s AND tst_tests.test_id = tst_active.test_fi",
430 if ($result->numRows() !== 1) {
433 $row =
$ilDB->fetchAssoc($result);
434 $is_random = $row[
"random_test"];
436 include_once
"./Modules/Test/classes/class.ilTestSequence.php";
438 return $sequence->getSequenceForQuestion($question_id);
453 return $this->
raiseError(
"The required user information is only available for active users.",
"");
459 $ilDB = $DIC[
'ilDB'];
461 $result =
$ilDB->queryF(
462 "SELECT tst_tests.random_test FROM tst_active, tst_tests WHERE tst_active.active_id = %s AND tst_tests.test_id = tst_active.test_fi",
466 if ($result->numRows() !== 1) {
469 $row =
$ilDB->fetchAssoc($result);
470 $is_random = $row[
"random_test"];
472 include_once
"./Modules/Test/classes/class.ilTestSequence.php";
474 $result =
$ilDB->queryF(
475 "SELECT question_fi, points FROM tst_test_result WHERE active_fi = %s AND pass = %s",
476 array(
'integer',
'integer'),
477 array($active_id, $pass)
479 $reachedpoints = array();
480 while ($row =
$ilDB->fetchAssoc($result)) {
481 $reachedpoints[$row[
"question_fi"]] = $row[
"points"];
484 $pointsforposition = array();
485 foreach ($sequence->getUserSequence() as $seq) {
487 $qid = $sequence->getQuestionForSequence($seq);
488 if ($qid == $question_id) {
491 $pointsforposition[] = $reachedpoints[$qid];
495 return $pointsforposition;
510 return $this->
raiseError(
"The required user information is only available for active users.",
"");
516 $ilDB = $DIC[
'ilDB'];
518 $result =
$ilDB->queryF(
519 "SELECT tst_tests.random_test FROM tst_active, tst_tests WHERE tst_active.active_id = %s AND tst_tests.test_id = tst_active.test_fi",
523 if ($result->numRows() !== 1) {
526 $row =
$ilDB->fetchAssoc($result);
527 $is_random = $row[
"random_test"];
529 include_once
"./Modules/Test/classes/class.ilTestSequence.php";
531 return $sequence->getUserQuestionCount();
545 if (!($test_ref_id > 0)) {
547 'No test id given. Aborting!',
553 $rbacsystem = $DIC[
'rbacsystem'];
554 $tree = $DIC[
'tree'];
555 $ilLog = $DIC[
'ilLog'];
558 return $this->
raiseError(
'no permission. Aborting!',
'Client');
563 'Test is trashed. Aborting!',
569 return $this->
raiseError(
'No test found for id: ' . $test_ref_id,
'Client');
571 if ($tst->getType() !==
'tst') {
573 'Object with ref_id ' . $test_ref_id .
' is not of type test. Aborting',
579 if (isset($a_user_ids[
'item'])) {
580 $a_user_ids = $a_user_ids[
'item'];
583 include_once
'./Modules/Test/classes/class.ilObjTest.php';
584 include_once
'./Modules/Test/classes/class.ilTestParticipantData.php';
585 require_once
'Modules/Test/classes/class.ilTestParticipantAccessFilter.php';
587 $part->setParticipantAccessFilter(
590 $part->setUserIdsFilter((array) $a_user_ids);
591 $part->load($tst->getTestId());
592 $tst->removeTestResults($part);
608 if (!($test_ref_id > 0)) {
610 'No test id given. Aborting!',
616 $rbacsystem = $DIC[
'rbacsystem'];
617 $tree = $DIC[
'tree'];
618 $ilLog = $DIC[
'ilLog'];
622 'Test is trashed. Aborting!',
629 'No test found for id: ' . $test_ref_id,
634 $permission_ok =
false;
636 if ($rbacsystem->checkAccess(
'write', $ref_id)) {
637 $permission_ok =
true;
645 if (!$permission_ok) {
647 'No permission to edit the object with id: ' . $test_ref_id,
652 include_once
'./webservice/soap/classes/class.ilXMLResultSet.php';
653 include_once
'./webservice/soap/classes/class.ilXMLResultSetWriter.php';
656 $xmlResultSet->addColumn(
"user_id");
657 $xmlResultSet->addColumn(
"login");
658 $xmlResultSet->addColumn(
"firstname");
659 $xmlResultSet->addColumn(
"lastname");
660 $xmlResultSet->addColumn(
"matriculation");
662 include_once
'./Modules/Test/classes/class.ilObjTest.php';
663 $test_obj =
new ilObjTest($obj_id,
false);
664 $participants = $test_obj->getTestParticipants();
666 require_once
'Modules/Test/classes/class.ilTestParticipantAccessFilter.php';
667 require_once
'Modules/Test/classes/class.ilTestParticipantList.php';
670 $participantList->initializeFromDbRows($participants);
671 $participantList = $participantList->getAccessFilteredList($accessFilter);
672 $participantList = $participantList->getScoredParticipantList();
673 foreach ($participants as $activeId => $part) {
674 if ($participantList->isActiveIdInList($activeId)) {
675 $participants[$activeId][
'passed'] = $participantList->getParticipantByActiveId($activeId)->getScoring()->isPassed();
679 unset($participants[$activeId]);
683 $data = $test_obj->getAllTestResults($participants,
false);
685 $xmlResultSet->addColumn(
"maximum_points");
686 $xmlResultSet->addColumn(
"received_points");
687 $xmlResultSet->addColumn(
"passed");
689 $titles = array_shift(
$data);
690 foreach (
$data as $row) {
692 $xmlRow->setValue(0, $row[
"user_id"]);
693 $xmlRow->setValue(1, $row[
"login"]);
694 $xmlRow->setValue(2, $row[
"firstname"]);
695 $xmlRow->setValue(3, $row[
"lastname"]);
696 $xmlRow->setValue(4, $row[
"matriculation"]);
697 $xmlRow->setValue(5, $row[
"max_points"]);
698 $xmlRow->setValue(6, $row[
"reached_points"]);
699 $xmlRow->setValue(7, $row[
"passed"]);
700 $xmlResultSet->addRow($xmlRow);
703 $data = $test_obj->getDetailedTestResults($participants);
705 $xmlResultSet->addColumn(
"question_id");
706 $xmlResultSet->addColumn(
"question_title");
707 $xmlResultSet->addColumn(
"maximum_points");
708 $xmlResultSet->addColumn(
"received_points");
709 $xmlResultSet->addColumn(
"passed");
710 foreach (
$data as $row) {
712 $xmlRow->setValue(0, $row[
"user_id"]);
713 $xmlRow->setValue(1, $row[
"login"]);
714 $xmlRow->setValue(2, $row[
"firstname"]);
715 $xmlRow->setValue(3, $row[
"lastname"]);
716 $xmlRow->setValue(4, $row[
"matriculation"]);
717 $xmlRow->setValue(5, $row[
"question_id"]);
718 $xmlRow->setValue(6, $row[
"question_title"]);
719 $xmlRow->setValue(7, $row[
"max_points"]);
720 $xmlRow->setValue(8, $row[
"reached_points"]);
721 $xmlRow->setValue(9, $row[
"passed"]);
722 $xmlResultSet->addRow($xmlRow);
728 return $xmlWriter->getXML();
733 return $this->
getTestAccess($refId)->checkManageParticipantsAccess();
738 return $this->
getTestAccess($refId)->checkParticipantsResultsAccess();
743 require_once
'Modules/Test/classes/class.ilTestAccess.php';
isAllowedCall(string $sid, int $active_id, bool $saveaction=true)
XML Writer for XMLResultSet.
getTestResults(string $sid, int $test_ref_id, bool $sum_only)
getQuestionSolution(string $sid, int $active_id, int $question_id, int $pass)
static _getAllReferences(int $id)
get all reference ids for object ID
raiseError(string $a_message, $a_code)
Row Class for XMLResultSet.
getTestAccess(int $refId)
saveQuestionSolution(string $sid, int $active_id, int $question_id, int $pass, int $solution)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
removeTestResults(string $sid, int $test_ref_id, array $a_user_ids)
static instantiateQuestion(int $question_id)
static _enabledAssessmentLogging()
checkParticipantsResultsAccess(int $refId)
checkManageParticipantsAccess(int $refId)
getNrOfQuestionsInPass(string $sid, int $active_id, int $pass)
checkSession(string $sid)
static _isInTrash(int $ref_id)
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
static _lookupObjectId(int $ref_id)
static _getTestIDFromObjectID($object_id)
Returns the ILIAS test id for a given object id.
saveQuestion(string $sid, int $active_id, int $question_id, int $pass, array $solution)
hasWritePermissionForTest(int $active_id)
getPositionOfQuestion(string $sid, int $active_id, int $question_id, int $pass)
getPreviousReachedPoints(string $sid, int $active_id, int $question_id, int $pass)
static getManageParticipantsUserFilter($refId)
static getAccessResultsUserFilter($refId)
getTestUserData(string $sid, int $active_id)