added servers database

This commit is contained in:
kremsy 2014-01-03 20:57:24 +01:00
parent b513876b68
commit dcdb7f8226
2 changed files with 162 additions and 71 deletions

View File

@ -2,6 +2,8 @@
namespace ManiaControl\Server; namespace ManiaControl\Server;
use ManiaControl\Callbacks\CallbackListener;
use ManiaControl\Callbacks\CallbackManager;
use ManiaControl\FileUtil; use ManiaControl\FileUtil;
use ManiaControl\ManiaControl; use ManiaControl\ManiaControl;
use ManiaControl\Players\Player; use ManiaControl\Players\Player;
@ -13,40 +15,132 @@ require_once __DIR__ . '/ServerCommands.php';
* *
* @author steeffeen & kremsy * @author steeffeen & kremsy
*/ */
class Server { class Server implements CallbackListener {
/**
* Constants
*/
const TABLE_SERVERS = 'mc_servers';
/** /**
* Public properties * Public properties
*/ */
public $config = null; public $config = null;
/** /**
* Private properties * Private properties
*/ */
private $maniaControl = null; private $maniaControl = null;
private $serverCommands = null; private $serverCommands = null;
private $serverId = 0;
/** /**
* Construct server * Construct server
* *
* @param ManiaControl $maniaControl * @param ManiaControl $maniaControl
*/ */
public function __construct(ManiaControl $maniaControl) { public function __construct(ManiaControl $maniaControl) {
$this->maniaControl = $maniaControl; $this->maniaControl = $maniaControl;
// Load config // Load config
$this->config = FileUtil::loadConfig('server.xml'); $this->config = FileUtil::loadConfig('server.xml');
// Register for callbacks
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MC_ONINIT, $this, 'onInit');
$this->serverCommands = new ServerCommands($maniaControl); $this->serverCommands = new ServerCommands($maniaControl);
$this->initTables();
//$this->initServer();
} }
/**
* Initialize necessary database tables
*
* @return bool
*/
private function initTables() {
$mysqli = $this->maniaControl->database->mysqli;
$query = "CREATE TABLE IF NOT EXISTS `" . self::TABLE_SERVERS . "` (
`serverId` int(11) NOT NULL AUTO_INCREMENT,
`login` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`serverId`),
UNIQUE KEY `login` (`login`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Servers' AUTO_INCREMENT=1;";
$statement = $mysqli->prepare($query);
if($mysqli->error) {
trigger_error($mysqli->error, E_USER_ERROR);
return false;
}
$statement->execute();
if($statement->error) {
trigger_error($statement->error, E_USER_ERROR);
return false;
}
$statement->close();
return true;
}
/**
* Handle OnInit callback
*
* @param array $callback
*/
public function onInit(array $callback) {
$mysqli = $this->maniaControl->database->mysqli;
$login = $this->getLogin();
$query = "INSERT IGNORE INTO `" . self::TABLE_SERVERS . "` (
`login`
) VALUES (
?
);";
$statement = $mysqli->prepare($query);
if($mysqli->error) {
trigger_error($mysqli->error);
return false;
}
$statement->bind_param('s', $login);
$statement->execute();
if($statement->error) {
trigger_error($statement->error);
$statement->close();
return false;
}
$statement->close();
$query = "SELECT serverId FROM `" . self::TABLE_SERVERS . "` WHERE `login` = '" . $login . "';";
$result = $mysqli->query($query);
if(!$result) {
trigger_error($mysqli->error);
}
$row = $result->fetch_object();
$result->close();
$this->serverId = $row->serverId;
return true;
}
/** /**
* Fetch game data directory * Fetch game data directory
* *
* @return string * @return string
*/ */
public function getDataDirectory() { public function getDataDirectory() {
if (!$this->maniaControl->client->query('GameDataDirectory')) { if(!$this->maniaControl->client->query('GameDataDirectory')) {
trigger_error("Couldn't get data directory. " . $this->maniaControl->getClientErrorText()); trigger_error("Couldn't get data directory. " . $this->maniaControl->getClientErrorText());
return null; return null;
} }
@ -60,7 +154,7 @@ class Server {
*/ */
public function getMapsDirectory() { public function getMapsDirectory() {
$dataDirectory = $this->getDataDirectory(); $dataDirectory = $this->getDataDirectory();
if (!$dataDirectory) { if(!$dataDirectory) {
return null; return null;
} }
return $dataDirectory . 'Maps/'; return $dataDirectory . 'Maps/';
@ -69,11 +163,11 @@ class Server {
/** /**
* Checks if ManiaControl has access to the given directory * Checks if ManiaControl has access to the given directory
* *
* @param string $directory * @param string $directory
* @return bool * @return bool
*/ */
public function checkAccess($directory) { public function checkAccess($directory) {
if (!$directory) { if(!$directory) {
return false; return false;
} }
return (is_dir($directory) && is_writable($directory)); return (is_dir($directory) && is_writable($directory));
@ -86,7 +180,7 @@ class Server {
*/ */
public function getLogin() { //TODO save the info locally public function getLogin() { //TODO save the info locally
$systemInfo = $this->getSystemInfo(); $systemInfo = $this->getSystemInfo();
if (!$systemInfo) { if(!$systemInfo) {
return null; return null;
} }
return $systemInfo['ServerLogin']; return $systemInfo['ServerLogin'];
@ -95,19 +189,19 @@ class Server {
/** /**
* Get server info * Get server info
* *
* @param bool $detailed * @param bool $detailed
* @return array * @return array
*/ */
public function getInfo($detailed = false) { public function getInfo($detailed = false) {
if ($detailed) { if($detailed) {
$login = $this->getLogin(); $login = $this->getLogin();
if (!$this->maniaControl->client->query('GetDetailedPlayerInfo', $login)) { if(!$this->maniaControl->client->query('GetDetailedPlayerInfo', $login)) {
trigger_error("Couldn't fetch detailed server info. " . $this->maniaControl->getClientErrorText()); trigger_error("Couldn't fetch detailed server info. " . $this->maniaControl->getClientErrorText());
return null; return null;
} }
return $this->maniaControl->client->getResponse(); return $this->maniaControl->client->getResponse();
} }
if (!$this->maniaControl->client->query('GetMainServerPlayerInfo')) { if(!$this->maniaControl->client->query('GetMainServerPlayerInfo')) {
trigger_error("Couldn't fetch server info. " . $this->maniaControl->getClientErrorText()); trigger_error("Couldn't fetch server info. " . $this->maniaControl->getClientErrorText());
return null; return null;
} }
@ -120,7 +214,7 @@ class Server {
* @return array * @return array
*/ */
public function getOptions() { public function getOptions() {
if (!$this->maniaControl->client->query('GetServerOptions')) { if(!$this->maniaControl->client->query('GetServerOptions')) {
trigger_error("Couldn't fetch server options. " . $this->maniaControl->getClientErrorText()); trigger_error("Couldn't fetch server options. " . $this->maniaControl->getClientErrorText());
return null; return null;
} }
@ -133,7 +227,7 @@ class Server {
* @return string * @return string
*/ */
public function getName() { public function getName() {
if (!$this->maniaControl->client->query('GetServerName')) { if(!$this->maniaControl->client->query('GetServerName')) {
trigger_error("Couldn't fetch server name. " . $this->maniaControl->getClientErrorText()); trigger_error("Couldn't fetch server name. " . $this->maniaControl->getClientErrorText());
return null; return null;
} }
@ -146,7 +240,7 @@ class Server {
* @return string * @return string
*/ */
public function getVersion() { public function getVersion() {
if (!$this->maniaControl->client->query('GetVersion')) { if(!$this->maniaControl->client->query('GetVersion')) {
trigger_error("Couldn't fetch server version. " . $this->maniaControl->getClientErrorText()); trigger_error("Couldn't fetch server version. " . $this->maniaControl->getClientErrorText());
return null; return null;
} }
@ -159,7 +253,7 @@ class Server {
* @return array * @return array
*/ */
public function getSystemInfo() { public function getSystemInfo() {
if (!$this->maniaControl->client->query('GetSystemInfo')) { if(!$this->maniaControl->client->query('GetSystemInfo')) {
trigger_error("Couldn't fetch server system info. " . $this->maniaControl->getClientErrorText($this->maniaControl->client)); trigger_error("Couldn't fetch server system info. " . $this->maniaControl->getClientErrorText($this->maniaControl->client));
return null; return null;
} }
@ -169,54 +263,53 @@ class Server {
/** /**
* 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 { if(!$this->maniaControl->client->query('GetGameMode')) {
if (!$this->maniaControl->client->query('GetGameMode')) {
trigger_error("Couldn't fetch current game mode. " . $this->maniaControl->getClientErrorText()); trigger_error("Couldn't fetch current game mode. " . $this->maniaControl->getClientErrorText());
return null; return null;
} }
$gameMode = $this->maniaControl->client->getResponse(); $gameMode = $this->maniaControl->client->getResponse();
} }
if ($stringValue) { if($stringValue) {
switch ($gameMode) { switch($gameMode) {
case 0: case 0:
{ {
return 'Script'; return 'Script';
} }
case 1: case 1:
{ {
return 'Rounds'; return 'Rounds';
} }
case 2: case 2:
{ {
return 'TimeAttack'; return 'TimeAttack';
} }
case 3: case 3:
{ {
return 'Team'; return 'Team';
} }
case 4: case 4:
{ {
return 'Laps'; return 'Laps';
} }
case 5: case 5:
{ {
return 'Cup'; return 'Cup';
} }
case 6: case 6:
{ {
return 'Stunts'; return 'Stunts';
} }
default: default:
{ {
return 'Unknown'; return 'Unknown';
} }
} }
} }
@ -226,11 +319,11 @@ class Server {
/** /**
* Retrieve validation replay for given player * Retrieve validation replay for given player
* *
* @param Player $player * @param Player $player
* @return string * @return string
*/ */
public function getValidationReplay(Player $player) { public function getValidationReplay(Player $player) {
if (!$this->maniaControl->client->query('GetValidationReplay', $player->login)) { if(!$this->maniaControl->client->query('GetValidationReplay', $player->login)) {
trigger_error("Couldn't get validation replay of '{$player->login}'. " . $this->maniaControl->getClientErrorText()); trigger_error("Couldn't get validation replay of '{$player->login}'. " . $this->maniaControl->getClientErrorText());
return null; return null;
} }
@ -240,30 +333,30 @@ class Server {
/** /**
* Retrieve ghost replay for the given player * Retrieve ghost replay for the given player
* *
* @param Player $player * @param Player $player
* @return string * @return string
*/ */
public function getGhostReplay(Player $player) { public function getGhostReplay(Player $player) {
$dataDir = $this->getDataDirectory(); $dataDir = $this->getDataDirectory();
if (!$this->checkAccess($dataDir)) { if(!$this->checkAccess($dataDir)) {
return null; return null;
} }
// Build file name // Build file name
$map = $this->getMap(); $map = $this->getMap();
$gameMode = $this->getGameMode(); $gameMode = $this->getGameMode();
$time = time(); $time = time();
$fileName = "GhostReplays/Ghost.{$player->login}.{$gameMode}.{$time}.{$map['UId']}.Replay.Gbx"; $fileName = "GhostReplays/Ghost.{$player->login}.{$gameMode}.{$time}.{$map['UId']}.Replay.Gbx";
// Save ghost replay // Save ghost replay
if (!$this->maniaControl->client->query('SaveBestGhostsReplay', $player->login, $fileName)) { if(!$this->maniaControl->client->query('SaveBestGhostsReplay', $player->login, $fileName)) {
trigger_error("Couldn't save ghost replay. " . $this->maniaControl->getClientErrorText()); trigger_error("Couldn't save ghost replay. " . $this->maniaControl->getClientErrorText());
return null; return null;
} }
// Load replay file // Load replay file
$ghostReplay = file_get_contents($dataDir . 'Replays/' . $fileName); $ghostReplay = file_get_contents($dataDir . 'Replays/' . $fileName);
if (!$ghostReplay) { if(!$ghostReplay) {
trigger_error("Couldn't retrieve saved ghost replay."); trigger_error("Couldn't retrieve saved ghost replay.");
return null; return null;
} }
@ -273,35 +366,33 @@ class Server {
/** /**
* Waits for the server to have the given status * Waits for the server to have the given status
* *
* @param int $statusCode * @param int $statusCode
* @return bool * @return bool
*/ */
public function waitForStatus($statusCode = 4) { public function waitForStatus($statusCode = 4) {
$this->maniaControl->client->query('GetStatus'); $this->maniaControl->client->query('GetStatus');
$response = $this->maniaControl->client->getResponse(); $response = $this->maniaControl->client->getResponse();
// Check if server has the given status // Check if server has the given status
if ($response['Code'] === 4) { if($response['Code'] === 4) {
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 = 20; $maxWaitTime = 20;
$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);
$this->maniaControl->client->query('GetStatus'); $this->maniaControl->client->query('GetStatus');
$response = $this->maniaControl->client->getResponse(); $response = $this->maniaControl->client->getResponse();
if ($lastStatus !== $response['Name']) { if($lastStatus !== $response['Name']) {
$this->maniaControl->log("New Status: " . $response['Name']); $this->maniaControl->log("New Status: " . $response['Name']);
$lastStatus = $response['Name']; $lastStatus = $response['Name'];
} }
if (time() - $maxWaitTime > $waitBegin) { if(time() - $maxWaitTime > $waitBegin) {
// It took too long to reach the status // It took too long to reach the status
trigger_error( trigger_error("Server couldn't reach status {$statusCode} after {$maxWaitTime} seconds! " . $this->maniaControl->getClientErrorText());
"Server couldn't reach status {$statusCode} after {$maxWaitTime} seconds! " .
$this->maniaControl->getClientErrorText());
return false; return false;
} }
} }

View File

@ -19,7 +19,7 @@ use ManiaControl\Plugins\Plugin;
* @author steeffeen and Lukas * @author steeffeen and Lukas
*/ */
class DonationPlugin implements CallbackListener, CommandListener, Plugin { class DonationPlugin implements CallbackListener, CommandListener, Plugin {
/**ts /**
* Constants * Constants
*/ */
const ID = 3; const ID = 3;