TrackManiaControl/application/core/ManiaControl.php

407 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;
use ManiaControl\Callbacks\CallbackManager;
use ManiaControl\Commands\CommandListener;
use ManiaControl\Commands\CommandManager;
use ManiaControl\Configurators\Configurator;
use ManiaControl\Manialinks\ManialinkManager;
use ManiaControl\Maps\MapManager;
use ManiaControl\Players\Player;
use ManiaControl\Players\PlayerManager;
use ManiaControl\Plugins\PluginManager;
use ManiaControl\Server\Server;
use ManiaControl\Statistics\StatisticManager;
2014-01-16 17:19:01 +01:00
use Maniaplanet\DedicatedServer\Connection;
2013-12-31 12:42:07 +01:00
2014-01-16 17:19:01 +01:00
require_once __DIR__ . '/Maniaplanet/DedicatedServer/Connection.php';
require_once __DIR__ . '/Callbacks/CallbackListener.php';
require_once __DIR__ . '/Commands/CommandListener.php';
require_once __DIR__ . '/Manialinks/ManialinkPageAnswerListener.php';
2013-12-31 12:42:07 +01:00
require_once __DIR__ . '/Admin/ActionsMenu.php';
require_once __DIR__ . '/Admin/AuthenticationManager.php';
require_once __DIR__ . '/Callbacks/CallbackManager.php';
require_once __DIR__ . '/Chat.php';
require_once __DIR__ . '/ColorUtil.php';
require_once __DIR__ . '/Commands/CommandManager.php';
2014-01-14 19:47:40 +01:00
require_once __DIR__ . '/Commands/HelpManager.php';
require_once __DIR__ . '/Configurators/Configurator.php';
require_once __DIR__ . '/Database.php';
require_once __DIR__ . '/FileUtil.php';
require_once __DIR__ . '/Formatter.php';
2013-12-17 17:38:44 +01:00
require_once __DIR__ . '/GbxDataFetcher/gbxdatafetcher.inc.php';
require_once __DIR__ . '/ManiaExchange/mxinfofetcher.inc.php';
2014-01-14 15:15:13 +01:00
require_once __DIR__ . '/ManiaExchange/ManiaExchangeManager.php';
require_once __DIR__ . '/Manialinks/ManialinkManager.php';
require_once __DIR__ . '/Statistics/StatisticManager.php';
require_once __DIR__ . '/Maps/MapManager.php';
require_once __DIR__ . '/Players/PlayerManager.php';
require_once __DIR__ . '/Plugins/PluginManager.php';
require_once __DIR__ . '/Server/Server.php';
require_once __DIR__ . '/Settings/SettingManager.php';
2013-12-17 17:38:44 +01:00
require_once __DIR__ . '/UpdateManager.php';
2013-11-10 17:29:21 +01:00
/**
* ManiaControl Server Controller for ManiaPlanet Server
*
* @author steeffeen & kremsy
2013-11-10 17:29:21 +01:00
*/
class ManiaControl implements CommandListener {
2013-11-10 17:29:21 +01:00
/**
* Constants
*/
const VERSION = '0.01';
2013-11-10 17:29:21 +01:00
const API_VERSION = '2013-04-16';
const OS_UNIX = 'Unix';
const OS_WIN = 'Windows';
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;
2014-01-16 17:19:01 +01:00
/** @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;
2013-11-10 17:29:21 +01:00
/**
* Private properties
*/
private $shutdownRequested = false;
/**
* Construct ManiaControl
*/
public function __construct() {
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->database = new Database($this);
$this->callbackManager = new CallbackManager($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);
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");
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');
if($compareOS) {
// Return bool whether OS equals $compareOS
if($compareOS == self::OS_WIN) {
return $windows;
}
return !$windows;
}
// Return OS
if($windows) {
return self::OS_WIN;
}
return self::OS_UNIX;
}
2013-11-10 17:29:21 +01:00
/**
* Return message composed of client error message and error code
*
2013-12-31 12:42:07 +01:00
* @param object $client
2013-11-10 17:29:21 +01:00
* @return string
*/
public function getClientErrorText($client = null) {
2014-01-16 17:19:01 +01:00
/*if(is_object($client)) {
2013-11-10 17:29:21 +01:00
return $client->getErrorMessage() . ' (' . $client->getErrorCode() . ')';
}
2014-01-16 17:19:01 +01:00
return $this->client->getErrorMessage() . ' (' . $this->client->getErrorCode() . ')';*/
//TODO
2013-11-10 17:29:21 +01:00
}
/**
* 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) {
if(!AuthenticationManager::checkRight($player, AuthenticationManager::AUTH_LEVEL_SUPERADMIN)) {
$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) {
if(!$this->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_SUPERADMIN)) {
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) {
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_MC_ONSHUTDOWN, array(CallbackManager::CB_MC_ONSHUTDOWN));
2014-01-01 19:25:51 +01:00
// Announce quit
$this->chat->sendInformation('ManiaControl shutting down.');
2014-01-01 19:25:51 +01:00
// Hide manialinks
2014-01-16 17:19:01 +01:00
$this->client->sendHideManialinkPage();
//TODO: $this->client->delete()
2014-01-01 19:25:51 +01:00
// Close connection
2014-01-16 17:19:01 +01:00
//$this->client->Terminate();
$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_MC_ONSHUTDOWN, array(CallbackManager::CB_MC_ONSHUTDOWN));
// Announce restart
$this->chat->sendInformation('Restarting ManiaControl...');
if($message) {
$this->log($message);
}
// Hide widgets
2014-01-16 17:19:01 +01:00
$this->client->sendHideManialinkPage();
// Close connection
2014-01-16 17:19:01 +01:00
//$this->client->Terminate(); //TODO
2014-01-01 19:25:51 +01:00
$this->log('Restarting ManiaControl!');
// Execute start script in background
if($this->getOS(self::OS_UNIX)) {
$command = 'sh ' . escapeshellarg(ManiaControlDir . '/ManiaControl.sh') . ' > /dev/null &';
exec($command);
} else {
2014-01-01 19:30:42 +01:00
// TODO: validate restart on windows
$command = 'start /B ' . escapeshellarg(ManiaControlDir . '/ManiaControl.bat');
pclose(popen($command, 'r'));
}
exit();
}
2013-11-10 17:29:21 +01:00
/**
* Run ManiaControl
*/
public function run() {
$this->log('Starting ManiaControl v' . self::VERSION . '!');
2013-11-10 17:29:21 +01:00
// Load plugins
$this->pluginManager->loadPlugins();
2013-11-10 17:29:21 +01:00
// Connect to server
$this->connect();
// Register shutdown handler
2014-01-01 19:25:51 +01:00
register_shutdown_function(array($this, 'handleShutdown'));
// OnInit callback
$this->callbackManager->triggerCallback(CallbackManager::CB_MC_ONINIT, array(CallbackManager::CB_MC_ONINIT));
// Announce ManiaControl
$this->chat->sendInformation('ManiaControl v' . self::VERSION . ' successfully started!');
// Loading finished
$this->log('Loading completed!');
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
set_time_limit(30);
// Manager callbacks
$this->callbackManager->manageCallbacks();
2013-11-10 17:29:21 +01:00
// Yield for next tick
$loopEnd = microtime(true);
2013-11-10 17:29:21 +01:00
$sleepTime = 300000 - $loopEnd + $loopStart;
if($sleepTime > 0) {
2013-11-10 17:29:21 +01:00
usleep($sleepTime);
}
}
//Close the client connection
2014-01-16 17:19:01 +01:00
//$this->client->Terminate();
2013-11-10 17:29:21 +01:00
// Shutdown
$this->quit();
2013-11-10 17:29:21 +01:00
}
/**
* Connect to ManiaPlanet server
*/
private function connect() {
// Load remote client
2014-01-06 14:22:48 +01:00
$host = $this->config->server->xpath('host');
if(!$host) {
trigger_error("Invalid server configuration (host).", E_USER_ERROR);
}
$host = (string)$host[0];
2014-01-06 14:22:48 +01:00
$port = $this->config->server->xpath('port');
if(!$host) {
trigger_error("Invalid server configuration (port).", E_USER_ERROR);
}
$port = (string)$port[0];
2013-12-31 14:50:45 +01:00
$this->log("Connecting to server at {$host}:{$port}...");
2014-01-06 14:22:48 +01:00
$login = $this->config->server->xpath('login');
if(!$login) {
trigger_error("Invalid server configuration (login).", E_USER_ERROR);
}
$login = (string)$login[0];
$pass = $this->config->server->xpath('pass');
if(!$pass) {
trigger_error("Invalid server configuration (password).", E_USER_ERROR);
}
$pass = (string)$pass[0];
2014-01-16 17:19:01 +01:00
//TODO timeout as constant
$this->client = Connection::factory($host, $port, 20, $login, $pass);
if($this->client == null) {
2013-11-10 17:29:21 +01:00
trigger_error("Couldn't authenticate on server with user '{$login}'! " . $this->getClientErrorText(), E_USER_ERROR);
}
2013-11-10 17:29:21 +01:00
// Enable callback system
2014-01-16 17:19:01 +01:00
if(!$this->client->enableCallbacks(true)) {
2013-11-10 17:29:21 +01:00
trigger_error("Couldn't enable callbacks! " . $this->getClientErrorText(), E_USER_ERROR);
}
2013-11-10 17:29:21 +01:00
// Wait for server to be ready
if(!$this->server->waitForStatus(4)) {
2013-11-10 17:29:21 +01:00
trigger_error("Server couldn't get ready!", E_USER_ERROR);
}
2013-11-10 17:29:21 +01:00
// Set api version
2014-01-16 17:19:01 +01:00
/* if(!$this->client->query('SetApiVersion', self::API_VERSION)) {
trigger_error("Couldn't set API version '" . self::API_VERSION . "'! This might cause problems. " . $this->getClientErrorText());
}*/
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();
//$this->client->query('SendHideManialinkPage');
2013-11-10 17:29:21 +01:00
// Enable script callbacks if needed
if($this->server->getGameMode() != 0) {
return;
}
2014-01-16 17:19:01 +01:00
if(!$scriptSettings = $this->client->getModeScriptSettings()) {
trigger_error("Couldn't get mode script settings. " . $this->getClientErrorText());
return;
}
2014-01-16 17:19:01 +01:00
if(!array_key_exists('S_UseScriptCallbacks', $scriptSettings)) {
return;
}
2014-01-16 17:19:01 +01:00
$scriptSettings['S_UseScriptCallbacks'] = true;
2014-01-16 17:19:01 +01:00
if(!$this->client->setModeScriptSettings($scriptSettings)) {
trigger_error("Couldn't set mode script settings to enable script callbacks. " . $this->getClientErrorText());
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
}
}