19 declare(strict_types=1);
29 private Closure $subjectFormatterCallable,
30 private int $relatedDraftId,
31 private readonly
int $relatedForumId,
32 private readonly
string $action
41 if ($this->actor->isAnonymous() || $this->actor->getId() <= 0) {
45 if ($this->thread->getId() > 0 && $this->thread->isClosed()) {
55 !$this->relatedPost->isActivated() || $this->relatedPost->isCensored()
63 $relatedPostId = $this->relatedPost->getId();
66 $this->
form->checkInput();
69 if ($this->relatedDraftId > 0) {
70 $draftId = $this->relatedDraftId;
72 $draftId = (
int) $this->
form->getInput(
'draft_id');
75 $subjectFormatterCallback = $this->subjectFormatterCallable;
78 if (
'showreply' === $this->action) {
81 if ($draft->getPostAuthorId() !== $this->actor->getId()) {
85 $draft->setPostSubject($subjectFormatterCallback($inputValues[
'subject']));
87 $draft->setPostUserAlias($inputValues[
'alias']);
88 $draft->setNotificationStatus((
bool) $inputValues[
'notify']);
89 $draft->setUpdateUserId($this->actor->getId());
90 $draft->setPostAuthorId($this->actor->getId());
91 $draft->setPostDisplayUserId(($this->forumProperties->isAnonymized() ? 0 : $this->actor->getId()));
92 $draft->updateDraft();
100 $draft->getDraftId(),
107 if ($draft->getPostAuthorId() !== $this->actor->getId()) {
112 $history_entry->setDraftId($draft->getDraftId());
113 $history_entry->setPostSubject($subjectFormatterCallback($inputValues[
'subject']));
115 $history_entry->addDraftToHistory();
123 $history_entry->getHistoryId(),
131 $draft->setForumId($this->relatedForumId);
132 $draft->setThreadId($this->thread->getId());
133 $draft->setPostId($relatedPostId);
134 $draft->setPostSubject($subjectFormatterCallback($inputValues[
'subject']));
136 $draft->setPostUserAlias($inputValues[
'alias']);
137 $draft->setNotificationStatus((
bool) $inputValues[
'notify']);
138 $draft->setPostAuthorId($this->actor->getId());
139 $draft->setPostDisplayUserId(($this->forumProperties->isAnonymized() ? 0 : $this->actor->getId()));
148 $draft->getDraftId(),
155 $response->draft_id = $draft->getDraftId();
168 array $uploadedObjects,
169 array $oldMediaObjects,
170 array $curMediaObjects
172 foreach ($uploadedObjects as $mob) {
177 foreach ($oldMediaObjects as $mob) {
181 foreach ($curMediaObjects as $mob) {
192 'subject' => (string) $this->
form->getInput(
'subject'),
193 'message' => (string) $this->
form->getInput(
'message'),
194 'notify' => (
int) $this->
form->getInput(
'notify'),
196 $this->
form->getInput(
'alias'),
197 $this->forumProperties->isAnonymized()
static _replaceMediaObjectImageSrc(string $a_text, int $a_direction=0, string $nic='')
Replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
static _getMediaObjects(string $a_text, int $a_direction=0)
Returns all media objects found in the passed string.
handleMedia(string $type, int $draftId, array $uploadedObjects, array $oldMediaObjects, array $curMediaObjects)
__construct(private readonly ilObjUser $actor, private readonly ilPropertyFormGUI $form, private readonly ilForumProperties $forumProperties, private readonly ilForumTopic $thread, private readonly ?ilForumPost $relatedPost, private Closure $subjectFormatterCallable, private int $relatedDraftId, private readonly int $relatedForumId, private readonly string $action)
Class ilForumDraftHistory.
static getPublicUserAlias(string $user_alias, bool $is_anonymized)
static isAutoSavePostDraftAllowed()
form( $class_path, string $cmd, string $submit_caption="")
static newInstanceByDraftId(int $draft_id)
executeAndGetResponseObject()