ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
class.ilExerciseDataSet.php
Go to the documentation of this file.
1 <?php
2 
24 
40 {
43 
44  public function __construct()
45  {
46  global $DIC;
47 
49  $this->ass_domain = $DIC->exercise()->internal()->domain()->assignment();
50  }
51 
52 
53  public function getSupportedVersions(): array
54  {
55  return array("4.1.0", "4.4.0", "5.0.0", "5.1.0", "5.2.0", "5.3.0", "9.0");
56  }
57 
58  protected function getXmlNamespace(string $a_entity, string $a_schema_version): string
59  {
60  return "https://www.ilias.de/xml/Modules/Exercise/" . $a_entity;
61  }
62 
63  protected function getTypes(string $a_entity, string $a_version): array
64  {
65  if ($a_entity == "exc") {
66  switch ($a_version) {
67  case "4.1.0":
68  return array(
69  "Id" => "integer",
70  "Title" => "text",
71  "Description" => "text",
72  "PassMode" => "text",
73  "PassNr" => "integer",
74  "ShowSubmissions" => "integer"
75  );
76 
77  case "4.4.0":
78  case "5.0.0":
79  case "5.1.0":
80  return array(
81  "Id" => "integer",
82  "Title" => "text",
83  "Description" => "text",
84  "PassMode" => "text",
85  "PassNr" => "integer",
86  "ShowSubmissions" => "integer",
87  "ComplBySubmission" => "integer"
88  );
89 
90  case "5.2.0":
91  case "5.3.0":
92  case "9.0":
93  return array(
94  "Id" => "integer",
95  "Title" => "text",
96  "Description" => "text",
97  "PassMode" => "text",
98  "PassNr" => "integer",
99  "NrMandatoryRandom" => "integer",
100  "ShowSubmissions" => "integer",
101  "ComplBySubmission" => "integer",
102  "Tfeedback" => "integer"
103  );
104  }
105  }
106 
107  if ($a_entity == "exc_assignment") {
108  switch ($a_version) {
109  case "4.1.0":
110  return array(
111  "Id" => "integer",
112  "ExerciseId" => "integer",
113  "Deadline" => "text",
114  "Instruction" => "text",
115  "Title" => "text",
116  "Mandatory" => "integer",
117  "OrderNr" => "integer",
118  "Dir" => "directory");
119 
120  case "4.4.0":
121  return array(
122  "Id" => "integer",
123  "ExerciseId" => "integer",
124  "Type" => "integer",
125  "Deadline" => "integer",
126  "Instruction" => "text",
127  "Title" => "text",
128  "Mandatory" => "integer",
129  "OrderNr" => "integer",
130  "Dir" => "directory"
131  // peer
132  ,"Peer" => "integer"
133  ,"PeerMin" => "integer"
134  ,"PeerDeadline" => "integer"
135  // global feedback
136  ,"FeedbackFile" => "integer"
137  ,"FeedbackCron" => "integer"
138  ,"FeedbackDate" => "integer"
139  ,"FeedbackDir" => "directory"
140  );
141 
142  case "5.0.0":
143  return array(
144  "Id" => "integer",
145  "ExerciseId" => "integer",
146  "Type" => "integer",
147  "Deadline" => "integer",
148  "Instruction" => "text",
149  "Title" => "text",
150  "Mandatory" => "integer",
151  "OrderNr" => "integer",
152  "Dir" => "directory"
153  // peer
154  ,"Peer" => "integer"
155  ,"PeerMin" => "integer"
156  ,"PeerDeadline" => "integer"
157  ,"PeerFile" => "integer"
158  ,"PeerPersonal" => "integer"
159  // global feedback
160  ,"FeedbackFile" => "integer"
161  ,"FeedbackCron" => "integer"
162  ,"FeedbackDate" => "integer"
163  ,"FeedbackDir" => "directory"
164  );
165 
166  case "5.1.0":
167  case "5.2.0":
168  return array(
169  "Id" => "integer",
170  "ExerciseId" => "integer",
171  "Type" => "integer",
172  "Deadline" => "integer",
173  "Deadline2" => "integer",
174  "Instruction" => "text",
175  "Title" => "text",
176  "Mandatory" => "integer",
177  "OrderNr" => "integer",
178  "TeamTutor" => "integer",
179  "MaxFile" => "integer",
180  "Dir" => "directory"
181  // peer
182  ,"Peer" => "integer"
183  ,"PeerMin" => "integer"
184  ,"PeerDeadline" => "integer"
185  ,"PeerFile" => "integer"
186  ,"PeerPersonal" => "integer"
187  ,"PeerChar" => "integer"
188  ,"PeerUnlock" => "integer"
189  ,"PeerValid" => "integer"
190  ,"PeerText" => "integer"
191  ,"PeerRating" => "integer"
192  ,"PeerCritCat" => "integer"
193  // global feedback
194  ,"FeedbackFile" => "integer"
195  ,"FeedbackCron" => "integer"
196  ,"FeedbackDate" => "integer"
197  ,"FeedbackDir" => "directory"
198  );
199  case "5.3.0":
200  return array(
201  "Id" => "integer",
202  "ExerciseId" => "integer",
203  "Type" => "integer",
204  "Deadline" => "integer",
205  "Deadline2" => "integer",
206  "Instruction" => "text",
207  "Title" => "text",
208  "Mandatory" => "integer",
209  "OrderNr" => "integer",
210  "TeamTutor" => "integer",
211  "MaxFile" => "integer",
212  "Dir" => "directory",
213  //web data directory
214  "WebDataDir" => "directory"
215  // peer
216  ,"Peer" => "integer"
217  ,"PeerMin" => "integer"
218  ,"PeerDeadline" => "integer"
219  ,"PeerFile" => "integer"
220  ,"PeerPersonal" => "integer"
221  ,"PeerChar" => "integer"
222  ,"PeerUnlock" => "integer"
223  ,"PeerValid" => "integer"
224  ,"PeerText" => "integer"
225  ,"PeerRating" => "integer"
226  ,"PeerCritCat" => "integer"
227  // global feedback
228  ,"FeedbackFile" => "integer"
229  ,"FeedbackCron" => "integer"
230  ,"FeedbackDate" => "integer"
231  ,"FeedbackDir" => "directory"
232  ,"FbDateCustom" => "integer"
233  ,"DeadlineMode" => "integer"
234  ,"RelativeDeadline" => "integer"
235  ,"RelDeadlineLastSubm" => "integer"
236  );
237  case "9.0":
238  return array(
239  "Id" => "integer",
240  "ExerciseId" => "integer",
241  "Type" => "integer",
242  "Deadline" => "integer",
243  "Deadline2" => "integer",
244  "Instruction" => "text",
245  "Title" => "text",
246  "Mandatory" => "integer",
247  "OrderNr" => "integer",
248  "TeamTutor" => "integer",
249  "MaxFile" => "integer",
250  "InstructionCollection" => "rscollection",
251  //web data directory
252  "WebDataDir" => "directory"
253  // peer
254  ,"Peer" => "integer"
255  ,"PeerMin" => "integer"
256  ,"PeerDeadline" => "integer"
257  ,"PeerFile" => "integer"
258  ,"PeerPersonal" => "integer"
259  ,"PeerChar" => "integer"
260  ,"PeerUnlock" => "integer"
261  ,"PeerValid" => "integer"
262  ,"PeerText" => "integer"
263  ,"PeerRating" => "integer"
264  ,"PeerCritCat" => "integer"
265  // global feedback
266  ,"FeedbackFile" => "integer"
267  ,"FeedbackCron" => "integer"
268  ,"FeedbackDate" => "integer"
269  ,"FeedbackDir" => "directory"
270  ,"FbDateCustom" => "integer"
271  ,"DeadlineMode" => "integer"
272  ,"RelativeDeadline" => "integer"
273  ,"RelDeadlineLastSubm" => "integer"
274  );
275  }
276  }
277 
278  if ($a_entity == "exc_cit_cat") {
279  switch ($a_version) {
280  case "5.1.0":
281  case "5.2.0":
282  case "5.3.0":
283  case "9.0":
284  return array(
285  "Id" => "integer"
286  ,"Parent" => "integer"
287  ,"Title" => "text"
288  ,"Pos" => "integer"
289  );
290  }
291  }
292 
293  if ($a_entity == "exc_cit") {
294  switch ($a_version) {
295  case "5.1.0":
296  case "5.2.0":
297  case "5.3.0":
298  case "9.0":
299  return array(
300  "Id" => "integer"
301  ,"Parent" => "integer"
302  ,"Type" => "text"
303  ,"Title" => "text"
304  ,"Descr" => "text"
305  ,"Pos" => "integer"
306  ,"Required" => "integer"
307  ,"Def" => "text"
308  ,"DefJson" => "text"
309  );
310  }
311  }
312 
313  if ($a_entity == "exc_ass_file_order") {
314  switch ($a_version) {
315  case "5.3.0":
316  case "9.0":
317  return array(
318  "Id" => "integer"
319  , "AssignmentId" => "integer"
320  , "Filename" => "text"
321  , "OrderNr" => "integer"
322  );
323  }
324  }
325 
326  if ($a_entity == "exc_ass_reminders") {
327  switch ($a_version) {
328  case "5.3.0":
329  case "9.0":
330  return array(
331  "Type" => "text",
332  "AssignmentId" => "integer",
333  "ExerciseId" => "integer",
334  "Status" => "integer",
335  "Start" => "integer",
336  "End" => "integer",
337  "Frequency" => "integer",
338  "LastSend" => "integer",
339  "TemplateId" => "integer"
340  );
341  }
342  }
343  return [];
344  }
345 
346  public function readData(string $a_entity, string $a_version, array $a_ids): void
347  {
348  $ilDB = $this->db;
349 
350  if (!is_array($a_ids)) {
351  $a_ids = array($a_ids);
352  }
353 
354  if ($a_entity == "exc") {
355  switch ($a_version) {
356  case "4.1.0":
357  $this->getDirectDataFromQuery("SELECT exc_data.obj_id id, title, description," .
358  " pass_mode, pass_nr, show_submissions" .
359  " FROM exc_data JOIN object_data ON (exc_data.obj_id = object_data.obj_id)" .
360  " WHERE " . $ilDB->in("exc_data.obj_id", $a_ids, false, "integer"));
361  break;
362 
363  case "4.4.0":
364  case "5.0.0":
365  case "5.1.0":
366  $this->getDirectDataFromQuery("SELECT exc_data.obj_id id, title, description," .
367  " pass_mode, pass_nr, show_submissions, compl_by_submission" .
368  " FROM exc_data JOIN object_data ON (exc_data.obj_id = object_data.obj_id)" .
369  " WHERE " . $ilDB->in("exc_data.obj_id", $a_ids, false, "integer"));
370  break;
371 
372  case "5.2.0":
373  case "5.3.0":
374  case "9.0":
375  $this->getDirectDataFromQuery("SELECT exc_data.obj_id id, title, description," .
376  " pass_mode, pass_nr, show_submissions, compl_by_submission, tfeedback,nr_mandatory_random" .
377  " FROM exc_data JOIN object_data ON (exc_data.obj_id = object_data.obj_id)" .
378  " WHERE " . $ilDB->in("exc_data.obj_id", $a_ids, false, "integer"));
379  break;
380  }
381  }
382 
383  if ($a_entity == "exc_assignment") {
384  switch ($a_version) {
385  case "4.1.0":
386  $this->getDirectDataFromQuery("SELECT id, exc_id exercise_id, time_stamp deadline, " .
387  " instruction, title, start_time, mandatory, order_nr" .
388  " FROM exc_assignment" .
389  " WHERE " . $ilDB->in("exc_id", $a_ids, false, "integer"));
390  break;
391 
392  case "4.4.0":
393  $this->getDirectDataFromQuery("SELECT id, exc_id exercise_id, type, time_stamp deadline," .
394  " instruction, title, start_time, mandatory, order_nr, peer, peer_min, peer_dl peer_deadline," .
395  " fb_file feedback_file, fb_cron feedback_cron, fb_date feedback_date" .
396  " FROM exc_assignment" .
397  " WHERE " . $ilDB->in("exc_id", $a_ids, false, "integer"));
398  break;
399 
400  case "5.0.0":
401  $this->getDirectDataFromQuery("SELECT id, exc_id exercise_id, type, time_stamp deadline," .
402  " instruction, title, start_time, mandatory, order_nr, peer, peer_min, peer_dl peer_deadline," .
403  " peer_file, peer_prsl peer_personal, fb_file feedback_file, fb_cron feedback_cron, fb_date feedback_date" .
404  " FROM exc_assignment" .
405  " WHERE " . $ilDB->in("exc_id", $a_ids, false, "integer"));
406  break;
407 
408  case "5.1.0":
409  case "5.2.0":
410  case "5.3.0":
411  case "9.0":
412  $this->getDirectDataFromQuery("SELECT id, exc_id exercise_id, type, time_stamp deadline, deadline2," .
413  " instruction, title, start_time, mandatory, order_nr, team_tutor, max_file, peer, peer_min," .
414  " peer_dl peer_deadline, peer_file, peer_prsl peer_personal, peer_char, peer_unlock, peer_valid," .
415  " peer_text, peer_rating, peer_crit_cat, fb_file feedback_file, fb_cron feedback_cron, fb_date feedback_date," .
416  " fb_date_custom, rel_deadline_last_subm, deadline_mode, relative_deadline" .
417  " FROM exc_assignment" .
418  " WHERE " . $ilDB->in("exc_id", $a_ids, false, "integer"));
419  break;
420  }
421  }
422 
423  if ($a_entity == "exc_crit_cat") {
424  switch ($a_version) {
425  case "5.1.0":
426  case "5.2.0":
427  case "5.3.0":
428  case "9.0":
429  $this->getDirectDataFromQuery("SELECT id, parent, title, pos" .
430  " FROM exc_crit_cat" .
431  " WHERE " . $ilDB->in("parent", $a_ids, false, "integer"));
432  break;
433  }
434  }
435 
436  if ($a_entity == "exc_crit") {
437  switch ($a_version) {
438  case "5.1.0":
439  case "5.2.0":
440  case "5.3.0":
441  case "9.0":
442  $this->getDirectDataFromQuery("SELECT id, parent, type, title" .
443  ", descr, pos, required, def" .
444  " FROM exc_crit" .
445  " WHERE " . $ilDB->in("parent", $a_ids, false, "integer"));
446  foreach ($this->data as $k => $v) {
447  $this->data[$k]["DefJson"] = "";
448  if ($v["Def"] != "") {
449  $this->data[$k]["DefJson"] = json_encode(unserialize($v["Def"], ['allowed_classes' => false]));
450  }
451  }
452  break;
453  }
454  }
455 
456  if ($a_entity == "exc_ass_file_order") {
457  switch ($a_version) {
458  case "5.3.0":
459  case "9.0":
460  $this->getDirectDataFromQuery("SELECT id, assignment_id, filename, order_nr" .
461  " FROM exc_ass_file_order" .
462  " WHERE " . $ilDB->in("assignment_id", $a_ids, false, "integer"));
463  break;
464  }
465  }
466 
467  if ($a_entity == "exc_ass_reminders") {
468  switch ($a_version) {
469  case "5.3.0":
470  case "9.0":
471  $this->getDirectDataFromQuery("SELECT type, ass_id, exc_id, status, start, end, freq, last_send, template_id" .
472  " FROM exc_ass_reminders" .
473  " WHERE " . $ilDB->in("ass_id", $a_ids, false, "integer"));
474  break;
475  }
476  }
477  }
478 
482  public function getXmlRecord(string $a_entity, string $a_version, array $a_set): array
483  {
484  if ($a_entity == "exc_assignment") {
485  // convert server dates to utc
486  if ($a_set["StartTime"] != "") {
487  $start = new ilDateTime($a_set["StartTime"], IL_CAL_UNIX);
488  $a_set["StartTime"] = $start->get(IL_CAL_DATETIME, '', 'UTC');
489  }
490  if ($a_set["Deadline"] != "") {
491  $deadline = new ilDateTime($a_set["Deadline"], IL_CAL_UNIX);
492  $a_set["Deadline"] = $deadline->get(IL_CAL_DATETIME, '', 'UTC');
493  }
494  if ($a_set["Deadline2"] != "") {
495  $deadline = new ilDateTime($a_set["Deadline2"], IL_CAL_UNIX);
496  $a_set["Deadline2"] = $deadline->get(IL_CAL_DATETIME, '', 'UTC');
497  }
498 
499  $if = $this->ass_domain->instructionFiles((int) $a_set["Id"]);
500  $a_set["InstructionCollection"] = $if->getCollectionIdString();
501 
502 
503  $fstorage = new ilFSStorageExercise($a_set["ExerciseId"], $a_set["Id"]);
504  $a_set["FeedbackDir"] = $fstorage->getGlobalFeedbackPath();
505 
506  //now the instruction files inside the root directory
507  $fswebstorage = new ilFSWebStorageExercise($a_set['ExerciseId'], $a_set['Id']);
508  $a_set['WebDataDir'] = $fswebstorage->getAbsolutePath();
509  }
510 
511  //Discuss if necessary when working with timestamps.
512  if ($a_entity == "exc_ass_reminders") {
513  if ($a_set["End"] != "") {
514  $end = new ilDateTime($a_set["End"], IL_CAL_UNIX);
515  $a_set["End"] = $end->get(IL_CAL_DATETIME, '', 'UTC');
516  }
517  if ($a_set["LastSend"] != "") {
518  $last = new ilDateTime($a_set["LastSend"], IL_CAL_UNIX);
519  $a_set["LastSend"] = $last->get(IL_CAL_DATETIME, '', 'UTC');
520  }
521  }
522 
523  return $a_set;
524  }
525 
526  protected function getDependencies(
527  string $a_entity,
528  string $a_version,
529  ?array $a_rec = null,
530  ?array $a_ids = null
531  ): array {
532  switch ($a_entity) {
533  case "exc":
534  switch ($a_version) {
535  case "4.1.0":
536  case "4.4.0":
537  case "5.0.0":
538  return array(
539  "exc_assignment" => array("ids" => $a_rec["Id"] ?? null)
540  );
541 
542  case "5.1.0":
543  case "5.2.0":
544  case "5.3.0":
545  case "9.0":
546  return array(
547  "exc_crit_cat" => array("ids" => $a_rec["Id"] ?? null),
548  "exc_assignment" => array("ids" => $a_rec["Id"] ?? null)
549  );
550  }
551  break;
552 
553  case "exc_crit_cat":
554  return array(
555  "exc_crit" => array("ids" => $a_rec["Id"] ?? null)
556  );
557 
558  case "exc_assignment":
559  switch ($a_version) {
560  case "5.3.0":
561  case "9.0":
562  return array(
563  "exc_ass_file_order" => array("ids" => $a_rec["Id"] ?? null),
564  "exc_ass_reminders" => array("ids" => $a_rec["Id"] ?? null)
565  );
566  }
567  break;
568  }
569  return [];
570  }
571 
581  public function importRecord(
582  string $a_entity,
583  array $a_types,
584  array $a_rec,
585  ilImportMapping $a_mapping,
586  string $a_schema_version
587  ): void {
588  $a_rec = $this->stripTags($a_rec, ["Instruction"]);
589  $purifier = new ilExcInstructionPurifier();
590  $a_rec["Instruction"] = $purifier->purify((string) ($a_rec["Instruction"] ?? ""));
591 
592  switch ($a_entity) {
593  case "exc":
594  if ($new_id = $a_mapping->getMapping('Services/Container', 'objs', $a_rec['Id'])) {
595  $newObj = ilObjectFactory::getInstanceByObjId($new_id, false);
596  } else {
597  $newObj = new ilObjExercise();
598  $newObj->setType("exc");
599  $newObj->create();
600  }
601 
602  $newObj->setTitle($a_rec["Title"]);
603  $newObj->setDescription($a_rec["Description"]);
604  $newObj->setPassMode($a_rec["PassMode"]);
605  $newObj->setPassNr((int) $a_rec["PassNr"]);
606  $newObj->setNrMandatoryRandom((int) $a_rec["NrMandatoryRandom"]);
607  $newObj->setShowSubmissions((bool) (int) $a_rec["ShowSubmissions"]);
608  $newObj->setCompletionBySubmission((bool) (int) $a_rec["ComplBySubmission"]);
609  $newObj->setTutorFeedback((int) $a_rec["Tfeedback"]);
610  $newObj->update();
611  $newObj->saveData();
612  $this->current_exc = $newObj;
613 
614  $a_mapping->addMapping("Modules/Exercise", "exc", $a_rec["Id"], $newObj->getId());
615  $a_mapping->addMapping('Services/Object', 'objs', $a_rec['Id'], $newObj->getId());
616  $a_mapping->addMapping('Services/AdvancedMetaData', 'parent', $a_rec['Id'], $newObj->getId());
617  $a_mapping->addMapping(
618  "Services/MetaData",
619  "md",
620  $a_rec["Id"] . ":0:exc",
621  $newObj->getId() . ":0:exc"
622  );
623  break;
624 
625  case "exc_assignment":
626  $exc_id = $a_mapping->getMapping("Modules/Exercise", "exc", $a_rec["ExerciseId"]);
627  if ($exc_id > 0) {
628  if (is_object($this->current_exc) && $this->current_exc->getId() == $exc_id) {
629  $exc = $this->current_exc;
630  } else {
631  $exc = new ilObjExercise($exc_id, false);
632  }
633 
634  $ass = new ilExAssignment();
635  $ass->setExerciseId($exc_id);
636 
637  if ($a_rec["StartTime"] != "") {
638  $start = new ilDateTime($a_rec["StartTime"], IL_CAL_DATETIME, "UTC");
639  $ass->setStartTime($start->get(IL_CAL_UNIX));
640  }
641 
642  if ($a_rec["Deadline"] != "") {
643  $deadline = new ilDateTime($a_rec["Deadline"], IL_CAL_DATETIME, "UTC");
644  $ass->setDeadline($deadline->get(IL_CAL_UNIX));
645  }
646 
647  $ass->setInstruction($a_rec["Instruction"] ?? "");
648  $ass->setTitle($a_rec["Title"] ?? "");
649  $ass->setMandatory((bool) ($a_rec["Mandatory"] ?? false));
650  $ass->setOrderNr((int) ($a_rec["OrderNr"] ?? 0));
651 
652  // 4.2
653  $ass->setType((int) ($a_rec["Type"] ?? 0));
654 
655  // 4.4
656  $ass->setPeerReview((bool) ($a_rec["Peer"] ?? false));
657  $ass->setPeerReviewMin((int) ($a_rec["PeerMin"] ?? 0));
658  $ass->setPeerReviewDeadline((int) $a_rec["PeerDeadline"]);
659  $ass->setFeedbackFile($a_rec["FeedbackFile"] ?? "");
660  $ass->setFeedbackCron((bool) ($a_rec["FeedbackCron"] ?? false));
661  $ass->setFeedbackDate((int) ($a_rec["FeedbackDate"] ?? 0));
662 
663  // 5.0
664  $ass->setPeerReviewFileUpload((bool) ($a_rec["PeerFile"] ?? false));
665  $ass->setPeerReviewPersonalized((bool) ($a_rec["PeerPersonal"] ?? false));
666 
667  // 5.1
668  if (($a_rec["Deadline2"] ?? "") !== "") {
669  $deadline = new ilDateTime($a_rec["Deadline2"], IL_CAL_DATETIME, "UTC");
670  $ass->setExtendedDeadline($deadline->get(IL_CAL_UNIX));
671  }
672  $ass->setMaxFile((int) ($a_rec["MaxFile"] ?? 0));
673  $ass->setTeamTutor((bool) ($a_rec["TeamTutor"] ?? false));
674  $ass->setPeerReviewChars((int) ($a_rec["PeerChar"] ?? null));
675  $ass->setPeerReviewSimpleUnlock((int) ($a_rec["PeerUnlock"] ?? 0));
676  $ass->setPeerReviewValid((int) ($a_rec["PeerValid"] ?? 0));
677  $ass->setPeerReviewText((bool) ($a_rec["PeerText"] ?? false));
678  $ass->setPeerReviewRating((bool) ($a_rec["PeerRating"] ?? false));
679 
680  // 5.3
681  $ass->setFeedbackDateCustom((int) ($a_rec["FbDateCustom"] ?? 0));
682  $ass->setRelDeadlineLastSubmission((int) ($a_rec["RelDeadlineLastSubm"] ?? 0));
683  $ass->setDeadlineMode((int) ($a_rec["DeadlineMode"] ?? 0));
684  $ass->setRelativeDeadline((int) ($a_rec["RelativeDeadline"] ?? 0));
685 
686  // criteria catalogue
687  if ($a_rec["PeerCritCat"]) {
688  $ass->setPeerReviewCriteriaCatalogue((int) $a_mapping->getMapping("Modules/Exercise", "exc_crit_cat", $a_rec["PeerCritCat"]));
689  }
690 
691  $ass->save();
692 
693  $fstorage = new ilFSStorageExercise($exc_id, $ass->getId());
694  $fstorage->create();
695 
696  // instruction files
697  $dir = str_replace("..", "", ($a_rec["InstructionCollection"] ?? ""));
698  if ($dir != "" && $this->getImportDirectory() != "") {
699  $if = $this->ass_domain->instructionFiles($ass->getId());
700  $if->importFromDirectory($this->getImportDirectory() . "/" . $dir);
701  } else {
702  $dir = str_replace("..", "", ($a_rec["Dir"] ?? "")); // legacy Dir
703  if ($dir != "" && $this->getImportDirectory() != "") {
704  $if = $this->ass_domain->instructionFiles($ass->getId());
705  $if->importFromDirectory($this->getImportDirectory() . "/" . $dir);
706  }
707  $dir = str_replace("..", "", ($a_rec["WebDataDir"] ?? "")); // legacy WebDataDir
708  if ($dir != "" && $this->getImportDirectory() != "") {
709  $if = $this->ass_domain->instructionFiles($ass->getId());
710  $if->importFromDirectory($this->getImportDirectory() . "/" . $dir);
711  }
712  }
713 
714  // (4.4) global feedback file
715  $dir = str_replace("..", "", $a_rec["FeedbackDir"]);
716  if ($dir != "" && $this->getImportDirectory() != "") {
717  $source_dir = $this->getImportDirectory() . "/" . $dir;
718  $target_dir = $fstorage->getGlobalFeedbackPath();
719  ilFileUtils::rCopy($source_dir, $target_dir);
720  }
721 
722  // 5.4 Team wiki assignment AR
723  if ($a_rec["Type"] == ilExAssignment::TYPE_WIKI_TEAM) {
724  $ar = new ilExAssWikiTeamAR();
725  $ar->setId($ass->getId());
726  $ar->setTemplateRefId(0);
727  $ar->setContainerRefId(0);
728  $ar->save();
729  }
730 
731  $a_mapping->addMapping("Modules/Exercise", "exc_assignment", $a_rec["Id"], $ass->getId());
732  }
733 
734  break;
735 
736  case "exc_crit_cat":
737  $exc_id = $a_mapping->getMapping("Modules/Exercise", "exc", $a_rec["Parent"]);
738  if ($exc_id > 0) {
739  $crit_cat = new ilExcCriteriaCatalogue();
740  $crit_cat->setParent($exc_id);
741  $crit_cat->setTitle($a_rec["Title"]);
742  $crit_cat->setPosition($a_rec["Pos"]);
743  $crit_cat->save();
744 
745  $a_mapping->addMapping("Modules/Exercise", "exc_crit_cat", $a_rec["Id"], $crit_cat->getId());
746  }
747  break;
748 
749  case "exc_crit":
750  $crit_cat_id = $a_mapping->getMapping("Modules/Exercise", "exc_crit_cat", $a_rec["Parent"]);
751  if ($crit_cat_id > 0) {
752  $crit = ilExcCriteria::getInstanceByType($a_rec["Type"]);
753  $crit->setParent($crit_cat_id);
754  $crit->setTitle($a_rec["Title"]);
755  $crit->setDescription($a_rec["Descr"]);
756  $crit->setPosition($a_rec["Pos"]);
757  $crit->setRequired($a_rec["Required"]);
758  $crit->importDefinition($a_rec["Def"], $a_rec["DefJson"]);
759  $crit->save();
760  }
761  break;
762 
763  case "exc_ass_file_order":
764 
765  $ass_id = $a_mapping->getMapping("Modules/Exercise", "exc_assignment", $a_rec["AssignmentId"]);
766  if ($ass_id > 0) {
767  ilExAssignment::instructionFileInsertOrder($a_rec["Filename"], $ass_id, $a_rec["OrderNr"]);
768  }
769  break;
770 
771  case "exc_ass_reminders":
772  // (5.3) reminders
773  $new_ass_id = $a_mapping->getMapping("Modules/Exercise", "exc_assignment", $a_rec["AssId"]);
774  $new_exc_id = $a_mapping->getMapping('Modules/Exercise', 'exc', $a_rec['ExcId']);
775  //always UTC timestamp in db.
776  $end = new ilDateTime($a_rec["End"], IL_CAL_DATETIME, "UTC");
777  $rmd = new ilExAssignmentReminder($new_exc_id, $new_ass_id, $a_rec["Type"]);
778  $rmd->setReminderStatus($a_rec["Status"]);
779  $rmd->setReminderStart((int) ($a_rec["Start"] ?? 0));
780  $rmd->setReminderEnd((int) $end->get(IL_CAL_UNIX));
781  $rmd->setReminderFrequency((int) ($a_rec["Freq"] ?? 0));
782  $rmd->setReminderLastSend((int) ($a_rec["LastSend"] ?? 0));
783  $rmd->setReminderMailTemplate((int) ($a_rec["TemplateId"] ?? 0));
784  $rmd->save();
785  }
786  }
787 
788  public function getCollection(
789  array $record,
790  string $entity,
791  string $schema_version,
792  string $field,
793  string $value
794  ): ?ResourceCollection {
795  if ($entity === "exc_assignment" && $field === "InstructionCollection") {
796  return $this->ass_domain->instructionFiles((int) $record["Id"])->getCollection();
797  }
798  return null;
799  }
800 
801 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Exercise assignment.
const IL_CAL_DATETIME
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
string $schema_version
getXmlRecord(string $a_entity, string $a_version, array $a_set)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static rCopy(string $a_sdir, string $a_tdir, bool $preserveTimeAttributes=false)
Copies content of a directory $a_sdir recursively to a directory $a_tdir.
static getInstanceByType(string $a_type)
const IL_CAL_UNIX
addMapping(string $a_comp, string $a_entity, string $a_old_id, string $a_new_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: feed.php:28
Class ilObjExercise.
__construct(VocabulariesInterface $vocabularies)
importRecord(string $a_entity, array $a_types, array $a_rec, ilImportMapping $a_mapping, string $a_schema_version)
getMapping(string $a_comp, string $a_entity, string $a_old_id)
ilDBInterface $db
Exercise data set class.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getTypes(string $a_entity, string $a_version)
getXmlNamespace(string $a_entity, string $a_schema_version)
static instructionFileInsertOrder(string $a_filename, int $a_ass_id, int $a_order_nr=0)
getDirectDataFromQuery(string $a_query, bool $a_convert_to_leading_upper=true, bool $a_set=true)
Get data from query.This is a standard procedure, all db field names are directly mapped to abstract ...
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
string $entity
readData(string $a_entity, string $a_version, array $a_ids)
stripTags(array $rec, array $omit_keys=[])
getDependencies(string $a_entity, string $a_version, ?array $a_rec=null, ?array $a_ids=null)
getCollection(array $record, string $entity, string $schema_version, string $field, string $value)