TrackManiaControl/application/core/ManiaControl.php

427 lines
12 KiB
PHP
Raw Normal View History

2013-11-10 17:29:21 +01:00
<?php
namespace ManiaControl;
2013-12-31 12:42:07 +01:00
use ManiaControl\Admin\ActionsMenu;
use ManiaControl\Admin\AuthenticationManager;
2014-02-25 18:34:35 +01:00
use ManiaControl\Bills\BillManager;
use ManiaControl\Callbacks\CallbackManager;
2014-02-22 11:14:35 +01:00
use ManiaControl\Callbacks\TimerListener;
2014-01-30 22:35:32 +01:00
use ManiaControl\Callbacks\TimerManager;
use ManiaControl\Commands\CommandListener;
use ManiaControl\Commands\CommandManager;
use ManiaControl\Configurators\Configurator;
2014-02-07 12:30:53 +01:00
use ManiaControl\Files\AsynchronousFileReader;
2014-02-07 00:27:10 +01:00
use ManiaControl\Files\FileUtil;
use ManiaControl\Manialinks\ManialinkManager;
use ManiaControl\Maps\MapManager;
use ManiaControl\Players\Player;
use ManiaControl\Players\PlayerManager;
use ManiaControl\Plugins\PluginManager;
use ManiaControl\Server\Server;
2014-01-27 17:29:48 +01:00
use ManiaControl\Settings\SettingManager;
use ManiaControl\Statistics\StatisticManager;
2014-02-10 22:54:49 +01:00
use ManiaControl\Update\UpdateManager;
2014-01-16 17:19:01 +01:00
use Maniaplanet\DedicatedServer\Connection;
use Maniaplanet\DedicatedServer\Xmlrpc\Exception;
2014-02-19 12:38:38 +01:00
use Maniaplanet\DedicatedServer\Xmlrpc\FatalException;
2013-12-31 12:42:07 +01:00
2014-02-18 15:54:36 +01:00
require_once __DIR__ . '/Libs/Maniaplanet/DedicatedServer/Connection.php';
require_once __DIR__ . '/Libs/GbxDataFetcher/gbxdatafetcher.inc.php';
require_once __DIR__ . '/Libs/FML/autoload.php';
2014-02-18 18:13:59 +01:00
require_once __DIR__ . '/Libs/Symfony/autoload.php';
require_once __DIR__ . '/Libs/curl-easy/autoload.php';
2013-11-10 17:29:21 +01:00
/**
* ManiaControl Server Controller for ManiaPlanet Server
*
* @author steeffeen & kremsy
* @copyright ManiaControl Copyright © 2014 ManiaControl Team
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
2013-11-10 17:29:21 +01:00
*/
2014-02-22 11:14:35 +01:00
class ManiaControl implements CommandListener, TimerListener {
2013-11-10 17:29:21 +01:00
/**
* Constants
*/
const VERSION = '0.01';
const API_VERSION = '2013-04-16';
const OS_UNIX = 'Unix';
const OS_WIN = 'Windows';
const CONNECT_TIMEOUT = 50;
const SCRIPT_TIMEOUT = 20;
const URL_WEBSERVICE = 'http://ws.maniacontrol.com/';
2014-01-31 16:55:01 +01:00
const SETTING_PERMISSION_SHUTDOWN = 'Shutdown ManiaControl';
const SETTING_PERMISSION_RESTART = 'Restart ManiaControl';
2013-11-10 17:29:21 +01:00
/**
* Public properties
*/
2013-12-31 12:42:07 +01:00
public $actionsMenu = null;
public $authenticationManager = null;
public $callbackManager = null;
2013-11-10 17:29:21 +01:00
public $chat = null;
2014-01-06 14:22:48 +01:00
public $config = null;
public $configurator = null;
/**
*
* @var Connection $client
*/
2013-11-10 17:29:21 +01:00
public $client = null;
public $commandManager = null;
2013-11-10 17:29:21 +01:00
public $database = null;
public $manialinkManager = null;
public $mapManager = null;
public $playerManager = null;
public $pluginManager = null;
2013-11-10 17:29:21 +01:00
public $server = null;
public $settingManager = null;
2013-12-31 17:31:05 +01:00
public $statisticManager = null;
2013-12-17 17:38:44 +01:00
public $updateManager = null;
2014-01-27 20:28:37 +01:00
public $errorHandler = null;
2014-01-30 22:35:32 +01:00
public $timerManager = null;
2014-02-07 12:30:53 +01:00
public $fileReader = null;
2014-02-25 18:34:35 +01:00
public $billManager = null;
2013-11-10 17:29:21 +01:00
/**
* Private properties
*/
private $shutdownRequested = false;
/**
* Construct ManiaControl
*/
public function __construct() {
// Construct Error Handler
2014-01-27 20:28:37 +01:00
$this->errorHandler = new ErrorHandler($this);
2013-12-31 14:50:45 +01:00
$this->log('Loading ManiaControl v' . self::VERSION . '...');
2014-01-06 14:22:48 +01:00
// Load config
$this->config = FileUtil::loadConfig('server.xml');
2013-12-17 17:38:44 +01:00
// Load ManiaControl Modules
$this->callbackManager = new CallbackManager($this);
$this->timerManager = new TimerManager($this);
$this->database = new Database($this);
$this->fileReader = new AsynchronousFileReader($this);
$this->billManager = new BillManager($this);
$this->settingManager = new SettingManager($this);
$this->statisticManager = new StatisticManager($this);
$this->manialinkManager = new ManialinkManager($this);
$this->actionsMenu = new ActionsMenu($this);
$this->chat = new Chat($this);
$this->commandManager = new CommandManager($this);
$this->server = new Server($this);
$this->authenticationManager = new AuthenticationManager($this);
$this->playerManager = new PlayerManager($this);
$this->mapManager = new MapManager($this);
$this->configurator = new Configurator($this);
$this->pluginManager = new PluginManager($this);
$this->updateManager = new UpdateManager($this);
// Define Permission Levels
2014-01-31 16:55:01 +01:00
$this->authenticationManager->definePermissionLevel(self::SETTING_PERMISSION_SHUTDOWN, AuthenticationManager::AUTH_LEVEL_SUPERADMIN);
$this->authenticationManager->definePermissionLevel(self::SETTING_PERMISSION_RESTART, AuthenticationManager::AUTH_LEVEL_SUPERADMIN);
2013-12-17 17:38:44 +01:00
// Register for commands
$this->commandManager->registerCommandListener('version', $this, 'command_Version');
$this->commandManager->registerCommandListener('restart', $this, 'command_Restart', true);
2014-01-01 19:25:51 +01:00
$this->commandManager->registerCommandListener('shutdown', $this, 'command_Shutdown', true);
2013-11-10 17:29:21 +01:00
}
2013-12-09 15:53:10 +01:00
/**
* Print a message to console and log
2013-12-31 12:42:07 +01:00
*
* @param string $message
2013-12-09 15:53:10 +01:00
*/
2014-01-05 14:13:18 +01:00
public function log($message, $stripCodes = false) {
2014-01-10 13:21:07 +01:00
$date = date("d.M y H:i:s");
2014-01-27 20:28:37 +01:00
if ($stripCodes) {
2014-01-05 14:13:18 +01:00
$message = Formatter::stripCodes($message);
}
2014-01-10 13:21:07 +01:00
logMessage($date . ' ' . $message);
2013-12-09 15:53:10 +01:00
}
/**
* Get the Operating System on which ManiaControl is running
*
* @param string $compareOS
* @return string
*/
public function getOS($compareOS = null) {
$windows = defined('PHP_WINDOWS_VERSION_MAJOR');
2014-01-27 20:28:37 +01:00
if ($compareOS) {
// Return bool whether OS equals $compareOS
2014-01-27 20:28:37 +01:00
if ($compareOS == self::OS_WIN) {
return $windows;
}
return !$windows;
}
// Return OS
2014-01-27 20:28:37 +01:00
if ($windows) {
return self::OS_WIN;
}
return self::OS_UNIX;
}
/**
* Handle Version Command
*
* @param array $chatCallback
2013-12-31 12:42:07 +01:00
* @param Player $player
*/
public function command_Version(array $chatCallback, Player $player) {
$message = 'This server is using ManiaControl v' . ManiaControl::VERSION . '!';
$this->chat->sendInformation($message, $player->login);
}
/**
* Handle Restart AdminCommand
*
* @param array $chatCallback
* @param Player $player
*/
public function command_Restart(array $chatCallback, Player $player) {
2014-01-31 16:55:01 +01:00
if (!$this->authenticationManager->checkPermission($player, self::SETTING_PERMISSION_RESTART)) {
$this->authenticationManager->sendNotAllowed($player);
return;
}
2014-01-01 19:25:51 +01:00
$this->restart("ManiaControl Restart requested by '{$player->login}'!");
}
/**
* Handle //shutdown command
*
* @param array $chat
2014-01-01 19:25:51 +01:00
* @param Player $player
*/
public function command_Shutdown(array $chat, Player $player) {
2014-01-31 16:55:01 +01:00
if (!$this->authenticationManager->checkPermission($player, self::SETTING_PERMISSION_SHUTDOWN)) {
2014-01-01 19:25:51 +01:00
$this->authenticationManager->sendNotAllowed($player);
return;
}
$this->quit("ManiaControl Shutdown requested by '{$player->login}'!");
}
2013-11-10 17:29:21 +01:00
/**
* Quit ManiaControl and log the given message
*
2013-12-31 12:42:07 +01:00
* @param string $message
2013-11-10 17:29:21 +01:00
*/
2014-01-01 19:25:51 +01:00
public function quit($message = null) {
2014-01-27 20:28:37 +01:00
if ($message) {
$this->log($message);
}
2014-01-01 19:25:51 +01:00
exit();
}
/**
* Handle PHP Process Shutdown
*/
public function handleShutdown() {
// OnShutdown callback
$this->callbackManager->triggerCallback(CallbackManager::CB_ONSHUTDOWN);
2014-01-01 19:25:51 +01:00
// Announce quit
$this->chat->sendInformation('ManiaControl shutting down.');
2014-03-01 10:49:07 +01:00
if ($this->client) {
try {
// Hide manialinks
$this->client->sendHideManialinkPage();
// Close the client connection
$this->client->delete($this->server->ip, $this->server->port);
}
catch (FatalException $e) {
2014-03-01 10:49:07 +01:00
$this->errorHandler->triggerDebugNotice($e->getMessage() . " File: " . $e->getFile() . " Line: " . $e->getLine());
2014-02-27 15:03:01 +01:00
}
2014-02-01 21:37:38 +01:00
}
// Check and Trigger Fatal Errors
2014-02-13 20:41:55 +01:00
$error = error_get_last();
if ($error && ($error['type'] & E_FATAL)) {
$this->errorHandler->errorHandler($error['type'], $error['message'], $error['file'], $error['line']);
}
// Disable Garbage Collector
2014-02-22 12:49:59 +01:00
$this->collectGarbage();
2014-02-22 11:14:35 +01:00
gc_disable();
$this->log('Quitting ManiaControl!');
2013-11-10 17:29:21 +01:00
exit();
}
/**
* Restart ManiaControl
*
* @param string $message
*/
public function restart($message = null) {
// Shutdown callback
$this->callbackManager->triggerCallback(CallbackManager::CB_ONSHUTDOWN);
// Announce restart
$this->chat->sendInformation('Restarting ManiaControl...');
2014-01-27 20:28:37 +01:00
if ($message) {
$this->log($message);
}
// Hide widgets
2014-01-16 17:19:01 +01:00
$this->client->sendHideManialinkPage();
2014-01-01 19:25:51 +01:00
$this->log('Restarting ManiaControl!');
// Execute start script in background
2014-01-27 20:28:37 +01:00
if ($this->getOS(self::OS_UNIX)) {
$command = 'sh ' . escapeshellarg(ManiaControlDir . '/ManiaControl.sh') . ' > /dev/null &';
exec($command);
}
else {
2014-01-20 20:51:03 +01:00
$command = escapeshellarg(ManiaControlDir . "\ManiaControl.bat");
system($command); // TODO, windows stucks here as long controller is running
}
exit();
}
2013-11-10 17:29:21 +01:00
/**
* Run ManiaControl
*/
public function run() {
$this->log('Starting ManiaControl v' . self::VERSION . '!');
// Register shutdown handler
2014-01-01 19:25:51 +01:00
register_shutdown_function(array($this, 'handleShutdown'));
2014-02-15 21:48:23 +01:00
// Connect to server
$this->connect();
// OnInit callback
$this->callbackManager->triggerCallback(CallbackManager::CB_ONINIT);
2014-01-18 10:26:32 +01:00
// Load plugins
$this->pluginManager->loadPlugins();
// AfterInit callback
$this->callbackManager->triggerCallback(CallbackManager::CB_AFTERINIT);
// Enable Garbage Collecting
2014-02-22 11:14:35 +01:00
gc_enable();
$this->timerManager->registerTimerListening($this, 'collectGarbage', 1000 * 60);
// Announce ManiaControl
$this->chat->sendInformation('ManiaControl v' . self::VERSION . ' successfully started!');
// Loading finished
$this->log('Loading completed!');
2014-02-13 20:41:55 +01:00
$this->log('Link: maniaplanet://#join=' . $this->server->login . '@' . $this->server->titleId);
2013-11-10 17:29:21 +01:00
// Main loop
while (!$this->shutdownRequested) {
2013-11-10 17:29:21 +01:00
$loopStart = microtime(true);
2013-11-10 17:29:21 +01:00
// Disable script timeout
2014-01-20 20:51:03 +01:00
set_time_limit(self::SCRIPT_TIMEOUT);
2014-02-14 13:51:23 +01:00
try {
// Manager callbacks
$this->callbackManager->manageCallbacks();
}
catch (FatalException $e) {
// TODO remove
2014-03-01 10:49:07 +01:00
if ($this->errorHandler) {
$this->errorHandler->triggerDebugNotice("Fatal Exception: " . $e->getMessage() . " Trace: " . $e->getTraceAsString());
2014-03-01 10:46:28 +01:00
}
2014-02-14 18:17:05 +01:00
$this->quit($e->getMessage());
2014-02-14 13:51:23 +01:00
}
2014-02-14 13:52:20 +01:00
// Manage FileReader
$this->fileReader->appendData();
2013-11-10 17:29:21 +01:00
// Yield for next tick
2014-01-31 16:55:01 +01:00
$loopEnd = microtime(true);
2014-03-27 18:40:13 +01:00
$sleepTime = (int) (2000 - ($loopEnd - $loopStart) * 1000000);
2014-01-27 20:28:37 +01:00
if ($sleepTime > 0) {
2013-11-10 17:29:21 +01:00
usleep($sleepTime);
}
}
2013-11-10 17:29:21 +01:00
// Shutdown
$this->quit();
2013-11-10 17:29:21 +01:00
}
2014-02-22 11:14:35 +01:00
/**
* Collect Garbage
*/
public function collectGarbage() {
gc_collect_cycles();
}
2013-11-10 17:29:21 +01:00
/**
* Connect to ManiaPlanet server
*/
private function connect() {
// Load remote client
$success = $this->server->loadConfig();
$this->log("Connecting to server at {$this->server->config->host}:{$this->server->config->port}...");
2014-01-17 16:32:53 +01:00
try {
$this->client = Connection::factory($this->server->config->host, $this->server->config->port, self::CONNECT_TIMEOUT,
$this->server->config->login, $this->server->config->pass);
2013-11-10 17:29:21 +01:00
}
catch (Exception $e) {
trigger_error("Couldn't authenticate on server with user '{$this->server->config->login}'! " . $e->getMessage(), E_USER_ERROR);
}
2013-11-10 17:29:21 +01:00
// Enable callback system
$this->client->enableCallbacks(true);
2013-11-10 17:29:21 +01:00
// Wait for server to be ready
2014-03-01 10:49:07 +01:00
try {
if (!$this->server->waitForStatus(4)) {
trigger_error("Server couldn't get ready!", E_USER_ERROR);
}
}
catch (FatalException $e) {
// TODO remove
2014-03-01 10:49:07 +01:00
if ($this->errorHandler) {
$this->errorHandler->triggerDebugNotice("Fatal Exception: " . $e->getMessage() . " Trace: " . $e->getTraceAsString());
}
$this->quit($e->getMessage());
2013-11-10 17:29:21 +01:00
}
2013-11-10 17:29:21 +01:00
// Connect finished
2013-12-31 14:50:45 +01:00
$this->log("Server Connection successfully established!");
2013-12-31 14:50:45 +01:00
// Hide old widgets
2014-01-16 17:19:01 +01:00
$this->client->sendHideManialinkPage();
2013-11-10 17:29:21 +01:00
// Enable script callbacks if needed
if ($this->server->getGameMode() != 0) return;
2014-01-17 16:32:53 +01:00
try {
$scriptSettings = $this->client->getModeScriptSettings();
}
catch (Exception $e) {
if ($e->getMessage() == 'Not in script mode.') {
return;
}
throw $e;
}
if (!array_key_exists('S_UseScriptCallbacks', $scriptSettings)) return;
$scriptSettings['S_UseScriptCallbacks'] = true;
2014-01-17 16:32:53 +01:00
try {
$this->client->setModeScriptSettings($scriptSettings);
}
catch (Exception $e) {
2014-01-18 22:06:07 +01:00
trigger_error("Couldn't set mode script settings to enable script callbacks. " . $e->getMessage());
return;
2013-11-10 17:29:21 +01:00
}
2013-12-31 14:50:45 +01:00
$this->log('Script Callbacks successfully enabled!');
2013-11-10 17:29:21 +01:00
}
}