2015-11-13 23:11:55 +00:00
|
|
|
<?php
|
2016-02-03 22:22:56 +00:00
|
|
|
/**
|
|
|
|
* Holds the thread object class.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-03 22:22:56 +00:00
|
|
|
* @package Sakura
|
|
|
|
*/
|
|
|
|
|
2015-11-22 22:10:23 +00:00
|
|
|
namespace Sakura\Forum;
|
2015-11-17 19:30:34 +00:00
|
|
|
|
2016-02-18 23:28:44 +00:00
|
|
|
use Sakura\DB;
|
2015-11-13 23:11:55 +00:00
|
|
|
|
|
|
|
/**
|
2016-02-02 21:04:15 +00:00
|
|
|
* Used to serve, create and update threads.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2015-11-13 23:11:55 +00:00
|
|
|
* @package Sakura
|
2016-02-02 21:04:15 +00:00
|
|
|
* @author Julian van de Groep <me@flash.moe>
|
2015-11-13 23:11:55 +00:00
|
|
|
*/
|
|
|
|
class Thread
|
|
|
|
{
|
2016-02-02 21:04:15 +00:00
|
|
|
/**
|
|
|
|
* The ID of this thread.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @var int
|
|
|
|
*/
|
2015-11-13 23:11:55 +00:00
|
|
|
public $id = 0;
|
2016-02-02 21:04:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The ID of the forum this thread is a part of.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @var int
|
|
|
|
*/
|
2015-11-13 23:11:55 +00:00
|
|
|
public $forum = 0;
|
2016-02-02 21:04:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Is this forum hidden from the listing?
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public $hidden = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The title of the thread.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @var string
|
|
|
|
*/
|
2015-11-13 23:11:55 +00:00
|
|
|
public $title = "";
|
2016-02-02 21:04:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The UNIX timestamp of when this thread was created.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @var int
|
|
|
|
*/
|
2015-11-13 23:11:55 +00:00
|
|
|
public $time = 0;
|
2016-02-02 21:04:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The UNIX timestamp of when this thread should be autolocked (currently unused).
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @var int
|
|
|
|
*/
|
2015-11-13 23:11:55 +00:00
|
|
|
public $timeLimit = 0;
|
2016-02-02 21:04:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The amount of times this thread has been viewed.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @var int
|
|
|
|
*/
|
2015-11-13 23:11:55 +00:00
|
|
|
public $views = 0;
|
2016-02-02 21:04:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The status of this thread.
|
|
|
|
* 0 - Unlocked
|
|
|
|
* 1 - Locked
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @var int
|
|
|
|
*/
|
2015-11-13 23:11:55 +00:00
|
|
|
public $status = 0;
|
2016-02-02 21:04:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The UNIX timestamp of when the status was last changed.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @var int
|
|
|
|
*/
|
2015-11-13 23:11:55 +00:00
|
|
|
public $statusChange = 0;
|
2016-02-02 21:04:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The thread type
|
|
|
|
* 0 - Normal thread
|
|
|
|
* 1 - Sticky thread
|
|
|
|
* 2 - Announcement
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @var int
|
|
|
|
*/
|
2015-11-13 23:11:55 +00:00
|
|
|
public $type = 0;
|
2016-02-02 21:04:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The ID of the forum this thread was a part of before the last move.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @var int
|
|
|
|
*/
|
2016-01-10 18:24:47 +00:00
|
|
|
public $oldForum = 0;
|
2016-02-02 21:04:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The post object cache.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @var array
|
|
|
|
*/
|
2015-12-03 18:41:14 +00:00
|
|
|
private $_posts = [];
|
2016-02-02 21:04:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A cached instance of opening post.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @var Post
|
|
|
|
*/
|
2015-12-10 20:55:51 +00:00
|
|
|
private $_firstPost = null;
|
2016-02-02 21:04:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A cached instance of the last reply.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @var Post
|
|
|
|
*/
|
2015-12-10 20:55:51 +00:00
|
|
|
private $_lastPost = null;
|
2015-11-13 23:11:55 +00:00
|
|
|
|
2016-02-02 21:04:15 +00:00
|
|
|
/**
|
|
|
|
* Constructor.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @param mixed $threadId ID of the thread that should be constructed.
|
|
|
|
*/
|
2015-11-13 23:11:55 +00:00
|
|
|
public function __construct($threadId)
|
|
|
|
{
|
|
|
|
// Attempt to get the database row
|
2016-02-25 16:06:29 +00:00
|
|
|
$threadRow = DB::table('topics')
|
|
|
|
->where('topic_id', $threadId)
|
|
|
|
->get();
|
2015-11-13 23:11:55 +00:00
|
|
|
|
|
|
|
// Assign data if a row was returned
|
|
|
|
if ($threadRow) {
|
2016-02-25 16:06:29 +00:00
|
|
|
$threadRow = $threadRow[0];
|
2016-02-18 23:28:44 +00:00
|
|
|
$this->id = $threadRow->topic_id;
|
|
|
|
$this->forum = $threadRow->forum_id;
|
|
|
|
$this->hidden = (bool) $threadRow->topic_hidden;
|
|
|
|
$this->title = $threadRow->topic_title;
|
|
|
|
$this->time = $threadRow->topic_time;
|
|
|
|
$this->timeLimit = $threadRow->topic_time_limit;
|
|
|
|
$this->views = $threadRow->topic_views;
|
|
|
|
$this->status = $threadRow->topic_status;
|
|
|
|
$this->statusChange = $threadRow->topic_status_change;
|
|
|
|
$this->type = $threadRow->topic_type;
|
|
|
|
$this->oldForum = $threadRow->topic_old_forum;
|
2015-11-13 23:11:55 +00:00
|
|
|
}
|
2015-11-15 14:29:26 +00:00
|
|
|
}
|
|
|
|
|
2016-02-02 21:04:15 +00:00
|
|
|
/**
|
|
|
|
* Create a new thread.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @param mixed $forum ID of the forum this thread is part of.
|
|
|
|
* @param mixed $title Title of the thread.
|
|
|
|
* @param mixed $status Status of the thread.
|
|
|
|
* @param mixed $type Type of thread.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-18 23:28:44 +00:00
|
|
|
* @return self The new thread instance.
|
2016-02-02 21:04:15 +00:00
|
|
|
*/
|
2015-12-11 20:49:40 +00:00
|
|
|
public static function create($forum, $title, $status = 0, $type = 0)
|
|
|
|
{
|
|
|
|
// Create the database entry
|
2016-02-25 16:06:29 +00:00
|
|
|
$id = DB::table('topics')
|
|
|
|
->insertGetId([
|
|
|
|
'forum_id' => $forum,
|
|
|
|
'topic_title' => $title,
|
|
|
|
'topic_time' => time(),
|
|
|
|
'topic_status' => $status,
|
|
|
|
'topic_type' => $type,
|
|
|
|
]);
|
2015-12-11 20:49:40 +00:00
|
|
|
|
|
|
|
// Return the thread object
|
2016-02-25 16:06:29 +00:00
|
|
|
return new Thread($id);
|
2015-12-11 20:49:40 +00:00
|
|
|
}
|
|
|
|
|
2016-02-02 21:04:15 +00:00
|
|
|
/**
|
|
|
|
* Delete the current thread.
|
|
|
|
*/
|
2016-01-10 18:24:47 +00:00
|
|
|
public function delete()
|
|
|
|
{
|
|
|
|
// Delete all posts
|
2016-02-25 16:06:29 +00:00
|
|
|
DB::table('posts')
|
|
|
|
->where('topic_id', $this->id)
|
|
|
|
->delete();
|
2016-01-10 18:24:47 +00:00
|
|
|
|
|
|
|
// Delete thread meta
|
2016-02-25 16:06:29 +00:00
|
|
|
DB::table('topics')
|
|
|
|
->where('topic_id', $this->id)
|
|
|
|
->delete();
|
2016-01-10 18:24:47 +00:00
|
|
|
}
|
|
|
|
|
2016-02-02 21:04:15 +00:00
|
|
|
/**
|
|
|
|
* Move the thread.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @param mixed $forum The new forum ID.
|
|
|
|
* @param mixed $setOld Remember the forum ID prior to the move for restoration.
|
|
|
|
*/
|
2016-01-10 18:24:47 +00:00
|
|
|
public function move($forum, $setOld = true)
|
|
|
|
{
|
|
|
|
// Update all posts
|
2016-02-25 16:06:29 +00:00
|
|
|
DB::table('posts')
|
|
|
|
->where('topic_id', $this->id)
|
|
|
|
->update(['forum_id' => $forum]);
|
2016-01-10 18:24:47 +00:00
|
|
|
|
|
|
|
// Update thread meta
|
2016-02-25 16:06:29 +00:00
|
|
|
DB::table('topics')
|
|
|
|
->where('topic_id', $this->id)
|
|
|
|
->update([
|
|
|
|
'forum_id' => $forum,
|
|
|
|
'topic_old_forum' => ($setOld ? $this->forum : 0),
|
|
|
|
]);
|
2016-01-10 18:24:47 +00:00
|
|
|
}
|
|
|
|
|
2016-02-02 21:04:15 +00:00
|
|
|
/**
|
|
|
|
* Update the thread data.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-18 23:28:44 +00:00
|
|
|
* @return self The updated thread.
|
2016-02-02 21:04:15 +00:00
|
|
|
*/
|
2016-01-10 18:24:47 +00:00
|
|
|
public function update()
|
|
|
|
{
|
|
|
|
// Update row
|
2016-02-25 16:06:29 +00:00
|
|
|
DB::table('topics')
|
|
|
|
->where('topic_id', $this->id)
|
|
|
|
->update([
|
|
|
|
'topic_hidden' => $this->hidden,
|
|
|
|
'topic_title' => $this->title,
|
2016-03-10 18:54:36 +00:00
|
|
|
'topic_time_limit' => $this->timeLimit,
|
2016-02-25 16:06:29 +00:00
|
|
|
'topic_status' => $this->status,
|
|
|
|
'topic_status_change' => $this->statusChange,
|
|
|
|
'topic_type' => $this->type,
|
|
|
|
'topic_old_forum' => $this->oldForum,
|
|
|
|
]);
|
2016-01-10 18:24:47 +00:00
|
|
|
|
|
|
|
// Return new object
|
|
|
|
return new Thread($this->id);
|
|
|
|
}
|
|
|
|
|
2016-02-02 21:04:15 +00:00
|
|
|
/**
|
|
|
|
* Get the replies to this thread.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @return array Array containing Post instances.
|
|
|
|
*/
|
2015-12-03 18:41:14 +00:00
|
|
|
public function posts()
|
2015-11-15 14:29:26 +00:00
|
|
|
{
|
2015-12-03 18:41:14 +00:00
|
|
|
// Check if _posts is something
|
|
|
|
if (!count($this->_posts)) {
|
|
|
|
// Get all rows with the thread id
|
2016-02-25 16:06:29 +00:00
|
|
|
$postRows = DB::table('posts')
|
|
|
|
->where('topic_id', $this->id)
|
|
|
|
->get(['post_id']);
|
2015-12-03 18:41:14 +00:00
|
|
|
|
|
|
|
// Create a storage array
|
|
|
|
$posts = [];
|
2015-11-15 14:29:26 +00:00
|
|
|
|
2015-12-03 18:41:14 +00:00
|
|
|
// Create new post objects for each post
|
|
|
|
foreach ($postRows as $post) {
|
2016-02-18 23:28:44 +00:00
|
|
|
$posts[$post->post_id] = new Post($post->post_id);
|
2015-12-03 18:41:14 +00:00
|
|
|
}
|
2015-11-15 14:29:26 +00:00
|
|
|
|
2015-12-03 18:41:14 +00:00
|
|
|
$this->_posts = $posts;
|
|
|
|
} else {
|
|
|
|
$posts = $this->_posts;
|
2015-11-15 14:29:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Return the post objects
|
|
|
|
return $posts;
|
2015-11-13 23:11:55 +00:00
|
|
|
}
|
|
|
|
|
2016-02-02 21:04:15 +00:00
|
|
|
/**
|
|
|
|
* Get the opening post.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @return Post A Post instance of the opening post.
|
|
|
|
*/
|
2015-12-04 13:52:57 +00:00
|
|
|
public function firstPost()
|
|
|
|
{
|
2015-12-10 20:55:51 +00:00
|
|
|
// Check if the cache var is set
|
|
|
|
if ($this->_firstPost !== null) {
|
|
|
|
return $this->_firstPost;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the row from the database
|
2016-02-25 16:06:29 +00:00
|
|
|
$post = DB::table('posts')
|
|
|
|
->where('topic_id', $this->id)
|
|
|
|
->orderBy('post_id')
|
|
|
|
->limit(1)
|
|
|
|
->get(['post_id']);
|
2015-12-10 20:55:51 +00:00
|
|
|
|
|
|
|
// Create the post class
|
2016-02-25 16:06:29 +00:00
|
|
|
$post = new Post($post ? $post[0]->post_id : 0);
|
2015-12-10 20:55:51 +00:00
|
|
|
|
|
|
|
// Assign it to the cache var
|
|
|
|
$this->_firstPost = $post;
|
|
|
|
|
|
|
|
// Return
|
|
|
|
return $post;
|
2015-12-03 18:41:14 +00:00
|
|
|
}
|
|
|
|
|
2016-02-02 21:04:15 +00:00
|
|
|
/**
|
|
|
|
* Get the latest reply.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @return Post A Post instance of the latest reply.
|
|
|
|
*/
|
2015-12-04 13:52:57 +00:00
|
|
|
public function lastPost()
|
|
|
|
{
|
2015-12-10 20:55:51 +00:00
|
|
|
// Check if the cache var is set
|
|
|
|
if ($this->_lastPost !== null) {
|
2015-12-16 22:29:09 +00:00
|
|
|
return $this->_lastPost;
|
2015-12-10 20:55:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get the row from the database
|
2016-02-25 16:06:29 +00:00
|
|
|
$post = DB::table('posts')
|
|
|
|
->where('topic_id', $this->id)
|
|
|
|
->orderBy('post_id', 'desc')
|
|
|
|
->limit(1)
|
|
|
|
->get(['post_id']);
|
2015-12-10 20:55:51 +00:00
|
|
|
|
|
|
|
// Create the post class
|
2016-02-25 16:06:29 +00:00
|
|
|
$post = new Post($post ? $post[0]->post_id : 0);
|
2015-12-10 20:55:51 +00:00
|
|
|
|
|
|
|
// Assign it to the cache var
|
|
|
|
$this->_lastPost = $post;
|
|
|
|
|
|
|
|
// Return
|
|
|
|
return $post;
|
2015-12-03 18:41:14 +00:00
|
|
|
}
|
|
|
|
|
2016-02-02 21:04:15 +00:00
|
|
|
/**
|
|
|
|
* Get the amount of replies.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @return int The number of replies to this thread.
|
|
|
|
*/
|
2015-11-13 23:11:55 +00:00
|
|
|
public function replyCount()
|
|
|
|
{
|
2016-02-25 16:06:29 +00:00
|
|
|
return DB::table('posts')
|
|
|
|
->where('topic_id', $this->id)
|
|
|
|
->count();
|
2015-11-15 14:29:26 +00:00
|
|
|
}
|
|
|
|
|
2016-02-02 21:04:15 +00:00
|
|
|
/**
|
|
|
|
* Check if a user has read this thread before.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @param mixed $user The id of the user in question.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @return bool A boolean indicating the read status.
|
|
|
|
*/
|
2015-11-16 22:05:45 +00:00
|
|
|
public function unread($user)
|
|
|
|
{
|
|
|
|
// Attempt to get track row from the database
|
2016-02-25 16:06:29 +00:00
|
|
|
$track = DB::table('topics_track')
|
|
|
|
->where('user_id', $user)
|
|
|
|
->where('topic_id', $this->id)
|
|
|
|
->where('mark_time', '>', $this->lastPost()->time)
|
|
|
|
->count();
|
2015-11-16 22:05:45 +00:00
|
|
|
|
|
|
|
// If nothing was returned it's obvious that the status is unread
|
2016-02-25 16:06:29 +00:00
|
|
|
if (!$track) {
|
2015-11-16 22:05:45 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Else just return false meaning everything is read
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-02-02 21:04:15 +00:00
|
|
|
/**
|
|
|
|
* Update the read status.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-02 21:04:15 +00:00
|
|
|
* @param mixed $user The id of the user in question.
|
|
|
|
*/
|
2015-11-16 22:05:45 +00:00
|
|
|
public function trackUpdate($user)
|
|
|
|
{
|
|
|
|
// Check if we already have a track record
|
2016-02-25 16:06:29 +00:00
|
|
|
$track = DB::table('topics_track')
|
|
|
|
->where('user_id', $user)
|
|
|
|
->where('topic_id', $this->id)
|
|
|
|
->where('forum_id', $this->forum)
|
|
|
|
->count();
|
2015-11-16 22:05:45 +00:00
|
|
|
|
|
|
|
// If so update it
|
2016-02-25 16:06:29 +00:00
|
|
|
if ($track) {
|
|
|
|
DB::table('topics_track')
|
|
|
|
->where('user_id', $user)
|
|
|
|
->where('topic_id', $this->id)
|
|
|
|
->update(['mark_time' => time()]);
|
2015-11-16 22:05:45 +00:00
|
|
|
} else {
|
|
|
|
// If not create a new record
|
2016-02-25 16:06:29 +00:00
|
|
|
DB::table('topics_track')
|
|
|
|
->insert([
|
|
|
|
'user_id' => $user,
|
|
|
|
'topic_id' => $this->id,
|
|
|
|
'forum_id' => $this->forum,
|
|
|
|
'mark_time' => time(),
|
|
|
|
]);
|
2015-11-16 22:05:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-02 21:04:15 +00:00
|
|
|
/**
|
|
|
|
* Update the view count.
|
|
|
|
*/
|
2015-11-16 22:05:45 +00:00
|
|
|
public function viewsUpdate()
|
|
|
|
{
|
2016-02-25 16:06:29 +00:00
|
|
|
DB::table('topics')
|
|
|
|
->where('topic_id', $this->id)
|
|
|
|
->increment('topic_views');
|
2015-11-16 22:05:45 +00:00
|
|
|
}
|
2015-12-11 20:49:40 +00:00
|
|
|
|
2016-02-02 21:04:15 +00:00
|
|
|
/**
|
|
|
|
* Update the timestamp of when this thread was last replied to.
|
|
|
|
*/
|
2015-12-11 20:49:40 +00:00
|
|
|
public function lastUpdate()
|
|
|
|
{
|
2016-02-25 16:06:29 +00:00
|
|
|
DB::table('topics')
|
|
|
|
->where('topic_id', $this->id)
|
|
|
|
->update(['topic_last_reply' => time()]);
|
2015-12-11 20:49:40 +00:00
|
|
|
}
|
2015-11-13 23:11:55 +00:00
|
|
|
}
|