ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.assKprimChoiceImport.php
Go to the documentation of this file.
1 <?php
25 {
29  public $object;
30 
31  public function fromXML(
32  string $importdirectory,
33  int $user_id,
34  ilQTIItem $item,
35  int $questionpool_id,
36  ?int $tst_id,
37  ?ilObject &$tst_object,
38  int &$question_counter,
39  array $import_mapping
40  ): array {
41  ilSession::clear('import_mob_xhtml');
42 
43  $shuffle = 0;
44  $answers = [];
45 
46  $presentation = $item->getPresentation();
47  foreach ($presentation->order as $entry) {
48  if ($entry['type'] !== 'response') {
49  continue;
50  }
51 
52  $response = $presentation->response[$entry['index']];
53  $rendertype = $response->getRenderType();
54  if (strtolower(get_class($response->getRenderType())) !== 'ilqtirenderchoice') {
55  continue;
56  }
57 
58  $shuffle = $rendertype->getShuffle();
59  $foundimage = false;
60  foreach ($rendertype->response_labels as $response_label) {
61  $ident = $response_label->getIdent();
62  $answertext = '';
63  $answerimage = [];
64  foreach ($response_label->material as $mat) {
65  $embedded = false;
66  for ($m = 0; $m < $mat->getMaterialCount(); $m++) {
67  $foundmat = $mat->getMaterial($m);
68  if ($foundmat['type'] === 'matimage'
69  && $foundmat['material']->getEmbedded() !== '') {
70  $embedded = true;
71  }
72  }
73  if (!$embedded) {
74  $answertext = $this->QTIMaterialToString($mat);
75  continue;
76  }
77 
78  for ($m = 0; $m < $mat->getMaterialCount(); $m++) {
79  $foundmat = $mat->getMaterial($m);
80  if ($foundmat['type'] === 'mattext') {
81  $answertext .= $foundmat['material']->getContent();
82  }
83  if ($foundmat['type'] === 'matimage') {
84  $foundimage = true;
85  $answerimage = [
86  'imagetype' => $foundmat['material']->getImageType(),
87  'label' => $foundmat['material']->getLabel(),
88  'content' => $foundmat['material']->getContent()
89  ];
90  }
91  }
92  }
93 
94  $answers[$ident] = [
95  'answertext' => $answertext,
96  'imagefile' => $answerimage,
97  'answerorder' => $ident
98  ];
99  }
100  }
101 
102  $feedbacks = [];
103  $feedbacksgeneric = [];
104 
105  foreach ($item->resprocessing as $resprocessing) {
106  foreach ($resprocessing->outcomes->decvar as $decvar) {
107  if ($decvar->getVarname() == 'SCORE') {
108  $this->object->setPoints($decvar->getMaxvalue());
109  $this->object->setScorePartialSolutionEnabled(false);
110  if ($decvar->getMinvalue() > 0) {
111  $this->object->setScorePartialSolutionEnabled(true);
112  }
113  }
114  }
115 
116  foreach ($resprocessing->respcondition as $respcondition) {
117  if ($respcondition->setvar === []) {
118  foreach ($respcondition->getConditionvar()->varequal as $varequal) {
119  $ident = $varequal->respident;
120  $answers[$ident]['correctness'] = (bool) $varequal->getContent();
121  break;
122  }
123 
124  foreach ($respcondition->displayfeedback as $feedbackpointer) {
125  if ($feedbackpointer->getLinkrefid() === '') {
126  continue;
127  }
128  foreach ($item->itemfeedback as $ifb) {
129  if ($ifb->getIdent() !== $feedbackpointer->getLinkrefid()) {
130  continue;
131  }
132 
133  foreach ($ifb->material as $material) {
134  $feedbacks[$ident] = $material;
135  }
136  foreach ($ifb->flow_mat as $fmat) {
137  foreach ($fmat->material as $material) {
138  $feedbacks[$ident] = $material;
139  }
140  }
141  }
142  }
143 
144  continue;
145  }
146 
147  foreach ($respcondition->displayfeedback as $feedbackpointer) {
148  if ($feedbackpointer->getLinkrefid() === '') {
149  continue;
150  }
151 
152  foreach ($item->itemfeedback as $ifb) {
153  if ($ifb->getIdent() === 'response_allcorrect') {
154  foreach ($ifb->material as $material) {
155  $feedbacksgeneric[1] = $material;
156  }
157  foreach ($ifb->flow_mat as $fmat) {
158  foreach ($fmat->material as $material) {
159  $feedbacksgeneric[1] = $material;
160  }
161  }
162  continue;
163  }
164 
165  if ($ifb->getIdent() === 'response_onenotcorrect') {
166  // found a feedback for the identifier
167  foreach ($ifb->material as $material) {
168  $feedbacksgeneric[0] = $material;
169  }
170  foreach ($ifb->flow_mat as $fmat) {
171  foreach ($fmat->material as $material) {
172  $feedbacksgeneric[0] = $material;
173  }
174  }
175  }
176  }
177  }
178  }
179  }
180 
181  $this->addGeneralMetadata($item);
182  $this->object->setTitle($item->getTitle());
183  $this->object->setNrOfTries((int) $item->getMaxattempts());
184  $this->object->setComment($item->getComment());
185  $this->object->setAuthor($item->getAuthor());
186  $this->object->setOwner($user_id);
187  $this->object->setQuestion($this->QTIMaterialToString($item->getQuestiontext()));
188  $this->object->setObjId($questionpool_id);
189  $this->object->setShuffleAnswersEnabled($shuffle);
190  $this->object->setAnswerType($item->getMetadataEntry('answer_type'));
191  $this->object->setOptionLabel($item->getMetadataEntry('option_label_setting'));
192  $this->object->setCustomTrueOptionLabel($item->getMetadataEntry('custom_true_option_label'));
193  $this->object->setCustomFalseOptionLabel($item->getMetadataEntry('custom_false_option_label'));
194  $this->object->setThumbSize(
195  $this->deduceThumbSizeFromImportValue((int) $item->getMetadataEntry('thumb_size'))
196  );
197 
198  $this->object->saveToDb();
199 
200  $answer_objects = [];
201  foreach ($answers as $answer_data) {
202  $answer = new ilAssKprimChoiceAnswer();
203  $answer->setImageFsDir($this->object->getImagePath());
204  $answer->setImageWebDir($this->object->getImagePathWeb());
205  $answer->setPosition($answer_data['answerorder']);
206  $answer->setAnswertext($answer_data['answertext']);
207  $answer->setCorrectness($answer_data['correctness']);
208  if (isset($answer_data['imagefile']['label'])) {
209  $answer->setImageFile($answer_data['imagefile']['label']);
210  }
211  $answer_objects[] = $answer;
212  }
213  $this->object->setAnswers($answer_objects);
214  // additional content editing mode information
215  $this->object->setAdditionalContentEditingMode(
217  );
218 
219  $this->object->saveToDb();
220 
221  foreach ($answers as $answer) {
222  if (!is_array($answer['imagefile']) || $answer['imagefile'] === []) {
223  continue;
224  }
225  $image = base64_decode($answer['imagefile']['content']);
226  $imagepath = $this->object->getImagePath();
227  if (!file_exists($imagepath)) {
228  ilFileUtils::makeDirParents($imagepath);
229  }
230  $imagepath .= $answer['imagefile']['label'];
231  if ($fh = fopen($imagepath, 'wb')) {
232  $imagefile = fwrite($fh, $image);
233  fclose($fh);
234  $this->object->generateThumbForFile(
235  $answer['imagefile']['label'],
236  $this->object->getImagePath(),
237  $this->object->getThumbSize()
238  );
239  }
240  }
241 
242  $feedback_setting = $item->getMetadataEntry('feedback_setting');
243  if (!is_null($feedback_setting)) {
244  $this->object->feedbackOBJ->saveSpecificFeedbackSetting($this->object->getId(), $feedback_setting);
245  $this->object->setSpecificFeedbackSetting($feedback_setting);
246  }
247 
248  // handle the import of media objects in XHTML code
249  foreach ($feedbacks as $ident => $material) {
250  $m = $this->QTIMaterialToString($material);
251  $feedbacks[$ident] = $m;
252  }
253  foreach ($feedbacksgeneric as $correctness => $material) {
254  $m = $this->QTIMaterialToString($material);
255  $feedbacksgeneric[$correctness] = $m;
256  }
257  $questiontext = $this->object->getQuestion();
258  $answers = $this->object->getAnswers();
259  if (is_array(ilSession::get("import_mob_xhtml"))) {
260  foreach (ilSession::get("import_mob_xhtml") as $mob) {
261  $importfile = $importdirectory . DIRECTORY_SEPARATOR . $mob["uri"];
262 
263  global $DIC; /* @var ILIAS\DI\Container $DIC */
264  $DIC['ilLog']->write(__METHOD__ . ': import mob from dir: ' . $importfile);
265 
266  $media_object = ilObjMediaObject::_saveTempFileAsMediaObject(basename($importfile), $importfile, false);
267  ilObjMediaObject::_saveUsage($media_object->getId(), "qpl:html", $this->object->getId());
268  $questiontext = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $questiontext);
269  foreach ($answers as $answer_obj) {
270  if ($answer_obj->getAnswertext() === null) {
271  continue;
272  }
273  $answer_obj->setAnswertext(str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $answer_obj->getAnswertext()));
274  }
275  foreach ($feedbacks as $ident => $material) {
276  $feedbacks[$ident] = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $material);
277  }
278  foreach ($feedbacksgeneric as $correctness => $material) {
279  $feedbacksgeneric[$correctness] = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $material);
280  }
281  }
282  }
283  $this->object->setQuestion(ilRTE::_replaceMediaObjectImageSrc($questiontext, 1));
284  foreach ($answers as $answer_obj) {
285  if ($answer_obj->getAnswertext() === null) {
286  continue;
287  }
288  $answer_obj->setAnswertext(ilRTE::_replaceMediaObjectImageSrc($answer_obj->getAnswertext(), 1));
289  }
290  foreach ($feedbacks as $ident => $material) {
291  $this->object->feedbackOBJ->importSpecificAnswerFeedback(
292  $this->object->getId(),
293  0,
294  $ident,
296  );
297  }
298  foreach ($feedbacksgeneric as $correctness => $material) {
299  $this->object->feedbackOBJ->importGenericFeedback(
300  $this->object->getId(),
301  $correctness,
303  );
304  }
305  $this->object->saveToDb();
306  $this->importSuggestedSolutions($this->object->getId(), $item->suggested_solutions);
307  if ($tst_id > 0) {
308  $q_1_id = $this->object->getId();
309  $question_id = $this->object->duplicate(true, "", "", -1, $tst_id);
310  $tst_object->questions[$question_counter++] = $question_id;
311  $import_mapping[$item->getIdent()] = ["pool" => $q_1_id, "test" => $question_id];
312  } else {
313  $import_mapping[$item->getIdent()] = ["pool" => $this->object->getId(), "test" => 0];
314  }
315  return $import_mapping;
316  }
317 }
static _replaceMediaObjectImageSrc(string $a_text, int $a_direction=0, string $nic='')
Replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
static get(string $a_var)
deduceThumbSizeFromImportValue(?int $size)
addGeneralMetadata(ilQTIItem $item)
const IL_INST_ID
Definition: constants.php:40
QTIMaterialToString(ilQTIMaterial $a_material)
Reads an QTI material tag and creates a text or XHTML string.
getMetadataEntry(string $a_label)
fetchAdditionalContentEditingModeInformation($qtiItem)
fetches the "additional content editing mode" information from qti item and falls back to ADDITIONAL_...
static _saveUsage(int $a_mob_id, string $a_type, int $a_id, int $a_usage_hist_nr=0, string $a_lang="-")
Save usage of mob within another container (e.g.
$response
Definition: xapitoken.php:93
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
importSuggestedSolutions(int $question_id, array $solution_from_import)
static _saveTempFileAsMediaObject(string $name, string $tmp_name, bool $upload=true)
Class for question imports.
static clear(string $a_var)
fromXML(string $importdirectory, int $user_id, ilQTIItem $item, int $questionpool_id, ?int $tst_id, ?ilObject &$tst_object, int &$question_counter, array $import_mapping)