2015-04-01 15:35:27 +00:00
|
|
|
<?php
|
|
|
|
/*
|
2015-05-24 22:06:53 +00:00
|
|
|
* Sakura Community Management System
|
2015-10-10 21:17:50 +00:00
|
|
|
* (c) 2013-2015 Flashwave <http://flash.moe>
|
2015-04-01 15:35:27 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
// Declare namespace
|
|
|
|
namespace Sakura;
|
|
|
|
|
|
|
|
// Define Sakura version
|
2015-10-20 00:49:09 +00:00
|
|
|
define('SAKURA_VERSION', '20151020');
|
2015-09-14 20:51:23 +00:00
|
|
|
define('SAKURA_VLABEL', 'Eminence');
|
|
|
|
define('SAKURA_COLOUR', '#6C3082');
|
|
|
|
define('SAKURA_STABLE', false);
|
2015-04-01 15:35:27 +00:00
|
|
|
|
|
|
|
// Define Sakura Path
|
2015-04-06 16:15:20 +00:00
|
|
|
define('ROOT', str_replace(basename(__DIR__), '', dirname(__FILE__)));
|
2015-04-01 15:35:27 +00:00
|
|
|
|
|
|
|
// Error Reporting: 0 for production and -1 for testing
|
2015-06-29 00:36:37 +00:00
|
|
|
error_reporting(SAKURA_STABLE ? 0 : -1);
|
2015-04-01 15:35:27 +00:00
|
|
|
|
2015-07-05 00:03:15 +00:00
|
|
|
// Set internal encoding method
|
|
|
|
mb_internal_encoding('utf-8');
|
|
|
|
|
2015-08-23 22:08:36 +00:00
|
|
|
// Stop the execution if the PHP Version is older than 5.4.0
|
2015-09-14 20:51:23 +00:00
|
|
|
if (version_compare(phpversion(), '5.4.0', '<')) {
|
2015-08-29 13:25:57 +00:00
|
|
|
die('<h3>Sakura requires at least PHP 5.4.0, please upgrade to a newer PHP version.</h3>');
|
2015-08-23 22:08:36 +00:00
|
|
|
}
|
|
|
|
|
2015-04-01 15:35:27 +00:00
|
|
|
// Include libraries
|
2015-09-14 20:51:23 +00:00
|
|
|
require_once ROOT . '_sakura/vendor/autoload.php';
|
|
|
|
require_once ROOT . '_sakura/components/Main.php';
|
|
|
|
require_once ROOT . '_sakura/components/Hashing.php';
|
|
|
|
require_once ROOT . '_sakura/components/Configuration.php';
|
|
|
|
require_once ROOT . '_sakura/components/Database.php';
|
|
|
|
require_once ROOT . '_sakura/components/Urls.php';
|
|
|
|
require_once ROOT . '_sakura/components/Templates.php';
|
|
|
|
require_once ROOT . '_sakura/components/Permissions.php';
|
2015-10-18 01:50:50 +00:00
|
|
|
require_once ROOT . '_sakura/components/Session.php';
|
2015-09-14 20:51:23 +00:00
|
|
|
require_once ROOT . '_sakura/components/User.php';
|
2015-10-10 21:17:50 +00:00
|
|
|
require_once ROOT . '_sakura/components/Rank.php';
|
2015-09-14 20:51:23 +00:00
|
|
|
require_once ROOT . '_sakura/components/Users.php';
|
|
|
|
require_once ROOT . '_sakura/components/Forum.php';
|
|
|
|
require_once ROOT . '_sakura/components/News.php';
|
|
|
|
require_once ROOT . '_sakura/components/Comments.php';
|
|
|
|
require_once ROOT . '_sakura/components/Manage.php';
|
|
|
|
require_once ROOT . '_sakura/components/Bans.php';
|
|
|
|
require_once ROOT . '_sakura/components/Whois.php';
|
|
|
|
require_once ROOT . '_sakura/components/Payments.php';
|
2015-04-01 15:35:27 +00:00
|
|
|
|
2015-05-29 19:27:45 +00:00
|
|
|
// Include database extensions
|
2015-09-14 20:51:23 +00:00
|
|
|
foreach (glob(ROOT . '_sakura/components/database/*.php') as $driver) {
|
2015-07-30 01:12:53 +00:00
|
|
|
require_once $driver;
|
|
|
|
}
|
2015-04-01 15:35:27 +00:00
|
|
|
|
|
|
|
// Set Error handler
|
2015-10-18 19:06:30 +00:00
|
|
|
set_error_handler(['Sakura\Main', 'errorHandler']);
|
2015-04-01 15:35:27 +00:00
|
|
|
|
2015-07-30 01:12:53 +00:00
|
|
|
// Initialise Main Class
|
2015-09-14 20:51:23 +00:00
|
|
|
Main::init(ROOT . '_sakura/config/config.ini');
|
2015-05-29 19:27:45 +00:00
|
|
|
|
2015-08-23 22:08:36 +00:00
|
|
|
// Assign servers file to whois class
|
2015-09-14 20:51:23 +00:00
|
|
|
Whois::setServers(ROOT . '_sakura/' . Configuration::getLocalConfig('data', 'whoisservers'));
|
2015-08-23 22:08:36 +00:00
|
|
|
|
2015-09-12 19:57:44 +00:00
|
|
|
// Check if we the system has a cron service
|
2015-09-14 20:51:23 +00:00
|
|
|
if (Configuration::getConfig('no_cron_service')) {
|
2015-09-12 19:57:44 +00:00
|
|
|
// If not do an "asynchronous" call to the cron.php script
|
2015-09-14 20:51:23 +00:00
|
|
|
if (Configuration::getConfig('no_cron_last') < (time() - Configuration::getConfig('no_cron_interval'))) {
|
2015-09-12 19:57:44 +00:00
|
|
|
// Check OS
|
2015-09-14 20:51:23 +00:00
|
|
|
if (substr(strtolower(PHP_OS), 0, 3) == 'win') {
|
|
|
|
pclose(popen('start /B ' . PHP_BINDIR . '\php.exe ' . addslashes(ROOT . '_sakura\cron.php'), 'r'));
|
2015-09-12 19:57:44 +00:00
|
|
|
} else {
|
2015-09-14 20:51:23 +00:00
|
|
|
pclose(popen(PHP_BINDIR . '/php ' . ROOT . '_sakura/cron.php > /dev/null 2>/dev/null &', 'r'));
|
2015-09-12 19:57:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Update last execution time
|
|
|
|
Database::update('config', [
|
|
|
|
[
|
2015-09-14 20:51:23 +00:00
|
|
|
'config_value' => time(),
|
2015-09-12 19:57:44 +00:00
|
|
|
],
|
|
|
|
[
|
2015-09-14 20:51:23 +00:00
|
|
|
'config_name' => ['no_cron_last', '='],
|
|
|
|
],
|
2015-09-12 19:57:44 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-05-29 19:27:45 +00:00
|
|
|
// Start output buffering
|
|
|
|
ob_start(Configuration::getConfig('use_gzip') ? 'ob_gzhandler' : null);
|
2015-04-01 15:35:27 +00:00
|
|
|
|
2015-10-18 01:50:50 +00:00
|
|
|
// Auth check
|
|
|
|
$authCheck = Users::checkLogin();
|
|
|
|
|
2015-08-21 22:07:45 +00:00
|
|
|
// Create a user object for the current logged in user
|
2015-10-18 01:50:50 +00:00
|
|
|
$currentUser = new User($authCheck[0]);
|
2015-08-21 22:07:45 +00:00
|
|
|
|
2015-09-04 23:49:53 +00:00
|
|
|
// Create the Urls object
|
|
|
|
$urls = new Urls();
|
|
|
|
|
2015-08-29 13:25:57 +00:00
|
|
|
// Prepare the name of the template to load (outside of SAKURA_NO_TPL because it's used in imageserve.php)
|
2015-09-14 20:51:23 +00:00
|
|
|
$templateName =
|
|
|
|
defined('SAKURA_MANAGE') ?
|
|
|
|
Configuration::getConfig('manage_style') :
|
2015-10-11 23:37:54 +00:00
|
|
|
(
|
2015-10-12 17:28:34 +00:00
|
|
|
(
|
|
|
|
isset($currentUser->data['user_data']['userOptions']['useMisaki']) &&
|
|
|
|
$currentUser->data['user_data']['userOptions']['useMisaki'] &&
|
|
|
|
$currentUser->checkPermission('SITE', 'ALTER_PROFILE')
|
|
|
|
) ?
|
|
|
|
'misaki' :
|
|
|
|
Configuration::getConfig('site_style')
|
|
|
|
);
|
2015-07-30 01:12:53 +00:00
|
|
|
|
2015-09-14 20:51:23 +00:00
|
|
|
if (!defined('SAKURA_NO_TPL')) {
|
2015-08-23 22:08:36 +00:00
|
|
|
// Initialise templating engine
|
2015-08-29 13:25:57 +00:00
|
|
|
Templates::init($templateName);
|
2015-08-23 22:08:36 +00:00
|
|
|
|
2015-07-30 01:12:53 +00:00
|
|
|
// Set base page rendering data
|
|
|
|
$renderData = [
|
|
|
|
|
2015-09-02 17:51:03 +00:00
|
|
|
/*
|
|
|
|
* Idea for flexibility in templates and to reduce redundancy;
|
|
|
|
* Attempt to use a class instead of an assoc. array for the
|
|
|
|
* template variables since twig supports this to make accessing
|
|
|
|
* certain functions, like the time elapsed function easier.
|
2015-09-08 21:57:33 +00:00
|
|
|
* Update 2015-09-08: Apparently this will be added in PHP 7 so
|
|
|
|
* we'll be looking out for that.
|
2015-09-02 17:51:03 +00:00
|
|
|
*/
|
|
|
|
|
2015-07-30 01:12:53 +00:00
|
|
|
'sakura' => [
|
|
|
|
|
2015-08-20 23:17:27 +00:00
|
|
|
'versionInfo' => [
|
|
|
|
|
2015-09-14 20:51:23 +00:00
|
|
|
'version' => SAKURA_VERSION,
|
|
|
|
'label' => SAKURA_VLABEL,
|
|
|
|
'colour' => SAKURA_COLOUR,
|
|
|
|
'stable' => SAKURA_STABLE,
|
2015-08-20 23:17:27 +00:00
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
'cookie' => [
|
|
|
|
|
2015-09-14 20:51:23 +00:00
|
|
|
'prefix' => Configuration::getConfig('cookie_prefix'),
|
|
|
|
'domain' => Configuration::getConfig('cookie_domain'),
|
|
|
|
'path' => Configuration::getConfig('cookie_path'),
|
2015-08-20 23:17:27 +00:00
|
|
|
|
|
|
|
],
|
|
|
|
|
2015-09-14 20:51:23 +00:00
|
|
|
'urlMain' => Configuration::getConfig('url_main'),
|
|
|
|
'urlApi' => Configuration::getConfig('url_api'),
|
2015-08-20 23:17:27 +00:00
|
|
|
|
2015-09-14 20:51:23 +00:00
|
|
|
'contentPath' => Configuration::getConfig('content_path'),
|
|
|
|
'resources' => Configuration::getConfig('content_path') . '/data/' . strtolower(Templates::$template),
|
2015-08-20 23:17:27 +00:00
|
|
|
|
2015-09-14 20:51:23 +00:00
|
|
|
'charset' => Configuration::getConfig('charset'),
|
|
|
|
'siteName' => Configuration::getConfig('sitename'),
|
2015-10-10 15:51:24 +00:00
|
|
|
'siteLogo' => Configuration::getConfig('sitelogo'),
|
2015-09-14 20:51:23 +00:00
|
|
|
'siteDesc' => Configuration::getConfig('sitedesc'),
|
|
|
|
'siteTags' => implode(", ", json_decode(Configuration::getConfig('sitetags'), true)),
|
|
|
|
'dateFormat' => Configuration::getConfig('date_format'),
|
2015-10-16 15:37:10 +00:00
|
|
|
'currentPage' => '//' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'],
|
2015-08-20 23:17:27 +00:00
|
|
|
|
2015-09-14 20:51:23 +00:00
|
|
|
'recaptchaPublic' => Configuration::getConfig('recaptcha_public'),
|
|
|
|
'recaptchaEnabled' => Configuration::getConfig('recaptcha'),
|
2015-08-20 23:17:27 +00:00
|
|
|
|
2015-09-14 20:51:23 +00:00
|
|
|
'disableRegistration' => Configuration::getConfig('disable_registration'),
|
|
|
|
'lockAuth' => Configuration::getConfig('lock_authentication'),
|
|
|
|
'requireRegCodes' => Configuration::getConfig('require_registration_code'),
|
|
|
|
'requireActivation' => Configuration::getConfig('require_activation'),
|
|
|
|
'minPwdEntropy' => Configuration::getConfig('min_entropy'),
|
|
|
|
'minUsernameLength' => Configuration::getConfig('username_min_length'),
|
|
|
|
'maxUsernameLength' => Configuration::getConfig('username_max_length'),
|
2015-07-30 01:12:53 +00:00
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
'php' => [
|
|
|
|
|
|
|
|
'sessionid' => \session_id(),
|
2015-09-14 20:51:23 +00:00
|
|
|
'time' => \time(),
|
|
|
|
'self' => $_SERVER['PHP_SELF'],
|
2015-07-30 01:12:53 +00:00
|
|
|
|
|
|
|
],
|
|
|
|
|
2015-08-19 19:44:01 +00:00
|
|
|
'session' => [
|
2015-07-30 01:12:53 +00:00
|
|
|
|
2015-10-18 01:50:50 +00:00
|
|
|
'checkLogin' => $authCheck,
|
|
|
|
'sessionId' => $authCheck[1],
|
|
|
|
'userId' => $authCheck[0],
|
2015-07-30 01:12:53 +00:00
|
|
|
|
2015-08-19 19:44:01 +00:00
|
|
|
],
|
|
|
|
|
2015-09-04 23:49:53 +00:00
|
|
|
'user' => $currentUser,
|
2015-09-14 20:51:23 +00:00
|
|
|
'urls' => $urls,
|
2015-07-30 01:12:53 +00:00
|
|
|
|
|
|
|
];
|
|
|
|
|
2015-09-16 20:34:36 +00:00
|
|
|
// Site closing
|
|
|
|
if (Configuration::getConfig('site_closed')) {
|
|
|
|
// Additional render data
|
|
|
|
$renderData = array_merge($renderData, [
|
|
|
|
|
|
|
|
'page' => [
|
|
|
|
'message' => Configuration::getConfig('site_closed_reason'),
|
|
|
|
],
|
|
|
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
print Templates::render('global/information.tpl', $renderData);
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2015-07-30 01:12:53 +00:00
|
|
|
// Ban checking
|
2015-10-18 01:50:50 +00:00
|
|
|
if ($authCheck && $ban = Bans::checkBan($currentUser->data['user_id'])) {
|
2015-07-30 01:12:53 +00:00
|
|
|
// Additional render data
|
|
|
|
$renderData = array_merge($renderData, [
|
2015-09-07 20:53:47 +00:00
|
|
|
|
2015-07-30 01:12:53 +00:00
|
|
|
'ban' => [
|
2015-09-14 20:51:23 +00:00
|
|
|
'reason' => $ban['reason'],
|
|
|
|
'issued' => $ban['issued'],
|
|
|
|
'expires' => $ban['expires'],
|
|
|
|
'issuer' => Users::getUser($ban['issuer']),
|
|
|
|
],
|
2015-09-07 20:53:47 +00:00
|
|
|
|
2015-07-30 01:12:53 +00:00
|
|
|
]);
|
|
|
|
|
2015-07-30 17:07:23 +00:00
|
|
|
Users::logout();
|
2015-09-05 16:11:04 +00:00
|
|
|
print Templates::render('main/banned.tpl', $renderData);
|
2015-07-30 01:12:53 +00:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
}
|