2015-11-07 20:20:11 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* Forum class
|
|
|
|
*/
|
|
|
|
|
2015-11-22 22:10:23 +00:00
|
|
|
namespace Sakura\Forum;
|
2015-11-17 19:30:34 +00:00
|
|
|
|
|
|
|
use Sakura\Database;
|
2015-11-07 20:20:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Forum
|
|
|
|
* @package Sakura
|
|
|
|
*/
|
|
|
|
class Forum
|
|
|
|
{
|
2015-11-13 23:11:55 +00:00
|
|
|
// Variables
|
|
|
|
public $id = 0;
|
|
|
|
public $name = "Forum";
|
|
|
|
public $description = "";
|
|
|
|
public $link = "";
|
|
|
|
public $category = 0;
|
|
|
|
public $type = 0;
|
|
|
|
public $icon = "";
|
2015-11-15 14:29:26 +00:00
|
|
|
public $firstPost = null;
|
|
|
|
public $lastPost = null;
|
|
|
|
public $forums = [];
|
|
|
|
public $threads = [];
|
2015-11-13 23:11:55 +00:00
|
|
|
|
|
|
|
// Constructor
|
2015-11-15 14:29:26 +00:00
|
|
|
public function __construct($forumId = 0)
|
2015-11-13 23:11:55 +00:00
|
|
|
{
|
|
|
|
// Get the row from the database
|
|
|
|
$forumRow = Database::fetch('forums', false, ['forum_id' => [$forumId, '=']]);
|
|
|
|
|
|
|
|
// Populate the variables
|
2015-11-15 14:29:26 +00:00
|
|
|
if ($forumRow) {
|
2015-11-13 23:11:55 +00:00
|
|
|
$this->id = $forumRow['forum_id'];
|
|
|
|
$this->name = $forumRow['forum_name'];
|
|
|
|
$this->description = $forumRow['forum_desc'];
|
|
|
|
$this->link = $forumRow['forum_link'];
|
|
|
|
$this->category = $forumRow['forum_category'];
|
|
|
|
$this->type = $forumRow['forum_type'];
|
|
|
|
$this->icon = $forumRow['forum_icon'];
|
2015-11-15 14:29:26 +00:00
|
|
|
} elseif ($forumId != 0) {
|
|
|
|
$this->id = -1;
|
2015-11-13 23:11:55 +00:00
|
|
|
}
|
2015-11-15 14:29:26 +00:00
|
|
|
|
|
|
|
// Populate the forums array
|
|
|
|
$this->forums = $this->getForums();
|
|
|
|
|
|
|
|
// and the threads array
|
|
|
|
$this->threads = $this->getThreads();
|
|
|
|
|
|
|
|
// and the first post
|
|
|
|
$this->firstPost = $this->getFirstPost();
|
|
|
|
|
|
|
|
// and finally the last post
|
|
|
|
$this->lastPost = $this->getLastPost();
|
2015-11-13 23:11:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Subforums
|
2015-11-15 14:29:26 +00:00
|
|
|
public function getForums()
|
2015-11-13 23:11:55 +00:00
|
|
|
{
|
|
|
|
// Get all rows with the category id set to the forum id
|
|
|
|
$forumRows = Database::fetch('forums', true, ['forum_category' => [$this->id, '=']]);
|
|
|
|
|
2015-11-15 14:29:26 +00:00
|
|
|
// Create a storage array
|
2015-11-13 23:11:55 +00:00
|
|
|
$forums = [];
|
|
|
|
|
|
|
|
// Create new objects for each forum
|
|
|
|
foreach ($forumRows as $forum) {
|
|
|
|
$forums[$forum['forum_id']] = new Forum($forum['forum_id']);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return the forum objects
|
|
|
|
return $forums;
|
|
|
|
}
|
|
|
|
|
2015-11-15 14:29:26 +00:00
|
|
|
// Threads
|
|
|
|
public function getThreads()
|
|
|
|
{
|
|
|
|
// Get all rows with the forum id for this forum
|
2015-11-21 15:27:37 +00:00
|
|
|
$announcements = Database::fetch('topics', true, ['forum_id' => [$this->id, '='], 'topic_type' => ['2', '=']], ['topic_last_reply', true]);
|
|
|
|
$sticky = Database::fetch('topics', true, ['forum_id' => [$this->id, '='], 'topic_type' => ['1', '=']], ['topic_last_reply', true]);
|
|
|
|
$regular = Database::fetch('topics', true, ['forum_id' => [$this->id, '='], 'topic_type' => ['0', '=']], ['topic_last_reply', true]);
|
|
|
|
|
|
|
|
// Combine them into one array
|
|
|
|
$threadRows = array_merge($announcements, $sticky, $regular);
|
2015-11-15 14:29:26 +00:00
|
|
|
|
|
|
|
// Create a storage array
|
|
|
|
$threads = [];
|
|
|
|
|
|
|
|
// Create new objects for each thread
|
|
|
|
foreach ($threadRows as $thread) {
|
|
|
|
$threads[$thread['topic_id']] = new Thread($thread['topic_id']);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return the thread objects
|
|
|
|
return $threads;
|
|
|
|
}
|
|
|
|
|
|
|
|
// First post
|
|
|
|
public function getFirstPost()
|
|
|
|
{
|
|
|
|
// Get the row
|
|
|
|
$firstPost = Database::fetch('posts', false, ['forum_id' => [$this->id, '=']], ['post_id'], [1]);
|
|
|
|
|
|
|
|
// Create the post object
|
|
|
|
$post = new Post(empty($firstPost) ? 0 : $firstPost['post_id']);
|
|
|
|
|
|
|
|
// Return the post object
|
|
|
|
return $post;
|
|
|
|
}
|
|
|
|
|
2015-11-13 23:11:55 +00:00
|
|
|
// Last post
|
2015-11-15 14:29:26 +00:00
|
|
|
public function getLastPost()
|
2015-11-13 23:11:55 +00:00
|
|
|
{
|
2015-11-15 14:29:26 +00:00
|
|
|
// Get the row
|
|
|
|
$lastPost = Database::fetch('posts', false, ['forum_id' => [$this->id, '=']], ['post_id', true], [1]);
|
|
|
|
|
|
|
|
// Create the post object
|
|
|
|
$post = new Post(empty($lastPost) ? 0 : $lastPost['post_id']);
|
2015-11-13 23:11:55 +00:00
|
|
|
|
2015-11-15 14:29:26 +00:00
|
|
|
// Return the post object
|
|
|
|
return $post;
|
2015-11-13 23:11:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Thread count
|
|
|
|
public function threadCount()
|
|
|
|
{
|
2015-11-15 14:29:26 +00:00
|
|
|
return Database::count('topics', ['forum_id' => [$this->id, '=']])[0];
|
2015-11-13 23:11:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Post count
|
|
|
|
public function postCount()
|
|
|
|
{
|
2015-11-15 14:29:26 +00:00
|
|
|
return Database::count('posts', ['forum_id' => [$this->id, '=']])[0];
|
2015-11-13 23:11:55 +00:00
|
|
|
}
|
2015-11-16 22:05:45 +00:00
|
|
|
|
|
|
|
// Read status
|
|
|
|
public function unread($user)
|
|
|
|
{
|
2015-11-21 15:27:37 +00:00
|
|
|
// Return false if the user id is less than 1
|
|
|
|
if ($user < 1) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check forums
|
|
|
|
foreach ($this->forums as $forum) {
|
|
|
|
if ($forum->unread($user)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-16 22:05:45 +00:00
|
|
|
// Check each thread
|
|
|
|
foreach ($this->threads as $thread) {
|
|
|
|
if ($thread->unread($user)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return false if negative
|
|
|
|
return false;
|
|
|
|
}
|
2015-11-21 15:27:37 +00:00
|
|
|
|
|
|
|
// Mark all threads as read
|
|
|
|
public function trackUpdateAll($user)
|
|
|
|
{
|
|
|
|
// Iterate over every forum
|
|
|
|
foreach ($this->forums as $forum) {
|
|
|
|
// Update every forum
|
|
|
|
$forum->trackUpdateAll($user);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Iterate over every thread
|
|
|
|
foreach ($this->threads as $thread) {
|
|
|
|
// Update every thread
|
|
|
|
$thread->trackUpdate($user);
|
|
|
|
}
|
|
|
|
}
|
2015-11-07 20:20:11 +00:00
|
|
|
}
|