36 public function __construct(?
string $a_xml_file, &$test_object)
39 $this->tst_obj = &$test_object;
41 $this->active_id_mapping = array();
42 $this->question_id_mapping = array();
43 $this->user_criteria_checked =
false;
44 $this->src_pool_def_id_mapping = array();
86 xml_set_object($a_xml_parser, $this);
87 xml_set_element_handler($a_xml_parser,
'handlerBeginTag',
'handlerEndTag');
88 xml_set_character_data_handler($a_xml_parser,
'handlerParseCharacterData');
99 switch (strtolower($a_name)) {
103 switch ($this->table) {
105 if (!$this->user_criteria_checked) {
106 $this->user_criteria_checked =
true;
107 if (isset($a_attribs[
'user_criteria']) &&
$ilDB->tableColumnExists(
'usr_data', $a_attribs[
'user_criteria'])) {
109 $info = $analyzer->getFieldInformation(
'usr_data');
110 $this->user_criteria_field = $a_attribs[
'user_criteria'];
111 $this->user_criteria_type = $info[$a_attribs[
'user_criteria']][
'type'];
115 if (isset($this->user_criteria_field) && $this->user_criteria_field !==
'') {
116 $result =
$ilDB->queryF(
117 "SELECT usr_id FROM usr_data WHERE " . $this->user_criteria_field .
" = %s",
118 array($this->user_criteria_type),
119 array($a_attribs[$this->user_criteria_field])
121 if ($result->numRows()) {
122 $row =
$ilDB->fetchAssoc($result);
123 $usr_id = $row[
'usr_id'];
126 $next_id =
$ilDB->nextId(
'tst_active');
128 $ilDB->insert(
'tst_active', array(
129 'active_id' => array(
'integer', $next_id),
130 'user_fi' => array(
'integer', $usr_id),
131 'anonymous_id' => array(
'text', strlen($a_attribs[
'anonymous_id']) ? $a_attribs[
'anonymous_id'] : null),
132 'test_fi' => array(
'integer', $this->tst_obj->getTestId()),
133 'lastindex' => array(
'integer', $a_attribs[
'lastindex']),
134 'tries' => array(
'integer', $a_attribs[
'tries']),
135 'submitted' => array(
'integer', $a_attribs[
'submitted']),
136 'submittimestamp' => array(
'timestamp', strlen($a_attribs[
'submittimestamp']) ? $a_attribs[
'submittimestamp'] : null),
137 'tstamp' => array(
'integer', $a_attribs[
'tstamp']),
138 'importname' => array(
'text', $a_attribs[
'fullname']),
141 'answerstatusfilter' => array(
'integer', $this->
fetchAttribute($a_attribs,
'answer_status_filter')),
142 'objective_container' => array(
'integer', $this->
fetchAttribute($a_attribs,
'objective_container'))
144 $this->active_id_mapping[$a_attribs[
'active_id']] = $next_id;
146 case 'tst_test_rnd_qst':
147 $nextId =
$ilDB->nextId(
'tst_test_rnd_qst');
148 $newActiveId = $this->active_id_mapping[$a_attribs[
'active_fi']];
149 $newQuestionId = $this->question_id_mapping[$a_attribs[
'question_fi']] ?? 0;
150 $newSrcPoolDefId = $this->src_pool_def_id_mapping[$a_attribs[
'src_pool_def_fi']] ?? 0;
151 $ilDB->insert(
'tst_test_rnd_qst', array(
152 'test_random_question_id' => array(
'integer', $nextId),
153 'active_fi' => array(
'integer', $newActiveId),
154 'question_fi' => array(
'integer', $newQuestionId),
155 'sequence' => array(
'integer', $a_attribs[
'sequence']),
156 'pass' => array(
'integer', $a_attribs[
'pass']),
157 'tstamp' => array(
'integer', $a_attribs[
'tstamp']),
158 'src_pool_def_fi' => array(
'integer', $newSrcPoolDefId)
161 case 'tst_pass_result':
162 $affectedRows =
$ilDB->manipulateF(
163 "INSERT INTO tst_pass_result (active_fi, pass, points, maxpoints, questioncount, answeredquestions, workingtime, tstamp) VALUES (%s,%s,%s,%s,%s,%s,%s,%s)",
175 $this->active_id_mapping[$a_attribs[
'active_fi']],
176 strlen($a_attribs[
'pass']) ? $a_attribs[
'pass'] : 0,
177 ($a_attribs[
"points"]) ? $a_attribs[
"points"] : 0,
178 ($a_attribs[
"maxpoints"]) ? $a_attribs[
"maxpoints"] : 0,
179 $a_attribs[
"questioncount"],
180 $a_attribs[
"answeredquestions"],
181 ($a_attribs[
"workingtime"]) ? $a_attribs[
"workingtime"] : 0,
186 case 'tst_result_cache':
187 $affectedRows =
$ilDB->manipulateF(
188 "INSERT INTO tst_result_cache (active_fi, pass, max_points, reached_points, mark_short, mark_official, passed, failed, tstamp) VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s)",
201 $this->active_id_mapping[$a_attribs[
'active_fi']],
202 strlen($a_attribs[
'pass']) ? $a_attribs[
'pass'] : 0,
203 ($a_attribs[
"max_points"]) ? $a_attribs[
"max_points"] : 0,
204 ($a_attribs[
"reached_points"]) ? $a_attribs[
"reached_points"] : 0,
205 strlen($a_attribs[
"mark_short"]) ? $a_attribs[
"mark_short"] :
" ",
206 strlen($a_attribs[
"mark_official"]) ? $a_attribs[
"mark_official"] :
" ",
207 ($a_attribs[
"passed"]) ? 1 : 0,
208 ($a_attribs[
"failed"]) ? 1 : 0,
214 $affectedRows =
$ilDB->insert(
"tst_sequence", array(
215 "active_fi" => array(
"integer", $this->active_id_mapping[$a_attribs[
'active_fi']]),
216 "pass" => array(
"integer", $a_attribs[
'pass']),
217 "sequence" => array(
"clob", $a_attribs[
'sequence']),
218 "postponed" => array(
"text", (strlen($a_attribs[
'postponed'])) ? $a_attribs[
'postponed'] : null),
219 "hidden" => array(
"text", (strlen($a_attribs[
'hidden'])) ? $a_attribs[
'hidden'] : null),
220 "tstamp" => array(
"integer", $a_attribs[
'tstamp'])
223 case 'tst_solutions':
224 $next_id =
$ilDB->nextId(
'tst_solutions');
225 $affectedRows =
$ilDB->insert(
"tst_solutions", array(
226 "solution_id" => array(
"integer", $next_id),
227 "active_fi" => array(
"integer", $this->active_id_mapping[$a_attribs[
'active_fi']]),
228 "question_fi" => array(
"integer", $this->question_id_mapping[$a_attribs[
'question_fi']]),
229 "value1" => array(
"clob", (strlen($a_attribs[
'value1'])) ? $a_attribs[
'value1'] : null),
230 "value2" => array(
"clob", (strlen($a_attribs[
'value2'])) ? $a_attribs[
'value2'] : null),
231 "pass" => array(
"integer", $a_attribs[
'pass']),
232 "tstamp" => array(
"integer", $a_attribs[
'tstamp'])
235 case 'tst_test_result':
236 $next_id =
$ilDB->nextId(
'tst_test_result');
237 $affectedRows =
$ilDB->manipulateF(
238 "INSERT INTO tst_test_result (test_result_id, active_fi, question_fi, points, pass, manual, tstamp) VALUES (%s, %s, %s, %s, %s, %s, %s)",
239 array(
'integer',
'integer',
'integer',
'float',
'integer',
'integer',
'integer'),
240 array($next_id, $this->active_id_mapping[$a_attribs[
'active_fi']], $this->question_id_mapping[$a_attribs[
'question_fi']], $a_attribs[
'points'], $a_attribs[
'pass'], (strlen($a_attribs[
'manual'])) ? $a_attribs[
'manual'] : 0, $a_attribs[
'tstamp'])
244 $next_id =
$ilDB->nextId(
'tst_times');
245 $affectedRows =
$ilDB->manipulateF(
246 "INSERT INTO tst_times (times_id, active_fi, started, finished, pass, tstamp) VALUES (%s, %s, %s, %s, %s, %s)",
247 array(
'integer',
'integer',
'timestamp',
'timestamp',
'integer',
'integer'),
248 array($next_id, $this->active_id_mapping[$a_attribs[
'active_fi']], $a_attribs[
'started'], $a_attribs[
'finished'], $a_attribs[
'pass'], $a_attribs[
'tstamp'])
254 $this->table = $a_name;
264 switch (strtolower($a_name)) {
267 $ilLog = $DIC[
'ilLog'];
268 $ilLog->write(
"active id mapping: " . print_r($this->active_id_mapping,
true));
270 case "tst_test_question":
272 $ilLog = $DIC[
'ilLog'];
273 $ilLog->write(
"question id mapping: " . print_r($this->question_id_mapping,
true));
297 if (isset($attribs[
'last_finished_pass'])) {
298 return (
int) $attribs[
'last_finished_pass'];
301 if ($attribs[
'tries'] > 0) {
302 return (
int) $attribs[
'tries'] - 1;
310 if (isset($attribs[
'last_started_pass'])) {
311 return $attribs[
'last_started_pass'];
314 if ($attribs[
'tries'] > 0) {
315 return (
int) $attribs[
'tries'] - 1;
bool $user_criteria_checked
handlerParseCharacterData($a_xml_parser, $a_data)
handler for character data
handlerEndTag($a_xml_parser, $a_name)
handler for end of element
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
handlerBeginTag($a_xml_parser, $a_name, $a_attribs)
handler for begin of element parser
fetchLastFinishedPass($attribs)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
fetchLastStartedPass($attribs)
__construct(Container $dic, ilPlugin $plugin)
fetchAttribute($attributes, $name)
__construct(?string $a_xml_file, &$test_object)
Constructor.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setQuestionIdMapping(array $question_id_mapping)
setSrcPoolDefIdMapping(array $src_pool_def_id_mapping)
setHandlers($a_xml_parser)
set event handler should be overwritten by inherited class private