server config model class
This commit is contained in:
parent
8afcc191a2
commit
415ca788c2
36
application/core/Server/Config.php
Normal file
36
application/core/Server/Config.php
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace ManiaControl\Server;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Model Class holding the Server Config
|
||||||
|
*
|
||||||
|
* @author steeffeen
|
||||||
|
*/
|
||||||
|
class Config {
|
||||||
|
/*
|
||||||
|
* Public properties
|
||||||
|
*/
|
||||||
|
public $id = null;
|
||||||
|
public $host = null;
|
||||||
|
public $port = null;
|
||||||
|
public $login = null;
|
||||||
|
public $pass = null;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new Server Config Instance
|
||||||
|
*
|
||||||
|
* @param string $id Config Id
|
||||||
|
* @param string $host Server Ip
|
||||||
|
* @param string $port Server Port
|
||||||
|
* @param string $login XmlRpc Login
|
||||||
|
* @param string $pass XmlRpc Password
|
||||||
|
*/
|
||||||
|
public function __construct($id = null, $host = null, $port = null, $login = null, $pass = null) {
|
||||||
|
$this->id = $id;
|
||||||
|
$this->host = $host;
|
||||||
|
$this->port = $port;
|
||||||
|
$this->login = $login;
|
||||||
|
$this->pass = $pass;
|
||||||
|
}
|
||||||
|
}
|
@ -14,15 +14,16 @@ use Maniaplanet\DedicatedServer\Xmlrpc\Exception;
|
|||||||
*/
|
*/
|
||||||
class Server implements CallbackListener {
|
class Server implements CallbackListener {
|
||||||
|
|
||||||
/**
|
/*
|
||||||
* Constants
|
* Constants
|
||||||
*/
|
*/
|
||||||
const TABLE_SERVERS = 'mc_servers';
|
const TABLE_SERVERS = 'mc_servers';
|
||||||
const CB_TEAM_MODE_CHANGED = 'ServerCallback.TeamModeChanged';
|
const CB_TEAM_MODE_CHANGED = 'ServerCallback.TeamModeChanged';
|
||||||
|
|
||||||
/**
|
/*
|
||||||
* Public Properties
|
* Public properties
|
||||||
*/
|
*/
|
||||||
|
public $config = null;
|
||||||
public $index = -1;
|
public $index = -1;
|
||||||
public $ip = null;
|
public $ip = null;
|
||||||
public $port = -1;
|
public $port = -1;
|
||||||
@ -34,8 +35,8 @@ class Server implements CallbackListener {
|
|||||||
public $usageReporter = null;
|
public $usageReporter = null;
|
||||||
public $rankingManager = null;
|
public $rankingManager = null;
|
||||||
|
|
||||||
/**
|
/*
|
||||||
* Private Properties
|
* Private properties
|
||||||
*/
|
*/
|
||||||
private $maniaControl = null;
|
private $maniaControl = null;
|
||||||
private $teamMode = false;
|
private $teamMode = false;
|
||||||
@ -50,28 +51,82 @@ class Server implements CallbackListener {
|
|||||||
$this->initTables();
|
$this->initTables();
|
||||||
|
|
||||||
$this->serverCommands = new ServerCommands($maniaControl);
|
$this->serverCommands = new ServerCommands($maniaControl);
|
||||||
$this->usageReporter = new UsageReporter($maniaControl);
|
$this->usageReporter = new UsageReporter($maniaControl);
|
||||||
$this->rankingManager = new RankingManager($maniaControl);
|
$this->rankingManager = new RankingManager($maniaControl);
|
||||||
|
|
||||||
// Register for callbacks
|
// Register for callbacks
|
||||||
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_ONINIT, $this, 'onInit');
|
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_ONINIT, $this, 'onInit');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Load the Server Configuration from the Config XML
|
||||||
|
*/
|
||||||
|
public function loadConfig() {
|
||||||
|
if (!$this->maniaControl->config) trigger_error('Error loading Server Config!', E_USER_ERROR);
|
||||||
|
|
||||||
|
// Config id
|
||||||
|
$id = null;
|
||||||
|
global $argv;
|
||||||
|
foreach ($argv as $arg) {
|
||||||
|
$parts = explode('=', $arg);
|
||||||
|
if (count($parts) < 2) continue;
|
||||||
|
if ($parts[0] != '-id') continue;
|
||||||
|
$id = $parts[1];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Xml server tag with given id
|
||||||
|
$serverTag = null;
|
||||||
|
if ($id) {
|
||||||
|
$serverTags = $this->maniaControl->config->xpath("server[@id='{$id}']");
|
||||||
|
if ($serverTags) $serverTag = $serverTags[0];
|
||||||
|
if (!$serverTag) trigger_error("No Server configured with the ID '{$id}'!", E_USER_ERROR);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$serverTags = $this->maniaControl->config->xpath('server');
|
||||||
|
if ($serverTags) $serverTag = $serverTags[0];
|
||||||
|
if (!$serverTag) trigger_error('No Server configured!', E_USER_ERROR);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Host
|
||||||
|
$host = $serverTag->xpath('host');
|
||||||
|
if ($host) $host = (string) $host[0];
|
||||||
|
if (!$host) trigger_error("Invalid server configuration (host).", E_USER_ERROR);
|
||||||
|
|
||||||
|
// Port
|
||||||
|
$port = $serverTag->xpath('port');
|
||||||
|
if ($port) $port = (string) $port[0];
|
||||||
|
if (!$port) trigger_error("Invalid server configuration (port).", E_USER_ERROR);
|
||||||
|
|
||||||
|
// Login
|
||||||
|
$login = $serverTag->xpath('login');
|
||||||
|
if ($login) $login = (string) $login[0];
|
||||||
|
if (!$login) trigger_error("Invalid server configuration (login).", E_USER_ERROR);
|
||||||
|
|
||||||
|
// Pass
|
||||||
|
$pass = $serverTag->xpath('pass');
|
||||||
|
if ($pass) $pass = (string) $pass[0];
|
||||||
|
if (!$pass) trigger_error("Invalid server configuration (password).", E_USER_ERROR);
|
||||||
|
|
||||||
|
// Create config object
|
||||||
|
$this->config = new Config($id, $host, $port, $login, $pass);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Refetch the Server Properties
|
* Refetch the Server Properties
|
||||||
*/
|
*/
|
||||||
private function updateProperties() {
|
private function updateProperties() {
|
||||||
// System info
|
// System info
|
||||||
$systemInfo = $this->maniaControl->client->getSystemInfo();
|
$systemInfo = $this->maniaControl->client->getSystemInfo();
|
||||||
$this->ip = $systemInfo->publishedIp;
|
$this->ip = $systemInfo->publishedIp;
|
||||||
$this->port = $systemInfo->port;
|
$this->port = $systemInfo->port;
|
||||||
$this->p2pPort = $systemInfo->p2PPort;
|
$this->p2pPort = $systemInfo->p2PPort;
|
||||||
$this->login = $systemInfo->serverLogin;
|
$this->login = $systemInfo->serverLogin;
|
||||||
$this->titleId = $systemInfo->titleId;
|
$this->titleId = $systemInfo->titleId;
|
||||||
|
|
||||||
// Database index
|
// Database index
|
||||||
$mysqli = $this->maniaControl->database->mysqli;
|
$mysqli = $this->maniaControl->database->mysqli;
|
||||||
$query = "INSERT INTO `" . self::TABLE_SERVERS . "` (
|
$query = "INSERT INTO `" . self::TABLE_SERVERS . "` (
|
||||||
`login`
|
`login`
|
||||||
) VALUES (
|
) VALUES (
|
||||||
?
|
?
|
||||||
@ -99,8 +154,8 @@ class Server implements CallbackListener {
|
|||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
private function initTables() {
|
private function initTables() {
|
||||||
$mysqli = $this->maniaControl->database->mysqli;
|
$mysqli = $this->maniaControl->database->mysqli;
|
||||||
$query = "CREATE TABLE IF NOT EXISTS `" . self::TABLE_SERVERS . "` (
|
$query = "CREATE TABLE IF NOT EXISTS `" . self::TABLE_SERVERS . "` (
|
||||||
`index` int(11) NOT NULL AUTO_INCREMENT,
|
`index` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
`login` varchar(100) NOT NULL,
|
`login` varchar(100) NOT NULL,
|
||||||
PRIMARY KEY (`index`),
|
PRIMARY KEY (`index`),
|
||||||
@ -127,7 +182,7 @@ class Server implements CallbackListener {
|
|||||||
*/
|
*/
|
||||||
public function getAllServers() {
|
public function getAllServers() {
|
||||||
$mysqli = $this->maniaControl->database->mysqli;
|
$mysqli = $this->maniaControl->database->mysqli;
|
||||||
$query = "SELECT * FROM `" . self::TABLE_SERVERS . "`";
|
$query = "SELECT * FROM `" . self::TABLE_SERVERS . "`";
|
||||||
$result = $mysqli->query($query);
|
$result = $mysqli->query($query);
|
||||||
if (!$result) {
|
if (!$result) {
|
||||||
trigger_error($mysqli->error);
|
trigger_error($mysqli->error);
|
||||||
@ -135,7 +190,7 @@ class Server implements CallbackListener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$servers = array();
|
$servers = array();
|
||||||
while($row = $result->fetch_object()) {
|
while ($row = $result->fetch_object()) {
|
||||||
array_push($servers, $row);
|
array_push($servers, $row);
|
||||||
}
|
}
|
||||||
$result->close();
|
$result->close();
|
||||||
@ -156,10 +211,10 @@ class Server implements CallbackListener {
|
|||||||
* @param bool $teamMode
|
* @param bool $teamMode
|
||||||
*/
|
*/
|
||||||
public function setTeamMode($teamMode = true) {
|
public function setTeamMode($teamMode = true) {
|
||||||
$oldStatus = $this->teamMode;
|
$oldStatus = $this->teamMode;
|
||||||
$this->teamMode = $teamMode;
|
$this->teamMode = $teamMode;
|
||||||
|
|
||||||
// Trigger callback
|
// Trigger callback
|
||||||
if ($oldStatus != $this->teamMode) {
|
if ($oldStatus != $this->teamMode) {
|
||||||
$this->maniaControl->callbackManager->triggerCallback(self::CB_TEAM_MODE_CHANGED, $teamMode);
|
$this->maniaControl->callbackManager->triggerCallback(self::CB_TEAM_MODE_CHANGED, $teamMode);
|
||||||
}
|
}
|
||||||
@ -174,7 +229,6 @@ class Server implements CallbackListener {
|
|||||||
return $this->teamMode;
|
return $this->teamMode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fetch Game Data Directory
|
* Fetch Game Data Directory
|
||||||
*
|
*
|
||||||
@ -226,17 +280,18 @@ class Server implements CallbackListener {
|
|||||||
* Fetch current Game Mode
|
* Fetch current Game Mode
|
||||||
*
|
*
|
||||||
* @param bool $stringValue
|
* @param bool $stringValue
|
||||||
* @param int $parseValue
|
* @param int $parseValue
|
||||||
* @return int | string
|
* @return int | string
|
||||||
*/
|
*/
|
||||||
public function getGameMode($stringValue = false, $parseValue = null) {
|
public function getGameMode($stringValue = false, $parseValue = null) {
|
||||||
if (is_int($parseValue)) {
|
if (is_int($parseValue)) {
|
||||||
$gameMode = $parseValue;
|
$gameMode = $parseValue;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
$gameMode = $this->maniaControl->client->getGameMode();
|
$gameMode = $this->maniaControl->client->getGameMode();
|
||||||
}
|
}
|
||||||
if ($stringValue) {
|
if ($stringValue) {
|
||||||
switch($gameMode) {
|
switch ($gameMode) {
|
||||||
case 0:
|
case 0:
|
||||||
return 'Script';
|
return 'Script';
|
||||||
case 1:
|
case 1:
|
||||||
@ -267,7 +322,8 @@ class Server implements CallbackListener {
|
|||||||
public function getValidationReplay($login) {
|
public function getValidationReplay($login) {
|
||||||
try {
|
try {
|
||||||
$replay = $this->maniaControl->client->getValidationReplay($login);
|
$replay = $this->maniaControl->client->getValidationReplay($login);
|
||||||
} catch(Exception $e) {
|
}
|
||||||
|
catch (Exception $e) {
|
||||||
trigger_error("Couldn't get validation replay of '{$login}'. " . $e->getMessage());
|
trigger_error("Couldn't get validation replay of '{$login}'. " . $e->getMessage());
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@ -287,15 +343,16 @@ class Server implements CallbackListener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Build file name
|
// Build file name
|
||||||
$map = $this->maniaControl->mapManager->getCurrentMap();
|
$map = $this->maniaControl->mapManager->getCurrentMap();
|
||||||
$gameMode = $this->getGameMode();
|
$gameMode = $this->getGameMode();
|
||||||
$time = time();
|
$time = time();
|
||||||
$fileName = "GhostReplays/Ghost.{$login}.{$gameMode}.{$time}.{$map->uid}.Replay.Gbx";
|
$fileName = "GhostReplays/Ghost.{$login}.{$gameMode}.{$time}.{$map->uid}.Replay.Gbx";
|
||||||
|
|
||||||
// Save ghost replay
|
// Save ghost replay
|
||||||
try {
|
try {
|
||||||
$this->maniaControl->client->saveBestGhostsReplay($login, $fileName);
|
$this->maniaControl->client->saveBestGhostsReplay($login, $fileName);
|
||||||
} catch(Exception $e) {
|
}
|
||||||
|
catch (Exception $e) {
|
||||||
trigger_error("Couldn't save ghost replay. " . $e->getMessage());
|
trigger_error("Couldn't save ghost replay. " . $e->getMessage());
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@ -322,12 +379,12 @@ class Server implements CallbackListener {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
// Server not yet in given status - Wait for it...
|
// Server not yet in given status - Wait for it...
|
||||||
$waitBegin = time();
|
$waitBegin = time();
|
||||||
$maxWaitTime = 50;
|
$maxWaitTime = 50;
|
||||||
$lastStatus = $response->name;
|
$lastStatus = $response->name;
|
||||||
$this->maniaControl->log("Waiting for server to reach status {$statusCode}...");
|
$this->maniaControl->log("Waiting for server to reach status {$statusCode}...");
|
||||||
$this->maniaControl->log("Current Status: {$lastStatus}");
|
$this->maniaControl->log("Current Status: {$lastStatus}");
|
||||||
while($response->code !== 4) {
|
while ($response->code !== 4) {
|
||||||
sleep(1);
|
sleep(1);
|
||||||
$response = $this->maniaControl->client->getStatus();
|
$response = $this->maniaControl->client->getStatus();
|
||||||
if ($lastStatus !== $response->name) {
|
if ($lastStatus !== $response->name) {
|
||||||
|
Loading…
Reference in New Issue
Block a user