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;
|
2016-02-18 23:28:44 +00:00
|
|
|
use Sakura\DB;
|
2016-03-28 14:47:43 +00:00
|
|
|
use Sakura\News\Category;
|
2016-01-30 00:18:23 +00:00
|
|
|
use Sakura\Template;
|
2016-01-30 13:25:18 +00:00
|
|
|
use Sakura\User;
|
2016-01-30 00:18:23 +00:00
|
|
|
|
|
|
|
/**
|
2016-02-15 21:20:46 +00:00
|
|
|
* Meta page controllers (sections that aren't big enough to warrant a dedicated controller).
|
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
|
|
|
*/
|
2016-02-27 16:46:16 +00:00
|
|
|
class MetaController extends Controller
|
2016-01-30 00:18:23 +00:00
|
|
|
{
|
2016-02-02 21:04:15 +00:00
|
|
|
/**
|
|
|
|
* Serves the site index.
|
2016-08-05 02:35:37 +00:00
|
|
|
* @return string
|
2016-02-02 21:04:15 +00:00
|
|
|
*/
|
2016-12-04 16:33:52 +00:00
|
|
|
public function index(): string
|
2016-01-30 13:25:18 +00:00
|
|
|
{
|
2016-03-27 21:18:57 +00:00
|
|
|
// Get the newest user
|
|
|
|
$newestUserId = DB::table('users')
|
2016-12-07 15:33:26 +00:00
|
|
|
->where('rank_main', '!=', config('rank.banned'))
|
|
|
|
->where('user_activated', 1)
|
|
|
|
->where('user_restricted', 0)
|
2016-03-27 21:18:57 +00:00
|
|
|
->orderBy('user_id', 'desc')
|
|
|
|
->limit(1)
|
|
|
|
->get(['user_id']);
|
|
|
|
$newestUser = User::construct($newestUserId ? $newestUserId[0]->user_id : 0);
|
|
|
|
|
|
|
|
// Get all the currently online users
|
2016-07-26 17:29:53 +00:00
|
|
|
$timeRange = time() - 120;
|
2016-03-27 21:18:57 +00:00
|
|
|
|
|
|
|
// Create a storage variable
|
|
|
|
$onlineUsers = [];
|
|
|
|
|
|
|
|
// Get all online users
|
|
|
|
$getOnline = DB::table('users')
|
|
|
|
->where('user_last_online', '>', $timeRange)
|
|
|
|
->get(['user_id']);
|
|
|
|
$getOnline = array_column($getOnline, 'user_id');
|
|
|
|
|
|
|
|
foreach ($getOnline as $user) {
|
|
|
|
$user = User::construct($user);
|
|
|
|
|
|
|
|
// Do a second check
|
|
|
|
if (!$user->isOnline()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$onlineUsers[$user->id] = $user;
|
|
|
|
}
|
|
|
|
|
2016-03-28 14:47:43 +00:00
|
|
|
// Get news
|
2016-07-26 17:29:53 +00:00
|
|
|
$news = new Category(config('general.news'));
|
2016-03-28 14:47:43 +00:00
|
|
|
|
2016-01-30 13:25:18 +00:00
|
|
|
// Merge index specific stuff with the global render data
|
2016-02-04 20:56:40 +00:00
|
|
|
Template::vars([
|
2016-07-26 17:29:53 +00:00
|
|
|
'news' => $news->posts(3),
|
2016-02-04 20:56:40 +00:00
|
|
|
'stats' => [
|
2016-03-25 01:31:57 +00:00
|
|
|
'userCount' => DB::table('users')
|
2016-12-07 15:33:26 +00:00
|
|
|
->where('rank_main', '!=', config('rank.banned'))
|
|
|
|
->where('user_activated', 1)
|
|
|
|
->where('user_restricted', 0)
|
2016-03-25 01:31:57 +00:00
|
|
|
->count(),
|
2016-03-27 21:18:57 +00:00
|
|
|
'newestUser' => $newestUser,
|
2016-02-04 20:56:40 +00:00
|
|
|
'lastRegDate' => date_diff(
|
2016-03-27 21:18:57 +00:00
|
|
|
date_create(date('Y-m-d', $newestUser->registered)),
|
2016-02-04 20:56:40 +00:00
|
|
|
date_create(date('Y-m-d'))
|
|
|
|
)->format('%a'),
|
2016-07-26 17:29:53 +00:00
|
|
|
'topicCount' => DB::table('topics')->where('forum_id', '!=', config('forum.trash'))->count(),
|
|
|
|
'postCount' => DB::table('posts')->where('forum_id', '!=', config('forum.trash'))->count(),
|
2016-03-27 21:18:57 +00:00
|
|
|
'onlineUsers' => $onlineUsers,
|
2016-02-04 20:56:40 +00:00
|
|
|
],
|
|
|
|
]);
|
2016-01-30 13:25:18 +00:00
|
|
|
|
|
|
|
// Return the compiled page
|
2016-03-28 14:47:43 +00:00
|
|
|
return Template::render('meta/index');
|
2016-01-30 13:25:18 +00:00
|
|
|
}
|
|
|
|
|
2016-02-02 21:04:15 +00:00
|
|
|
/**
|
2016-08-05 02:35:37 +00:00
|
|
|
* Search page.
|
|
|
|
* @return string
|
2016-02-02 21:04:15 +00:00
|
|
|
*/
|
2016-12-04 16:33:52 +00:00
|
|
|
public function search(): string
|
2016-01-30 13:25:18 +00:00
|
|
|
{
|
2016-12-04 16:33:52 +00:00
|
|
|
return view('meta/search');
|
2016-01-30 13:25:18 +00:00
|
|
|
}
|
2016-01-30 00:18:23 +00:00
|
|
|
}
|