19 declare(strict_types=1);
55 private string $rcid = self::NO_RCID;
57 public function __construct(
private int $id = 0,
bool $a_is_moderator =
false,
bool $preventImplicitRead =
false)
61 $this->db = $DIC->database();
63 if (!$preventImplicitRead) {
70 if ($this->forum_id && $this->thread_id) {
71 $this->
id = $this->db->nextId(
'frm_posts');
73 $this->db->insert(
'frm_posts', [
74 'pos_pk' => [
'integer', $this->
id],
75 'pos_top_fk' => [
'integer', $this->forum_id],
76 'pos_thr_fk' => [
'integer', $this->thread_id],
77 'pos_display_user_id' => [
'integer', $this->display_user_id],
78 'pos_usr_alias' => [
'text', $this->user_alias],
79 'pos_subject' => [
'text', $this->subject],
80 'pos_message' => [
'clob', $this->message],
81 'pos_date' => [
'timestamp', $this->createdate],
82 'pos_update' => [
'timestamp', $this->createdate],
83 'update_user' => [
'integer', $this->user_id_update],
84 'pos_cens' => [
'integer', (
int) $this->censored],
86 'import_name' => [
'text', $this->import_name],
87 'pos_status' => [
'integer', (
int) $this->status],
88 'pos_author_id' => [
'integer', $this->pos_author_id],
89 'is_author_moderator' => [
'integer', $this->is_author_moderator],
90 'pos_activation_date' => [
'timestamp', $this->createdate]
97 if ($this->
id !== 0) {
101 'pos_top_fk' => [
'integer', $this->forum_id],
102 'pos_thr_fk' => [
'integer', $this->thread_id],
103 'pos_subject' => [
'text', $this->subject],
104 'pos_message' => [
'clob', $this->message],
105 'pos_update' => [
'timestamp', $this->changedate],
106 'update_user' => [
'integer', $this->user_id_update],
107 'pos_cens' => [
'integer', (
int) $this->censored],
108 'pos_cens_date' => [
'timestamp', $this->censored_date],
109 'pos_cens_com' => [
'text', $this->censorship_comment],
111 'pos_status' => [
'integer', (
int) $this->status],
112 'rcid' => [
'text', ($this->rcid ?? self::NO_RCID)]
115 'pos_pk' => [
'integer', $this->
id]
119 if ($this->objThread->getFirstVisiblePostId() ===
$this->id) {
120 $this->objThread->setSubject($this->subject);
121 $this->objThread->update();
122 $this->objThread->reload();
133 if ($this->
id !== 0) {
134 $res = $this->db->queryF(
136 SELECT * FROM frm_posts 137 INNER JOIN frm_posts_tree ON pos_fk = pos_pk 142 $row = $this->db->fetchObject(
$res);
144 if (is_object($row)) {
145 $this->
id = (
int) $row->pos_pk;
146 $this->forum_id = (
int) $row->pos_top_fk;
147 $this->thread_id = (
int) $row->pos_thr_fk;
148 $this->display_user_id = (
int) $row->pos_display_user_id;
149 $this->user_alias = $row->pos_usr_alias;
150 $this->subject = (string) $row->pos_subject;
151 $this->message = (
string) $row->pos_message;
152 $this->createdate = $row->pos_date;
153 $this->changedate = $row->pos_update;
154 $this->user_id_update = (
int) $row->update_user;
155 $this->censored = (
bool) $row->pos_cens;
156 $this->censored_date = $row->pos_cens_date;
157 $this->censorship_comment = $row->pos_cens_com;
159 $this->import_name = $row->import_name;
160 $this->status = (
bool) $row->pos_status;
161 $this->tree_id = (
int) $row->fpt_pk;
162 $this->parent_id = (
int) $row->parent_pos;
163 $this->lft = (
int) $row->lft;
164 $this->rgt = (
int) $row->rgt;
165 $this->depth = (
int) $row->depth;
166 $this->pos_author_id = (
int) $row->pos_author_id;
167 $this->is_author_moderator = (bool) $row->is_author_moderator;
168 $this->post_activation_date = $row->pos_activation_date;
169 $this->rcid = (
string) $row->rcid;
170 $this->objThread =
new ilForumTopic($this->thread_id, $this->is_moderator);
177 if ($this->
id !== 0) {
178 $res = $this->db->queryF(
180 SELECT * FROM frm_posts_tree 181 INNER JOIN frm_posts ON pos_pk = pos_fk 182 WHERE pos_status = %s 183 AND lft < %s AND rgt > %s 185 [
'integer',
'integer',
'integer',
'integer'],
186 [0, $this->lft, $this->rgt, $this->thread_id]
189 return $res->numRows() > 0;
202 if ($this->
id !== 0) {
203 $now = date(
'Y-m-d H:i:s');
207 'pos_status' => [
'integer', 1],
208 'pos_activation_date' => [
'timestamp', $now]
210 [
'pos_pk' => [
'integer', $this->
id]]
221 if ($this->
id !== 0) {
222 $query =
"SELECT pos_pk FROM frm_posts_tree treea " 223 .
"INNER JOIN frm_posts_tree treeb ON treeb.thr_fk = treea.thr_fk " 224 .
"AND treeb.lft BETWEEN treea.lft AND treea.rgt " 225 .
"INNER JOIN frm_posts ON pos_pk = treeb.pos_fk " 226 .
"WHERE treea.pos_fk = %s";
227 $result = $this->db->queryF(
233 $now = date(
'Y-m-d H:i:s');
234 while ($row = $this->db->fetchAssoc($result)) {
238 'pos_status' => [
'integer', 1],
239 'pos_activation_date' => [
'timestamp', $now]
241 [
'pos_pk' => [
'integer', $row[
'pos_pk']]]
255 if ($this->
id !== 0) {
256 $query =
"SELECT pos_pk FROM frm_posts " 257 .
"INNER JOIN frm_posts_tree ON pos_fk = pos_pk " 258 .
"WHERE lft < %s AND rgt > %s AND thr_fk = %s";
259 $result = $this->db->queryF(
261 [
'integer',
'integer',
'integer'],
262 [$this->lft, $this->rgt, $this->thread_id]
265 $now = date(
'Y-m-d H:i:s');
266 while ($row = $this->db->fetchAssoc($result)) {
270 'pos_status' => [
'integer', 1],
271 'pos_activation_date' => [
'timestamp', $now]
273 [
'pos_pk' => [
'integer', $row[
'pos_pk']]]
288 public function isRead(
int $a_user_id = 0): bool
290 if ($a_user_id && $this->
id) {
291 $res = $this->db->queryF(
292 'SELECT * FROM frm_user_read WHERE usr_id = %s AND post_id = %s',
293 [
'integer',
'integer'],
294 [$a_user_id, $this->
id]
297 return $res->numRows() > 0;
305 if ($this->
id && $this->rgt && $this->lft) {
306 $res = $this->db->queryF(
307 'SELECT * FROM frm_posts_tree WHERE lft > %s AND rgt < %s AND thr_fk = %s',
308 [
'integer',
'integer',
'integer'],
309 [$this->lft, $this->rgt, $this->thread_id]
312 return $res->numRows() > 0;
318 public function isOwner(
int $a_user_id = 0): bool
320 if ($this->pos_author_id && $a_user_id) {
321 return $this->pos_author_id === $a_user_id;
327 public function setId(
int $a_id): void
339 $this->forum_id = $a_forum_id;
349 $this->thread_id = $a_thread_id;
369 $this->display_user_id = $a_user_id;
379 $this->user_alias = $a_user_alias;
389 $this->subject = $a_subject;
399 $this->message = $a_message;
409 $this->createdate = $a_createdate;
419 $this->changedate = $a_changedate;
429 $this->user_id_update = $a_user_id_update;
439 $this->censored = $a_censorship;
449 $this->censorship_comment = $a_comment;
469 $this->import_name = $a_import_name;
479 $this->status = $a_status;
489 $this->tree_id = $a_tree_id;
499 $this->parent_id = $a_parent_id;
504 $this->post_read = $a_is_read;
539 $this->depth = $a_depth;
549 $this->objThread = $thread;
600 $this->
setSubject((
string) $row[
'pos_subject']);
602 $this->
setMessage((
string) $row[
'pos_message']);
612 $this->
setStatus((
bool) $row[
'pos_status']);
615 $this->
setLft((
int) $row[
'lft']);
616 $this->
setRgt((
int) $row[
'rgt']);
617 $this->
setDepth((
int) $row[
'depth']);
618 $this->
setIsRead(isset($row[
'post_read']) && (
int) $row[
'post_read']);
622 $this->
setRCID((
string) ($row[
'rcid'] ?? self::NO_RCID));
628 public static function mergePosts(
int $sourceThreadId,
int $targetThreadId, array $excludedPostIds = []): void
631 $ilDB = $DIC->database();
633 $conditions = [
'pos_thr_fk = ' .
$ilDB->quote($sourceThreadId,
'integer')];
634 if ($excludedPostIds !== []) {
635 $conditions[] =
$ilDB->in(
'pos_pk', $excludedPostIds,
true,
'integer');
639 'UPDATE frm_posts SET pos_thr_fk = %s WHERE ' . implode(
' AND ', $conditions),
649 $res = $DIC->database()->queryF(
650 'SELECT notify FROM frm_posts WHERE pos_pk = %s',
655 $row = $DIC->database()->fetchAssoc(
$res);
656 return (
bool) $row[
'notify'];
662 $ilDB = $DIC->database();
665 'SELECT pos_message FROM frm_posts WHERE pos_pk = %s',
671 return $row->pos_message ?:
'';
string $censorship_comment
setTreeId(int $a_tree_id)
setIsAuthorModerator(?bool $is_author_moderator)
setThread(ilForumTopic $thread)
setCensoredDate(?string $censored_date)
setMessage(string $a_message)
activatePostAndChildPosts()
bool $is_author_moderator
setImportName(?string $a_import_name)
static mergePosts(int $sourceThreadId, int $targetThreadId, array $excludedPostIds=[])
static lookupNotificationStatusByPostId(int $post_id)
setCensorshipComment(?string $a_comment)
isOwner(int $a_user_id=0)
static lookupPostMessage(int $post_id)
__construct(private int $id=0, bool $a_is_moderator=false, bool $preventImplicitRead=false)
setIsRead(bool $a_is_read)
notification()
description: > Example for rendring a notification glyph.
setStatus(bool $a_status)
setForumId(int $a_forum_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setPosAuthorId(int $pos_author_id)
setParentId(int $a_parent_id)
setCensorship(bool $a_censorship)
setChangeDate(?string $a_changedate)
readonly ilDBInterface $db
setDisplayUserId(int $a_user_id)
setSubject(string $a_subject)
setNotification(bool $a_notification)
setUpdateUserId(int $a_user_id_update)
setPostActivationDate(?string $post_activation_date)
setUserAlias(?string $a_user_alias)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
string $post_activation_date
setThreadId(int $a_thread_id)
setCreateDate(?string $a_createdate)