ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
class.assTextQuestionImport.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once "./Modules/TestQuestionPool/classes/import/qti12/class.assQuestionImport.php";
5 
16 {
30  function fromXML(&$item, $questionpool_id, &$tst_id, &$tst_object, &$question_counter, &$import_mapping)
31  {
32  global $ilUser;
33 
34  // empty session variable for imported xhtml mobs
35  unset($_SESSION["import_mob_xhtml"]);
36  $presentation = $item->getPresentation();
37  $duration = $item->getDuration();
38  $now = getdate();
39  $maxchars = 0;
40  $maxpoints = 0;
41  $created = sprintf("%04d%02d%02d%02d%02d%02d", $now['year'], $now['mon'], $now['mday'], $now['hours'], $now['minutes'], $now['seconds']);
42  foreach ($presentation->order as $entry)
43  {
44  switch ($entry["type"])
45  {
46  case "response":
47  $response = $presentation->response[$entry["index"]];
48  $rendertype = $response->getRenderType();
49  switch (strtolower(get_class($rendertype)))
50  {
51  case "ilqtirenderfib":
52  $maxchars = $rendertype->getMaxchars();
53  break;
54  }
55  break;
56  }
57  }
58 
59  $feedbacksgeneric = array();
60  foreach ($item->resprocessing as $resprocessing)
61  {
62  $outcomes = $resprocessing->getOutcomes();
63  foreach ($outcomes->decvar as $decvar)
64  {
65  $maxpoints = $decvar->getMaxvalue();
66  }
67 
68  foreach ($resprocessing->respcondition as $respcondition)
69  {
70  foreach ($respcondition->displayfeedback as $feedbackpointer)
71  {
72  if (strlen($feedbackpointer->getLinkrefid()))
73  {
74  foreach ($item->itemfeedback as $ifb)
75  {
76  if (strcmp($ifb->getIdent(), "response_allcorrect") == 0)
77  {
78  // found a feedback for the identifier
79  if (count($ifb->material))
80  {
81  foreach ($ifb->material as $material)
82  {
83  $feedbacksgeneric[1] = $material;
84  }
85  }
86  if ((count($ifb->flow_mat) > 0))
87  {
88  foreach ($ifb->flow_mat as $fmat)
89  {
90  if (count($fmat->material))
91  {
92  foreach ($fmat->material as $material)
93  {
94  $feedbacksgeneric[1] = $material;
95  }
96  }
97  }
98  }
99  }
100  else if (strcmp($ifb->getIdent(), "response_onenotcorrect") == 0)
101  {
102  // found a feedback for the identifier
103  if (count($ifb->material))
104  {
105  foreach ($ifb->material as $material)
106  {
107  $feedbacksgeneric[0] = $material;
108  }
109  }
110  if ((count($ifb->flow_mat) > 0))
111  {
112  foreach ($ifb->flow_mat as $fmat)
113  {
114  if (count($fmat->material))
115  {
116  foreach ($fmat->material as $material)
117  {
118  $feedbacksgeneric[0] = $material;
119  }
120  }
121  }
122  }
123  }
124  }
125  }
126  }
127  }
128  }
129  $this->addGeneralMetadata($item);
130  $this->object->setTitle($item->getTitle());
131  $this->object->setNrOfTries($item->getMaxattempts());
132  $this->object->setComment($item->getComment());
133  $this->object->setAuthor($item->getAuthor());
134  $this->object->setOwner($ilUser->getId());
135  $this->object->setQuestion($this->object->QTIMaterialToString($item->getQuestiontext()));
136  $this->object->setObjId($questionpool_id);
137  $this->object->setEstimatedWorkingTime($duration["h"], $duration["m"], $duration["s"]);
138  $this->object->setPoints($maxpoints);
139  $this->object->setMaxNumOfChars($maxchars);
140  $textrating = $item->getMetadataEntry("textrating");
141  if (strlen($textrating))
142  {
143  $this->object->setTextRating($textrating);
144  }
145  $this->object->matchcondition = (strlen($item->getMetadataEntry('matchcondition'))) ? $item->getMetadataEntry('matchcondition') : 0;
146 
147  require_once './Modules/TestQuestionPool/classes/class.assAnswerMultipleResponseImage.php';
148  $no_keywords_found=true;
149 
150  $termscoring = $this->fetchTermScoring($item);
151  for ($i = 0; $i < count($termscoring); $i++ )
152  {
153  $this->object->addAnswer($termscoring[$i]->getAnswertext(), $termscoring[$i]->getPoints() );
154  $no_keywords_found=false;
155  }
156  if(count($termscoring))
157  {
158  $this->object->setKeywordRelation($item->getMetadataEntry('termrelation'));
159  }
160 
161  $keywords = $item->getMetadataEntry("keywords");
162  if (strlen($keywords))
163  {
164  #$this->object->setKeywords($keywords);
165  $answers = explode(' ', $keywords);
166  foreach ($answers as $answer)
167  {
168  $this->object->addAnswer($answer, 0);
169  }
170  $this->object->setKeywordRelation('one');
171  $no_keywords_found=false;
172  }
173  if($no_keywords_found)
174  {
175  $this->object->setKeywordRelation('non');
176  }
177 
178  // additional content editing mode information
179  $this->object->setAdditionalContentEditingMode(
181  );
182  $this->object->saveToDb();
183  if (count($item->suggested_solutions))
184  {
185  foreach ($item->suggested_solutions as $suggested_solution)
186  {
187  $this->object->setSuggestedSolution($suggested_solution["solution"]->getContent(), $suggested_solution["gap_index"], true);
188  }
189  $this->object->saveToDb();
190  }
191  foreach ($feedbacksgeneric as $correctness => $material)
192  {
193  $m = $this->object->QTIMaterialToString($material);
194  $feedbacksgeneric[$correctness] = $m;
195  }
196  // handle the import of media objects in XHTML code
197  $questiontext = $this->object->getQuestion();
198 
199  $feedbacks = $this->getFeedbackAnswerSpecific($item);
200 
201  if (is_array($_SESSION["import_mob_xhtml"]))
202  {
203  include_once "./Services/MediaObjects/classes/class.ilObjMediaObject.php";
204  include_once "./Services/RTE/classes/class.ilRTE.php";
205  foreach ($_SESSION["import_mob_xhtml"] as $mob)
206  {
207  if ($tst_id > 0)
208  {
209  $importfile = $this->getTstImportArchivDirectory() . '/' . $mob["uri"];
210  }
211  else
212  {
213  $importfile = $this->getQplImportArchivDirectory() . '/' . $mob["uri"];
214  }
215 
216  $GLOBALS['ilLog']->write(__METHOD__.': import mob from dir: '. $importfile);
217 
218  $media_object =& ilObjMediaObject::_saveTempFileAsMediaObject(basename($importfile), $importfile, FALSE);
219  ilObjMediaObject::_saveUsage($media_object->getId(), "qpl:html", $this->object->getId());
220  $questiontext = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $questiontext);
221  foreach ($feedbacks as $ident => $material)
222  {
223  $feedbacks[$ident] = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $material);
224  }
225  foreach ($feedbacksgeneric as $correctness => $material)
226  {
227  $feedbacksgeneric[$correctness] = str_replace("src=\"" . $mob["mob"] . "\"", "src=\"" . "il_" . IL_INST_ID . "_mob_" . $media_object->getId() . "\"", $material);
228  }
229  }
230  }
231  $this->object->setQuestion(ilRTE::_replaceMediaObjectImageSrc($questiontext, 1));
232  foreach ($feedbacks as $ident => $material)
233  {
234  $index = $this->fetchIndexFromFeedbackIdent($ident);
235 
236  $this->object->feedbackOBJ->importSpecificAnswerFeedback(
237  $this->object->getId(), $index, ilRTE::_replaceMediaObjectImageSrc($material, 1)
238  );
239  }
240  foreach ($feedbacksgeneric as $correctness => $material)
241  {
242  $this->object->feedbackOBJ->importGenericFeedback(
243  $this->object->getId(), $correctness, ilRTE::_replaceMediaObjectImageSrc($material, 1)
244  );
245  }
246  $this->object->saveToDb();
247  if ($tst_id > 0)
248  {
249  $q_1_id = $this->object->getId();
250  $question_id = $this->object->duplicate(true, null, null, null, $tst_id);
251  $tst_object->questions[$question_counter++] = $question_id;
252  $import_mapping[$item->getIdent()] = array("pool" => $q_1_id, "test" => $question_id);
253  }
254  else
255  {
256  $import_mapping[$item->getIdent()] = array("pool" => $this->object->getId(), "test" => 0);
257  }
258  }
259 
260  protected function fetchTermScoring($item)
261  {
262  $termScoringString = $item->getMetadataEntry('termscoring');
263 
264  if( !strlen($termScoringString) )
265  {
266  return array();
267  }
268 
269  $termScoring = unserialize($termScoringString);
270 
271  if( is_array($termScoring) )
272  {
273  return $termScoring;
274  }
275 
276  $termScoringString = base64_decode($termScoringString);
277  $termScoring = unserialize($termScoringString);
278 
279  if( is_array($termScoring) )
280  {
281  return $termScoring;
282  }
283 
284  return array();
285  }
286 }
287 
288 ?>
getFeedbackAnswerSpecific(ilQTIItem $item, $prefix='response_')
addGeneralMetadata(ilQTIItem $item)
$_SESSION["AccountId"]
$GLOBALS['loaded']
Global hash that tracks already loaded includes.
Class for essay question imports.
fetchAdditionalContentEditingModeInformation($qtiItem)
fetches the "additional content editing mode" information from qti item and falls back to ADDITIONAL_...
getQplImportArchivDirectory()
returns the full path to extracted qpl import archiv (qpl import dir + qpl archiv subdir) ...
static _replaceMediaObjectImageSrc($a_text, $a_direction=0, $nic=IL_INST_ID)
Replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
static _saveTempFileAsMediaObject($name, $tmp_name, $upload=TRUE)
Create new media object and update page in db and return new media object.
$ilUser
Definition: imgupload.php:18
Create styles array
The data for the language used.
fromXML(&$item, $questionpool_id, &$tst_id, &$tst_object, &$question_counter, &$import_mapping)
Creates a question from a QTI file.
Create new PHPExcel object
obj_idprivate
getTstImportArchivDirectory()
returns the full path to extracted tst import archiv (tst import dir + tst archiv subdir) ...
Class for question imports.
static _saveUsage($a_mob_id, $a_type, $a_id, $a_usage_hist_nr=0, $a_lang="-")
Save usage of mob within another container (e.g.
fetchIndexFromFeedbackIdent($feedbackIdent, $prefix='response_')