42 $this->
setXMLContent(
'<?xml version="1.0" encoding="utf-8"?>' . $a_xml_data);
44 $this->db = $DIC->database();
54 $this->importDirectory = $a_val;
64 return $this->importDirectory;
91 xml_set_object($a_xml_parser, $this);
92 xml_set_element_handler($a_xml_parser,
'handlerBeginTag',
'handlerEndTag');
93 xml_set_character_data_handler($a_xml_parser,
'handlerCharacterData');
107 $this->entity =
'forum';
108 $this->forumArray = array();
112 $this->entity =
'thread';
113 $this->threadArray = array();
117 $this->mediaObjects = array();
118 $this->entity =
'post';
119 $this->postArray = array();
123 $this->entity =
'content';
124 $this->contentArray = array();
128 $this->mediaObjects[] = $a_attribs;
141 $this->cdata = trim($this->cdata);
142 $arrayname = strtolower($this->entity) .
'Array';
143 $x = &$this->$arrayname;
147 $query_num_posts =
"SELECT COUNT(pos_pk) cnt 149 WHERE pos_top_fk = " . $this->db->quote(
150 $this->lastHandledForumId,
154 $res_pos = $this->db->query($query_num_posts);
155 $data_pos = $this->db->fetchAssoc($res_pos);
156 $num_posts = $data_pos[
'cnt'];
158 $query_num_threads =
"SELECT COUNT(thr_pk) cnt 160 WHERE thr_top_fk = " . $this->db->quote(
161 $this->lastHandledForumId,
165 $res_thr = $this->db->query($query_num_threads);
166 $data_thr = $this->db->fetchAssoc($res_thr);
167 $num_threads = $data_thr[
'cnt'];
169 $update_str =
"$this->lastHandledForumId#$this->lastHandledThreadId#$this->lastHandledPostId";
170 $this->db->manipulateF(
172 SET top_last_post = %s, 174 top_num_threads = %s, 176 WHERE top_frm_fk = %s",
177 array(
'text',
'integer',
'integer',
'integer',
'integer'),
178 array($update_str, $num_posts, $num_threads, $this->frm_last_mapped_top_usr_id, $this->forum_obj_id)
183 $x[
'Id'] = $this->cdata;
187 $x[
'ObjId'] = $this->cdata;
191 $x[
'Title'] = $this->cdata;
195 $x[
'Description'] = $this->cdata;
199 $x[
'DefaultView'] = $this->cdata;
203 $x[
'Pseudonyms'] = $this->cdata;
207 $x[
'Statistics'] = $this->cdata;
210 case 'ThreadRatings':
211 $x[
'ThreadRatings'] = $this->cdata;
214 case 'PostingActivation':
215 $x[
'PostingActivation'] = $this->cdata;
218 case 'PresetSubject':
219 $x[
'PresetSubject'] = $this->cdata;
223 $x[
'PresetRe'] = $this->cdata;
226 case 'NotificationType':
227 $x[
'NotificationType'] = $this->cdata;
230 case 'ForceNotification':
231 $x[
'ForceNotification'] = $this->cdata;
234 case 'ToggleNotification':
235 $x[
'ToggleNotification'] = $this->cdata;
239 $x[
'LastPost'] = $this->cdata;
243 $x[
'Moderator'] = $this->cdata;
247 $x[
'CreateDate'] = $this->cdata;
251 $x[
'UpdateDate'] = $this->cdata;
255 $x[
'FileUpload'] = $this->cdata;
259 $x[
'UpdateUserId'] = $this->cdata;
263 $x[
'AuthorId'] = $this->cdata;
265 case 'isAuthorModerator':
266 $x[
'isAuthorModerator'] = $this->cdata;
270 $x[
'UserId'] = $this->cdata;
271 if ($this->entity ==
'forum' && $this->forumArray) {
275 $this->forum->createSettings();
278 $this->forumArray[
'UserId'],
282 $this->frm_last_mapped_top_usr_id = $forum_array[
'usr_id'];
285 $this->forumArray[
'UpdateUserId'],
293 $this->forum->setDescription(
ilUtil::stripSlashes((
string) ($this->forumArray[
"Description"] ??
'')));
294 $this->forum->update($update_forum_array[
'usr_id']);
298 $newObjProp->setAnonymisation((
bool) ($this->forumArray[
'Pseudonyms'] ??
false));
299 $newObjProp->setStatisticsStatus((
bool) ($this->forumArray[
'Statistics'] ??
false));
300 $newObjProp->setIsThreadRatingEnabled((
bool) ($this->forumArray[
'ThreadRatings'] ??
false));
301 $newObjProp->setPostActivation((
bool) ($this->forumArray[
'PostingActivation'] ??
false));
302 $newObjProp->setPresetSubject((
bool) ($this->forumArray[
'PresetSubject'] ??
false));
303 $newObjProp->setAddReSubject((
bool) ($this->forumArray[
'PresetRe'] ??
false));
304 $newObjProp->setNotificationType((
string) ($this->forumArray[
'NotificationType'] ?:
'all_users'));
305 $newObjProp->setAdminForceNoti((
bool) ($this->forumArray[
'ForceNotification'] ??
false));
306 $newObjProp->setUserToggleNoti((
bool) ($this->forumArray[
'ToggleNotification'] ??
false));
307 $newObjProp->setFileUploadAllowed((
bool) ($this->forumArray[
'FileUpload'] ??
false));
308 $newObjProp->setThreadSorting((
int) ($this->forumArray[
'Sorting'] ?? 0));
309 $newObjProp->setMarkModeratorPosts((
bool) ($this->forumArray[
'MarkModeratorPosts'] ??
false));
310 $newObjProp->update();
313 $this->forum_obj_id = $newObjProp->getObjId();
314 $this->mapping[
'frm'][$this->forumArray[
'Id']] = $id;
315 $this->lastHandledForumId = $id;
317 unset($this->forumArray);
323 $update_str =
"$this->lastHandledForumId#$this->lastHandledThreadId#$this->lastHandledPostId";
324 $this->db->manipulateF(
326 SET thr_last_post = %s 328 array(
'text',
'integer'),
329 array($update_str, $this->lastHandledThreadId)
334 $x[
'Subject'] = $this->cdata;
338 $x[
'Alias'] = $this->cdata;
342 $x[
'Sticky'] = $this->cdata;
346 $x[
'Sorting'] = $this->cdata;
349 case 'MarkModeratorPosts':
350 $x[
'MarkModeratorPosts'] = $this->cdata;
354 $x[
'Closed'] = $this->cdata;
356 if ($this->entity ==
'thread' && $this->threadArray) {
358 $this->forumThread->setId((
int) ($this->threadArray[
'Id'] ?? 0));
359 $this->forumThread->setForumId($this->lastHandledForumId);
360 $this->forumThread->setSubject(
ilUtil::stripSlashes((
string) ($this->threadArray[
'Subject'] ??
'')));
361 $this->forumThread->setSticky((
bool) ($this->threadArray[
'Sticky'] ??
false));
362 $this->forumThread->setClosed((
bool) ($this->threadArray[
'Closed'] ??
false));
363 $this->forumThread->setImportName(
364 isset($this->threadArray[
'ImportName']) ?
368 $this->forumThread->setCreateDate($this->threadArray[
'CreateDate']);
369 $this->forumThread->setChangeDate($this->threadArray[
'UpdateDate']);
372 (
int) ($this->threadArray[
'UserId'] ?? 0),
376 $this->forumThread->setDisplayUserId($usr_data[
'usr_id']);
377 $this->forumThread->setUserAlias($usr_data[
'usr_alias']);
380 $this->threadArray[
'AuthorId'] = $this->threadArray[
'UserId'];
384 (
int) ($this->threadArray[
'AuthorId'] ?? 0)
386 $this->forumThread->setThrAuthorId($author_id_data[
'usr_id']);
388 $this->forumThread->insert();
390 $this->mapping[
'thr'][$this->threadArray[
'Id']] = $this->forumThread->getId();
391 $this->lastHandledThreadId = $this->forumThread->getId();
393 unset($this->threadArray);
402 $x[
'Censorship'] = $this->cdata;
405 case 'CensorshipMessage':
406 $x[
'CensorshipMessage'] = $this->cdata;
410 $x[
'Notification'] = $this->cdata;
414 $x[
'ImportName'] = $this->cdata;
418 $x[
'Status'] = $this->cdata;
422 $x[
'Message'] = $this->cdata;
426 $x[
'Lft'] = $this->cdata;
430 $x[
'Rgt'] = $this->cdata;
434 $x[
'Depth'] = $this->cdata;
438 $x[
'ParentId'] = $this->cdata;
440 if ($this->entity ==
'post' && $this->postArray) {
442 $this->forumPost->setThread($this->forumThread);
443 $this->forumPost->setId((
int) $this->postArray[
'Id']);
444 $this->forumPost->setCensorship((
bool) ($this->postArray[
'Censorship'] ??
false));
445 $this->forumPost->setCensorshipComment(
448 $this->forumPost->setNotification((
bool) ($this->postArray[
'Notification'] ??
false));
449 $this->forumPost->setStatus((
bool) ($this->postArray[
'Status'] ??
false));
451 $this->forumPost->setMessage($purifier->purify((
string) ($this->postArray[
'Message'] ??
'')));
452 $this->forumPost->setSubject(
ilUtil::stripSlashes((
string) ($this->postArray[
'Subject'] ??
'')));
453 $this->forumPost->setLft((
int) $this->postArray[
'Lft']);
454 $this->forumPost->setRgt((
int) $this->postArray[
'Rgt']);
455 $this->forumPost->setDepth((
int) $this->postArray[
'Depth']);
456 $this->forumPost->setParentId((
int) $this->postArray[
'ParentId']);
457 $this->forumPost->setThreadId($this->lastHandledThreadId);
458 $this->forumPost->setForumId($this->lastHandledForumId);
460 $this->forumPost->setImportName(
461 isset($this->postArray[
'ImportName']) ?
465 $this->forumPost->setCreateDate($this->postArray[
'CreateDate']);
466 $this->forumPost->setChangeDate($this->postArray[
'UpdateDate']);
469 (
int) ($this->postArray[
'UserId'] ?? 0),
473 (
int) ($this->postArray[
'UpdateUserId'] ?? 0)
475 $this->forumPost->setDisplayUserId($usr_data[
'usr_id']);
476 $this->forumPost->setUserAlias($usr_data[
'usr_alias']);
477 $this->forumPost->setUpdateUserId($update_usr_data[
'usr_id']);
480 $this->postArray[
'AuthorId'] = $this->postArray[
'UserId'];
483 (
int) ($this->postArray[
'AuthorId'] ?? 0)
485 $this->forumPost->setPosAuthorId((
int) $author_id_data[
'usr_id']);
487 if ($this->postArray[
'isAuthorModerator'] ===
'NULL') {
488 $this->forumPost->setIsAuthorModerator(null);
490 $this->forumPost->setIsAuthorModerator((
int) $this->postArray[
'isAuthorModerator']);
493 $this->forumPost->insert();
495 if (isset($this->postArray[
'ParentId'], $this->mapping[
'pos'][$this->postArray[
'ParentId']])) {
496 $parentId = (int) $this->mapping[
'pos'][$this->postArray[
'ParentId']];
501 $postTreeNodeId = $this->db->nextId(
'frm_posts_tree');
502 $this->db->insert(
'frm_posts_tree', array(
503 'fpt_pk' => array(
'integer', $postTreeNodeId),
504 'thr_fk' => array(
'integer', $this->lastHandledThreadId),
505 'pos_fk' => array(
'integer', $this->forumPost->getId()),
506 'parent_pos' => array(
'integer', $parentId),
507 'lft' => array(
'integer', $this->postArray[
'Lft']),
508 'rgt' => array(
'integer', $this->postArray[
'Rgt']),
509 'depth' => array(
'integer', $this->postArray[
'Depth']),
510 'fpt_date' => array(
'timestamp', date(
'Y-m-d H:i:s'))
513 $this->mapping[
'pos'][$this->postArray[
'Id']] = $this->forumPost->getId();
514 $this->lastHandledPostId = $this->forumPost->getId();
516 $media_objects_found =
false;
517 foreach ($this->mediaObjects as $mob_attr) {
519 if (file_exists($importfile)) {
523 $this->forumPost->setMessage(
526 "src=\"" . $mob_attr[
"label"] .
"\"",
527 "src=\"" . preg_replace(
"/(il)_[\d]+_(mob)_([\d]+)/",
"$1_0_$2_$3", $mob_attr[
"label"]) .
"\"" 529 "src=\"" .
"il_" .
IL_INST_ID .
"_mob_" . $mob->getId() .
"\"",
530 $this->forumPost->getMessage()
533 $media_objects_found =
true;
537 if ($media_objects_found) {
538 $this->forumPost->update();
541 unset($this->postArray);
547 $x[
'content'] = $this->cdata;
551 $filedata =
new ilFileDataForum($this->forum->getId(), $this->lastHandledPostId);
553 $importPath = $this->contentArray[
'content'];
555 if (strlen($importPath)) {
558 $newFilename = preg_replace(
"/^\d+_\d+(_.*)/ims", $this->forum->getId() .
"_" . $this->lastHandledPostId .
"$1", basename($importPath));
560 $newPath = $path .
'/' . $newFilename;
561 @copy($importPath, $newPath);
573 $select =
'SELECT od.obj_id, ud.login 575 INNER JOIN usr_data ud 576 ON od.obj_id = ud.usr_id';
579 $where =
' WHERE od.import_id = ' . $this->db->quote(
580 'il_' . $this->import_install_id .
'_usr_' . $imp_usr_id,
586 $where =
' WHERE ud.usr_id = ' . $this->db->quote(
592 $query = $this->db->query($select . $where);
594 while (
$res = $this->db->fetchAssoc(
$query)) {
600 'usr_id' =>
$res[
'obj_id'],
601 'usr_alias' =>
$res[
'login']
611 'usr_id' => $this->aobject->getId(),
612 'usr_alias' => $this->aobject->getLogin()
619 if ((
int) $imp_usr_id > 0) {
624 if ($this->user_id_mapping[$imp_usr_id]) {
625 return $this->user_id_mapping[$imp_usr_id];
630 $this->user_id_mapping[$imp_usr_id] =
$res;
635 $this->user_id_mapping[$imp_usr_id] = $return_value;
637 return $return_value;
642 if ($this->user_id_mapping[$imp_usr_id]) {
643 return $this->user_id_mapping[$imp_usr_id];
648 $this->user_id_mapping[$imp_usr_id] =
$res;
653 if ($this->user_id_mapping[$imp_usr_id]) {
654 return $this->user_id_mapping[$imp_usr_id];
659 $this->user_id_mapping[$imp_usr_id] =
$res;
664 $this->user_id_mapping[$imp_usr_id] = $return_value;
666 return $return_value;
673 if ($this->user_id_mapping[$imp_usr_id]) {
674 return $this->user_id_mapping[$imp_usr_id];
679 $this->user_id_mapping[$imp_usr_id] =
$res;
684 $this->user_id_mapping[$imp_usr_id] = $return_value;
686 return $return_value;
692 'usr_id' => $imp_usr_id,
693 'usr_alias' => $imp_usr_alias
700 $this->import_install_id = $id;
705 $query =
"SELECT top_pk FROM frm_data 706 WHERE top_frm_fk = " . $this->db->quote(
707 $this->forum->getId(),
713 return $data[
'top_pk'];
724 if ($a_data !=
"\n") {
726 $a_data = preg_replace(
"/\t+/",
" ", $a_data);
728 $this->cdata .= $a_data;
741 return $this->result > 0;
handlerBeginTag($a_xml_parser, $a_name, $a_attribs)
handler for begin of element
getImportDirectory()
Get import directory.
startParsing()
stores xml data in array
getUserIdAndAlias($imp_usr_id, $imp_usr_alias='')
handlerEndTag($a_xml_parser, $a_name)
handler for end of element
Base class for sax-based expat parsing extended classes need to overwrite the method setHandlers and ...
getIdAndAliasArray($imp_usr_id, $param='import')
__construct($forum, $a_xml_data)
Constructor.
static getInstance($a_obj_id=0)
handlerCharacterData($a_xml_parser, $a_data)
handler for character data
foreach($_POST as $key=> $value) $res
setHandlers($a_xml_parser)
set event handlers
start()
starts parsing an changes object by side effect.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
__construct(Container $dic, ilPlugin $plugin)
This class handles all operations on files for the forum object.
setSchemaVersion($schema_version)
static _getInstanceByType(string $type)
Factory method for creating purifier instances.
setImportDirectory($a_val)
Set import directory.
setXMLContent($a_xml_content)
getForumPath()
get forum path public