19 declare(strict_types=1);
58 $this->db = $DIC[
'ilDB'];
59 $this->
user = $DIC[
'ilUser'];
60 $this->
lng = $DIC[
'lng'];
61 $this->rbac_system = $DIC[
'rbacsystem'];
62 $this->
access = $DIC[
'ilAccess'];
76 return !$can_it->isOk() || $can_it->value();
83 ),
new Error(
'Not a known path.'));
99 $is_admin = $this->rbac_system->checkAccessOfUser(
$user_id,
'write', $ref_id);
102 switch ($permission) {
135 $ilDB = $DIC[
'ilDB'];
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 [
'integer',
'integer'],
144 if (!$result->numRows()) {
145 $result =
$ilDB->queryF(
146 "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",
147 [
'integer',
'integer'],
150 $row =
$ilDB->fetchAssoc($result);
151 if ($row !==
null && $row[
'active_id'] > 0) {
152 $test->updateTestResultCache($row[
'active_id']);
157 $result =
$ilDB->queryF(
158 "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",
159 [
'integer',
'integer'],
162 if (!$result->numRows()) {
163 $result =
$ilDB->queryF(
164 "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",
165 [
'integer',
'integer'],
169 if (!$result->numRows()) {
174 while ($row =
$ilDB->fetchAssoc($result)) {
175 array_push($points, $row);
179 if ($points[0][
"pass_scoring"] == 0) {
180 $reached = $points[count($points) - 1][
"points"];
181 $max = $points[count($points) - 1][
"maxpoints"];
183 $active_id = $points[count($points) - 1][
"active_fi"];
184 $pass = $points[count($points) - 1][
"pass"];
185 if (strlen($active_id) && strlen($pass)) {
186 $res = $test->updateTestPassResults($active_id, $pass,
false,
null, $a_obj_id);
187 $max =
$res[
'maxpoints'];
188 $reached =
$res[
'points'];
192 foreach ($points as $row) {
193 if ($row[
"points"] > $reached) {
194 $reached = $row[
"points"];
195 $max = $row[
"maxpoints"];
197 $active_id = $row[
"active_fi"];
198 $pass = $row[
"pass"];
199 if (strlen($active_id) && strlen($pass)) {
200 $res = $test->updateTestPassResults($active_id, $pass,
false,
null, $a_obj_id);
201 $max =
$res[
'maxpoints'];
202 $reached =
$res[
'points'];
208 $percentage = (!$max) ? 0 : ($reached / $max) * 100.0;
209 return $test->getMarkSchema()->getMatchingMark($percentage)->getPassed() === 1;
211 $row =
$ilDB->fetchAssoc($result);
212 return ($row[
'passed']) ? true :
false;
226 $ilDB = $DIC[
'ilDB'];
228 $ret = self::updateTestResultCache(
$user_id, $a_obj_id);
236 $result =
$ilDB->queryF(
237 "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",
238 [
'integer',
'integer'],
242 if (!$result->numRows()) {
243 $result =
$ilDB->queryF(
244 "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",
245 [
'integer',
'integer'],
249 while ($row =
$ilDB->fetchAssoc($result)) {
250 array_push($points, $row);
254 if ($points[0][
"pass_scoring"] == 0) {
255 $reached = $points[count($points) - 1][
"points"];
256 $max = $points[count($points) - 1][
"maxpoints"];
258 $active_id = $points[count($points) - 1][
"active_fi"];
259 $pass = $points[count($points) - 1][
"pass"];
260 if (strlen($active_id) && strlen($pass)) {
261 $res = $test->updateTestPassResults($active_id, $pass,
false,
null, $a_obj_id);
262 $max =
$res[
'maxpoints'];
263 $reached =
$res[
'points'];
267 foreach ($points as $row) {
268 if ($row[
"points"] > $reached) {
269 $reached = $row[
"points"];
270 $max = $row[
"maxpoints"];
272 $active_id = $row[
"active_fi"];
273 $pass = $row[
"pass"];
274 if (strlen($active_id) && strlen($pass)) {
275 $res = $test->updateTestPassResults($active_id, $pass,
false,
null, $a_obj_id);
276 $max =
$res[
'maxpoints'];
277 $reached =
$res[
'points'];
283 $percentage = (!$max) ? 0 : ($reached / $max) * 100.0;
284 return $test->getMarkSchema()->getMatchingMark($percentage)->getPassed() === 0;
286 $row =
$ilDB->fetchAssoc($result);
287 return ($row[
'failed']) ? true :
false;
294 $ilDB = $DIC[
'ilDB'];
296 $result =
$ilDB->queryF(
297 "SELECT tst_result_cache.* FROM tst_result_cache, tst_active, tst_tests " .
298 "WHERE tst_active.test_fi = tst_tests.test_id AND tst_active.user_fi = %s " .
299 "AND tst_tests.obj_fi = %s AND tst_result_cache.active_fi = tst_active.active_id",
300 [
'integer',
'integer'],
301 [$a_user_id, $a_obj_id]
303 if (!$result->numRows()) {
304 $result =
$ilDB->queryF(
305 "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",
306 [
'integer',
'integer'],
307 [$a_user_id, $a_obj_id]
309 $row =
$ilDB->fetchAssoc($result);
310 if ($row !==
null && $row[
'active_id'] > 0) {
312 $test->updateTestResultCache($row[
'active_id']);
342 public static function checkCondition(
int $a_trigger_obj_id,
string $a_operator,
string $a_value,
int $a_usr_id): bool
344 switch ($a_operator) {
353 return ilObjTestAccess::hasFinished($a_usr_id, $a_trigger_obj_id);
356 return !ilObjTestAccess::hasFinished($a_usr_id, $a_trigger_obj_id);
367 $DIC->language()->loadLanguageModule(
'assessment');
370 [
"permission" =>
"write",
"cmd" =>
"questionsTabGateway",
"lang_var" =>
"tst_edit_questions"],
371 [
"permission" =>
"write",
"cmd" =>
"ILIAS\Test\Settings\MainSettings\SettingsMainGUI::showForm",
"lang_var" =>
"settings"],
372 [
"permission" =>
"read",
"cmd" =>
"ILIAS\Test\Presentation\TestScreenGUI::testScreen",
"lang_var" =>
"tst_run",
"default" =>
true]
388 $ilDB = $DIC[
'ilDB'];
390 $result =
$ilDB->queryF(
391 "SELECT complete FROM tst_tests WHERE obj_fi=%s",
395 if ($result->numRows() == 1) {
396 $row =
$ilDB->fetchAssoc($result);
399 return isset($row[
'complete']) && $row[
'complete'];
416 public static function hasFinished($a_user_id, $a_obj_id): bool
421 $ilDB = $DIC[
'ilDB'];
423 $ilUser = $DIC[
'ilUser'];
425 if (!isset(self::$hasFinishedCache[
"{$a_user_id}:{$a_obj_id}"])) {
429 $partData->setUserIdsFilter([$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, [
'integer'], [$qpl_id]);
516 while ($row =
$ilDB->fetchAssoc($result)) {
517 $tests[] = $row[
'obj_fi'];
535 $ilDB = $DIC[
'ilDB'];
537 $result_active =
$ilDB->queryF(
538 'SELECT * FROM tst_active WHERE active_id = %s',
542 $row_active =
$ilDB->fetchAssoc($result_active);
543 $importname = $row_active[
'importname'];
545 if ($importname !==
null 546 && $importname !==
'') {
547 return $importname .
' (' . $lng->
txt(
'imported') .
')';
556 $result_test =
$ilDB->queryF(
557 "SELECT obj_fi FROM tst_tests WHERE test_id = %s",
559 [$row_active[
'test_fi']]
561 $row_test =
$ilDB->fetchAssoc($result_test);
562 $obj_id = $row_test[
"obj_fi"];
565 return $lng->
txt(
"anonymous");
568 if ($uname[
'firstname'] . $uname[
'lastname'] ===
'') {
569 return $lng->
txt(
'deleted_user');
572 return trim($uname[
'lastname'] .
', ' . $uname[
'firstname']);
584 $ilDB = $DIC[
'ilDB'];
586 $result =
$ilDB->queryF(
587 'SELECT user_fi FROM tst_active WHERE active_id = %s',
591 $row =
$ilDB->fetchAssoc($result);
592 return $row[
'user_fi'];
613 $ilDB = $DIC[
'ilDB'];
617 $userresult =
$ilDB->queryF(
619 SELECT tst_active.active_id, COUNT(tst_sequence.active_fi) sequences, tst_active.last_finished_pass, 621 (tst_tests.nr_of_tries - 1) = tst_active.last_finished_pass 626 INNER JOIN tst_active 627 ON tst_active.test_fi = tst_tests.test_id 628 LEFT JOIN tst_sequence 629 ON tst_sequence.active_fi = tst_active.active_id 630 WHERE tst_tests.obj_fi = %s 631 GROUP BY tst_active.active_id 636 $all_participants = [];
639 while ($row =
$ilDB->fetchAssoc($userresult)) {
640 if ($row[
'sequences'] == 0) {
641 $notAttempted[$row[
'active_id']] = $row[
'active_id'];
643 if ($row[
'is_last_pass']) {
644 $lastPassUsers[$row[
'active_id']] = $row[
'active_id'];
647 $all_participants[$row[
'active_id']] = $row[
'active_id'];
650 $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'));
651 $found_all = ($result->numRows() == count($all_participants)) ?
true :
false;
655 $found_participants = [];
657 array_push($found_participants,
$data[
'active_fi']);
659 foreach ($all_participants as $active_id) {
660 if (!in_array($active_id, $found_participants)) {
661 $test->updateTestResultCache($active_id);
664 $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'));
667 if (isset($notAttempted[
$data[
'active_fi']])) {
670 $data[
'not_attempted'] = 1;
673 $data[
'user_id'] = $data[
'user_fi'];
674 array_push($passed_users, $data);
676 return $passed_users;
685 $ilAccess = $DIC[
'ilAccess'];
687 $t_arr = explode(
"_", $target);
689 if ($t_arr[0] !=
"tst" || ((
int) $t_arr[1]) <= 0) {
693 if ($ilAccess->checkAccess(
"read",
"", (
int) $t_arr[1]) ||
694 $ilAccess->checkAccess(
"visible",
"", (
int) $t_arr[1])) {
714 $ilDB = $DIC[
'ilDB'];
715 $ilUser = $DIC[
'ilUser'];
724 $test_session = $test_session_factory->getSessionByUserId(
$user_id);
726 return $test_obj->canShowTestResults($test_session);
734 self::$certificate_preloader->preLoad($DIC[
'ilUser']->
getId(), $obj_ids);
736 ->getSettingsResultSummaryByObjIds($obj_ids);
742 if (self::$certificate_preloader ===
null 743 || !self::$certificate_preloader->isPreloaded($user_id, $obj_id)
744 || !isset(self::$settings_result_summaries_by_obj_id[$obj_id])
745 || self::$settings_result_summaries_by_obj_id[$obj_id]->getScoreReporting()
746 === ScoreReportingTypes::SCORE_REPORTING_DISABLED) {
750 $score_reporting = self::$settings_result_summaries_by_obj_id[$obj_id]->getScoreReporting();
751 if ($score_reporting === ScoreReportingTypes::SCORE_REPORTING_IMMIDIATLY) {
755 if ($score_reporting === ScoreReportingTypes::SCORE_REPORTING_DATE
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.
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
except(callable $f)
Feed the error into a callable and replace this with the result or do nothing if this is a value...
static ilCertificateObjectsForUserPreloader $certificate_preloader
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)
static lookupOfflineStatus(int $obj_id)
Lookup offline status using objectDataCache.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
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.
showCertificateFor(int $user_id, int $obj_id)
canBeDelivered(ilWACPath $ilWACPath)
static _preloadData($obj_ids, $ref_ids)
static _getPassedUsers($a_obj_id)
Returns an array containing the users who passed the test.
_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 _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 array $settings_result_summaries_by_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)
isPermitted(string $path)
const OPERATOR_NOT_FINISHED
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
ilRbacSystem $rbac_system
static updateTestResultCache($a_user_id, $a_obj_id)
__construct(Container $dic, ilPlugin $plugin)
static visibleUserResultExists($test_obj_id, $user_id)