ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilForumXMLParser.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
26  public static array $style_map = [];
27 
28  private string $entity = '';
29  private array $mapping = [
30  'frm' => [],
31  'thr' => [],
32  'pos' => []
33  ];
34  private readonly ilDBInterface $db;
35  private readonly ilObjUser $aobject;
38  private ?string $importDirectory = null;
39  private ?string $schema_version = null;
40  private string $cdata = '';
41 
44  private ?int $forum_obj_id = null;
46  private ?int $lastHandledForumId = null;
47  private ?int $lastHandledThreadId = null;
48  private ?int $lastHandledPostId = null;
49  private ?int $last_handled_style_id = null;
50  private array $forumArray = [];
51  private array $postArray = [];
52  private array $threadArray = [];
53  private array $contentArray = [
54  'content' => ''
55  ];
56  private array $user_id_mapping = [];
57  private array $mediaObjects = [];
58 
59  protected \ILIAS\Style\Content\DomainService $content_style_domain;
60 
61  public function __construct(
62  private readonly ilObjForum $forum,
63  string $a_xml_data,
64  private readonly ilImportMapping $importMapping
65  ) {
66  global $DIC;
67 
68  $this->db = $DIC->database();
69  $this->aobject = new ilObjUser(ANONYMOUS_USER_ID);
70 
72 
73  $this->content_style_domain = $DIC
74  ->contentStyle()
75  ->domain();
76 
77  $this->setXMLContent('<?xml version="1.0" encoding="utf-8"?>' . $a_xml_data);
78  }
79 
80  public function setImportDirectory(?string $a_val): void
81  {
82  $this->importDirectory = $a_val;
83  }
84 
85  public function getImportDirectory(): ?string
86  {
88  }
89 
90  public function getSchemaVersion(): ?string
91  {
92  return $this->schema_version;
93  }
94 
95  public function setSchemaVersion(?string $schema_version): void
96  {
97  $this->schema_version = $schema_version;
98  }
99 
100  public function setHandlers($a_xml_parser): void
101  {
102  xml_set_element_handler(
103  $a_xml_parser,
104  function (XMLParser $a_xml_parser, string $a_name, array $a_attribs): void {
105  $this->handlerBeginTag($a_xml_parser, $a_name, $a_attribs);
106  },
107  function (XMLParser $a_xml_parser, string $a_name): void {
108  $this->handlerEndTag($a_xml_parser, $a_name);
109  }
110  );
111  xml_set_character_data_handler($a_xml_parser, function (XMLParser $a_xml_parser, string $a_data): void {
112  $this->handlerCharacterData($a_xml_parser, $a_data);
113  });
114  }
115 
116  public function handlerBeginTag(XMLParser $a_xml_parser, string $a_name, array $a_attribs): void
117  {
118  switch ($a_name) {
119  case 'Forum':
120  $this->entity = 'forum';
121  $this->forumArray = [];
122  break;
123 
124  case 'Thread':
125  $this->entity = 'thread';
126  $this->threadArray = [];
127  break;
128 
129  case 'Post':
130  $this->entity = 'post';
131  $this->postArray = [];
132  $this->mediaObjects = [];
133  break;
134 
135  case 'Content':
136  $this->entity = 'content';
137  $this->contentArray = [
138  'content' => ''
139  ];
140  break;
141 
142  case 'MediaObject':
143  $this->mediaObjects[] = $a_attribs;
144  break;
145  }
146 
147  if (isset($a_attribs['Style'])) {
148  $this->last_handled_style_id = (int) $a_attribs['Style'];
149  }
150  }
151 
152  public function handlerEndTag(XMLParser $a_xml_parser, string $a_name): void
153  {
154  $this->cdata = trim($this->cdata);
155  $property = strtolower($this->entity) . 'Array';
156 
157  if (!property_exists($this, $property)) {
158  return;
159  }
160 
161  $propertyValue = &$this->{$property};
162 
163  switch ($a_name) {
164  case 'Forum':
165  $query_num_posts = 'SELECT COUNT(pos_pk) cnt FROM frm_posts WHERE pos_top_fk = ' . $this->db->quote(
166  $this->lastHandledForumId,
167  'integer'
168  );
169  $res_pos = $this->db->query($query_num_posts);
170  $data_pos = $this->db->fetchAssoc($res_pos);
171  $num_posts = (int) $data_pos['cnt'];
172 
173  $query_num_threads = 'SELECT COUNT(thr_pk) cnt FROM frm_threads WHERE thr_top_fk = ' . $this->db->quote(
174  $this->lastHandledForumId,
175  'integer'
176  );
177  $res_thr = $this->db->query($query_num_threads);
178  $data_thr = $this->db->fetchAssoc($res_thr);
179  $num_threads = (int) $data_thr['cnt'];
180 
181  $update_str = null;
182  if ($this->lastHandledPostId !== 0) {
183  $update_str = implode('#', [
184  (string) $this->lastHandledForumId,
185  (string) $this->lastHandledThreadId,
186  (string) $this->lastHandledPostId
187  ]);
188  }
189 
190  $this->db->manipulateF(
191  'UPDATE frm_data
192  SET top_last_post = %s,
193  top_num_posts = %s,
194  top_num_threads = %s,
195  top_usr_id = %s
196  WHERE top_frm_fk = %s',
197  ['text', 'integer', 'integer', 'integer', 'integer'],
198  [$update_str, $num_posts, $num_threads, $this->frm_last_mapped_top_usr_id, $this->forum_obj_id]
199  );
200 
201  ilLPStatusWrapper::_refreshStatus($this->forum->getId());
202  break;
203 
204  case 'Id':
205  $propertyValue['Id'] = $this->cdata;
206  break;
207 
208  case 'ObjId':
209  $propertyValue['ObjId'] = $this->cdata;
210  break;
211 
212  case 'Title':
213  $propertyValue['Title'] = $this->cdata;
214  break;
215 
216  case 'Description':
217  $propertyValue['Description'] = $this->cdata;
218  break;
219 
220  case 'DefaultView':
221  $propertyValue['DefaultView'] = $this->cdata;
222  break;
223 
224  case 'Pseudonyms':
225  $propertyValue['Pseudonyms'] = $this->cdata;
226  break;
227 
228  case 'Statistics':
229  $propertyValue['Statistics'] = $this->cdata;
230  break;
231 
232  case 'ThreadRatings':
233  $propertyValue['ThreadRatings'] = $this->cdata;
234  break;
235 
236  case 'PostingActivation':
237  $propertyValue['PostingActivation'] = $this->cdata;
238  break;
239 
240  case 'PresetSubject':
241  $propertyValue['PresetSubject'] = $this->cdata;
242  break;
243 
244  case 'PresetRe':
245  $propertyValue['PresetRe'] = $this->cdata;
246  break;
247 
248  case 'NotificationType':
249  $propertyValue['NotificationType'] = $this->cdata;
250  break;
251 
252  case 'NotificationEvents':
253  $propertyValue['NotificationEvents'] = $this->cdata;
254  break;
255 
256  case 'ForceNotification':
257  $propertyValue['ForceNotification'] = $this->cdata;
258  break;
259 
260  case 'ToggleNotification':
261  $propertyValue['ToggleNotification'] = $this->cdata;
262  break;
263 
264  case 'LastPost':
265  $propertyValue['LastPost'] = $this->cdata;
266  break;
267 
268  case 'Moderator':
269  $propertyValue['Moderator'] = $this->cdata;
270  break;
271 
272  case 'CreateDate':
273  $propertyValue['CreateDate'] = $this->cdata;
274  break;
275 
276  case 'UpdateDate':
277  $propertyValue['UpdateDate'] = $this->cdata;
278  break;
279 
280  case 'FileUpload':
281  $propertyValue['FileUpload'] = $this->cdata;
282  break;
283 
284  case 'UpdateUserId':
285  $propertyValue['UpdateUserId'] = $this->cdata;
286  break;
287 
288  case 'AuthorId':
289  $propertyValue['AuthorId'] = $this->cdata;
290  break;
291  case 'isAuthorModerator':
292  $propertyValue['isAuthorModerator'] = $this->cdata;
293  break;
294 
295  case 'UserId':
296  $propertyValue['UserId'] = $this->cdata;
297  if ($this->entity === 'forum' && $this->forumArray !== []) {
299  // createSettings accesses superglobal $_GET array, which can cause problems
300  // with public_notifications of block settings
301  $this->forum->createSettings();
302 
303  $forum_array = $this->getUserIdAndAlias(
304  (int) ($this->forumArray['UserId'] ?? 0),
305  ''
306  );
307  $this->frm_last_mapped_top_usr_id = $forum_array['usr_id'];
308 
309  $update_forum_array = $this->getUserIdAndAlias(
310  (int) ($this->forumArray['UpdateUserId'] ?? 0),
311  ''
312  );
313  // Store old user id
314  // Manipulate user object
315  // changed smeyer 28.7.16: the session id is not manipulated
316  // anymore. Instead the user is passwd ilObjForum::update()
317  $this->forum->setTitle(ilUtil::stripSlashes((string) ($this->forumArray['Title'] ?? '')));
318  $this->forum->setDescription(
319  ilUtil::stripSlashes((string) ($this->forumArray['Description'] ?? ''))
320  );
321  $this->forum->update();
322  $this->forum->updateModificationUserId($update_forum_array['usr_id']);
323 
324  $newObjProp = ilForumProperties::getInstance($this->forum->getId());
325  $newObjProp->setDefaultView(
326  (int) ($this->forumArray['DefaultView'] ?? ilForumProperties::VIEW_TREE)
327  );
328  $newObjProp->setAnonymisation((bool) ($this->forumArray['Pseudonyms'] ?? false));
329  $newObjProp->setStatisticsStatus((bool) ($this->forumArray['Statistics'] ?? false));
330  $newObjProp->setIsThreadRatingEnabled((bool) ($this->forumArray['ThreadRatings'] ?? false));
331  $newObjProp->setPostActivation((bool) ($this->forumArray['PostingActivation'] ?? false));
332  $newObjProp->setPresetSubject((bool) ($this->forumArray['PresetSubject'] ?? false));
333  $newObjProp->setAddReSubject((bool) ($this->forumArray['PresetRe'] ?? false));
334  $newObjProp->setNotificationType((string) ($this->forumArray['NotificationType'] ?: 'all_users'));
335  $newObjProp->setInterestedEvents((int) ($this->forumArray['NotificationEvents'] ?? 0));
336  $newObjProp->setAdminForceNoti((bool) ($this->forumArray['ForceNotification'] ?? false));
337  $newObjProp->setUserToggleNoti((bool) ($this->forumArray['ToggleNotification'] ?? false));
338  $newObjProp->setFileUploadAllowed((bool) ($this->forumArray['FileUpload'] ?? false));
339  $newObjProp->setMarkModeratorPosts((bool) ($this->forumArray['MarkModeratorPosts'] ?? false));
340  $newObjProp->update();
341 
342  $id = $this->getNewForumPk();
343  $this->forum_obj_id = $newObjProp->getObjId();
344  $this->mapping['frm'][$this->forumArray['Id']] = $id;
345  $this->lastHandledForumId = $id;
346 
347  $this->importMapping->addMapping(
348  'components/ILIAS/COPage',
349  'pg',
350  'frm:' . $this->forumArray['ObjId'],
351  'frm:' . $this->forum->getId()
352  );
353 
354  if ($this->last_handled_style_id) {
355  self::$style_map[$this->last_handled_style_id][] = $newObjProp->getObjId();
356  $this->last_handled_style_id = null;
357  }
358 
359  $this->forumArray = [];
360  }
361  break;
362 
363  case 'Thread':
364  $update_str = null;
365  if ($this->lastHandledPostId !== 0) {
366  $update_str = implode('#', [
367  (string) $this->lastHandledForumId,
368  (string) $this->lastHandledThreadId,
369  (string) $this->lastHandledPostId
370  ]);
371  }
372 
373  $this->db->manipulateF(
374  'UPDATE frm_threads SET thr_last_post = %s WHERE thr_pk = %s',
375  ['text', 'integer'],
376  [$update_str, $this->lastHandledThreadId]
377  );
378  break;
379 
380  case 'Subject':
381  $propertyValue['Subject'] = $this->cdata;
382  break;
383 
384  case 'Alias':
385  $propertyValue['Alias'] = $this->cdata;
386  break;
387 
388  case 'Sticky':
389  $propertyValue['Sticky'] = $this->cdata;
390  break;
391 
392  case 'MarkModeratorPosts':
393  $propertyValue['MarkModeratorPosts'] = $this->cdata;
394  break;
395 
396  case 'Closed':
397  $propertyValue['Closed'] = $this->cdata;
398 
399  if ($this->entity === 'thread' && $this->lastHandledForumId && $this->threadArray !== []) {
400  $this->forumThread = new ilForumTopic();
401  $this->forumThread->setId((int) ($this->threadArray['Id'] ?? 0));
402  $this->forumThread->setForumId($this->lastHandledForumId);
403  $this->forumThread->setSubject(
404  ilUtil::stripSlashes((string) ($this->threadArray['Subject'] ?? ''))
405  );
406  $this->forumThread->setSticky((bool) ($this->threadArray['Sticky'] ?? false));
407  $this->forumThread->setClosed((bool) ($this->threadArray['Closed'] ?? false));
408 
409  $this->forumThread->setImportName(
410  isset($this->threadArray['ImportName']) ?
411  ilUtil::stripSlashes($this->threadArray['ImportName']) :
412  null
413  );
414  $this->forumThread->setCreateDate($this->threadArray['CreateDate']);
415  $this->forumThread->setChangeDate($this->threadArray['UpdateDate']);
416 
417  $usr_data = $this->getUserIdAndAlias(
418  (int) ($this->threadArray['UserId'] ?? 0),
419  ilUtil::stripSlashes((string) ($this->threadArray['Alias'] ?? ''))
420  );
421 
422  $this->forumThread->setDisplayUserId($usr_data['usr_id']);
423  $this->forumThread->setUserAlias($usr_data['usr_alias']);
424 
425  if (version_compare($this->getSchemaVersion(), '4.5.0', '<=')) {
426  $this->threadArray['AuthorId'] = $this->threadArray['UserId'];
427  }
428 
429  $author_id_data = $this->getUserIdAndAlias(
430  (int) ($this->threadArray['AuthorId'] ?? 0)
431  );
432  $this->forumThread->setThrAuthorId($author_id_data['usr_id']);
433 
434  $this->forumThread->insert();
435 
436  $this->mapping['thr'][$this->threadArray['Id']] = $this->forumThread->getId();
437  $this->lastHandledThreadId = $this->forumThread->getId();
438  $this->threadArray = [];
439  }
440  break;
441 
442  case 'Post':
443  break;
444 
445  case 'Censorship':
446  $propertyValue['Censorship'] = $this->cdata;
447  break;
448 
449  case 'CensorshipMessage':
450  $propertyValue['CensorshipMessage'] = $this->cdata;
451  break;
452 
453  case 'Notification':
454  $propertyValue['Notification'] = $this->cdata;
455  break;
456 
457  case 'ImportName':
458  $propertyValue['ImportName'] = $this->cdata;
459  break;
460 
461  case 'Status':
462  $propertyValue['Status'] = $this->cdata;
463  break;
464 
465  case 'Message':
466  $propertyValue['Message'] = $this->cdata;
467  break;
468 
469  case 'Lft':
470  $propertyValue['Lft'] = $this->cdata;
471  break;
472 
473  case 'Rgt':
474  $propertyValue['Rgt'] = $this->cdata;
475  break;
476 
477  case 'Depth':
478  $propertyValue['Depth'] = $this->cdata;
479  break;
480 
481  case 'ParentId':
482  $propertyValue['ParentId'] = $this->cdata;
483 
484  if (
485  $this->entity === 'post' &&
486  $this->lastHandledForumId &&
487  $this->postArray !== [] &&
488  $this->forumThread &&
489  $this->lastHandledThreadId
490  ) {
491  $this->forumPost = new ilForumPost();
492  $this->forumPost->setThread($this->forumThread);
493 
494  $this->forumPost->setId((int) $this->postArray['Id']);
495  $this->forumPost->setCensorship((bool) ($this->postArray['Censorship'] ?? false));
496  $this->forumPost->setCensorshipComment(
497  ilUtil::stripSlashes((string) ($this->postArray['CensorshipMessage'] ?? ''))
498  );
499  $this->forumPost->setNotification((bool) ($this->postArray['Notification'] ?? false));
500  $this->forumPost->setStatus((bool) ($this->postArray['Status'] ?? false));
501  $purifier = ilHtmlPurifierFactory::getInstanceByType('frm_post');
502  $this->forumPost->setMessage($purifier->purify((string) ($this->postArray['Message'] ?? '')));
503  $this->forumPost->setSubject(ilUtil::stripSlashes((string) ($this->postArray['Subject'] ?? '')));
504  $this->forumPost->setLft((int) $this->postArray['Lft']);
505  $this->forumPost->setRgt((int) $this->postArray['Rgt']);
506  $this->forumPost->setDepth((int) $this->postArray['Depth']);
507  $this->forumPost->setParentId((int) $this->postArray['ParentId']);
508  $this->forumPost->setThreadId($this->lastHandledThreadId);
509  $this->forumPost->setForumId($this->lastHandledForumId);
510 
511  $this->forumPost->setImportName(
512  isset($this->postArray['ImportName']) ?
513  ilUtil::stripSlashes($this->postArray['ImportName']) :
514  null
515  );
516  $this->forumPost->setCreateDate($this->postArray['CreateDate']);
517  $this->forumPost->setChangeDate($this->postArray['UpdateDate']);
518 
519  $usr_data = $this->getUserIdAndAlias(
520  (int) ($this->postArray['UserId'] ?? 0),
521  ilUtil::stripSlashes((string) ($this->postArray['Alias'] ?? ''))
522  );
523  $update_usr_data = $this->getUserIdAndAlias(
524  (int) ($this->postArray['UpdateUserId'] ?? 0)
525  );
526  $this->forumPost->setDisplayUserId($usr_data['usr_id']);
527  $this->forumPost->setUserAlias($usr_data['usr_alias']);
528  $this->forumPost->setUpdateUserId($update_usr_data['usr_id']);
529 
530  if (version_compare($this->getSchemaVersion(), '4.5.0', '<=')) {
531  $this->postArray['AuthorId'] = $this->postArray['UserId'];
532  }
533  $author_id_data = $this->getUserIdAndAlias(
534  (int) ($this->postArray['AuthorId'] ?? 0)
535  );
536  $this->forumPost->setPosAuthorId((int) $author_id_data['usr_id']);
537 
538  if (isset($this->postArray['isAuthorModerator']) && strtoupper($this->postArray['isAuthorModerator']) === 'NULL') {
539  $this->forumPost->setIsAuthorModerator(false);
540  } else {
541  $this->forumPost->setIsAuthorModerator((bool) $this->postArray['isAuthorModerator']);
542  }
543 
544  $this->forumPost->insert();
545 
546  if (isset($this->postArray['ParentId'], $this->mapping['pos'][$this->postArray['ParentId']])) {
547  $parentId = (int) $this->mapping['pos'][$this->postArray['ParentId']];
548  } else {
549  $parentId = 0;
550  }
551 
552  $postTreeNodeId = $this->db->nextId('frm_posts_tree');
553  $this->db->insert('frm_posts_tree', [
554  'fpt_pk' => ['integer', $postTreeNodeId],
555  'thr_fk' => ['integer', $this->lastHandledThreadId],
556  'pos_fk' => ['integer', $this->forumPost->getId()],
557  'parent_pos' => ['integer', $parentId],
558  'lft' => ['integer', $this->postArray['Lft']],
559  'rgt' => ['integer', $this->postArray['Rgt']],
560  'depth' => ['integer', $this->postArray['Depth']],
561  'fpt_date' => ['timestamp', date('Y-m-d H:i:s')]
562  ]);
563 
564  $this->mapping['pos'][($this->postArray['Id'] ?? 0)] = $this->forumPost->getId();
565  $this->lastHandledPostId = $this->forumPost->getId();
566 
567  $media_objects_found = false;
568  foreach ($this->mediaObjects as $mob_attr) {
569  $importfile = $this->getImportDirectory() . '/' . $mob_attr['uri'];
570  if (is_file($importfile)) {
572  basename($importfile),
573  $importfile,
574  false
575  );
576  ilObjMediaObject::_saveUsage($mob->getId(), 'frm:html', $this->forumPost->getId());
577 
578  $this->forumPost->setMessage(
579  str_replace(
580  [
581  'src="' . $mob_attr['label'] . '"',
582  'src="' . preg_replace(
583  "/(il)_[\d]+_(mob)_([\d]+)/",
584  '$1_0_$2_$3',
585  $mob_attr['label']
586  ) . '"'
587  ],
588  'src="' . 'il_' . IL_INST_ID . '_mob_' . $mob->getId() . '"',
589  $this->forumPost->getMessage()
590  )
591  );
592  $media_objects_found = true;
593  }
594  }
595 
596  if ($media_objects_found) {
597  $this->forumPost->update();
598  }
599  $this->postArray = [];
600  }
601 
602  break;
603 
604  case 'Content':
605  $propertyValue['content'] = $this->cdata;
606  break;
607 
608  case 'Attachment':
609  $filedata = new ilFileDataForum($this->forum->getId(), $this->lastHandledPostId);
610 
611  $import_path = $this->contentArray['content'];
612  if ($import_path !== '') {
613  $import_path = $this->getImportDirectory() . '/' . $import_path;
614  $filedata->importPath($import_path, (int) $this->lastHandledPostId);
615  }
616  break;
617  }
618 
619  $this->cdata = '';
620  }
621 
625  private function getIdAndAliasArray(int $imp_usr_id, string $param = 'import'): array
626  {
627  $where = '';
628  $select = 'SELECT od.obj_id, ud.login FROM object_data od INNER JOIN usr_data ud ON od.obj_id = ud.usr_id';
629  if ($param === 'import') {
630  $where = ' WHERE od.import_id = ' . $this->db->quote(
631  'il_' . $this->import_install_id . '_usr_' . $imp_usr_id,
632  'text'
633  );
634  }
635 
636  if ($param === 'user') {
637  $where = ' WHERE ud.usr_id = ' . $this->db->quote(
638  $imp_usr_id,
639  'integer'
640  );
641  }
642 
643  $query = $this->db->query($select . $where);
644 
645  while ($res = $this->db->fetchAssoc($query)) {
646  break;
647  }
648 
649  if ($res) {
650  return [
651  'usr_id' => (int) $res['obj_id'],
652  'usr_alias' => (string) $res['login']
653  ];
654  }
655 
656  return [];
657  }
658 
662  private function getAnonymousArray(): array
663  {
664  return [
665  'usr_id' => $this->aobject->getId(),
666  'usr_alias' => $this->aobject->getLogin()
667  ];
668  }
669 
673  private function getUserIdAndAlias(int $imp_usr_id, string $imp_usr_alias = ''): array
674  {
675  if ($imp_usr_id <= 0) {
676  return [
677  'usr_id' => $imp_usr_id,
678  'usr_alias' => $imp_usr_alias
679  ];
680  }
681 
682  if ($this->import_install_id != IL_INST_ID && IL_INST_ID > 0) {
683  // Different installations
684  if (isset($this->user_id_mapping[$imp_usr_id])) {
685  return $this->user_id_mapping[$imp_usr_id];
686  }
687 
688  $res = $this->getIdAndAliasArray($imp_usr_id, 'import');
689  if ($res !== []) {
690  $this->user_id_mapping[$imp_usr_id] = $res;
691 
692  return $res;
693  }
694 
695  $return_value = $this->getAnonymousArray();
696  $this->user_id_mapping[$imp_usr_id] = $return_value;
697 
698  return $return_value;
699  }
700 
701  if ($this->import_install_id == IL_INST_ID && IL_INST_ID == 0) {
702  // Eventually different installations. We cannot determine it.
703  if (isset($this->user_id_mapping[$imp_usr_id])) {
704  return $this->user_id_mapping[$imp_usr_id];
705  }
706 
707  $res = $this->getIdAndAliasArray($imp_usr_id, 'import');
708  if ($res !== []) {
709  $this->user_id_mapping[$imp_usr_id] = $res;
710 
711  return $res;
712  }
713 
714  if (isset($this->user_id_mapping[$imp_usr_id])) {
715  return $this->user_id_mapping[$imp_usr_id];
716  }
717 
718  $res = $this->getIdAndAliasArray($imp_usr_id, 'user');
719  if ($res !== []) {
720  $this->user_id_mapping[$imp_usr_id] = $res;
721 
722  return $res;
723  }
724 
725  $return_value = $this->getAnonymousArray();
726  $this->user_id_mapping[$imp_usr_id] = $return_value;
727 
728  return $return_value;
729  }
730 
731  if (isset($this->user_id_mapping[$imp_usr_id])) {
732  return $this->user_id_mapping[$imp_usr_id];
733  }
734 
735  $res = $this->getIdAndAliasArray($imp_usr_id, 'user');
736  if ($res !== []) {
737  $this->user_id_mapping[$imp_usr_id] = $res;
738 
739  return $res;
740  }
741 
742  $return_value = $this->getAnonymousArray();
743  $this->user_id_mapping[$imp_usr_id] = $return_value;
744 
745  return $return_value;
746  }
747 
748  public function setImportInstallId($id): void
749  {
750  $this->import_install_id = $id;
751  }
752 
753  private function getNewForumPk(): int
754  {
755  $query = 'SELECT top_pk FROM frm_data WHERE top_frm_fk = ' . $this->db->quote(
756  $this->forum->getId(),
757  'integer'
758  );
759  $res = $this->db->query($query);
760  $data = $this->db->fetchAssoc($res);
761 
762  return (int) $data['top_pk'];
763  }
764 
765  public function handlerCharacterData(XMLParser $a_xml_parser, string $a_data): void
766  {
767  if ($a_data !== "\n") {
768  // Replace multiple tabs with one space
769  $a_data = preg_replace("/\t+/", ' ', $a_data);
770 
771  $this->cdata .= $a_data;
772  }
773  }
774 }
$res
Definition: ltiservices.php:66
const IL_INST_ID
Definition: constants.php:40
const ANONYMOUS_USER_ID
Definition: constants.php:27
ILIAS Style Content DomainService $content_style_domain
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
setSchemaVersion(?string $schema_version)
array readonly ilDBInterface $db
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.
getUserIdAndAlias(int $imp_usr_id, string $imp_usr_alias='')
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getIdAndAliasArray(int $imp_usr_id, string $param='import')
static getInstance(int $a_obj_id=0)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
readonly ilObjUser $aobject
$param
Definition: xapitoken.php:46
global $DIC
Definition: shib_login.php:22
importPath(string $path_to_file, int $posting_id)
static _refreshStatus(int $a_obj_id, ?array $a_users=null)
handlerEndTag(XMLParser $a_xml_parser, string $a_name)
static getInstanceByType(string $type)
handlerBeginTag(XMLParser $a_xml_parser, string $a_name, array $a_attribs)
static _saveTempFileAsMediaObject(string $name, string $tmp_name, bool $upload=true)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
__construct(Container $dic, ilPlugin $plugin)
__construct(private readonly ilObjForum $forum, string $a_xml_data, private readonly ilImportMapping $importMapping)
setXMLContent(string $a_xml_content)
setImportDirectory(?string $a_val)
handlerCharacterData(XMLParser $a_xml_parser, string $a_data)