19 declare(strict_types=1);
68 $this->db = $DIC->database();
73 $this->content_style_domain = $DIC
77 $this->
setXMLContent(
'<?xml version="1.0" encoding="utf-8"?>' . $a_xml_data);
82 $this->importDirectory = $a_val;
102 xml_set_element_handler(
104 function (XMLParser $a_xml_parser,
string $a_name, array $a_attribs):
void {
107 function (XMLParser $a_xml_parser,
string $a_name):
void {
111 xml_set_character_data_handler($a_xml_parser,
function (XMLParser $a_xml_parser,
string $a_data):
void {
116 public function handlerBeginTag(XMLParser $a_xml_parser,
string $a_name, array $a_attribs): void
120 $this->entity =
'forum';
121 $this->forumArray = [];
125 $this->entity =
'thread';
126 $this->threadArray = [];
130 $this->entity =
'post';
131 $this->postArray = [];
132 $this->mediaObjects = [];
136 $this->entity =
'content';
137 $this->contentArray = [
143 $this->mediaObjects[] = $a_attribs;
147 if (isset($a_attribs[
'Style'])) {
148 $this->last_handled_style_id = (
int) $a_attribs[
'Style'];
152 public function handlerEndTag(XMLParser $a_xml_parser,
string $a_name): void
154 $this->cdata = trim($this->cdata);
155 $property = strtolower($this->entity) .
'Array';
157 if (!property_exists($this, $property)) {
161 $propertyValue = &$this->{$property};
165 $query_num_posts =
'SELECT COUNT(pos_pk) cnt FROM frm_posts WHERE pos_top_fk = ' . $this->db->quote(
166 $this->lastHandledForumId,
169 $res_pos = $this->db->query($query_num_posts);
170 $data_pos = $this->db->fetchAssoc($res_pos);
171 $num_posts = (
int) $data_pos[
'cnt'];
173 $query_num_threads =
'SELECT COUNT(thr_pk) cnt FROM frm_threads WHERE thr_top_fk = ' . $this->db->quote(
174 $this->lastHandledForumId,
177 $res_thr = $this->db->query($query_num_threads);
178 $data_thr = $this->db->fetchAssoc($res_thr);
179 $num_threads = (
int) $data_thr[
'cnt'];
182 if ($this->lastHandledPostId !== 0) {
183 $update_str = implode(
'#', [
184 (
string) $this->lastHandledForumId,
185 (
string) $this->lastHandledThreadId,
186 (
string) $this->lastHandledPostId
190 $this->db->manipulateF(
192 SET top_last_post = %s, 194 top_num_threads = %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]
232 case 'ThreadRatings':
236 case 'PostingActivation':
240 case 'PresetSubject':
248 case 'NotificationType':
252 case 'NotificationEvents':
256 case 'ForceNotification':
260 case 'ToggleNotification':
291 case 'isAuthorModerator':
297 if ($this->entity ===
'forum' && $this->forumArray !== []) {
301 $this->forum->createSettings();
304 (
int) ($this->forumArray[
'UserId'] ?? 0),
307 $this->frm_last_mapped_top_usr_id = $forum_array[
'usr_id'];
310 (
int) ($this->forumArray[
'UpdateUserId'] ?? 0),
318 $this->forum->setDescription(
321 $this->forum->update();
322 $this->forum->updateModificationUserId($update_forum_array[
'usr_id']);
325 $newObjProp->setDefaultView(
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();
343 $this->forum_obj_id = $newObjProp->getObjId();
344 $this->mapping[
'frm'][$this->forumArray[
'Id']] =
$id;
345 $this->lastHandledForumId =
$id;
347 $this->importMapping->addMapping(
348 'components/ILIAS/COPage',
350 'frm:' . $this->forumArray[
'ObjId'],
351 'frm:' . $this->forum->getId()
354 if ($this->last_handled_style_id) {
356 $this->last_handled_style_id =
null;
359 $this->forumArray = [];
365 if ($this->lastHandledPostId !== 0) {
366 $update_str = implode(
'#', [
367 (
string) $this->lastHandledForumId,
368 (
string) $this->lastHandledThreadId,
369 (
string) $this->lastHandledPostId
373 $this->db->manipulateF(
374 'UPDATE frm_threads SET thr_last_post = %s WHERE thr_pk = %s',
376 [$update_str, $this->lastHandledThreadId]
392 case 'MarkModeratorPosts':
399 if ($this->entity ===
'thread' && $this->lastHandledForumId && $this->threadArray !== []) {
401 $this->forumThread->setId((
int) ($this->threadArray[
'Id'] ?? 0));
402 $this->forumThread->setForumId($this->lastHandledForumId);
403 $this->forumThread->setSubject(
406 $this->forumThread->setSticky((
bool) ($this->threadArray[
'Sticky'] ??
false));
407 $this->forumThread->setClosed((
bool) ($this->threadArray[
'Closed'] ??
false));
409 $this->forumThread->setImportName(
410 isset($this->threadArray[
'ImportName']) ?
414 $this->forumThread->setCreateDate($this->threadArray[
'CreateDate']);
415 $this->forumThread->setChangeDate($this->threadArray[
'UpdateDate']);
418 (
int) ($this->threadArray[
'UserId'] ?? 0),
422 $this->forumThread->setDisplayUserId($usr_data[
'usr_id']);
423 $this->forumThread->setUserAlias($usr_data[
'usr_alias']);
426 $this->threadArray[
'AuthorId'] = $this->threadArray[
'UserId'];
430 (
int) ($this->threadArray[
'AuthorId'] ?? 0)
432 $this->forumThread->setThrAuthorId($author_id_data[
'usr_id']);
434 $this->forumThread->insert();
436 $this->mapping[
'thr'][$this->threadArray[
'Id']] = $this->forumThread->getId();
437 $this->lastHandledThreadId = $this->forumThread->getId();
438 $this->threadArray = [];
449 case 'CensorshipMessage':
485 $this->entity ===
'post' &&
486 $this->lastHandledForumId &&
487 $this->postArray !== [] &&
488 $this->forumThread &&
489 $this->lastHandledThreadId
492 $this->forumPost->setThread($this->forumThread);
494 $this->forumPost->setId((
int) $this->postArray[
'Id']);
495 $this->forumPost->setCensorship((
bool) ($this->postArray[
'Censorship'] ??
false));
496 $this->forumPost->setCensorshipComment(
499 $this->forumPost->setNotification((
bool) ($this->postArray[
'Notification'] ??
false));
500 $this->forumPost->setStatus((
bool) ($this->postArray[
'Status'] ??
false));
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);
511 $this->forumPost->setImportName(
512 isset($this->postArray[
'ImportName']) ?
516 $this->forumPost->setCreateDate($this->postArray[
'CreateDate']);
517 $this->forumPost->setChangeDate($this->postArray[
'UpdateDate']);
520 (
int) ($this->postArray[
'UserId'] ?? 0),
524 (
int) ($this->postArray[
'UpdateUserId'] ?? 0)
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']);
531 $this->postArray[
'AuthorId'] = $this->postArray[
'UserId'];
534 (
int) ($this->postArray[
'AuthorId'] ?? 0)
536 $this->forumPost->setPosAuthorId((
int) $author_id_data[
'usr_id']);
538 if (isset($this->postArray[
'isAuthorModerator']) && strtoupper($this->postArray[
'isAuthorModerator']) ===
'NULL') {
539 $this->forumPost->setIsAuthorModerator(
false);
541 $this->forumPost->setIsAuthorModerator((
bool) $this->postArray[
'isAuthorModerator']);
544 $this->forumPost->insert();
546 if (isset($this->postArray[
'ParentId'], $this->mapping[
'pos'][$this->postArray[
'ParentId']])) {
547 $parentId = (
int) $this->mapping[
'pos'][$this->postArray[
'ParentId']];
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')]
564 $this->mapping[
'pos'][($this->postArray[
'Id'] ?? 0)] = $this->forumPost->getId();
565 $this->lastHandledPostId = $this->forumPost->getId();
567 $media_objects_found =
false;
568 foreach ($this->mediaObjects as $mob_attr) {
570 if (is_file($importfile)) {
572 basename($importfile),
578 $this->forumPost->setMessage(
581 'src="' . $mob_attr[
'label'] .
'"',
582 'src="' . preg_replace(
583 "/(il)_[\d]+_(mob)_([\d]+)/",
588 'src="' .
'il_' .
IL_INST_ID .
'_mob_' . $mob->getId() .
'"',
589 $this->forumPost->getMessage()
592 $media_objects_found =
true;
596 if ($media_objects_found) {
597 $this->forumPost->update();
599 $this->postArray = [];
611 $import_path = $this->contentArray[
'content'];
612 if ($import_path !==
'') {
614 $filedata->
importPath($import_path, (
int) $this->lastHandledPostId);
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,
637 $where =
' WHERE ud.usr_id = ' . $this->db->quote(
643 $query = $this->db->query($select . $where);
645 while (
$res = $this->db->fetchAssoc($query)) {
651 'usr_id' => (
int)
$res[
'obj_id'],
652 'usr_alias' => (
string)
$res[
'login']
665 'usr_id' => $this->aobject->getId(),
666 'usr_alias' => $this->aobject->getLogin()
675 if ($imp_usr_id <= 0) {
677 'usr_id' => $imp_usr_id,
678 'usr_alias' => $imp_usr_alias
684 if (isset($this->user_id_mapping[$imp_usr_id])) {
685 return $this->user_id_mapping[$imp_usr_id];
690 $this->user_id_mapping[$imp_usr_id] =
$res;
696 $this->user_id_mapping[$imp_usr_id] = $return_value;
698 return $return_value;
703 if (isset($this->user_id_mapping[$imp_usr_id])) {
704 return $this->user_id_mapping[$imp_usr_id];
709 $this->user_id_mapping[$imp_usr_id] =
$res;
714 if (isset($this->user_id_mapping[$imp_usr_id])) {
715 return $this->user_id_mapping[$imp_usr_id];
720 $this->user_id_mapping[$imp_usr_id] =
$res;
726 $this->user_id_mapping[$imp_usr_id] = $return_value;
728 return $return_value;
731 if (isset($this->user_id_mapping[$imp_usr_id])) {
732 return $this->user_id_mapping[$imp_usr_id];
737 $this->user_id_mapping[$imp_usr_id] =
$res;
743 $this->user_id_mapping[$imp_usr_id] = $return_value;
745 return $return_value;
750 $this->import_install_id =
$id;
755 $query =
'SELECT top_pk FROM frm_data WHERE top_frm_fk = ' . $this->db->quote(
756 $this->forum->getId(),
759 $res = $this->db->query($query);
762 return (
int)
$data[
'top_pk'];
767 if ($a_data !==
"\n") {
769 $a_data = preg_replace(
"/\t+/",
' ', $a_data);
771 $this->cdata .= $a_data;
ILIAS Style Content DomainService $content_style_domain
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
setSchemaVersion(?string $schema_version)
int $frm_last_mapped_top_usr_id
array readonly ilDBInterface $db
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
int $last_handled_style_id
setHandlers($a_xml_parser)
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)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
__construct(private readonly ilObjForum $forum, string $a_xml_data, private readonly ilImportMapping $importMapping)
ilForumTopic $forumThread
setXMLContent(string $a_xml_content)
setImportDirectory(?string $a_val)
handlerCharacterData(XMLParser $a_xml_parser, string $a_data)