framework/extensions/sticky/src/Posts/DiscussionStickiedPost.php
2015-09-04 12:30:25 +09:30

75 lines
2.0 KiB
PHP
Executable File

<?php
/*
* This file is part of Flarum.
*
* (c) Toby Zerner <toby.zerner@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Flarum\Sticky\Posts;
use Flarum\Core\Posts\Post;
use Flarum\Core\Posts\EventPost;
use Flarum\Core\Posts\MergeablePost;
class DiscussionStickiedPost extends EventPost implements MergeablePost
{
public static $type = 'discussionStickied';
public function saveAfter(Post $previous)
{
// If the previous post is another 'discussion stickied' post, and it's
// by the same user, then we can merge this post into it. If we find
// that we've in fact reverted the sticky status, delete it. Otherwise,
// update its content.
if ($previous instanceof static && $this->user_id === $previous->user_id) {
if ($previous->content['sticky'] != $this->content['sticky']) {
$previous->delete();
} else {
$previous->content = $this->content;
$previous->save();
}
return $previous;
}
$this->save();
return $this;
}
/**
* Create a new instance in reply to a discussion.
*
* @param integer $discussionId
* @param integer $userId
* @param boolean $isSticky
* @return static
*/
public static function reply($discussionId, $userId, $isSticky)
{
$post = new static;
$post->content = static::buildContent($isSticky);
$post->time = time();
$post->discussion_id = $discussionId;
$post->user_id = $userId;
return $post;
}
/**
* Build the content attribute.
*
* @param boolean $isSticky Whether or not the discussion is stickied.
* @return array
*/
public static function buildContent($isSticky)
{
return ['sticky' => (bool) $isSticky];
}
}