This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/libraries/Controllers/Meta.php

154 lines
4.1 KiB
PHP
Raw Normal View History

2016-01-30 00:18:23 +00:00
<?php
2016-02-03 22:22:56 +00:00
/**
* Holds the meta page controllers.
*
* @package Sakura
*/
2016-01-30 00:18:23 +00:00
namespace Sakura\Controllers;
2016-01-30 13:25:18 +00:00
use Sakura\Config;
use Sakura\Database;
use Sakura\News;
2016-01-30 00:18:23 +00:00
use Sakura\Template;
2016-01-30 13:25:18 +00:00
use Sakura\User;
use Sakura\Users;
use Sakura\Utils;
2016-01-30 00:18:23 +00:00
/**
2016-02-02 21:04:15 +00:00
* Meta page controllers (sections that aren't big enough to warrant a dedicated controller class).
*
2016-01-30 00:18:23 +00:00
* @package Sakura
2016-02-02 21:04:15 +00:00
* @author Julian van de Groep <me@flash.moe>
2016-01-30 00:18:23 +00:00
*/
class Meta
{
2016-02-02 21:04:15 +00:00
/**
* Serves the site index.
*
* @return mixed HTML for the index.
*/
2016-01-30 13:25:18 +00:00
public static function index()
{
// Merge index specific stuff with the global render data
2016-02-04 20:56:40 +00:00
Template::vars([
'news' => new News(Config::get('site_news_category')),
'newsCount' => Config::get('front_page_news_posts'),
'stats' => [
'userCount' => Database::count('users', ['password_algo' => ['nologin', '!='], 'rank_main' => ['1', '!=']])[0],
'newestUser' => User::construct(Users::getNewestUserId()),
'lastRegDate' => date_diff(
date_create(date('Y-m-d', User::construct(Users::getNewestUserId())->registered)),
date_create(date('Y-m-d'))
)->format('%a'),
'topicCount' => Database::count('topics')[0],
'postCount' => Database::count('posts')[0],
'onlineUsers' => Users::checkAllOnline(),
],
]);
2016-01-30 13:25:18 +00:00
// Return the compiled page
2016-02-04 20:56:40 +00:00
return Template::render('main/index');
2016-01-30 13:25:18 +00:00
}
2016-02-02 21:04:15 +00:00
/**
* Handles the news pages.
*
* @return mixed HTML for the correct news section.
*/
2016-01-30 13:25:18 +00:00
public static function news()
{
// Get arguments
$args = func_get_args();
$category = isset($args[0]) && !is_numeric($args[0]) ? $args[0] : Config::get('site_news_category');
$post = isset($args[1]) && is_numeric($args[1]) ? $args[1] : (
isset($args[0]) && is_numeric($args[0]) ? $args[0] : 0
);
// Create news object
$news = new News($category);
2016-02-04 20:56:40 +00:00
// Set parse variables
Template::vars([
2016-01-30 13:25:18 +00:00
'news' => $news,
'postsPerPage' => Config::get('news_posts_per_page'),
'viewPost' => $post != 0,
'postExists' => $news->postExists($post),
]);
// Print page contents
2016-02-04 20:56:40 +00:00
return Template::render('main/news');
2016-01-30 13:25:18 +00:00
}
2016-02-02 21:04:15 +00:00
/**
* Displays the FAQ.
*
* @return mixed HTML for the FAQ.
*/
2016-01-30 13:25:18 +00:00
public static function faq()
{
// Set parse variables
2016-02-04 20:56:40 +00:00
Template::vars([
'page' => [
'title' => 'Frequently Asked Questions',
'questions' => Utils::getFaqData(),
],
]);
2016-01-30 13:25:18 +00:00
// Print page contents
2016-02-04 20:56:40 +00:00
return Template::render('main/faq');
2016-01-30 13:25:18 +00:00
}
2016-02-02 21:04:15 +00:00
/**
* Handles the info pages.
*
* @param string $id The page ID from the database.
*
* @return mixed HTML for the info page.
*/
2016-01-30 13:25:18 +00:00
public static function infoPage($id = null)
{
// Set default variables
$renderData['page'] = [
'content' => '<h1>Unable to load the requested info page.</h1><p>Check the URL and try again.</p>',
];
// Set page id
$id = strtolower($id);
// Get info page data from the database
if ($ipData = Utils::loadInfoPage($id)) {
// Assign new proper variable
$renderData['page'] = [
'id' => $id,
'title' => $ipData['page_title'],
'content' => $ipData['page_content'],
];
}
// Set parse variables
2016-02-04 20:56:40 +00:00
Template::vars($renderData);
2016-01-30 13:25:18 +00:00
// Return the compiled page
2016-02-04 20:56:40 +00:00
return Template::render('main/infopage');
2016-01-30 13:25:18 +00:00
}
2016-02-02 21:04:15 +00:00
/**
* Search page
*
* @return mixed HTML for the search page.
*/
2016-01-30 13:25:18 +00:00
public static function search()
{
// Set parse variables
2016-02-04 20:56:40 +00:00
Template::vars([
'page' => [
'title' => 'Search',
],
]);
2016-01-30 13:25:18 +00:00
// Print page contents
2016-02-04 20:56:40 +00:00
return Template::render('main/search');
2016-01-30 13:25:18 +00:00
}
2016-01-30 00:18:23 +00:00
}