2016-02-04 20:56:40 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Holds the forum pages controllers.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-04 20:56:40 +00:00
|
|
|
* @package Sakura
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Sakura\Controllers;
|
|
|
|
|
2016-03-11 19:13:14 +00:00
|
|
|
use Sakura\Config;
|
2016-02-18 23:28:44 +00:00
|
|
|
use Sakura\DB;
|
2016-03-10 18:54:36 +00:00
|
|
|
use Sakura\Forum\Forum;
|
2016-03-20 16:37:59 +00:00
|
|
|
use Sakura\Forum\Post;
|
2016-03-10 18:54:36 +00:00
|
|
|
use Sakura\Forum\Thread;
|
2016-03-25 17:10:42 +00:00
|
|
|
use Sakura\Perms;
|
2016-02-04 20:56:40 +00:00
|
|
|
use Sakura\Perms\Forum as ForumPerms;
|
2016-03-10 18:54:36 +00:00
|
|
|
use Sakura\Router;
|
2016-02-04 20:56:40 +00:00
|
|
|
use Sakura\Template;
|
|
|
|
use Sakura\User;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Forum page controllers.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-04 20:56:40 +00:00
|
|
|
* @package Sakura
|
|
|
|
* @author Julian van de Groep <me@flash.moe>
|
|
|
|
*/
|
2016-02-27 16:46:16 +00:00
|
|
|
class ForumController extends Controller
|
2016-02-04 20:56:40 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Serves the forum index.
|
2016-03-08 23:07:58 +00:00
|
|
|
*
|
2016-02-04 20:56:40 +00:00
|
|
|
* @return mixed HTML for the forum index.
|
|
|
|
*/
|
2016-02-14 22:46:07 +00:00
|
|
|
public function index()
|
2016-02-04 20:56:40 +00:00
|
|
|
{
|
2016-03-24 18:28:32 +00:00
|
|
|
global $currentUser;
|
|
|
|
|
|
|
|
// Get the most active threads
|
|
|
|
$activeThreadsIds = DB::table('posts')
|
|
|
|
->groupBy('topic_id')
|
|
|
|
->orderByRaw('COUNT(*) DESC')
|
|
|
|
->limit(10)
|
|
|
|
->get(['topic_id']);
|
|
|
|
$activeThreads = [];
|
|
|
|
|
|
|
|
while (list($_n, $_t) = each($activeThreadsIds)) {
|
|
|
|
// Create the thread object
|
|
|
|
$thread = new Thread($_t->topic_id);
|
|
|
|
|
|
|
|
// Create a forum object
|
|
|
|
$forum = new Forum($thread->forum);
|
|
|
|
|
|
|
|
// Check if we have permission to view it
|
|
|
|
if (!$forum->permission(ForumPerms::VIEW, $currentUser->id)) {
|
|
|
|
$fetch = DB::table('posts')
|
|
|
|
->groupBy('topic_id')
|
|
|
|
->orderByRaw('COUNT(*) DESC')
|
|
|
|
->skip(11 + $_n)
|
|
|
|
->take(1)
|
|
|
|
->get(['topic_id']);
|
|
|
|
|
|
|
|
if ($fetch) {
|
|
|
|
$activeThreadsIds[] = $fetch[0];
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$activeThreads[$thread->id] = $thread;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the latest posts
|
|
|
|
$latestPostsIds = DB::table('posts')
|
|
|
|
->orderBy('post_id', 'desc')
|
|
|
|
->limit(10)
|
|
|
|
->get(['post_id']);
|
|
|
|
$latestPosts = [];
|
|
|
|
|
|
|
|
while (list($_n, $_p) = each($latestPostsIds)) {
|
|
|
|
// Create new post object
|
|
|
|
$post = new Post($_p->post_id);
|
|
|
|
|
|
|
|
// Forum id
|
|
|
|
$forum = new Forum($post->forum);
|
|
|
|
|
|
|
|
// Check if we have permission to view it
|
|
|
|
if (!$forum->permission(ForumPerms::VIEW, $currentUser->id)) {
|
|
|
|
$fetch = DB::table('posts')
|
|
|
|
->orderBy('post_id', 'desc')
|
|
|
|
->skip(11 + $_n)
|
|
|
|
->take(1)
|
|
|
|
->get(['post_id']);
|
|
|
|
|
|
|
|
if ($fetch) {
|
|
|
|
$latestPostsIds[] = $fetch[0];
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$latestPosts[$post->id] = $post;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the most active poster
|
|
|
|
$activePosterId = DB::table('posts')
|
|
|
|
->where('post_time', '>', time() - (24 * 60 * 60))
|
|
|
|
->groupBy('poster_id')
|
|
|
|
->orderByRaw('COUNT(*) DESC')
|
|
|
|
->limit(1)
|
|
|
|
->get(['poster_id']);
|
2016-03-26 18:03:35 +00:00
|
|
|
$activePoster = User::construct(
|
|
|
|
$activePosterId ? $activePosterId[0]->poster_id : 0
|
|
|
|
);
|
2016-03-24 18:28:32 +00:00
|
|
|
|
|
|
|
// Create the forum object
|
|
|
|
$forum = new Forum;
|
|
|
|
|
|
|
|
Template::vars(compact('forum', 'activeThreads', 'latestPosts', 'activePoster'));
|
2016-02-04 20:56:40 +00:00
|
|
|
|
|
|
|
// Return the compiled page
|
|
|
|
return Template::render('forum/index');
|
|
|
|
}
|
|
|
|
|
2016-02-14 22:46:07 +00:00
|
|
|
public function forum($id = 0)
|
2016-02-04 20:56:40 +00:00
|
|
|
{
|
|
|
|
global $currentUser;
|
|
|
|
|
|
|
|
// Get the forum
|
2016-03-10 18:54:36 +00:00
|
|
|
$forum = new Forum($id);
|
2016-02-04 20:56:40 +00:00
|
|
|
|
|
|
|
// Redirect forum id 0 to the main page
|
|
|
|
if ($forum->id === 0) {
|
2016-03-13 20:53:02 +00:00
|
|
|
return header('Location: ' . Router::route('forums.index'));
|
2016-02-04 20:56:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the forum exists
|
|
|
|
if ($forum->id < 0) {
|
|
|
|
// Set render data
|
|
|
|
Template::vars([
|
|
|
|
'page' => [
|
|
|
|
'message' => 'The forum you tried to access does not exist.',
|
2016-03-10 18:54:36 +00:00
|
|
|
'redirect' => Router::route('forums.index'),
|
2016-02-04 20:56:40 +00:00
|
|
|
],
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Print page contents
|
|
|
|
return Template::render('global/information');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the user has access to the forum
|
|
|
|
if (!$forum->permission(ForumPerms::VIEW, $currentUser->id)) {
|
|
|
|
// Set render data
|
|
|
|
Template::vars([
|
|
|
|
'page' => [
|
|
|
|
'message' => 'You do not have access to this forum.',
|
2016-03-10 18:54:36 +00:00
|
|
|
'redirect' => Router::route('forums.index'),
|
2016-02-04 20:56:40 +00:00
|
|
|
],
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Print page contents
|
|
|
|
return Template::render('global/information');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the forum isn't a link
|
|
|
|
if ($forum->type === 2) {
|
|
|
|
// Set render data
|
|
|
|
Template::vars([
|
|
|
|
'page' => [
|
|
|
|
'message' => 'The forum you tried to access is a link. You\'re being redirected.',
|
|
|
|
'redirect' => $forum->link,
|
2016-03-10 18:54:36 +00:00
|
|
|
],
|
2016-02-04 20:56:40 +00:00
|
|
|
]);
|
2016-03-10 18:54:36 +00:00
|
|
|
|
2016-02-04 20:56:40 +00:00
|
|
|
// Print page contents
|
|
|
|
return Template::render('global/information');
|
|
|
|
}
|
|
|
|
|
2016-03-10 18:54:36 +00:00
|
|
|
// Set parse variables
|
|
|
|
Template::vars([
|
|
|
|
'forum' => $forum,
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Print page contents
|
|
|
|
return Template::render('forum/viewforum');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function markForumRead($id = 0)
|
|
|
|
{
|
|
|
|
global $currentUser;
|
2016-02-04 20:56:40 +00:00
|
|
|
|
2016-03-10 18:54:36 +00:00
|
|
|
// Check if the session id was supplied
|
|
|
|
if (!isset($_GET['s']) || $_GET['s'] != session_id()) {
|
2016-02-04 20:56:40 +00:00
|
|
|
// Set render data
|
|
|
|
Template::vars([
|
|
|
|
'page' => [
|
2016-03-10 18:54:36 +00:00
|
|
|
'message' => 'Your session expired! Go back and try again.',
|
|
|
|
'redirect' => Router::route('forums.index'),
|
|
|
|
],
|
2016-02-04 20:56:40 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
// Print page contents
|
|
|
|
return Template::render('global/information');
|
|
|
|
}
|
|
|
|
|
2016-03-10 18:54:36 +00:00
|
|
|
// Get the forum
|
|
|
|
$forum = new Forum($id);
|
|
|
|
|
|
|
|
// Check if the forum exists
|
|
|
|
if ($forum->id < 1) {
|
|
|
|
// Set render data
|
|
|
|
Template::vars([
|
|
|
|
'page' => [
|
|
|
|
'message' => 'The forum you tried to access does not exist.',
|
|
|
|
'redirect' => Router::route('forums.index'),
|
|
|
|
],
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Print page contents
|
|
|
|
return Template::render('global/information');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the user has access to the forum
|
|
|
|
if (!$forum->permission(ForumPerms::VIEW, $currentUser->id)) {
|
|
|
|
// Set render data
|
|
|
|
Template::vars([
|
|
|
|
'page' => [
|
|
|
|
'message' => 'You do not have access to this forum.',
|
|
|
|
'redirect' => Router::route('forums.index'),
|
|
|
|
],
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Print page contents
|
|
|
|
return Template::render('global/information');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run the function
|
|
|
|
$forum->trackUpdateAll($currentUser->id);
|
|
|
|
|
|
|
|
// Set render data
|
|
|
|
Template::vars([
|
|
|
|
'page' => [
|
|
|
|
'message' => 'All threads have been marked as read.',
|
|
|
|
'redirect' => Router::route('forums.forum', $forum->id),
|
|
|
|
],
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Print page contents
|
|
|
|
return Template::render('global/information');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function thread($id = 0)
|
|
|
|
{
|
|
|
|
global $currentUser;
|
|
|
|
|
|
|
|
// Attempt to get the thread
|
|
|
|
$thread = new Thread($id);
|
|
|
|
|
|
|
|
// And attempt to get the forum
|
|
|
|
$forum = new Forum($thread->forum);
|
|
|
|
|
|
|
|
// Check if the forum exists
|
|
|
|
if ($thread->id == 0 || !$forum->permission(ForumPerms::VIEW, $currentUser->id)) {
|
|
|
|
// Set render data
|
|
|
|
Template::vars([
|
|
|
|
'page' => [
|
|
|
|
'message' => 'This thread doesn\'t exist or you don\'t have access to it!',
|
|
|
|
'redirect' => Router::route('forums.index'),
|
|
|
|
],
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Print page contents
|
|
|
|
return Template::render('global/information');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the tracking status
|
|
|
|
$thread->trackUpdate($currentUser->id);
|
|
|
|
|
|
|
|
// Update views
|
|
|
|
$thread->viewsUpdate();
|
|
|
|
|
2016-02-04 20:56:40 +00:00
|
|
|
// Set parse variables
|
2016-03-25 01:31:57 +00:00
|
|
|
Template::vars(compact('forum', 'thread'));
|
2016-02-04 20:56:40 +00:00
|
|
|
|
|
|
|
// Print page contents
|
2016-03-10 18:54:36 +00:00
|
|
|
return Template::render('forum/viewtopic');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function threadModerate($id = 0)
|
|
|
|
{
|
|
|
|
global $currentUser;
|
|
|
|
|
|
|
|
// Attempt to get the thread
|
|
|
|
$thread = new Thread($id);
|
|
|
|
|
|
|
|
// And attempt to get the forum
|
|
|
|
$forum = new Forum($thread->forum);
|
|
|
|
|
2016-03-11 19:13:14 +00:00
|
|
|
// Default stuff
|
|
|
|
$message = 'Unknown moderation action.';
|
|
|
|
$redirect = Router::route('forums.thread', $thread->id);
|
|
|
|
|
2016-03-10 18:54:36 +00:00
|
|
|
// Check if the forum exists
|
2016-03-11 19:13:14 +00:00
|
|
|
if ($thread->id == 0
|
|
|
|
|| !$forum->permission(ForumPerms::VIEW, $currentUser->id)
|
|
|
|
|| !isset($_POST['session'])
|
|
|
|
|| $_POST['session'] != session_id()) {
|
|
|
|
$message = 'This thread doesn\'t exist or you don\'t have access to it!';
|
|
|
|
$redirect = Router::route('forums.index');
|
2016-03-10 18:54:36 +00:00
|
|
|
} else {
|
|
|
|
// Take the action
|
|
|
|
$action = isset($_POST['action']) ? $_POST['action'] : null;
|
|
|
|
|
|
|
|
// Switch
|
|
|
|
switch ($action) {
|
2016-03-11 19:13:14 +00:00
|
|
|
case 'sticky':
|
|
|
|
// Check permission
|
|
|
|
if (!$forum->permission(ForumPerms::STICKY, $currentUser->id)) {
|
|
|
|
$message = "You're not allowed to do this!";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the type
|
|
|
|
$thread->type = $thread->type !== 1 ? 1 : 0;
|
|
|
|
|
|
|
|
$thread->update();
|
|
|
|
|
|
|
|
// Add page variable stuff
|
|
|
|
$message = $thread->type ? 'Changed the thread to sticky!' : 'Reverted the thread back to normal!';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'announce':
|
|
|
|
// Check permission
|
|
|
|
if (!$forum->permission(ForumPerms::ANNOUNCEMENT, $currentUser->id)) {
|
|
|
|
$message = "You're not allowed to do this!";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the type
|
|
|
|
$thread->type = $thread->type !== 2 ? 2 : 0;
|
|
|
|
|
|
|
|
$thread->update();
|
|
|
|
|
|
|
|
// Add page variable stuff
|
2016-03-13 20:35:51 +00:00
|
|
|
$message = $thread->type ? 'Changed the thread to into an announcement!' : 'Reverted the thread back to normal!';
|
2016-03-11 19:13:14 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'lock':
|
|
|
|
// Check permission
|
|
|
|
if (!$forum->permission(ForumPerms::LOCK, $currentUser->id)) {
|
|
|
|
$message = "You're not allowed to do this!";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the status
|
|
|
|
$thread->status = $thread->status !== 1 ? 1 : 0;
|
|
|
|
|
|
|
|
$thread->update();
|
|
|
|
|
|
|
|
// Add page variable stuff
|
|
|
|
$message = ($thread->status ? 'Locked' : 'Unlocked') . ' the thread!';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'delete':
|
|
|
|
// Get the id of the trash forum
|
|
|
|
$trash = Config::get('forum_trash_id');
|
|
|
|
|
|
|
|
// Check if we're operating from the trash
|
|
|
|
if ($thread->forum == $trash) {
|
|
|
|
// Check permission
|
|
|
|
if (!$forum->permission(ForumPerms::DELETE_ANY, $currentUser->id)) {
|
|
|
|
$message = "You're not allowed to do this!";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set pruned to true
|
|
|
|
$pruned = true;
|
|
|
|
|
|
|
|
// Delete the thread
|
|
|
|
$thread->delete();
|
|
|
|
|
|
|
|
// Set message
|
|
|
|
$message = "Deleted the thread!";
|
|
|
|
$redirect = Router::route('forums.forum', $trash);
|
|
|
|
} else {
|
|
|
|
// Check permission
|
|
|
|
if (!$forum->permission(ForumPerms::MOVE, $currentUser->id)) {
|
|
|
|
$message = "You're not allowed to do this!";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Move the thread
|
|
|
|
$thread->move($trash);
|
|
|
|
|
|
|
|
// Trashed!
|
|
|
|
$message = "Moved the thread to the trash!";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'restore':
|
|
|
|
// Check if this thread has record of being in a previous forum
|
|
|
|
if ($thread->oldForum) {
|
|
|
|
// Move the thread back
|
|
|
|
$thread->move($thread->oldForum, false);
|
|
|
|
|
|
|
|
$message = "Moved the thread back to it's old location!";
|
|
|
|
} else {
|
|
|
|
$message = "This thread has never been moved!";
|
|
|
|
}
|
2016-03-10 18:54:36 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-11 19:13:14 +00:00
|
|
|
// Set the variables
|
|
|
|
Template::vars([
|
|
|
|
'page' => compact('message', 'redirect'),
|
|
|
|
]);
|
|
|
|
|
2016-03-10 18:54:36 +00:00
|
|
|
// Print page contents
|
|
|
|
return Template::render('global/information');
|
2016-02-04 20:56:40 +00:00
|
|
|
}
|
2016-03-20 16:37:59 +00:00
|
|
|
|
|
|
|
public function post($id = 0)
|
|
|
|
{
|
|
|
|
global $currentUser;
|
|
|
|
|
|
|
|
// Attempt to get the post
|
|
|
|
$post = new Post($id);
|
|
|
|
|
|
|
|
// And attempt to get the forum
|
|
|
|
$thread = new Thread($post->thread);
|
|
|
|
|
|
|
|
// And attempt to get the forum
|
|
|
|
$forum = new Forum($thread->forum);
|
|
|
|
|
|
|
|
// Check if the forum exists
|
2016-03-25 17:10:42 +00:00
|
|
|
if ($post->id == 0
|
|
|
|
|| $thread->id == 0
|
|
|
|
|| !$forum->permission(ForumPerms::VIEW, $currentUser->id)) {
|
|
|
|
$message = "This post doesn't exist or you don't have access to it!";
|
|
|
|
$redirect = Router::route('forums.index');
|
|
|
|
|
|
|
|
Template::vars(['page' => compact('message', 'redirect')]);
|
2016-03-20 16:37:59 +00:00
|
|
|
|
|
|
|
return Template::render('global/information');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate link
|
|
|
|
$threadLink = Router::route('forums.thread', $thread->id);
|
|
|
|
|
|
|
|
// Get all post ids from the database
|
|
|
|
$postIds = DB::table('posts')
|
|
|
|
->where('topic_id', $thread->id)
|
|
|
|
->get(['post_id']);
|
|
|
|
$postIds = array_column($postIds, 'post_id');
|
|
|
|
|
|
|
|
// Find in array
|
|
|
|
$postAt = ceil(array_search($post->id, $postIds) / 10);
|
|
|
|
|
|
|
|
// Only append the page variable if it's more than 1
|
|
|
|
if ($postAt > 1) {
|
|
|
|
$threadLink .= "?page={$postAt}";
|
|
|
|
}
|
|
|
|
|
|
|
|
return header("Location: {$threadLink}#p{$post->id}");
|
|
|
|
}
|
2016-03-25 01:31:57 +00:00
|
|
|
|
2016-03-25 17:10:42 +00:00
|
|
|
public function postRaw($id = 0)
|
|
|
|
{
|
|
|
|
global $currentUser;
|
|
|
|
|
|
|
|
// Attempt to get the post
|
|
|
|
$post = new Post($id);
|
|
|
|
|
|
|
|
// And attempt to get the forum
|
|
|
|
$thread = new Thread($post->thread);
|
|
|
|
|
|
|
|
// And attempt to get the forum
|
|
|
|
$forum = new Forum($thread->forum);
|
|
|
|
|
|
|
|
// Check if the forum exists
|
|
|
|
if ($post->id == 0
|
|
|
|
|| $thread->id == 0
|
|
|
|
|| !$forum->permission(ForumPerms::VIEW, $currentUser->id)) {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
return $post->text;
|
|
|
|
}
|
|
|
|
|
2016-03-25 01:31:57 +00:00
|
|
|
public function threadReply($id = 0)
|
|
|
|
{
|
|
|
|
global $currentUser;
|
|
|
|
|
|
|
|
$text = isset($_POST['text']) ? $_POST['text'] : null;
|
|
|
|
|
|
|
|
// Attempt to get the forum
|
|
|
|
$thread = new Thread($id);
|
|
|
|
|
|
|
|
// And attempt to get the forum
|
|
|
|
$forum = new Forum($thread->forum);
|
|
|
|
|
|
|
|
// Check if the thread exists
|
|
|
|
if ($thread->id == 0
|
|
|
|
|| $forum->type !== 0
|
2016-03-25 17:10:42 +00:00
|
|
|
|| !$forum->permission(ForumPerms::VIEW, $currentUser->id)) {
|
|
|
|
$message = "This post doesn't exist or you don't have access to it!";
|
|
|
|
$redirect = Router::route('forums.index');
|
|
|
|
|
|
|
|
Template::vars(['page' => compact('message', 'redirect')]);
|
|
|
|
|
|
|
|
return Template::render('global/information');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the thread exists
|
|
|
|
if (!$forum->permission(ForumPerms::REPLY, $currentUser->id)
|
2016-03-25 01:31:57 +00:00
|
|
|
|| (
|
|
|
|
$thread->status === 1
|
|
|
|
&& !$forum->permission(ForumPerms::LOCK, $currentUser->id)
|
|
|
|
)) {
|
2016-03-25 17:10:42 +00:00
|
|
|
$message = "You are not allowed to post in this thread!";
|
|
|
|
$redirect = Router::route('forums.thread', $thread->id);
|
2016-03-25 01:31:57 +00:00
|
|
|
|
|
|
|
Template::vars(['page' => compact('message', 'redirect')]);
|
|
|
|
|
|
|
|
return Template::render('global/information');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Length
|
|
|
|
$length = strlen($text);
|
|
|
|
$minLen = Config::get('forum_text_min');
|
|
|
|
$maxLen = Config::get('forum_text_max');
|
|
|
|
$tooShort = $length < $minLen;
|
|
|
|
$tooLong = $length > $maxLen;
|
|
|
|
|
|
|
|
// Check requirments
|
|
|
|
if ($tooShort
|
|
|
|
|| $tooLong) {
|
|
|
|
$route = Router::route('forums.thread', $thread->id);
|
|
|
|
|
|
|
|
$message = "Your post is " . (
|
|
|
|
$tooShort
|
|
|
|
? "too short, add some more text!"
|
|
|
|
: "too long, you're gonna have to cut a little!"
|
|
|
|
);
|
|
|
|
$redirect = "{$route}#reply";
|
|
|
|
|
|
|
|
Template::vars(['page' => compact('message', 'redirect')]);
|
|
|
|
|
|
|
|
if (!isset($_SESSION['replyText'])) {
|
|
|
|
$_SESSION['replyText'] = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$_SESSION['replyText']["t{$thread->id}"] = $text;
|
|
|
|
|
|
|
|
return Template::render('global/information');
|
|
|
|
}
|
|
|
|
|
|
|
|
unset($_SESSION['replyText']["t{$thread->id}"]);
|
|
|
|
|
|
|
|
// Create the post
|
|
|
|
$post = Post::create(
|
|
|
|
"Re: {$thread->title}",
|
|
|
|
$text,
|
|
|
|
$currentUser,
|
|
|
|
$thread->id,
|
|
|
|
$forum->id
|
|
|
|
);
|
|
|
|
|
|
|
|
// Go to the post
|
|
|
|
$postLink = Router::route('forums.post', $post->id);
|
|
|
|
|
|
|
|
// Head to the post
|
|
|
|
return header("Location: {$postLink}");
|
|
|
|
}
|
|
|
|
|
|
|
|
public function createThread($id = 0)
|
|
|
|
{
|
|
|
|
global $currentUser;
|
|
|
|
|
|
|
|
$title = isset($_POST['title']) ? $_POST['title'] : null;
|
|
|
|
$text = isset($_POST['text']) ? $_POST['text'] : null;
|
|
|
|
|
|
|
|
// And attempt to get the forum
|
|
|
|
$forum = new Forum($id);
|
|
|
|
|
|
|
|
// Check if the forum exists
|
|
|
|
if ($forum->id === 0
|
|
|
|
|| $forum->type !== 0
|
|
|
|
|| !$forum->permission(ForumPerms::VIEW, $currentUser->id)
|
|
|
|
|| !$forum->permission(ForumPerms::REPLY, $currentUser->id)
|
|
|
|
|| !$forum->permission(ForumPerms::CREATE_THREADS, $currentUser->id)) {
|
|
|
|
$message = "This forum doesn't exist or you don't have access to it!";
|
|
|
|
$redirect = Router::route('forums.index');
|
|
|
|
|
|
|
|
Template::vars(['page' => compact('message', 'redirect')]);
|
|
|
|
|
|
|
|
return Template::render('global/information');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($text && $title) {
|
|
|
|
// Length
|
|
|
|
$titleLength = strlen($title);
|
|
|
|
$textLength = strlen($text);
|
|
|
|
$titleMin = Config::get('forum_title_min');
|
|
|
|
$titleMax = Config::get('forum_title_max');
|
|
|
|
$textMin = Config::get('forum_text_min');
|
|
|
|
$textMax = Config::get('forum_text_max');
|
|
|
|
|
|
|
|
// Checks
|
|
|
|
$titleTooShort = $titleLength < $titleMin;
|
|
|
|
$titleTooLong = $titleLength > $titleMax;
|
|
|
|
$textTooShort = $textLength < $textMin;
|
|
|
|
$textTooLong = $textLength > $textMax;
|
|
|
|
|
|
|
|
// Check requirments
|
|
|
|
if ($titleTooShort
|
|
|
|
|| $titleTooLong
|
|
|
|
|| $textTooShort
|
|
|
|
|| $textTooLong) {
|
|
|
|
|
|
|
|
$message = "";
|
|
|
|
|
|
|
|
if ($titleTooShort) {
|
|
|
|
$message = "This title is too short!";
|
|
|
|
} elseif ($titleTooLong) {
|
|
|
|
$message = "This title is too long!";
|
|
|
|
} elseif ($textTooShort) {
|
|
|
|
$message = "Please make your post a little bit longer!";
|
|
|
|
} elseif ($textTooLong) {
|
|
|
|
$message = "Your post is too long, you're gonna have to cut a little!";
|
|
|
|
}
|
|
|
|
|
|
|
|
$redirect = Router::route('forums.new', $forum->id);
|
|
|
|
|
|
|
|
Template::vars(['page' => compact('message', 'redirect')]);
|
|
|
|
|
|
|
|
if (!isset($_SESSION['replyText'])) {
|
|
|
|
$_SESSION['replyText'] = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$_SESSION['replyText']["f{$forum->id}"]["title"] = $title;
|
|
|
|
$_SESSION['replyText']["f{$forum->id}"]["text"] = $text;
|
|
|
|
|
|
|
|
return Template::render('global/information');
|
|
|
|
}
|
|
|
|
|
|
|
|
unset($_SESSION['replyText']["f{$forum->id}"]);
|
|
|
|
|
|
|
|
// Create the post
|
|
|
|
$post = Post::create(
|
|
|
|
$title,
|
|
|
|
$text,
|
|
|
|
$currentUser,
|
|
|
|
0,
|
|
|
|
$forum->id
|
|
|
|
);
|
|
|
|
|
|
|
|
// Go to the post
|
|
|
|
$postLink = Router::route('forums.post', $post->id);
|
|
|
|
|
|
|
|
// Head to the post
|
|
|
|
return header("Location: {$postLink}");
|
|
|
|
}
|
|
|
|
|
|
|
|
Template::vars(compact('forum'));
|
|
|
|
|
|
|
|
return Template::render('forum/viewtopic');
|
|
|
|
}
|
2016-03-25 17:10:42 +00:00
|
|
|
|
|
|
|
public function editPost($id = 0)
|
|
|
|
{
|
|
|
|
global $currentUser;
|
|
|
|
|
|
|
|
$title = isset($_POST['title']) ? $_POST['title'] : null;
|
|
|
|
$text = isset($_POST['text']) ? $_POST['text'] : null;
|
|
|
|
|
|
|
|
// Attempt to get the post
|
|
|
|
$post = new Post($id);
|
|
|
|
|
|
|
|
// Attempt to get the thread
|
|
|
|
$thread = new Thread($post->thread);
|
|
|
|
|
|
|
|
// And attempt to get the forum
|
|
|
|
$forum = new Forum($thread->forum);
|
|
|
|
|
|
|
|
// Check permissions
|
|
|
|
$noAccess = $post->id == 0
|
|
|
|
|| $thread->id == 0
|
|
|
|
|| !$forum->permission(ForumPerms::VIEW, $currentUser->id);
|
|
|
|
|
|
|
|
$noEdit = (
|
|
|
|
$post->poster->id === $currentUser->id
|
|
|
|
? !$currentUser->permission(ForumPerms::EDIT_OWN, Perms::FORUM)
|
|
|
|
: !$forum->permission(ForumPerms::EDIT_ANY, $currentUser->id)
|
|
|
|
) || (
|
|
|
|
$thread->status === 1
|
|
|
|
&& !$forum->permission(ForumPerms::LOCK, $currentUser->id)
|
|
|
|
);
|
|
|
|
|
|
|
|
// Check if the forum exists
|
|
|
|
if ($noAccess || $noEdit) {
|
|
|
|
if ($noDelete) {
|
|
|
|
$message = "You aren't allowed to edit posts in this thread!";
|
|
|
|
$redirect = Router::route('forums.post', $post->id);
|
|
|
|
} else {
|
|
|
|
$message = "This post doesn't exist or you don't have access to it!";
|
|
|
|
$redirect = Router::route('forums.index');
|
|
|
|
}
|
|
|
|
|
|
|
|
Template::vars(['page' => compact('message', 'redirect')]);
|
|
|
|
|
|
|
|
return Template::render('global/information');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Length
|
|
|
|
$titleLength = strlen($title);
|
|
|
|
$textLength = strlen($text);
|
|
|
|
$titleMin = Config::get('forum_title_min');
|
|
|
|
$titleMax = Config::get('forum_title_max');
|
|
|
|
$textMin = Config::get('forum_text_min');
|
|
|
|
$textMax = Config::get('forum_text_max');
|
|
|
|
|
|
|
|
// Checks
|
|
|
|
$titleTooShort = $title !== null
|
|
|
|
&& $post->id === $thread->firstPost()->id
|
|
|
|
&& $titleLength < $titleMin;
|
|
|
|
$titleTooLong = $title !== null
|
|
|
|
&& $post->id === $thread->firstPost()->id
|
|
|
|
&& $titleLength > $titleMax;
|
|
|
|
$textTooShort = $textLength < $textMin;
|
|
|
|
$textTooLong = $textLength > $textMax;
|
|
|
|
|
|
|
|
// Check requirments
|
|
|
|
if ($titleTooShort
|
|
|
|
|| $titleTooLong
|
|
|
|
|| $textTooShort
|
|
|
|
|| $textTooLong) {
|
|
|
|
|
|
|
|
$message = "";
|
|
|
|
|
|
|
|
if ($titleTooShort) {
|
|
|
|
$message = "This title is too short!";
|
|
|
|
} elseif ($titleTooLong) {
|
|
|
|
$message = "This title is too long!";
|
|
|
|
} elseif ($textTooShort) {
|
|
|
|
$message = "Please make your post a little bit longer!";
|
|
|
|
} elseif ($textTooLong) {
|
|
|
|
$message = "Your post is too long, you're gonna have to cut a little!";
|
|
|
|
}
|
|
|
|
|
|
|
|
$redirect = Router::route('forums.post', $post->id);
|
|
|
|
|
|
|
|
Template::vars(['page' => compact('message', 'redirect')]);
|
|
|
|
|
|
|
|
if (!isset($_SESSION['replyText'])) {
|
|
|
|
$_SESSION['replyText'] = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$_SESSION['replyText']["t{$forum->id}"] = $text;
|
|
|
|
|
|
|
|
return Template::render('global/information');
|
|
|
|
}
|
|
|
|
|
|
|
|
unset($_SESSION['replyText']["t{$forum->id}"]);
|
|
|
|
|
|
|
|
if ($post->id !== $thread->firstPost()->id || $title === null) {
|
|
|
|
$title = "Re: {$thread->title}";
|
|
|
|
} else {
|
|
|
|
$thread->title = $title;
|
|
|
|
$thread->update();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the post
|
|
|
|
$post->subject = $title;
|
|
|
|
$post->text = $text;
|
|
|
|
$post->editTime = time();
|
|
|
|
$post->editReason = '';
|
|
|
|
$post->editUser = $currentUser;
|
|
|
|
$post = $post->update();
|
|
|
|
|
|
|
|
// Go to the post
|
|
|
|
$postLink = Router::route('forums.post', $post->id);
|
|
|
|
|
|
|
|
// Head to the post
|
|
|
|
return header("Location: {$postLink}");
|
|
|
|
}
|
|
|
|
|
|
|
|
public function deletePost($id = 0)
|
|
|
|
{
|
|
|
|
global $currentUser;
|
|
|
|
|
|
|
|
$action = isset($_POST['yes']) && isset($_POST['sessionid'])
|
|
|
|
? $_POST['sessionid'] === session_id()
|
|
|
|
: null;
|
|
|
|
|
|
|
|
// Attempt to get the post
|
|
|
|
$post = new Post($id);
|
|
|
|
|
|
|
|
// And attempt to get the forum
|
|
|
|
$thread = new Thread($post->thread);
|
|
|
|
|
|
|
|
// And attempt to get the forum
|
|
|
|
$forum = new Forum($thread->forum);
|
|
|
|
|
|
|
|
// Check permissions
|
|
|
|
$noAccess = $post->id == 0
|
|
|
|
|| $thread->id == 0
|
|
|
|
|| !$forum->permission(ForumPerms::VIEW, $currentUser->id);
|
|
|
|
|
|
|
|
$noDelete = (
|
|
|
|
$post->poster->id === $currentUser->id
|
|
|
|
? !$currentUser->permission(ForumPerms::DELETE_OWN, Perms::FORUM)
|
|
|
|
: !$forum->permission(ForumPerms::DELETE_ANY, $currentUser->id)
|
|
|
|
) || (
|
|
|
|
$thread->status === 1
|
|
|
|
&& !$forum->permission(ForumPerms::LOCK, $currentUser->id)
|
|
|
|
);
|
|
|
|
|
|
|
|
// Check if the forum exists
|
|
|
|
if ($noAccess || $noDelete) {
|
|
|
|
if ($noDelete) {
|
|
|
|
$message = "You aren't allowed to delete posts in this thread!";
|
|
|
|
$redirect = Router::route('forums.post', $post->id);
|
|
|
|
} else {
|
|
|
|
$message = "This post doesn't exist or you don't have access to it!";
|
|
|
|
$redirect = Router::route('forums.index');
|
|
|
|
}
|
|
|
|
|
|
|
|
Template::vars(['page' => compact('message', 'redirect')]);
|
|
|
|
|
|
|
|
return Template::render('global/information');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($action !== null) {
|
|
|
|
if ($action) {
|
|
|
|
// Set message
|
|
|
|
$message = "Deleted the post!";
|
|
|
|
|
|
|
|
// Check if the thread only has 1 post
|
|
|
|
if ($thread->replyCount() === 1) {
|
|
|
|
// Delete the entire thread
|
|
|
|
$thread->delete();
|
|
|
|
|
|
|
|
$redirect = Router::route('forums.forum', $forum->id);
|
|
|
|
} else {
|
|
|
|
// Just delete the post
|
|
|
|
$post->delete();
|
|
|
|
|
|
|
|
$redirect = Router::route('forums.thread', $thread->id);
|
|
|
|
}
|
|
|
|
|
|
|
|
Template::vars(['page' => compact('message', 'redirect')]);
|
|
|
|
|
|
|
|
return Template::render('global/information');
|
|
|
|
}
|
|
|
|
|
|
|
|
$postLink = Router::route('forums.post', $post->id);
|
|
|
|
return header("Location: {$postLink}");
|
|
|
|
}
|
|
|
|
|
|
|
|
$message = "Are you sure?";
|
|
|
|
|
|
|
|
Template::vars(compact('message'));
|
|
|
|
|
|
|
|
return Template::render('global/confirm');
|
|
|
|
}
|
2016-02-04 20:56:40 +00:00
|
|
|
}
|