53 return !$can_it->isOk() || $can_it->value();
60 ),
new Error(
'Not a known path.'));
70 public function _checkAccess(
string $cmd,
string $permission,
int $ref_id,
int $obj_id,
int $user_id = null): bool
75 $rbacsystem = $DIC[
'rbacsystem'];
76 $ilAccess = $DIC[
'ilAccess'];
78 if (is_null($user_id)) {
82 $is_admin = $rbacsystem->checkAccessOfUser($user_id,
'write', $ref_id);
85 switch ($permission) {
117 public static function _isPassed($user_id, $a_obj_id): bool
120 $ilDB = $DIC[
'ilDB'];
121 $result =
$ilDB->queryF(
122 "SELECT tst_result_cache.* FROM tst_result_cache, tst_active, tst_tests WHERE tst_active.test_fi = tst_tests.test_id AND tst_active.user_fi = %s AND tst_tests.obj_fi = %s AND tst_result_cache.active_fi = tst_active.active_id",
123 array(
'integer',
'integer'),
124 array($user_id, $a_obj_id)
126 if (!$result->numRows()) {
127 $result =
$ilDB->queryF(
128 "SELECT tst_active.active_id FROM tst_active, tst_tests WHERE tst_active.test_fi = tst_tests.test_id AND tst_active.user_fi = %s AND tst_tests.obj_fi = %s",
129 array(
'integer',
'integer'),
130 array($user_id, $a_obj_id)
132 $row =
$ilDB->fetchAssoc($result);
133 if ($row !== null && $row[
'active_id'] > 0) {
139 $result =
$ilDB->queryF(
140 "SELECT tst_result_cache.* FROM tst_result_cache, tst_active, tst_tests WHERE tst_active.test_fi = tst_tests.test_id AND tst_active.user_fi = %s AND tst_tests.obj_fi = %s AND tst_result_cache.active_fi = tst_active.active_id",
141 array(
'integer',
'integer'),
142 array($user_id, $a_obj_id)
144 if (!$result->numRows()) {
145 $result =
$ilDB->queryF(
146 "SELECT tst_pass_result.*, tst_tests.pass_scoring, tst_tests.test_id FROM tst_pass_result, tst_active, tst_tests WHERE tst_active.test_fi = tst_tests.test_id AND tst_active.user_fi = %s AND tst_tests.obj_fi = %s AND tst_pass_result.active_fi = tst_active.active_id ORDER BY tst_pass_result.pass",
147 array(
'integer',
'integer'),
148 array($user_id, $a_obj_id)
151 if (!$result->numRows()) {
156 while ($row =
$ilDB->fetchAssoc($result)) {
157 array_push($points, $row);
161 if ($points[0][
"pass_scoring"] == 0) {
162 $reached = $points[count($points) - 1][
"points"];
163 $max = $points[count($points) - 1][
"maxpoints"];
165 $active_id = $points[count($points) - 1][
"active_fi"];
166 $pass = $points[count($points) - 1][
"pass"];
167 if (strlen($active_id) && strlen($pass)) {
168 $res = assQuestion::_updateTestPassResults($active_id, $pass,
false, null, $a_obj_id);
169 $max =
$res[
'maxpoints'];
170 $reached =
$res[
'points'];
174 foreach ($points as $row) {
175 if ($row[
"points"] > $reached) {
176 $reached = $row[
"points"];
177 $max = $row[
"maxpoints"];
179 $active_id = $row[
"active_fi"];
180 $pass = $row[
"pass"];
181 if (strlen($active_id) && strlen($pass)) {
182 $res = assQuestion::_updateTestPassResults($active_id, $pass,
false, null, $a_obj_id);
183 $max =
$res[
'maxpoints'];
184 $reached =
$res[
'points'];
190 $percentage = (!$max) ? 0 : ($reached / $max) * 100.0;
192 return ($mark[
"passed"]) ? true :
false;
194 $row =
$ilDB->fetchAssoc($result);
195 return ($row[
'passed']) ? true :
false;
206 public static function isFailed($user_id, $a_obj_id): bool
209 $ilDB = $DIC[
'ilDB'];
211 $ret = self::updateTestResultCache($user_id, $a_obj_id);
217 $result =
$ilDB->queryF(
218 "SELECT tst_result_cache.* FROM tst_result_cache, tst_active, tst_tests WHERE tst_active.test_fi = tst_tests.test_id AND tst_active.user_fi = %s AND tst_tests.obj_fi = %s AND tst_result_cache.active_fi = tst_active.active_id",
219 array(
'integer',
'integer'),
220 array($user_id, $a_obj_id)
223 if (!$result->numRows()) {
224 $result =
$ilDB->queryF(
225 "SELECT tst_pass_result.*, tst_tests.pass_scoring FROM tst_pass_result, tst_active, tst_tests WHERE tst_active.test_fi = tst_tests.test_id AND tst_active.user_fi = %s AND tst_tests.obj_fi = %s AND tst_pass_result.active_fi = tst_active.active_id ORDER BY tst_pass_result.pass",
226 array(
'integer',
'integer'),
227 array($user_id, $a_obj_id)
230 while ($row =
$ilDB->fetchAssoc($result)) {
231 array_push($points, $row);
235 if ($points[0][
"pass_scoring"] == 0) {
236 $reached = $points[count($points) - 1][
"points"];
237 $max = $points[count($points) - 1][
"maxpoints"];
239 $active_id = $points[count($points) - 1][
"active_fi"];
240 $pass = $points[count($points) - 1][
"pass"];
241 if (strlen($active_id) && strlen($pass)) {
242 $res = assQuestion::_updateTestPassResults($active_id, $pass,
false, null, $a_obj_id);
243 $max =
$res[
'maxpoints'];
244 $reached =
$res[
'points'];
248 foreach ($points as $row) {
249 if ($row[
"points"] > $reached) {
250 $reached = $row[
"points"];
251 $max = $row[
"maxpoints"];
253 $active_id = $row[
"active_fi"];
254 $pass = $row[
"pass"];
255 if (strlen($active_id) && strlen($pass)) {
256 $res = assQuestion::_updateTestPassResults($active_id, $pass,
false, null, $a_obj_id);
257 $max =
$res[
'maxpoints'];
258 $reached =
$res[
'points'];
264 $percentage = (!$max) ? 0 : ($reached / $max) * 100.0;
266 return ($mark[
"failed"]) ? true :
false;
268 $row =
$ilDB->fetchAssoc($result);
269 return ($row[
'failed']) ? true :
false;
276 $ilDB = $DIC[
'ilDB'];
278 $result =
$ilDB->queryF(
279 "SELECT tst_result_cache.* FROM tst_result_cache, tst_active, tst_tests " .
280 "WHERE tst_active.test_fi = tst_tests.test_id AND tst_active.user_fi = %s " .
281 "AND tst_tests.obj_fi = %s AND tst_result_cache.active_fi = tst_active.active_id",
282 array(
'integer',
'integer'),
283 array($a_user_id, $a_obj_id)
285 if (!$result->numRows()) {
286 $result =
$ilDB->queryF(
287 "SELECT tst_active.active_id FROM tst_active, tst_tests WHERE tst_active.test_fi = tst_tests.test_id AND tst_active.user_fi = %s AND tst_tests.obj_fi = %s",
288 array(
'integer',
'integer'),
289 array($a_user_id, $a_obj_id)
291 $row =
$ilDB->fetchAssoc($result);
292 if ($row !== null && $row[
'active_id'] > 0) {
323 public static function checkCondition(
int $a_trigger_obj_id,
string $a_operator,
string $a_value,
int $a_usr_id): bool
325 switch ($a_operator) {
360 $DIC->language()->loadLanguageModule(
'assessment');
363 array(
"permission" =>
"write",
"cmd" =>
"questionsTabGateway",
"lang_var" =>
"tst_edit_questions"),
364 array(
"permission" =>
"write",
"cmd" =>
"ilObjTestSettingsGeneralGUI::showForm",
"lang_var" =>
"settings"),
365 array(
"permission" =>
"read",
"cmd" =>
"infoScreen",
"lang_var" =>
"tst_run",
368 array(
"permission" =>
"tst_statistics",
"cmd" =>
"outEvaluation",
"lang_var" =>
"tst_statistical_evaluation"),
369 array(
"permission" =>
"read",
"cmd" =>
"userResultsGateway",
"lang_var" =>
"tst_user_results"),
370 array(
"permission" =>
"write",
"cmd" =>
"testResultsGateway",
"lang_var" =>
"results"),
371 array(
"permission" =>
"eval_a",
"cmd" =>
"testResultsGateway",
"lang_var" =>
"results")
387 $ilDB = $DIC[
'ilDB'];
389 $result =
$ilDB->queryF(
390 "SELECT complete FROM tst_tests WHERE obj_fi=%s",
394 if ($result->numRows() == 1) {
395 $row =
$ilDB->fetchAssoc($result);
398 return isset($row[
'complete']) && $row[
'complete'];
417 if (!isset(self::$hasFinishedCache[
"{$a_user_id}:{$a_obj_id}"])) {
418 require_once
'Modules/Test/classes/class.ilTestParticipantData.php';
419 require_once
'Modules/Test/classes/class.ilTestSessionFactory.php';
420 require_once
'Modules/Test/classes/class.ilTestPassesSelector.php';
423 $ilDB = $DIC[
'ilDB'];
429 $partData->setUserIdsFilter(array($a_user_id));
430 $partData->load($testOBJ->getTestId());
432 $activeId = $partData->getActiveIdByUserId($a_user_id);
436 $testSession = $testSessionFactory->getSession($activeId);
439 $testPassesSelector->setActiveId($activeId);
440 $testPassesSelector->setLastFinishedPass($testSession->getLastFinishedPass());
442 self::$hasFinishedCache[
"{$a_user_id}:{$a_obj_id}"] = count($testPassesSelector->getClosedPasses());
445 return (
bool) self::$hasFinishedCache[
"{$a_user_id}:{$a_obj_id}"];
458 $ilDB = $DIC[
'ilDB'];
460 $result =
$ilDB->queryF(
461 "SELECT test_id FROM tst_tests WHERE obj_fi = %s",
465 if ($result->numRows()) {
466 $row =
$ilDB->fetchAssoc($result);
467 $test_id = $row[
"test_id"];
481 $ilDB = $DIC[
'ilDB'];
483 $result =
$ilDB->queryF(
484 "SELECT obj_fi FROM tst_tests WHERE test_id = %s",
489 $row =
$ilDB->fetchAssoc($result);
490 return $row[
"obj_fi"];
503 $ilDB = $DIC[
'ilDB'];
506 SELECT DISTINCT t.obj_fi 508 INNER JOIN tst_rnd_quest_set_qpls r 509 ON t.test_id = r.test_fi 513 $result =
$ilDB->queryF(
$query, array(
'integer'), array($qpl_id));
516 while ($row =
$ilDB->fetchAssoc($result)) {
517 $tests[] = $row[
'obj_fi'];
533 $ilDB = $DIC[
'ilDB'];
536 $result =
$ilDB->queryF(
537 "SELECT tst_tests.* FROM tst_tests WHERE tst_tests.obj_fi = %s",
541 if ($result->numRows()) {
542 $row =
$ilDB->fetchAssoc($result);
543 if ($row[
"fixed_participants"]) {
544 $result =
$ilDB->queryF(
545 "SELECT * FROM tst_invited_user WHERE test_fi = %s AND user_fi = %s",
546 array(
'integer',
'integer'),
547 array($row[
"test_id"], $a_user_id)
549 if ($result->numRows()) {
550 $row =
$ilDB->fetchAssoc($result);
551 if (trim($row[
'clientip']) !=
"") {
552 $row[
'clientip'] = preg_replace(
"/[^0-9.?*,:]+/",
"", $row[
'clientip']);
553 $row[
'clientip'] = str_replace(
".",
"\\.", $row[
'clientip']);
554 $row[
'clientip'] = str_replace(array(
"?",
"*",
","), array(
"[0-9]",
"[0-9]*",
"|"), $row[
'clientip']);
555 if (!preg_match(
"/^" . $row[
'clientip'] .
"$/",
$_SERVER[
"REMOTE_ADDR"])) {
556 $lng->loadLanguageModule(
'assessment');
557 return $lng->txt(
"user_wrong_clientip");
565 return $lng->txt(
"tst_user_not_invited");
586 $ilDB = $DIC[
'ilDB'];
588 $result =
$ilDB->queryF(
589 "SELECT * FROM tst_active WHERE active_id = %s",
593 $row =
$ilDB->fetchAssoc($result);
594 $user_id = $row[
"user_fi"];
595 $test_id = $row[
"test_fi"];
596 $importname = $row[
'importname'];
598 $result =
$ilDB->queryF(
599 "SELECT obj_fi FROM tst_tests WHERE test_id = %s",
603 $row =
$ilDB->fetchAssoc($result);
604 $obj_id = $row[
"obj_fi"];
611 if (strlen($importname)) {
612 $name = $importname .
' (' .
$lng->txt(
'imported') .
')';
613 } elseif (strlen($uname[
"firstname"] . $uname[
"lastname"]) == 0) {
619 $name = trim($uname[
"lastname"] .
", " . $uname[
"firstname"]);
638 $ilDB = $DIC[
'ilDB'];
640 $result =
$ilDB->queryF(
641 "SELECT user_fi FROM tst_active WHERE active_id = %s",
645 $row =
$ilDB->fetchAssoc($result);
646 return $row[
"user_fi"];
667 $ilDB = $DIC[
'ilDB'];
669 $passed_users = array();
671 $userresult =
$ilDB->queryF(
673 SELECT tst_active.active_id, COUNT(tst_sequence.active_fi) sequences, tst_active.last_finished_pass, 675 (tst_tests.nr_of_tries - 1) = tst_active.last_finished_pass 680 INNER JOIN tst_active 681 ON tst_active.test_fi = tst_tests.test_id 682 LEFT JOIN tst_sequence 683 ON tst_sequence.active_fi = tst_active.active_id 684 WHERE tst_tests.obj_fi = %s 685 GROUP BY tst_active.active_id 690 $all_participants = array();
691 $notAttempted = array();
692 $lastPassUsers = array();
693 while ($row =
$ilDB->fetchAssoc($userresult)) {
694 if ($row[
'sequences'] == 0) {
695 $notAttempted[$row[
'active_id']] = $row[
'active_id'];
697 if ($row[
'is_last_pass']) {
698 $lastPassUsers[$row[
'active_id']] = $row[
'active_id'];
701 $all_participants[$row[
'active_id']] = $row[
'active_id'];
704 $result =
$ilDB->query(
"SELECT tst_result_cache.*, tst_active.user_fi FROM tst_result_cache, tst_active WHERE tst_active.active_id = tst_result_cache.active_fi AND " .
$ilDB->in(
'active_fi', $all_participants,
false,
'integer'));
705 $found_all = ($result->numRows() == count($all_participants)) ?
true :
false;
708 $found_participants = array();
710 array_push($found_participants,
$data[
'active_fi']);
712 foreach ($all_participants as $active_id) {
713 if (!in_array($active_id, $found_participants)) {
717 $result =
$ilDB->query(
"SELECT tst_result_cache.*, tst_active.user_fi FROM tst_result_cache, tst_active WHERE tst_active.active_id = tst_result_cache.active_fi AND " .
$ilDB->in(
'active_fi', $all_participants,
false,
'integer'));
720 if (isset($notAttempted[
$data[
'active_fi']])) {
723 $data[
'not_attempted'] = 1;
726 $data[
'user_id'] = $data[
'user_fi'];
727 array_push($passed_users, $data);
729 return $passed_users;
738 $ilAccess = $DIC[
'ilAccess'];
740 $t_arr = explode(
"_", $target);
742 if ($t_arr[0] !=
"tst" || ((
int) $t_arr[1]) <= 0) {
746 if ($ilAccess->checkAccess(
"read",
"", $t_arr[1]) ||
747 $ilAccess->checkAccess(
"visible",
"", $t_arr[1])) {
776 require_once
'Modules/Test/classes/class.ilTestSessionFactory.php';
778 $testSession = $testSessionFactory->getSessionByUserId($userId);
780 return $testOBJ->canShowTestResults($testSession);
const IL_NO_OBJECT_ACCESS
static _lookupCreationComplete($a_obj_id)
checks wether all necessary parts of the test are given
static _getParticipantData($active_id)
Retrieves a participant name from active id.
static _getParticipantId($active_id)
Get user id for active id.
static _updateTestResultCache(int $active_id, ilAssQuestionProcessLocker $processLocker=null)
Move this to a proper place.
except(callable $f)
Feed the error into a callable and replace this with the result or do nothing if this is a value...
A result encapsulates a value or an error and simplifies the handling of those.
static _lookupName(int $a_user_id)
lookup user name
Interface for condition handling.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _isPassed($user_id, $a_obj_id)
Returns TRUE if the user with the user id $user_id passed the test with the object id $a_obj_id...
static _lookupAnonymity($a_obj_id)
Returns the anonymity status of a test with a given object id.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static lookupOfflineStatus(int $obj_id)
Lookup offline status using objectDataCache.
static _lookupOnlineTestAccess($a_test_id, $a_user_id)
Checks if a user is allowd to run an online exam.
static _getRandomTestsForQuestionPool($qpl_id)
Get all tests using a question pool for random selection.
static _lookupObjIdForTestId($a_test_id)
Lookup object id for test id.
_checkAccess(string $cmd, string $permission, int $ref_id, int $obj_id, int $user_id=null)
Checks wether a user may invoke a command or not (this method is called by ilAccessHandler::checkAcce...
static visibleUserResultExists($testObjId, $userId)
canBeDelivered(ilWACPath $ilWACPath)
static _getPassedUsers($a_obj_id)
Returns an array containing the users who passed the test.
static _getTestIDFromObjectID($object_id)
Returns the ILIAS test id for a given object id.
static isFailed($user_id, $a_obj_id)
Returns TRUE if the user with the user id $user_id failed the test with the object id $a_obj_id...
static checkCondition(int $a_trigger_obj_id, string $a_operator, string $a_value, int $a_usr_id)
check condition
findMatch(string $path, array $array)
const OPERATOR_NOT_FINISHED
static _getMatchingMarkFromObjId($a_obj_id, float $percentage)
Returns the matching mark for a given percentage.
static _checkGoto(string $target)
check whether goto script will succeed
static getConditionOperators()
Get possible conditions operators.
static _isOffline(int $obj_id)
returns the objects's OFFline status
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
isPermitted(string $path)
static updateTestResultCache($a_user_id, $a_obj_id)
static _getCommands()
get commands
static hasFinished($a_user_id, $a_obj_id)
Returns (request cached) information if a specific user has finished at least one test pass...