26 protected \ILIAS\SurveyQuestionPool\Export\ImportSessionRepository
$session_repo;
82 ?
string $a_xml_file =
'',
83 bool $spl_exists =
false,
89 $this->activequestion =
null;
90 $this->spl_id = $a_spl_id;
91 $this->has_error =
false;
92 $this->characterbuffer =
"";
93 $this->survey_status =
false;
94 $this->activetag =
"";
97 $this->path = array();
98 $this->metadata = array();
99 $this->responses = array();
100 $this->variables = array();
101 $this->response_id =
"";
102 $this->matrix = array();
103 $this->is_matrix =
false;
104 $this->adjectives = array();
106 $this->survey =
null;
107 $this->in_survey =
false;
108 $this->anonymisation = 0;
109 $this->surveyaccess =
"restricted";
110 $this->questions = array();
111 $this->original_question_id =
"";
112 $this->constraints = array();
113 $this->textblock =
"";
114 $this->textblocks = array();
115 $this->in_questionblock =
false;
116 $this->questionblocks = array();
117 $this->questionblock = array();
118 $this->showQuestiontext = 1;
119 $this->showBlocktitle = 0;
120 $this->compressView = 0;
121 $this->questionblocktitle =
"";
122 $this->mapping = $a_mapping;
123 $this->session_repo = $DIC->surveyQuestionPool()->internal()
129 $this->survey = $a_svy;
142 public function parse($a_xml_parser, $a_fp =
null): void
147 while (
$data = fread($a_fp, 4096)) {
148 $parseOk = xml_parse($a_xml_parser,
$data, feof($a_fp));
157 && (xml_get_error_code($a_xml_parser) != XML_ERROR_NONE)) {
158 $this->error_code = xml_get_error_code($a_xml_parser);
159 $this->error_line = xml_get_current_line_number($a_xml_parser);
160 $this->error_col = xml_get_current_column_number($a_xml_parser);
161 $this->error_msg = xml_error_string($this->error_code);
162 $this->has_error =
true;
168 if ($this->depth > 0) {
169 return $this->path[$this->depth - 1];
178 public function handlerBeginTag($a_xml_parser,
string $a_name, array $a_attribs): void
183 $this->characterbuffer =
"";
184 $this->activetag = $a_name;
186 $this->attributes += count($a_attribs);
188 case "questionblock":
189 $this->in_questionblock =
true;
190 $this->questionblock = array();
191 $this->questionblocktitle =
"";
192 $this->showQuestiontext = 1;
193 $this->showBlocktitle = 0;
194 $this->compressView = 0;
195 foreach ($a_attribs as
$attrib => $value) {
197 case "showQuestiontext":
198 $this->showQuestiontext = (
int) $value;
200 case "showBlocktitle":
201 $this->showBlocktitle = (
int) $value;
204 $this->compressView = (
int) $value;
209 case "surveyquestions":
210 foreach ($a_attribs as
$attrib => $value) {
213 if ($this->spl_id > 0) {
215 $spl->setOfflineStatus(!$value);
221 $spl->setTitle($value);
228 $this->in_survey =
true;
229 foreach ($a_attribs as
$attrib => $value) {
232 if (is_object($this->survey)) {
233 $this->survey->setTitle($value);
234 $this->survey->update(
true);
240 case "anonymisation":
241 foreach ($a_attribs as
$attrib => $value) {
244 $this->anonymisation = $value;
250 foreach ($a_attribs as
$attrib => $value) {
253 $this->surveyaccess = $value;
259 $this->constraints[] = array(
260 "sourceref" => $a_attribs[
"sourceref"],
261 "destref" => $a_attribs[
"destref"],
262 "relation" => $a_attribs[
"relation"],
263 "value" => $a_attribs[
"value"],
266 "conjunction" => (
int) ($a_attribs[
"conjuction"] ?? 0)
271 $type = $a_attribs[
"type"];
274 case 'SurveyNominalQuestion':
275 $type =
'SurveyMultipleChoiceQuestion';
276 foreach ($a_attribs as $key => $value) {
280 $type =
'SurveySingleChoiceQuestion';
282 $type =
'SurveyMultipleChoiceQuestion';
288 case 'SurveyOrdinalQuestion':
289 $type =
'SurveySingleChoiceQuestion';
292 if (strlen($type ??
"")) {
293 $this->activequestion =
new $type();
296 if ($this->spl_id < 0) {
297 $q_obj_id = $this->survey->getId();
299 $this->activequestion->setObjId($q_obj_id);
301 $this->activequestion =
null;
303 $this->original_question_id = $a_attribs[
"id"];
304 if ($this->in_questionblock) {
307 if (is_object($this->activequestion)) {
308 foreach ($a_attribs as $key => $value) {
311 $this->activequestion->setTitle($value);
314 $this->activequestion->setSubtype($value);
317 $this->activequestion->setObligatory($value);
327 $this->material = [];
330 $this->material[] = array(
"text" =>
"",
"image" =>
"",
"label" => $a_attribs[
"label"] ??
"");
334 if (array_key_exists(
"label", $a_attribs)) {
335 if (preg_match(
"/(il_([0-9]+)_mob_([0-9]+))/", $a_attribs[
"label"] ??
"", $matches)) {
337 $this->session_repo->addMob(
338 $a_attribs[
"label"] ??
"",
347 $this->metadata = array();
349 case "metadatafield":
350 $this->metadata[] = array(
"label" =>
"",
"entry" =>
"");
353 $this->is_matrix =
true;
354 $this->matrix = array();
357 $this->material = [];
358 $this->matrix[] =
"";
359 $this->matrixrowattribs = array(
"id" => $a_attribs[
"id"],
"label" => $a_attribs[
"label"] ??
"",
"other" => $a_attribs[
"other"] ??
"");
362 $this->material = [];
363 $this->responses = array();
366 $this->variables = array();
368 case "response_single":
369 $this->material = [];
370 $this->responses[$a_attribs[
"id"]] = array(
"type" =>
"single",
371 "id" => $a_attribs[
"id"],
372 "label" => $a_attribs[
"label"] ??
"",
373 "other" => $a_attribs[
"other"] ??
"",
374 "neutral" => $a_attribs[
"neutral"] ??
"",
375 "scale" => $a_attribs[
"scale"] ??
"");
376 $this->response_id = $a_attribs[
"id"];
378 case "response_multiple":
379 $this->material = [];
380 $this->responses[$a_attribs[
"id"]] = array(
"type" =>
"multiple",
"id" => $a_attribs[
"id"],
"label" => $a_attribs[
"label"] ??
"",
"other" => $a_attribs[
"other"] ??
"",
"neutral" => $a_attribs[
"neutral"] ??
"",
"scale" => $a_attribs[
"scale"] ??
"");
381 $this->response_id = $a_attribs[
"id"];
383 case "response_text":
384 $this->material = [];
385 $this->responses[$a_attribs[
"id"]] = array(
"type" =>
"text",
"id" => $a_attribs[
"id"],
"columns" => $a_attribs[
"columns"],
"maxlength" => $a_attribs[
"maxlength"] ??
null,
"rows" => $a_attribs[
"rows"],
"label" => $a_attribs[
"label"] ??
"");
386 $this->response_id = $a_attribs[
"id"];
389 $this->material = [];
390 $this->responses[$a_attribs[
"id"]] = array(
"type" =>
"num",
"id" => $a_attribs[
"id"],
"format" => $a_attribs[
"format"],
"max" => $a_attribs[
"max"] ?? null,
"min" => $a_attribs[
"min"] ?? null,
"size" => $a_attribs[
"size"] ?? null,
"label" => $a_attribs[
"label"] ??
"");
391 $this->response_id = $a_attribs[
"id"];
393 case "response_time":
394 $this->responses[$a_attribs[
"id"]] = array(
"type" =>
"time",
"id" => $a_attribs[
"id"],
"format" => $a_attribs[
"format"],
"max" => $a_attribs[
"max"],
"min" => $a_attribs[
"min"],
"label" => $a_attribs[
"label"] ??
"");
395 $this->response_id = $a_attribs[
"id"];
397 case "bipolar_adjectives":
398 $this->adjectives = array();
401 $this->adjectives[] = array(
"label" => $a_attribs[
"label"] ??
"",
"text" =>
"");
412 $this->text_size += strlen($a_data ??
"");
413 $this->characterbuffer .= $a_data;
421 return $purifier->purify((
string) $this->characterbuffer);
423 return $this->
trimAndStrip((
string) $this->characterbuffer);
433 if (is_object($this->survey)) {
434 $this->survey->setOfflineStatus(!$this->survey_status);
435 $this->survey->saveToDb();
438 if (count($this->questionblocks)) {
439 foreach ($this->questionblocks as
$data) {
440 $questionblock = $data[
"questions"];
441 $title = $data[
"title"];
443 foreach ($questionblock as $question_id) {
444 $qblock[] = $this->questions[$question_id];
446 $this->survey->createQuestionblock(
448 $this->showQuestiontext,
449 $this->showBlocktitle,
457 if (count($this->constraints)) {
458 $relations = $this->survey->getAllRelations(
true);
459 foreach ($this->constraints as $constraint) {
460 $constraint_id = $this->survey->addConstraint($this->questions[$constraint[
"destref"]], $relations[$constraint[
"relation"]][
"id"], $constraint[
"value"], $constraint[
"conjunction"]);
461 $this->survey->addConstraintToQuestion($this->questions[$constraint[
"sourceref"]], $constraint_id);
466 if (count($this->textblocks)) {
467 foreach ($this->textblocks as $original_id => $textblock) {
468 $this->survey->saveHeading($textblock, $this->questions[$original_id]);
474 $this->in_survey =
false;
475 if (is_object($this->survey)) {
476 if (strcmp($this->surveyaccess,
"free") == 0) {
477 $this->survey->setAnonymize(2);
479 if ($this->anonymisation == 0) {
480 $this->survey->setAnonymize(0);
482 $this->survey->setAnonymize(1);
488 if (preg_match(
"/(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2}).*/", $this->
getCharacterBuffer(), $matches)) {
489 if (is_object($this->survey)) {
490 $this->survey->setStartDate(sprintf(
"%04d%02d%02d%02d%02d%02d", $matches[1], $matches[2], $matches[3], $matches[4], $matches[5], $matches[6]));
495 if (preg_match(
"/(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2}).*/", $this->
getCharacterBuffer(), $matches)) {
496 if (is_object($this->survey)) {
497 $this->survey->setEndDate(sprintf(
"%04d%02d%02d%02d%02d%02d", $matches[1], $matches[2], $matches[3], $matches[4], $matches[5], $matches[6]));
502 if ($this->in_survey) {
503 if (is_object($this->survey)) {
505 $this->survey->update(
true);
508 if (is_object($this->activequestion)) {
514 if (is_object($this->activequestion)) {
515 if (strlen($this->textblock ??
"")) {
518 $this->activequestion->saveToDb();
520 if (is_object($this->survey) &&
522 $question_id = $this->activequestion->duplicate(
true,
"",
"", 0, $this->survey->getId());
524 $question_id = $this->activequestion->getId();
526 if (is_object($this->survey)) {
527 $this->survey->addQuestion($question_id);
530 if ($this->mapping) {
531 $this->mapping->addMapping(
"components/ILIAS/Survey",
"svy_q", $this->original_question_id, $question_id);
533 $this->activequestion =
null;
535 $this->textblock =
"";
538 if ($this->in_survey) {
539 if (is_object($this->survey)) {
543 if (is_object($this->activequestion)) {
549 $this->material[count($this->material) - 1][
"text"] = $this->
getCharacterBuffer(
true);
555 if ($this->in_survey) {
556 if (strcmp($this->
getParent(),
"objectives") == 0) {
557 if (isset($this->material[0]) && strcmp($this->material[0][
"label"],
"introduction") == 0) {
558 if (is_object($this->survey)) {
559 $this->survey->setIntroduction($this->material[0][
"text"]);
562 if (isset($this->material[0]) && strcmp($this->material[0][
"label"],
"outro") == 0) {
563 if (is_object($this->survey)) {
564 $this->survey->setOutro($this->material[0][
"text"]);
567 $this->material = array();
570 if (strcmp($this->
getParent(),
"question") == 0) {
577 if (is_object($this->activequestion)) {
579 foreach ($this->material as $matarray) {
580 $questiontext .= $matarray[
"text"];
582 $this->activequestion->setQuestiontext($questiontext);
584 $this->material = array();
593 if (strcmp($this->
getParent(),
"question") == 0) {
594 if (is_object($this->activequestion)) {
595 $this->activequestion->importAdditionalMetadata($this->metadata);
598 if (strcmp($this->
getParent(),
"survey") == 0) {
599 foreach ($this->metadata as $key => $value) {
600 switch ($value[
"label"]) {
602 if (strlen($value[
"entry"] ??
"")) {
603 if (is_object($this->survey)) {
605 $md_sax_parser->setXMLContent($value[
"entry"]);
606 $md_sax_parser->setMDObject($tmp =
new ilMD($this->survey->getId(), 0,
"svy"));
607 $md_sax_parser->enableMDParsing(
true);
608 $md_sax_parser->startParsing();
609 $this->survey->MDUpdateListener(
"General");
613 case "display_question_titles":
614 if ($value[
"entry"] == 1) {
615 $this->survey->setShowQuestionTitles(
true);
617 $this->survey->setShowQuestionTitles(
false);
621 $this->survey_status = (bool) $value[
"entry"];
623 case "evaluation_access":
624 $this->survey->setEvaluationAccess($value[
"entry"]);
627 $this->survey->setPoolUsage($value[
"entry"]);
629 case "own_results_mail":
630 $this->survey->setMailOwnResults($value[
"entry"]);
632 case "confirmation_mail":
633 $this->survey->setMailConfirmation($value[
"entry"]);
635 case "anon_user_list":
636 $this->survey->setAnonymousUserList($value[
"entry"]);
639 $this->survey->setMode($value[
"entry"]);
641 case "mode_360_self_eval":
642 $this->survey->set360SelfEvaluation($value[
"entry"]);
644 case "mode_360_self_rate":
645 $this->survey->set360SelfRaters($value[
"entry"]);
647 case "mode_360_self_appr":
648 $this->survey->set360SelfAppraisee($value[
"entry"]);
650 case "mode_360_results":
651 $this->survey->set360Results($value[
"entry"]);
653 case "mode_self_eval_results":
654 $this->survey->setSelfEvaluationResults($value[
"entry"]);
656 case "mode_skill_service":
657 $this->survey->setSkillService($value[
"entry"]);
662 if (!$this->spl_exists) {
663 if (strcmp($this->
getParent(),
"surveyquestions") == 0) {
664 foreach ($this->metadata as $key => $value) {
665 if (strcmp($value[
"label"],
"SCORM") == 0) {
666 if (strlen($value[
"entry"] ??
"")) {
667 if ($this->spl_id > 0) {
669 $md_sax_parser->setXMLContent($value[
"entry"]);
670 $md_sax_parser->setMDObject($tmp =
new ilMD($this->spl_id, 0,
"spl"));
671 $md_sax_parser->enableMDParsing(
true);
672 $md_sax_parser->startParsing();
674 $spl->MDUpdateListener(
"General");
683 if (is_object($this->activequestion)) {
684 $this->activequestion->importResponses($this->responses);
686 $this->is_matrix =
false;
692 if (is_object($this->activequestion)) {
693 $this->activequestion->importVariables($this->variables);
696 case "response_single":
697 case "response_multiple":
698 case "response_text":
700 case "response_time":
704 $this->adjectives[count($this->adjectives) - 1][
"text"] = $this->
getCharacterBuffer();
706 case "bipolar_adjectives":
707 if (is_object($this->activequestion)) {
708 $this->activequestion->importAdjectives($this->adjectives);
713 foreach ($this->material as $material) {
714 $row .= $material[
"text"];
716 $this->matrix[count($this->matrix) - 1] = array(
'title' => $row,
'id' => $this->matrixrowattribs[
'id'],
'label' => $this->matrixrowattribs[
'label'],
'other' => $this->matrixrowattribs[
'other']);
719 if (is_object($this->activequestion)) {
720 $this->activequestion->importMatrix($this->matrix);
726 case "questionblocktitle":
729 case "questionblock":
730 $this->in_questionblock =
false;
731 $this->questionblocks[] = array(
"title" => $this->questionblocktitle,
732 "questions" => $this->questionblock
761 return "Error: " . $this->error_msg .
" at line:" . $this->error_line .
" column:" .
$this->error_col;
792 foreach ($attribs as $k => $v) {
793 $ret[$k] = ((string) $v !==
"<>")
handlerBeginTag($a_xml_parser, string $a_name, array $a_attribs)
trimAndStrip(string $input)
ILIAS SurveyQuestionPool Export ImportSessionRepository $session_repo
handlerEndTag($a_xml_parser, string $a_name)
parse($a_xml_parser, $a_fp=null)
Class ilObjSurveyQuestionPool.
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
SurveyQuestion $activequestion
string $original_question_id
__construct(int $a_spl_id, ?string $a_xml_file='', bool $spl_exists=false, ?ilImportMapping $a_mapping=null)
trimAndStripAttribs(array $attribs)
string $questionblocktitle
__construct(Container $dic, ilPlugin $plugin)
handlerCharacterData($a_xml_parser, string $a_data)
setHandlers($a_xml_parser)
getCharacterBuffer($use_purifier=false)
$attrib
Regular expression to match HTML/XML attribute pairs within a tag.
setSurveyObject(ilObjSurvey $a_svy)