ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.assOrderingQuestionImport.php
Go to the documentation of this file.
1 <?php
28 {
32  public $object;
33 
34  public function fromXML(
35  string $importdirectory,
36  int $user_id,
37  ilQTIItem $item,
38  int $questionpool_id,
39  ?int $tst_id,
40  ?ilObject &$tst_object,
41  int &$question_counter,
42  array $import_mapping
43  ): array {
44  // empty session variable for imported xhtml mobs
45  ilSession::clear('import_mob_xhtml');
46 
47  $presentation = $item->getPresentation();
48  $shuffle = 0;
49  $foundimage = false;
50  $answers = [];
52 
53  foreach ($presentation->order as $entry) {
54  switch ($entry['type']) {
55  case 'response':
56  $response = $presentation->response[$entry["index"]];
57  $type = $response->getIdent();
58  if ($response->getIdent() === 'OQP') {
60  } elseif ($response->getIdent() === 'OQNP') {
62  } elseif ($response->getIdent() === 'OQNT') {
64  } elseif ($response->getIdent() === 'OQT') {
66  }
67 
68  $rendertype = $response->getRenderType();
69  switch (get_class($rendertype)) {
70  case ilQTIRenderChoice::class:
71  $shuffle = $rendertype->getShuffle();
72  $answerorder = 0;
73  foreach ($rendertype->response_labels as $response_label) {
74  $ident = $response_label->getIdent();
75  $answertext = '';
76  $answerimage = [];
77  $answerdepth = 0;
78  foreach ($response_label->material as $mat) {
79  for ($m = 0; $m < $mat->getMaterialCount(); $m++) {
80  $foundmat = $mat->getMaterial($m);
81 
82  if ($foundmat['material']->getLabel() === 'answerdepth') {
83  $answerdepth = $foundmat['material']->getContent();
84  }
85  if ($foundmat['type'] === 'mattext'
86  && $foundmat['material']->getLabel() !== 'answerdepth') {
87  $answertext .= $foundmat['material']->getContent();
88  }
89  if ($foundmat['type'] === 'matimage'
90  && $foundmat['material']->getLabel() !== 'answerdepth') {
91  $foundimage = true;
92  $answerimage = [
93  'imagetype' => $foundmat['material']->getImageType(),
94  'label' => $foundmat['material']->getLabel(),
95  'content' => $foundmat['material']->getContent()
96  ];
97  }
98  }
99  }
100  $answers[$answerorder] = [
101  'ident' => $ident,
102  'answertext' => $answertext,
103  'answerimage' => $answerimage,
104  'points' => 0,
105  'answerorder' => $answerorder,
106  'answerdepth' => $answerdepth,
107  'correctness' => '',
108  'action' => ''
109  ];
110  $answerorder++;
111  }
112  break;
113  }
114  break;
115  }
116  }
117 
118  $feedbacksgeneric = [];
119  foreach ($item->resprocessing as $resprocessing) {
120  foreach ($resprocessing->respcondition as $respcondition) {
121  $ident = '';
122  $correctness = 1;
123  $conditionvar = $respcondition->getConditionvar();
124  foreach ($conditionvar->order as $order) {
125  switch ($order['field']) {
126  case "arr_not":
127  $correctness = 0;
128  break;
129  case "varequal":
130  $ident = $conditionvar->varequal[$order['index']]->getContent();
131  $orderindex = $conditionvar->varequal[$order['index']]->getIndex();
132  break;
133  }
134  }
135  foreach ($respcondition->setvar as $setvar) {
136  if ($ident !== '') {
137  $answers[$ident]['solutionorder'] = $orderindex;
138  $answers[$ident]['action'] = $setvar->getAction();
139  $answers[$ident]['points'] = $setvar->getContent();
140  }
141  }
142  if (!is_array($respcondition->displayfeedback)) {
143  continue;
144  }
145 
146  foreach ($respcondition->displayfeedback as $feedbackpointer) {
147  if ($feedbackpointer->getLinkrefid() === '') {
148  continue;
149  }
150 
151  foreach ($item->itemfeedback as $ifb) {
152  if ($ifb->getIdent() === 'response_allcorrect') {
153  // found a feedback for the identifier
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  $itemfeedbacks = $this->getFeedbackAnswerSpecific($item, 'link_');
182 
183  $this->addGeneralMetadata($item);
184  $this->object->setTitle($item->getTitle());
185  $this->object->setNrOfTries((int) $item->getMaxattempts());
186  $this->object->setComment($item->getComment());
187  $this->object->setAuthor($item->getAuthor());
188  $this->object->setOwner($user_id);
189  $this->object->setQuestion($this->QTIMaterialToString($item->getQuestiontext()));
190  $this->object->setOrderingType($type);
191  $this->object->setObjId($questionpool_id);
192  $this->object->setThumbSize(
193  $this->deduceThumbSizeFromImportValue((int) $item->getMetadataEntry('thumb_geometry'))
194  );
195  $this->object->setElementHeight($item->getMetadataEntry('element_height')
196  ? (int) $item->getMetadataEntry('element_height')
197  : null);
198  $this->object->setShuffle($shuffle);
199  $this->object->setPoints(0);
200  $this->object->saveQuestionDataToDb();
201  $points = 0;
202  $solanswers = [];
203 
204  foreach ($answers as $answer) {
205  if (isset($answer['solutionorder'])) {
206  $solanswers[$answer['solutionorder']] = $answer;
207  }
208  }
209  ksort($solanswers);
210  $position = 0;
211  $element_list = $this->object->getOrderingElementList();
212  foreach ($solanswers as $answer) {
213  $points += $answer['points'];
214 
215  $element = new ilAssOrderingElement();
216 
217  if ($element->isExportIdent($answer['ident'])) {
218  $element->setExportIdent($answer['ident']);
219  } else {
220  $element = $element->withPosition($position++);
221  if (isset($answer['answerdepth'])) {
222  $element = $element->withIndentation((int) $answer['answerdepth']);
223  }
224  }
225 
226  if ($this->object->isImageOrderingType()) {
227  $filename = $this->handleUploadedfile($answer);
228  if ($filename !== null) {
229  $element = $element->withContent($filename);
230  }
231  } else {
232  $element = $element->withContent($answer['answertext']);
233  }
234 
235  $element_list->addElement($element);
236  }
237  $this->object->setOrderingElementList($element_list);
238  $points = ($item->getMetadataEntry('points') > 0) ? $item->getMetadataEntry('points') : $points;
239  $this->object->setPoints($points);
240  // additional content editing mode information
241  $this->object->setAdditionalContentEditingMode(
243  );
244  $this->object->saveToDb();
245  $this->importSuggestedSolutions($this->object->getId(), $item->suggested_solutions);
246  foreach ($feedbacksgeneric as $correctness => $material) {
247  $m = $this->QTIMaterialToString($material);
248  $feedbacksgeneric[$correctness] = $m;
249  }
250  $questiontext = $this->object->getQuestion();
251 
252  // handle the import of media objects in XHTML code
253  if (is_array(ilSession::get('import_mob_xhtml'))) {
254  foreach (ilSession::get('import_mob_xhtml') as $mob) {
255  $importfile = $importdirectory . DIRECTORY_SEPARATOR . $mob['uri'];
256 
257  global $DIC; /* @var ILIAS\DI\Container $DIC */
258  $DIC['ilLog']->write(__METHOD__ . ': import mob from dir: ' . $importfile);
259 
260  $media_object = ilObjMediaObject::_saveTempFileAsMediaObject(basename($importfile), $importfile, false);
261  ilObjMediaObject::_saveUsage($media_object->getId(), "qpl:html", $this->object->getId());
262  $questiontext = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $questiontext);
263  foreach ($this->object->getOrderingElementList() as $element) {
264  $element->setContent(str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $element->getContent()));
265  }
266  foreach ($feedbacksgeneric as $correctness => $material) {
267  $feedbacksgeneric[$correctness] = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $material);
268  }
269  foreach ($itemfeedbacks as $ident => $material) {
270  $itemfeedbacks[$ident] = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $material);
271  }
272  }
273  }
274  $this->object->setQuestion(ilRTE::_replaceMediaObjectImageSrc($questiontext, 1));
275  foreach ($this->object->getOrderingElementList() as $element) {
276  $element->setContent(ilRTE::_replaceMediaObjectImageSrc($element->getContent(), 1));
277  }
278  foreach ($feedbacksgeneric as $correctness => $material) {
279  $this->object->feedbackOBJ->importGenericFeedback(
280  $this->object->getId(),
281  $correctness,
283  );
284  }
285  foreach ($itemfeedbacks as $ident => $material) {
286  $index = $this->fetchIndexFromFeedbackIdent($ident, 'link_');
287 
288  $this->object->feedbackOBJ->importSpecificAnswerFeedback(
289  $this->object->getId(),
290  0,
291  $index,
293  );
294  }
295  $this->object->saveToDb();
296  if (isset($tst_id) && $tst_id !== $questionpool_id) {
297  $qplQid = $this->object->getId();
298  $tstQid = $this->object->duplicate(true, '', '', -1, $tst_id);
299  $tst_object->questions[$question_counter++] = $tstQid;
300  $import_mapping[$item->getIdent()] = ["pool" => $qplQid, "test" => $tstQid];
301  return $import_mapping;
302  }
303 
304  if ($tst_id > 0) {
305  $tst_object->questions[$question_counter++] = $this->object->getId();
306  $import_mapping[$item->getIdent()] = ["pool" => 0, "test" => $this->object->getId()];
307  return $import_mapping;
308  }
309 
310  $import_mapping[$item->getIdent()] = ["pool" => $this->object->getId(), "test" => 0];
311  return $import_mapping;
312  }
313 
314  protected function handleUploadedFile(array $answer): ?string
315  {
316  $image = base64_decode($answer["answerimage"]["content"] ?? '');
317  $image_file_name = $answer['answerimage']['label'] ?? '';
318  $tmp_path = ilFileUtils::ilTempnam();
319 
320  $file_handle = fopen($tmp_path, "wb");
321  if ($file_handle === false) {
322  return null;
323  }
324  fwrite($file_handle, $image);
325  fclose($file_handle);
326 
327  $filename_path_parts = explode(".", $image_file_name);
328  $suffix = strtolower(array_pop($filename_path_parts));
329  if (!in_array($suffix, assOrderingQuestion::VALID_UPLOAD_SUFFIXES)) {
330  return null;
331  }
332 
333  $this->ensureImagePathExists();
334  $target_filename = $this->object->buildHashedImageFilename($image_file_name, true);
335  $target_filepath = $this->object->getImagePath() . $target_filename;
336  if (rename($tmp_path, $target_filepath)) {
337  $thumb_path = $this->object->getImagePath() . $this->object->getThumbPrefix() . $target_filename;
338  ilShellUtil::convertImage($target_filepath, $thumb_path, "JPEG", $this->object->getThumbSize());
339  return $target_filename;
340  }
341 
342  return null;
343  }
344 
345  protected function ensureImagePathExists()
346  {
347  if (!file_exists($this->object->getImagePath())) {
348  ilFileUtils::makeDirParents($this->object->getImagePath());
349  }
350  }
351 }
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)
getFeedbackAnswerSpecific(ilQTIItem $item, $prefix='response_')
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.
fromXML(string $importdirectory, int $user_id, ilQTIItem $item, int $questionpool_id, ?int $tst_id, ?ilObject &$tst_object, int &$question_counter, array $import_mapping)
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
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: shib_login.php:22
static convertImage(string $a_from, string $a_to, string $a_target_format="", string $a_geometry="", string $a_background_color="")
$filename
Definition: buildRTE.php:78
importSuggestedSolutions(int $question_id, array $solution_from_import)
static _saveTempFileAsMediaObject(string $name, string $tmp_name, bool $upload=true)
static ilTempnam(?string $a_temp_path=null)
Returns a unique and non existing Path for e temporary file or directory.
Class for question imports.
static clear(string $a_var)
fetchIndexFromFeedbackIdent($feedbackIdent, $prefix='response_')