some fixes
This commit is contained in:
@ -17,15 +17,15 @@ class Authentication {
|
||||
/**
|
||||
* Private properties
|
||||
*/
|
||||
private $mControl = null;
|
||||
private $mc = null;
|
||||
|
||||
private $config = null;
|
||||
|
||||
/**
|
||||
* Construct authentication manager
|
||||
*/
|
||||
public function __construct($mControl) {
|
||||
$this->mControl = $mControl;
|
||||
public function __construct($mc) {
|
||||
$this->mc = $mc;
|
||||
|
||||
// Load config
|
||||
$this->config = Tools::loadConfig('authentication.ManiaControl.xml');
|
||||
@ -94,8 +94,8 @@ class Authentication {
|
||||
* @param string $login
|
||||
*/
|
||||
public function sendNotAllowed($login) {
|
||||
if (!$this->iControl->chat->sendError('You do not have the required rights to perform this command!', $login)) {
|
||||
trigger_error("Couldn't send forbidden message to login '" . $login . "'. " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->chat->sendError('You do not have the required rights to perform this command!', $login)) {
|
||||
trigger_error("Couldn't send forbidden message to login '" . $login . "'. " . $this->mc->getClientErrorText());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -49,7 +49,7 @@ class Callbacks {
|
||||
/**
|
||||
* Private properties
|
||||
*/
|
||||
private $mControl = null;
|
||||
private $mc = null;
|
||||
|
||||
private $callbackHandlers = array();
|
||||
|
||||
@ -64,8 +64,8 @@ class Callbacks {
|
||||
/**
|
||||
* Construct callbacks handler
|
||||
*/
|
||||
public function __construct($mControl) {
|
||||
$this->mControl = $mControl;
|
||||
public function __construct($mc) {
|
||||
$this->mc = $mc;
|
||||
|
||||
// Init values
|
||||
$this->last1Second = time();
|
||||
@ -82,7 +82,7 @@ class Callbacks {
|
||||
$this->triggerCallback(self::CB_IC_ONINIT, array(self::CB_IC_ONINIT));
|
||||
|
||||
// Simulate begin map
|
||||
$map = $this->iControl->server->getMap();
|
||||
$map = $this->mc->server->getMap();
|
||||
if ($map) {
|
||||
$this->triggerCallback(self::CB_IC_BEGINMAP, array(self::CB_IC_BEGINMAP, array($map)));
|
||||
}
|
||||
@ -122,12 +122,12 @@ class Callbacks {
|
||||
}
|
||||
|
||||
// Get server callbacks
|
||||
if (!$this->iControl->client) return;
|
||||
$this->iControl->client->resetError();
|
||||
$this->iControl->client->readCB();
|
||||
$callbacks = $this->iControl->client->getCBResponses();
|
||||
if (!is_array($callbacks) || $this->iControl->client->isError()) {
|
||||
trigger_error("Error reading server callbacks. " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->client) return;
|
||||
$this->mc->client->resetError();
|
||||
$this->mc->client->readCB();
|
||||
$callbacks = $this->mc->client->getCBResponses();
|
||||
if (!is_array($callbacks) || $this->mc->client->isError()) {
|
||||
trigger_error("Error reading server callbacks. " . $this->mc->getClientErrorText());
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -12,7 +12,7 @@ class Chat {
|
||||
/**
|
||||
* Private properties
|
||||
*/
|
||||
private $mControl = null;
|
||||
private $mc = null;
|
||||
|
||||
private $config = null;
|
||||
|
||||
@ -21,8 +21,8 @@ class Chat {
|
||||
/**
|
||||
* Construct ManiaControl chat
|
||||
*/
|
||||
public function __construct($mControl) {
|
||||
$this->mControl = $mControl;
|
||||
public function __construct($mc) {
|
||||
$this->mc = $mc;
|
||||
|
||||
// Load config
|
||||
$this->config = Tools::loadConfig('chat.ManiaControl.xml');
|
||||
@ -36,12 +36,12 @@ class Chat {
|
||||
* @param bool $prefix
|
||||
*/
|
||||
public function sendChat($message, $login = null, $prefix = false) {
|
||||
if (!$this->iControl->client) return false;
|
||||
if (!$this->mc->client) return false;
|
||||
if ($login === null) {
|
||||
return $this->iControl->client->query('ChatSendServerMessage', ($prefix ? $this->prefix : '') . $message);
|
||||
return $this->mc->client->query('ChatSendServerMessage', ($prefix ? $this->prefix : '') . $message);
|
||||
}
|
||||
else {
|
||||
return $this->iControl->client->query('ChatSendServerMessageToLogin', ($prefix ? $this->prefix : '') . $message, $login);
|
||||
return $this->mc->client->query('ChatSendServerMessageToLogin', ($prefix ? $this->prefix : '') . $message, $login);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -12,7 +12,7 @@ class Commands {
|
||||
/**
|
||||
* Private properties
|
||||
*/
|
||||
private $mControl = null;
|
||||
private $mc = null;
|
||||
|
||||
private $config = null;
|
||||
|
||||
@ -27,16 +27,16 @@ class Commands {
|
||||
/**
|
||||
* Construct commands handler
|
||||
*/
|
||||
public function __construct($mControl) {
|
||||
$this->mControl = $mControl;
|
||||
public function __construct($mc) {
|
||||
$this->mc = $mc;
|
||||
|
||||
// Load config
|
||||
$this->config = Tools::loadConfig('commands.ManiaControl.xml');
|
||||
|
||||
// Register for callbacks
|
||||
$this->iControl->callbacks->registerCallbackHandler(Callbacks::CB_IC_5_SECOND, $this, 'each5Seconds');
|
||||
$this->iControl->callbacks->registerCallbackHandler(Callbacks::CB_MP_BILLUPDATED, $this, 'handleBillUpdated');
|
||||
$this->iControl->callbacks->registerCallbackHandler(Callbacks::CB_MP_PLAYERCHAT, $this, 'handleChatCallback');
|
||||
$this->mc->callbacks->registerCallbackHandler(Callbacks::CB_IC_5_SECOND, $this, 'each5Seconds');
|
||||
$this->mc->callbacks->registerCallbackHandler(Callbacks::CB_MP_BILLUPDATED, $this, 'handleBillUpdated');
|
||||
$this->mc->callbacks->registerCallbackHandler(Callbacks::CB_MP_PLAYERCHAT, $this, 'handleChatCallback');
|
||||
|
||||
// Register basic commands
|
||||
$commands = array('help', 'version', 'shutdown', 'shutdownserver', 'networkstats', 'systeminfo', 'getservername',
|
||||
@ -102,7 +102,7 @@ class Commands {
|
||||
{
|
||||
// Payed
|
||||
$message = 'Success! Thanks.';
|
||||
$this->iControl->chat->sendSuccess($message, $login);
|
||||
$this->mc->chat->sendSuccess($message, $login);
|
||||
unset($this->openBills[$bill[0]]);
|
||||
break;
|
||||
}
|
||||
@ -110,14 +110,14 @@ class Commands {
|
||||
{
|
||||
// Refused
|
||||
$message = 'Transaction cancelled.';
|
||||
$this->iControl->chat->sendError($message, $login);
|
||||
$this->mc->chat->sendError($message, $login);
|
||||
unset($this->openBills[$bill[0]]);
|
||||
break;
|
||||
}
|
||||
case 6:
|
||||
{
|
||||
// Error
|
||||
$this->iControl->chat->sendError($bill[2], $login);
|
||||
$this->mc->chat->sendError($bill[2], $login);
|
||||
unset($this->openBills[$bill[0]]);
|
||||
break;
|
||||
}
|
||||
@ -134,7 +134,7 @@ class Commands {
|
||||
private function getRightsLevel($commandName, $defaultLevel) {
|
||||
$command_rights = $this->config->xpath('//' . strtolower($commandName) . '/..');
|
||||
if (empty($command_rights)) return $defaultLevel;
|
||||
$rights = $this->iControl->authentication->RIGHTS_LEVELS;
|
||||
$rights = $this->mc->authentication->RIGHTS_LEVELS;
|
||||
$highest_level = null;
|
||||
foreach ($command_rights as $right) {
|
||||
$levelName = $right->getName();
|
||||
@ -152,13 +152,13 @@ class Commands {
|
||||
*/
|
||||
private function command_version($chat) {
|
||||
$login = $chat[1][1];
|
||||
if (!$this->iControl->authentication->checkRight($login, $this->getRightsLevel('version', 'all'))) {
|
||||
if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('version', 'all'))) {
|
||||
// Not allowed!
|
||||
$this->iControl->authentication->sendNotAllowed($login);
|
||||
$this->mc->authentication->sendNotAllowed($login);
|
||||
return;
|
||||
}
|
||||
if (!$this->iControl->chat->sendInformation('This server is using ManiaControl v' . ManiaControl::VERSION . '!', $login)) {
|
||||
trigger_error("Couldn't send version to '" . $login . "'. " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->chat->sendInformation('This server is using ManiaControl v' . ManiaControl::VERSION . '!', $login)) {
|
||||
trigger_error("Couldn't send version to '" . $login . "'. " . $this->mc->getClientErrorText());
|
||||
}
|
||||
}
|
||||
|
||||
@ -167,9 +167,9 @@ class Commands {
|
||||
*/
|
||||
private function command_help($chat) {
|
||||
$login = $chat[1][1];
|
||||
if (!$this->iControl->authentication->checkRight($login, $this->getRightsLevel('help', 'all'))) {
|
||||
if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('help', 'all'))) {
|
||||
// Not allowed!
|
||||
$this->iControl->authentication->sendNotAllowed($login);
|
||||
$this->mc->authentication->sendNotAllowed($login);
|
||||
return;
|
||||
}
|
||||
// TODO: improve help command
|
||||
@ -178,7 +178,7 @@ class Commands {
|
||||
$commands = array_keys($this->commandHandlers);
|
||||
$count = count($commands);
|
||||
for ($index = 0; $index < $count; $index++) {
|
||||
if (!$this->iControl->authentication->checkRight($login, $this->getRightsLevel($commands[$index], 'superadmin'))) {
|
||||
if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel($commands[$index], 'superadmin'))) {
|
||||
unset($commands[$index]);
|
||||
}
|
||||
}
|
||||
@ -191,8 +191,8 @@ class Commands {
|
||||
}
|
||||
$index++;
|
||||
}
|
||||
if (!$this->iControl->chat->sendInformation($list, $login)) {
|
||||
trigger_error("Couldn't send help list to '" . $login . "'. " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->chat->sendInformation($list, $login)) {
|
||||
trigger_error("Couldn't send help list to '" . $login . "'. " . $this->mc->getClientErrorText());
|
||||
}
|
||||
}
|
||||
|
||||
@ -201,18 +201,18 @@ class Commands {
|
||||
*/
|
||||
private function command_getplanets($chat) {
|
||||
$login = $chat[1][1];
|
||||
if (!$this->iControl->authentication->checkRight($login, $this->getRightsLevel('getplanets', 'admin'))) {
|
||||
if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('getplanets', 'admin'))) {
|
||||
// Not allowed!
|
||||
$this->iControl->authentication->sendNotAllowed($login);
|
||||
$this->mc->authentication->sendNotAllowed($login);
|
||||
return;
|
||||
}
|
||||
if (!$this->iControl->client->query('GetServerPlanets')) {
|
||||
trigger_error("Couldn't retrieve server planets. " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->client->query('GetServerPlanets')) {
|
||||
trigger_error("Couldn't retrieve server planets. " . $this->mc->getClientErrorText());
|
||||
}
|
||||
else {
|
||||
$planets = $this->iControl->client->getResponse();
|
||||
if (!$this->iControl->chat->sendInformation('This Server has ' . $planets . ' Planets!', $login)) {
|
||||
trigger_error("Couldn't send server planets to '" . $login . "'. " . $this->iControl->getClientErrorText());
|
||||
$planets = $this->mc->client->getResponse();
|
||||
if (!$this->mc->chat->sendInformation('This Server has ' . $planets . ' Planets!', $login)) {
|
||||
trigger_error("Couldn't send server planets to '" . $login . "'. " . $this->mc->getClientErrorText());
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -222,9 +222,9 @@ class Commands {
|
||||
*/
|
||||
private function command_donate($chat) {
|
||||
$login = $chat[1][1];
|
||||
if (!$this->iControl->authentication->checkRight($login, $this->getRightsLevel('donate', 'all'))) {
|
||||
if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('donate', 'all'))) {
|
||||
// Not allowed!
|
||||
$this->iControl->authentication->sendNotAllowed($login);
|
||||
$this->mc->authentication->sendNotAllowed($login);
|
||||
return;
|
||||
}
|
||||
$params = explode(' ', $chat[1][2]);
|
||||
@ -239,22 +239,22 @@ class Commands {
|
||||
}
|
||||
if (count($params) >= 3) {
|
||||
$receiver = $params[2];
|
||||
$receiverPlayer = $this->iControl->database->getPlayer($receiver);
|
||||
$receiverPlayer = $this->mc->database->getPlayer($receiver);
|
||||
$receiverName = ($receiverPlayer ? $receiverPlayer['NickName'] : $receiver);
|
||||
}
|
||||
else {
|
||||
$receiver = '';
|
||||
$receiverName = $this->iControl->server->getName();
|
||||
$receiverName = $this->mc->server->getName();
|
||||
}
|
||||
$message = 'Donate ' . $amount . ' Planets to $<' . $receiverName . '$>?';
|
||||
if (!$this->iControl->client->query('SendBill', $login, $amount, $message, $receiver)) {
|
||||
if (!$this->mc->client->query('SendBill', $login, $amount, $message, $receiver)) {
|
||||
trigger_error(
|
||||
"Couldn't create donation of " . $amount . " planets from '" . $login . "' for '" . $receiver . "'. " .
|
||||
$this->iControl->getClientErrorText());
|
||||
$this->iControl->chat->sendError("Creating donation failed.", $login);
|
||||
$this->mc->getClientErrorText());
|
||||
$this->mc->chat->sendError("Creating donation failed.", $login);
|
||||
}
|
||||
else {
|
||||
$bill = $this->iControl->client->getResponse();
|
||||
$bill = $this->mc->client->getResponse();
|
||||
$this->openBills[$bill] = $login;
|
||||
}
|
||||
}
|
||||
@ -264,9 +264,9 @@ class Commands {
|
||||
*/
|
||||
private function command_pay($chat) {
|
||||
$login = $chat[1][1];
|
||||
if (!$this->iControl->authentication->checkRight($login, $this->getRightsLevel('pay', 'superadmin'))) {
|
||||
if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('pay', 'superadmin'))) {
|
||||
// Not allowed!
|
||||
$this->iControl->authentication->sendNotAllowed($login);
|
||||
$this->mc->authentication->sendNotAllowed($login);
|
||||
return;
|
||||
}
|
||||
$params = explode(' ', $chat[1][2]);
|
||||
@ -285,15 +285,15 @@ class Commands {
|
||||
else {
|
||||
$receiver = $login;
|
||||
}
|
||||
$message = 'Payout from $<' . $this->iControl->server->getName() . '$>.';
|
||||
if (!$this->iControl->client->query('Pay', $receiver, $amount, $message)) {
|
||||
$message = 'Payout from $<' . $this->mc->server->getName() . '$>.';
|
||||
if (!$this->mc->client->query('Pay', $receiver, $amount, $message)) {
|
||||
trigger_error(
|
||||
"Couldn't create payout of" . $amount . " planets by '" . $login . "' for '" . $receiver . "'. " .
|
||||
$this->iControl->getClientErrorText());
|
||||
$this->iControl->chat->sendError("Creating payout failed.", $login);
|
||||
$this->mc->getClientErrorText());
|
||||
$this->mc->chat->sendError("Creating payout failed.", $login);
|
||||
}
|
||||
else {
|
||||
$bill = $this->iControl->client->getResponse();
|
||||
$bill = $this->mc->client->getResponse();
|
||||
$this->openBills[$bill] = $login;
|
||||
}
|
||||
}
|
||||
@ -303,17 +303,17 @@ class Commands {
|
||||
*/
|
||||
private function command_networkstats($chat) {
|
||||
$login = $chat[1][1];
|
||||
if (!$this->iControl->authentication->checkRight($login, $this->getRightsLevel('networkstats', 'superadmin'))) {
|
||||
if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('networkstats', 'superadmin'))) {
|
||||
// Not allowed!
|
||||
$this->iControl->authentication->sendNotAllowed($login);
|
||||
$this->mc->authentication->sendNotAllowed($login);
|
||||
return;
|
||||
}
|
||||
$networkStats = $this->iControl->server->getNetworkStats();
|
||||
$networkStats = $this->mc->server->getNetworkStats();
|
||||
$message = 'NetworkStats: ' . 'uptime=' . $networkStats['Uptime'] . ', ' . 'nbConn=' . $networkStats['NbrConnection'] . ', ' .
|
||||
'recvRate=' . $networkStats['RecvNetRate'] . ', ' . 'sendRate=' . $networkStats['SendNetRate'] . ', ' . 'recvTotal=' .
|
||||
$networkStats['SendNetRate'] . ', ' . 'sentTotal=' . $networkStats['SendNetRate'];
|
||||
if (!$this->iControl->chat->sendInformation($message, $login)) {
|
||||
trigger_error("Couldn't send network stats to '" . $login . "'. " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->chat->sendInformation($message, $login)) {
|
||||
trigger_error("Couldn't send network stats to '" . $login . "'. " . $this->mc->getClientErrorText());
|
||||
}
|
||||
}
|
||||
|
||||
@ -322,16 +322,16 @@ class Commands {
|
||||
*/
|
||||
private function command_systeminfo($chat) {
|
||||
$login = $chat[1][1];
|
||||
if (!$this->iControl->authentication->checkRight($login, $this->getRightsLevel('systeminfo', 'superadmin'))) {
|
||||
if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('systeminfo', 'superadmin'))) {
|
||||
// Not allowed!
|
||||
$this->iControl->authentication->sendNotAllowed($login);
|
||||
$this->mc->authentication->sendNotAllowed($login);
|
||||
return;
|
||||
}
|
||||
$systemInfo = $this->iControl->server->getSystemInfo();
|
||||
$systemInfo = $this->mc->server->getSystemInfo();
|
||||
$message = 'SystemInfo: ' . 'ip=' . $systemInfo['PublishedIp'] . ', ' . 'port=' . $systemInfo['Port'] . ', ' . 'p2pPort=' .
|
||||
$systemInfo['P2PPort'] . ', ' . 'title=' . $systemInfo['TitleId'] . ', ' . 'login=' . $systemInfo['ServerLogin'] . ', ';
|
||||
if (!$this->iControl->chat->sendInformation($message, $login)) {
|
||||
trigger_error("Couldn't send system info to '" . $login . "'. " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->chat->sendInformation($message, $login)) {
|
||||
trigger_error("Couldn't send system info to '" . $login . "'. " . $this->mc->getClientErrorText());
|
||||
}
|
||||
}
|
||||
|
||||
@ -340,12 +340,12 @@ class Commands {
|
||||
*/
|
||||
private function command_shutdown($chat) {
|
||||
$login = $chat[1][1];
|
||||
if (!$this->iControl->authentication->checkRight($login, $this->getRightsLevel('shutdown', 'superadmin'))) {
|
||||
if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('shutdown', 'superadmin'))) {
|
||||
// Not allowed!
|
||||
$this->iControl->authentication->sendNotAllowed($login);
|
||||
$this->mc->authentication->sendNotAllowed($login);
|
||||
return;
|
||||
}
|
||||
$this->iControl->quit("ManiaControl shutdown requested by '" . $login . "'");
|
||||
$this->mc->quit("ManiaControl shutdown requested by '" . $login . "'");
|
||||
}
|
||||
|
||||
/**
|
||||
@ -353,15 +353,15 @@ class Commands {
|
||||
*/
|
||||
private function command_startwarmup($chat) {
|
||||
$login = $chat[1][1];
|
||||
if (!$this->iControl->authentication->checkRight($login, $this->getRightsLevel('startwarmup', 'operator'))) {
|
||||
if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('startwarmup', 'operator'))) {
|
||||
// Not allowed!
|
||||
$this->iControl->authentication->sendNotAllowed($login);
|
||||
$this->mc->authentication->sendNotAllowed($login);
|
||||
return;
|
||||
}
|
||||
if (!$this->iControl->client->query("SetWarmUp", true)) {
|
||||
trigger_error("Couldn't start warmup. " . $this->iControl->getClientErrorText());
|
||||
$player = $this->iControl->database->getPlayer($login);
|
||||
$this->iControl->chat->sendInformation('$<' . ($player ? $player['NickName'] : $login) . '$> started WarmUp!');
|
||||
if (!$this->mc->client->query("SetWarmUp", true)) {
|
||||
trigger_error("Couldn't start warmup. " . $this->mc->getClientErrorText());
|
||||
$player = $this->mc->database->getPlayer($login);
|
||||
$this->mc->chat->sendInformation('$<' . ($player ? $player['NickName'] : $login) . '$> started WarmUp!');
|
||||
}
|
||||
}
|
||||
|
||||
@ -370,17 +370,17 @@ class Commands {
|
||||
*/
|
||||
private function command_stopwarmup($chat) {
|
||||
$login = $chat[1][1];
|
||||
if (!$this->iControl->authentication->checkRight($login, $this->getRightsLevel('stopwarmup', 'operator'))) {
|
||||
if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('stopwarmup', 'operator'))) {
|
||||
// Not allowed!
|
||||
$this->iControl->authentication->sendNotAllowed($login);
|
||||
$this->mc->authentication->sendNotAllowed($login);
|
||||
return;
|
||||
}
|
||||
if (!$this->iControl->client->query("SetWarmUp", false)) {
|
||||
trigger_error("Couldn't stop warmup. " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->client->query("SetWarmUp", false)) {
|
||||
trigger_error("Couldn't stop warmup. " . $this->mc->getClientErrorText());
|
||||
}
|
||||
else {
|
||||
$player = $this->iControl->database->getPlayer($login);
|
||||
$this->iControl->chat->sendInformation('$<' . ($player ? $player['NickName'] : $login) . '$> stopped WarmUp!');
|
||||
$player = $this->mc->database->getPlayer($login);
|
||||
$this->mc->chat->sendInformation('$<' . ($player ? $player['NickName'] : $login) . '$> stopped WarmUp!');
|
||||
}
|
||||
}
|
||||
|
||||
@ -389,9 +389,9 @@ class Commands {
|
||||
*/
|
||||
private function command_shutdownserver($chat) {
|
||||
$login = $chat[1][1];
|
||||
if (!$this->iControl->authentication->checkRight($login, $this->getRightsLevel('shutdownserver', 'superadmin'))) {
|
||||
if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('shutdownserver', 'superadmin'))) {
|
||||
// Not allowed!
|
||||
$this->iControl->authentication->sendNotAllowed($login);
|
||||
$this->mc->authentication->sendNotAllowed($login);
|
||||
return;
|
||||
}
|
||||
// Check for delayed shutdown
|
||||
@ -401,10 +401,10 @@ class Commands {
|
||||
if ($param == 'empty') {
|
||||
$this->serverShutdownEmpty = !$this->serverShutdownEmpty;
|
||||
if ($this->serverShutdownEmpty) {
|
||||
$this->iControl->chat->sendInformation("The server will shutdown as soon as it's empty!", $login);
|
||||
$this->mc->chat->sendInformation("The server will shutdown as soon as it's empty!", $login);
|
||||
}
|
||||
else {
|
||||
$this->iControl->chat->sendInformation("Empty-shutdown cancelled!", $login);
|
||||
$this->mc->chat->sendInformation("Empty-shutdown cancelled!", $login);
|
||||
}
|
||||
}
|
||||
else {
|
||||
@ -412,12 +412,12 @@ class Commands {
|
||||
if ($delay <= 0) {
|
||||
// Cancel shutdown
|
||||
$this->serverShutdownTime = -1;
|
||||
$this->iControl->chat->sendInformation("Delayed shutdown cancelled!", $login);
|
||||
$this->mc->chat->sendInformation("Delayed shutdown cancelled!", $login);
|
||||
}
|
||||
else {
|
||||
// Trigger delayed shutdown
|
||||
$this->serverShutdownTime = time() + $delay * 60.;
|
||||
$this->iControl->chat->sendInformation("The server will shut down in " . $delay . " minutes!", $login);
|
||||
$this->mc->chat->sendInformation("The server will shut down in " . $delay . " minutes!", $login);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -431,9 +431,9 @@ class Commands {
|
||||
*/
|
||||
private function command_kick($chat) {
|
||||
$login = $chat[1][1];
|
||||
if (!$this->iControl->authentication->checkRight($login, $this->getRightsLevel('kick', 'operator'))) {
|
||||
if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('kick', 'operator'))) {
|
||||
// Not allowed!
|
||||
$this->iControl->authentication->sendNotAllowed($login);
|
||||
$this->mc->authentication->sendNotAllowed($login);
|
||||
return;
|
||||
}
|
||||
$params = explode(' ', $chat[1][2], 3);
|
||||
@ -442,7 +442,7 @@ class Commands {
|
||||
return;
|
||||
}
|
||||
$target = $params[1];
|
||||
$players = $this->iControl->server->getPlayers();
|
||||
$players = $this->mc->server->getPlayers();
|
||||
foreach ($players as $player) {
|
||||
if ($player['Login'] != $target) continue;
|
||||
// Kick player
|
||||
@ -452,12 +452,12 @@ class Commands {
|
||||
else {
|
||||
$message = "";
|
||||
}
|
||||
if (!$this->iControl->client->query('Kick', $target, $message)) {
|
||||
trigger_error("Couldn't kick player '" . $target . "'! " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->client->query('Kick', $target, $message)) {
|
||||
trigger_error("Couldn't kick player '" . $target . "'! " . $this->mc->getClientErrorText());
|
||||
}
|
||||
return;
|
||||
}
|
||||
$this->iControl->chat->sendError("Invalid player login.", $login);
|
||||
$this->mc->chat->sendError("Invalid player login.", $login);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -465,26 +465,26 @@ class Commands {
|
||||
*/
|
||||
private function command_removemap($chat) {
|
||||
$login = $chat[1][1];
|
||||
if (!$this->iControl->authentication->checkRight($login, $this->getRightsLevel('kick', 'operator'))) {
|
||||
if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('kick', 'operator'))) {
|
||||
// Not allowed!
|
||||
$this->iControl->authentication->sendNotAllowed($login);
|
||||
$this->mc->authentication->sendNotAllowed($login);
|
||||
return;
|
||||
}
|
||||
// TODO: allow params
|
||||
// Get map name
|
||||
$map = $this->iControl->server->getMap();
|
||||
$map = $this->mc->server->getMap();
|
||||
if (!$map) {
|
||||
$this->iControl->chat->sendError("Couldn't remove map.", $login);
|
||||
$this->mc->chat->sendError("Couldn't remove map.", $login);
|
||||
}
|
||||
else {
|
||||
$mapName = $map['FileName'];
|
||||
|
||||
// Remove map
|
||||
if (!$this->iControl->client->query('RemoveMap', $mapName)) {
|
||||
trigger_error("Couldn't remove current map. " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->client->query('RemoveMap', $mapName)) {
|
||||
trigger_error("Couldn't remove current map. " . $this->mc->getClientErrorText());
|
||||
}
|
||||
else {
|
||||
$this->iControl->chat->sendSuccess('Map removed.', $login);
|
||||
$this->mc->chat->sendSuccess('Map removed.', $login);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -494,9 +494,9 @@ class Commands {
|
||||
*/
|
||||
private function command_addmap($chat) {
|
||||
$login = $chat[1][1];
|
||||
if (!$this->iControl->authentication->checkRight($login, $this->getRightsLevel('addmap', 'operator'))) {
|
||||
if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('addmap', 'operator'))) {
|
||||
// Not allowed!
|
||||
$this->iControl->authentication->sendNotAllowed($login);
|
||||
$this->mc->authentication->sendNotAllowed($login);
|
||||
return;
|
||||
}
|
||||
$params = explode(' ', $chat[1][2], 2);
|
||||
@ -505,36 +505,36 @@ class Commands {
|
||||
return;
|
||||
}
|
||||
// Check if ManiaControl can even write to the maps dir
|
||||
if (!$this->iControl->client->query('GetMapsDirectory')) {
|
||||
trigger_error("Couldn't get map directory. " . $this->iControl->getClientErrorText());
|
||||
$this->iControl->chat->sendError("ManiaControl couldn't retrieve the maps directory.", $login);
|
||||
if (!$this->mc->client->query('GetMapsDirectory')) {
|
||||
trigger_error("Couldn't get map directory. " . $this->mc->getClientErrorText());
|
||||
$this->mc->chat->sendError("ManiaControl couldn't retrieve the maps directory.", $login);
|
||||
return;
|
||||
}
|
||||
else {
|
||||
$mapDir = $this->iControl->client->getResponse();
|
||||
$mapDir = $this->mc->client->getResponse();
|
||||
if (!is_dir($mapDir)) {
|
||||
trigger_error("ManiaControl doesn't have have access to the maps directory in '" . $mapDir . "'.");
|
||||
$this->iControl->chat->sendError("ManiaControl doesn't have access to the maps directory.", $login);
|
||||
$this->mc->chat->sendError("ManiaControl doesn't have access to the maps directory.", $login);
|
||||
return;
|
||||
}
|
||||
$dlDir = (string) $this->iControl->config->maps_dir;
|
||||
$dlDir = (string) $this->mc->config->maps_dir;
|
||||
// Create mx directory if necessary
|
||||
if (!is_dir($mapDir . $dlDir) && !mkdir($mapDir . $dlDir)) {
|
||||
trigger_error("ManiaControl doesn't have to rights to save maps in'" . $mapDir . $dlDir, "'.");
|
||||
$this->iControl->chat->sendError("ManiaControl doesn't have to rights to save maps.", $login);
|
||||
$this->mc->chat->sendError("ManiaControl doesn't have to rights to save maps.", $login);
|
||||
return;
|
||||
}
|
||||
$mapDir .= $dlDir . '/';
|
||||
// Download the map
|
||||
if (is_numeric($params[1])) {
|
||||
$serverInfo = $this->iControl->server->getSystemInfo();
|
||||
$serverInfo = $this->mc->server->getSystemInfo();
|
||||
$title = strtolower(substr($serverInfo['TitleId'], 0, 2));
|
||||
// Check if map exists
|
||||
$url = 'http://' . $title . '.mania-exchange.com/api/tracks/get_track_info/id/' . $params[1] . '?format=json';
|
||||
$mapInfo = Tools::loadFile($url);
|
||||
if (!$mapInfo || strlen($mapInfo) <= 0) {
|
||||
// Invalid id
|
||||
$this->iControl->chat->sendError('Invalid MX-Id!', $login);
|
||||
$this->mc->chat->sendError('Invalid MX-Id!', $login);
|
||||
return;
|
||||
}
|
||||
$mapInfo = json_decode($mapInfo, true);
|
||||
@ -542,34 +542,34 @@ class Commands {
|
||||
$file = Tools::loadFile($url);
|
||||
if (!$file) {
|
||||
// Download error
|
||||
$this->iControl->chat->sendError('Download failed!', $login);
|
||||
$this->mc->chat->sendError('Download failed!', $login);
|
||||
return;
|
||||
}
|
||||
// Save map
|
||||
$fileName = $mapDir . $mapInfo['TrackID'] . '_' . $mapInfo['Name'] . '.Map.Gbx';
|
||||
if (!file_put_contents($fileName, $file)) {
|
||||
// Save error
|
||||
$this->iControl->chat->sendError('Saving map failed!', $login);
|
||||
$this->mc->chat->sendError('Saving map failed!', $login);
|
||||
return;
|
||||
}
|
||||
// Check for valid map
|
||||
if (!$this->iControl->client->query('CheckMapForCurrentServerParams', $fileName)) {
|
||||
trigger_error("Couldn't check if map is valid. " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->client->query('CheckMapForCurrentServerParams', $fileName)) {
|
||||
trigger_error("Couldn't check if map is valid. " . $this->mc->getClientErrorText());
|
||||
}
|
||||
else {
|
||||
$response = $this->iControl->client->getResponse();
|
||||
$response = $this->mc->client->getResponse();
|
||||
if (!$response) {
|
||||
// Inalid map type
|
||||
$this->iControl->chat->sendError("Invalid map type.", $login);
|
||||
$this->mc->chat->sendError("Invalid map type.", $login);
|
||||
return;
|
||||
}
|
||||
}
|
||||
// Add map to map list
|
||||
if (!$this->iControl->client->query('InsertMap', $fileName)) {
|
||||
$this->iControl->chat->sendError("Couldn't add map to match settings!", $login);
|
||||
if (!$this->mc->client->query('InsertMap', $fileName)) {
|
||||
$this->mc->chat->sendError("Couldn't add map to match settings!", $login);
|
||||
return;
|
||||
}
|
||||
$this->iControl->chat->sendSuccess('Map $<' . $mapInfo['Name'] . '$> successfully added!');
|
||||
$this->mc->chat->sendSuccess('Map $<' . $mapInfo['Name'] . '$> successfully added!');
|
||||
}
|
||||
else {
|
||||
// TODO: check if map exists locally
|
||||
@ -583,13 +583,13 @@ class Commands {
|
||||
*/
|
||||
private function command_nextmap($chat) {
|
||||
$login = $chat[1][1];
|
||||
if (!$this->iControl->authentication->checkRight($login, $this->getRightsLevel('nextmap', 'operator'))) {
|
||||
if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('nextmap', 'operator'))) {
|
||||
// Not allowed!
|
||||
$this->iControl->authentication->sendNotAllowed($login);
|
||||
$this->mc->authentication->sendNotAllowed($login);
|
||||
return;
|
||||
}
|
||||
if (!$this->iControl->client->query('NextMap')) {
|
||||
trigger_error("Couldn't skip map. " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->client->query('NextMap')) {
|
||||
trigger_error("Couldn't skip map. " . $this->mc->getClientErrorText());
|
||||
}
|
||||
}
|
||||
|
||||
@ -598,13 +598,13 @@ class Commands {
|
||||
*/
|
||||
private function command_restartmap($chat) {
|
||||
$login = $chat[1][1];
|
||||
if (!$this->iControl->authentication->checkRight($login, $this->getRightsLevel('restartmap', 'operator'))) {
|
||||
if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('restartmap', 'operator'))) {
|
||||
// Not allowed!
|
||||
$this->iControl->authentication->sendNotAllowed($login);
|
||||
$this->mc->authentication->sendNotAllowed($login);
|
||||
return;
|
||||
}
|
||||
if (!$this->iControl->client->query('RestartMap')) {
|
||||
trigger_error("Couldn't restart map. " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->client->query('RestartMap')) {
|
||||
trigger_error("Couldn't restart map. " . $this->mc->getClientErrorText());
|
||||
}
|
||||
}
|
||||
|
||||
@ -613,13 +613,13 @@ class Commands {
|
||||
*/
|
||||
private function command_getservername($chat) {
|
||||
$login = $chat[1][1];
|
||||
if (!$this->iControl->authentication->checkRight($login, $this->getRightsLevel('getservername', 'operator'))) {
|
||||
if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('getservername', 'operator'))) {
|
||||
// Not allowed!
|
||||
$this->iControl->authentication->sendNotAllowed($login);
|
||||
$this->mc->authentication->sendNotAllowed($login);
|
||||
return;
|
||||
}
|
||||
$serverName = $this->iControl->server->getName();
|
||||
$this->iControl->chat->sendInformation("Server Name: " . $serverName, $login);
|
||||
$serverName = $this->mc->server->getName();
|
||||
$this->mc->chat->sendInformation("Server Name: " . $serverName, $login);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -627,9 +627,9 @@ class Commands {
|
||||
*/
|
||||
private function command_setservername($chat) {
|
||||
$login = $chat[1][1];
|
||||
if (!$this->iControl->authentication->checkRight($login, $this->getRightsLevel('setservername', 'admin'))) {
|
||||
if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('setservername', 'admin'))) {
|
||||
// Not allowed!
|
||||
$this->iControl->authentication->sendNotAllowed($login);
|
||||
$this->mc->authentication->sendNotAllowed($login);
|
||||
return;
|
||||
}
|
||||
$params = explode(' ', $chat[1][2], 2);
|
||||
@ -638,13 +638,13 @@ class Commands {
|
||||
return;
|
||||
}
|
||||
$serverName = $params[1];
|
||||
if (!$this->iControl->client->query('SetServerName', $serverName)) {
|
||||
trigger_error("Couldn't set server name. " . $this->iControl->getClientErrorText());
|
||||
$this->iControl->chat->sendError("Error!");
|
||||
if (!$this->mc->client->query('SetServerName', $serverName)) {
|
||||
trigger_error("Couldn't set server name. " . $this->mc->getClientErrorText());
|
||||
$this->mc->chat->sendError("Error!");
|
||||
}
|
||||
else {
|
||||
$serverName = $this->iControl->server->getName();
|
||||
$this->iControl->chat->sendInformation("New Name: " . $serverName);
|
||||
$serverName = $this->mc->server->getName();
|
||||
$this->mc->chat->sendInformation("New Name: " . $serverName);
|
||||
}
|
||||
}
|
||||
|
||||
@ -654,7 +654,7 @@ class Commands {
|
||||
public function each5Seconds() {
|
||||
// Empty shutdown
|
||||
if ($this->serverShutdownEmpty) {
|
||||
$players = $this->iControl->server->getPlayers();
|
||||
$players = $this->mc->server->getPlayers();
|
||||
if (count($players) <= 0) {
|
||||
$this->shutdownServer('empty');
|
||||
}
|
||||
@ -672,12 +672,12 @@ class Commands {
|
||||
* Perform server shutdown
|
||||
*/
|
||||
private function shutdownServer($login = '#') {
|
||||
$this->iControl->client->resetError();
|
||||
if (!$this->iControl->client->query('StopServer') || $this->iControl->client->isError()) {
|
||||
trigger_error("Server shutdown command from '" . $login . "' failed. " . $this->iControl->getClientErrorText());
|
||||
$this->mc->client->resetError();
|
||||
if (!$this->mc->client->query('StopServer') || $this->mc->client->isError()) {
|
||||
trigger_error("Server shutdown command from '" . $login . "' failed. " . $this->mc->getClientErrorText());
|
||||
return;
|
||||
}
|
||||
$this->iControl->quit("Server shutdown requested by '" . $login . "'");
|
||||
$this->mc->quit("Server shutdown requested by '" . $login . "'");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -13,6 +13,8 @@ require_once __DIR__ . '/database.php';
|
||||
require_once __DIR__ . '/server.php';
|
||||
require_once __DIR__ . '/stats.php';
|
||||
require_once __DIR__ . '/tools.php';
|
||||
require_once __DIR__ . '/pluginHandler.php';
|
||||
require_once __DIR__ . '/manialinkIdHandler.php';
|
||||
list($endiantest) = array_values(unpack('L1L', pack('V', 1)));
|
||||
if ($endiantest == 1) {
|
||||
require_once __DIR__ . '/PhpRemote/GbxRemote.inc.php';
|
||||
@ -164,7 +166,7 @@ class ManiaControl {
|
||||
|
||||
// Load plugins
|
||||
//$this->loadPlugins();
|
||||
$this->pluginhandler->loadPlugins();
|
||||
$this->pluginHandler->loadPlugins();
|
||||
|
||||
// Connect to server
|
||||
$this->connect();
|
||||
@ -191,12 +193,12 @@ class ManiaControl {
|
||||
$this->callbacks->handleCallbacks();
|
||||
|
||||
// Loop plugins
|
||||
foreach ($this->plugins as $plugin) {
|
||||
/*foreach ($this->plugins as $plugin) {
|
||||
if (!method_exists($plugin, 'loop')) {
|
||||
continue;
|
||||
}
|
||||
$plugin->loop();
|
||||
}
|
||||
}*/
|
||||
|
||||
// Yield for next tick
|
||||
$loopEnd = microtime(true);
|
||||
|
@ -22,7 +22,7 @@ class Database {
|
||||
/**
|
||||
* Private properties
|
||||
*/
|
||||
private $mControl = null;
|
||||
private $mc = null;
|
||||
|
||||
private $config = null;
|
||||
|
||||
@ -31,12 +31,12 @@ class Database {
|
||||
/**
|
||||
* Construct database connection
|
||||
*/
|
||||
public function __construct($mControl) {
|
||||
$this->mControl = $mControl;
|
||||
public function __construct($mc) {
|
||||
$this->mc = $mc;
|
||||
|
||||
// Load config
|
||||
$this->config = Tools::loadConfig('database.ManiaControl.xml');
|
||||
$this->mControl->checkConfig($this->config, array("host", "user"), 'database.ManiaControl.xml');
|
||||
$this->mc->checkConfig($this->config, array("host", "user"), 'database.ManiaControl.xml');
|
||||
|
||||
// Get mysql server information
|
||||
$host = $this->config->xpath('host');
|
||||
@ -73,8 +73,8 @@ class Database {
|
||||
$this->initTables();
|
||||
|
||||
// Register for callbacks
|
||||
$this->mControl->callbacks->registerCallbackHandler(Callbacks::CB_IC_5_SECOND, $this, 'handle5Second');
|
||||
$this->mControl->callbacks->registerCallbackHandler(Callbacks::CB_IC_BEGINMAP, $this, 'handleBeginMap');
|
||||
$this->mc->callbacks->registerCallbackHandler(Callbacks::CB_IC_5_SECOND, $this, 'handle5Second');
|
||||
$this->mc->callbacks->registerCallbackHandler(Callbacks::CB_IC_BEGINMAP, $this, 'handleBeginMap');
|
||||
}
|
||||
|
||||
/**
|
||||
@ -227,7 +227,7 @@ class Database {
|
||||
*/
|
||||
public function handle5Second($callback = null) {
|
||||
// Save current players in database
|
||||
$players = $this->mControl->server->getPlayers();
|
||||
$players = $this->mc->server->getPlayers();
|
||||
if ($players) {
|
||||
$query = "";
|
||||
foreach ($players as $player) {
|
||||
|
@ -19,13 +19,15 @@ namespace ManiaControl;
|
||||
private $author;
|
||||
private $updateUrl;
|
||||
private $name;
|
||||
private $description;
|
||||
private $active;
|
||||
|
||||
public function __construct($mc, $name, $version = 0, $author = '', $updateUrl = ''){
|
||||
public function __construct($mc, $name, $version = 0, $author = '', $description = '', $updateUrl = ''){
|
||||
$this->mc = $mc;
|
||||
$this->name = $name;
|
||||
$this->version = $version;
|
||||
$this->author = $author;
|
||||
$this->description = $description;
|
||||
$this->updateUrl = $updateUrl;
|
||||
|
||||
$this->mc->pluginHandler->registerPlugin($this);
|
||||
@ -131,5 +133,22 @@ namespace ManiaControl;
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $description
|
||||
*/
|
||||
public function setDescription($description)
|
||||
{
|
||||
$this->description = $description;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getDescription()
|
||||
{
|
||||
return $this->description;
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
@ -18,7 +18,7 @@ namespace ManiaControl;
|
||||
private $plugins;
|
||||
|
||||
public function __construct($mc){
|
||||
$this->mControl = $mc;
|
||||
$this->mc = $mc;
|
||||
$this->plugins = array();
|
||||
}
|
||||
|
||||
|
@ -22,20 +22,20 @@ class Server {
|
||||
/**
|
||||
* Private properties
|
||||
*/
|
||||
private $mControl = null;
|
||||
private $mc = null;
|
||||
|
||||
/**
|
||||
* Construct server
|
||||
*/
|
||||
public function __construct($mControl) {
|
||||
$this->mControl = $mControl;
|
||||
public function __construct($mc) {
|
||||
$this->mc = $mc;
|
||||
|
||||
// Load config
|
||||
$this->config = Tools::loadConfig('server.ManiaControl.xml');
|
||||
$this->iControl->checkConfig($this->config, array('host', 'port', 'login', 'pass'), 'server');
|
||||
$this->mc->checkConfig($this->config, array('host', 'port', 'login', 'pass'), 'server');
|
||||
|
||||
// Register for callbacks
|
||||
$this->iControl->callbacks->registerCallbackHandler(Callbacks::CB_IC_1_SECOND, $this, 'eachSecond');
|
||||
$this->mc->callbacks->registerCallbackHandler(Callbacks::CB_IC_1_SECOND, $this, 'eachSecond');
|
||||
}
|
||||
|
||||
/**
|
||||
@ -52,11 +52,11 @@ class Server {
|
||||
* @return string
|
||||
*/
|
||||
public function getDataDirectory() {
|
||||
if (!$this->iControl->client->query('GameDataDirectory')) {
|
||||
trigger_error("Couldn't get data directory. " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->client->query('GameDataDirectory')) {
|
||||
trigger_error("Couldn't get data directory. " . $this->mc->getClientErrorText());
|
||||
return null;
|
||||
}
|
||||
return $this->iControl->client->getResponse();
|
||||
return $this->mc->client->getResponse();
|
||||
}
|
||||
|
||||
/**
|
||||
@ -87,54 +87,54 @@ class Server {
|
||||
public function getInfo($detailed = false) {
|
||||
if ($detailed) {
|
||||
$login = $this->getLogin();
|
||||
if (!$this->iControl->client->query('GetDetailedPlayerInfo', $login)) {
|
||||
trigger_error("Couldn't fetch detailed server player info. " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->client->query('GetDetailedPlayerInfo', $login)) {
|
||||
trigger_error("Couldn't fetch detailed server player info. " . $this->mc->getClientErrorText());
|
||||
return null;
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (!$this->iControl->client->query('GetMainServerPlayerInfo')) {
|
||||
trigger_error("Couldn't fetch server player info. " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->client->query('GetMainServerPlayerInfo')) {
|
||||
trigger_error("Couldn't fetch server player info. " . $this->mc->getClientErrorText());
|
||||
return null;
|
||||
}
|
||||
}
|
||||
return $this->iControl->client->getResponse();
|
||||
return $this->mc->client->getResponse();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get server options
|
||||
*/
|
||||
public function getOptions() {
|
||||
if (!$this->iControl->client->query('GetServerOptions')) {
|
||||
trigger_error("Couldn't fetch server options. " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->client->query('GetServerOptions')) {
|
||||
trigger_error("Couldn't fetch server options. " . $this->mc->getClientErrorText());
|
||||
return null;
|
||||
}
|
||||
return $this->iControl->client->getResponse();
|
||||
return $this->mc->client->getResponse();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch server name
|
||||
*/
|
||||
public function getName() {
|
||||
if (!$this->iControl->client->query('GetServerName')) {
|
||||
trigger_error("Couldn't fetch server name. " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->client->query('GetServerName')) {
|
||||
trigger_error("Couldn't fetch server name. " . $this->mc->getClientErrorText());
|
||||
return null;
|
||||
}
|
||||
return $this->iControl->client->getResponse();
|
||||
return $this->mc->client->getResponse();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch server version
|
||||
*/
|
||||
public function getVersion($forceRefresh = false) {
|
||||
if (isset($this->iControl->client->version) && !$forceRefresh) return $this->iControl->client->version;
|
||||
if (!$this->iControl->client->query('GetVersion')) {
|
||||
trigger_error("Couldn't fetch server version. " . $this->iControl->getClientErrorText());
|
||||
if (isset($this->mc->client->version) && !$forceRefresh) return $this->mc->client->version;
|
||||
if (!$this->mc->client->query('GetVersion')) {
|
||||
trigger_error("Couldn't fetch server version. " . $this->mc->getClientErrorText());
|
||||
return null;
|
||||
}
|
||||
else {
|
||||
$this->iControl->client->version = $this->iControl->client->getResponse();
|
||||
return $this->iControl->client->version;
|
||||
$this->mc->client->version = $this->mc->client->getResponse();
|
||||
return $this->mc->client->version;
|
||||
}
|
||||
}
|
||||
|
||||
@ -142,11 +142,11 @@ class Server {
|
||||
* Fetch server system info
|
||||
*/
|
||||
public function getSystemInfo($forceRefresh = false, &$client = null) {
|
||||
if (!$this->iControl->client && !$client) return null;
|
||||
if (!$client) $client = $this->iControl->client;
|
||||
if (!$this->mc->client && !$client) return null;
|
||||
if (!$client) $client = $this->mc->client;
|
||||
if (isset($client->systemInfo) && !$forceRefresh) return $client->systemInfo;
|
||||
if (!$client->query('GetSystemInfo')) {
|
||||
trigger_error("Couldn't fetch server system info. " . $this->iControl->getClientErrorText($client));
|
||||
trigger_error("Couldn't fetch server system info. " . $this->mc->getClientErrorText($client));
|
||||
return null;
|
||||
}
|
||||
else {
|
||||
@ -159,14 +159,14 @@ class Server {
|
||||
* Fetch network status
|
||||
*/
|
||||
public function getNetworkStats($forceRefresh = false) {
|
||||
if (isset($this->iControl->client->networkStats) && !$forceRefresh) return $this->iControl->client->networkStats;
|
||||
if (!$this->iControl->client->query('GetNetworkStats')) {
|
||||
trigger_error("Couldn't fetch network stats. " . $this->iControl->getClientErrorText());
|
||||
if (isset($this->mc->client->networkStats) && !$forceRefresh) return $this->mc->client->networkStats;
|
||||
if (!$this->mc->client->query('GetNetworkStats')) {
|
||||
trigger_error("Couldn't fetch network stats. " . $this->mc->getClientErrorText());
|
||||
return null;
|
||||
}
|
||||
else {
|
||||
$this->iControl->client->networkStats = $this->iControl->client->getResponse();
|
||||
return $this->iControl->client->networkStats;
|
||||
$this->mc->client->networkStats = $this->mc->client->getResponse();
|
||||
return $this->mc->client->networkStats;
|
||||
}
|
||||
}
|
||||
|
||||
@ -182,11 +182,11 @@ class Server {
|
||||
$gameMode = $parseValue;
|
||||
}
|
||||
else {
|
||||
if (!$this->iControl->client->query('GetGameMode')) {
|
||||
trigger_error("Couldn't fetch current game mode. " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->client->query('GetGameMode')) {
|
||||
trigger_error("Couldn't fetch current game mode. " . $this->mc->getClientErrorText());
|
||||
return null;
|
||||
}
|
||||
$gameMode = $this->iControl->client->getResponse();
|
||||
$gameMode = $this->mc->client->getResponse();
|
||||
}
|
||||
if ($stringValue) {
|
||||
switch ($gameMode) {
|
||||
@ -236,19 +236,19 @@ class Server {
|
||||
public function getPlayer($login, $detailed = false) {
|
||||
if (!$login) return null;
|
||||
$command = ($detailed ? 'GetDetailedPlayerInfo' : 'GetPlayerInfo');
|
||||
if (!$this->iControl->client->query($command, $login)) {
|
||||
trigger_error("Couldn't player info for '" . $login . "'. " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->client->query($command, $login)) {
|
||||
trigger_error("Couldn't player info for '" . $login . "'. " . $this->mc->getClientErrorText());
|
||||
return null;
|
||||
}
|
||||
return $this->iControl->client->getResponse();
|
||||
return $this->mc->client->getResponse();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch all players
|
||||
*/
|
||||
public function getPlayers(&$client = null, &$purePlayers = null, &$pureSpectators = null) {
|
||||
if (!$this->iControl->client && !$client) return null;
|
||||
if (!$client) $client = $this->iControl->client;
|
||||
if (!$this->mc->client && !$client) return null;
|
||||
if (!$client) $client = $this->mc->client;
|
||||
$fetchLength = 30;
|
||||
$offset = 0;
|
||||
$players = array();
|
||||
@ -257,7 +257,7 @@ class Server {
|
||||
$tries = 0;
|
||||
while ($tries < 10) {
|
||||
if (!$client->query('GetPlayerList', $fetchLength, $offset)) {
|
||||
trigger_error("Couldn't get player list. " . $this->iControl->getClientErrorText($client));
|
||||
trigger_error("Couldn't get player list. " . $this->mc->getClientErrorText($client));
|
||||
$tries++;
|
||||
}
|
||||
else {
|
||||
@ -297,11 +297,11 @@ class Server {
|
||||
*/
|
||||
public function getValidationReplay($login) {
|
||||
if (!$login) return null;
|
||||
if (!$this->iControl->client->query('GetValidationReplay', $login)) {
|
||||
trigger_error("Couldn't get validation replay of '" . $login . "'. " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->client->query('GetValidationReplay', $login)) {
|
||||
trigger_error("Couldn't get validation replay of '" . $login . "'. " . $this->mc->getClientErrorText());
|
||||
return null;
|
||||
}
|
||||
return $this->iControl->client->getResponse();
|
||||
return $this->mc->client->getResponse();
|
||||
}
|
||||
|
||||
public function getGhostReplay($login) {
|
||||
@ -317,8 +317,8 @@ class Server {
|
||||
$fileName = 'Ghost.' . $login . '.' . $gameMode . '.' . $time . '.' . $map['UId'] . '.Replay.Gbx';
|
||||
|
||||
// Save ghost replay
|
||||
if (!$this->iControl->client->query('SaveBestGhostsReplay', $login, self::GHOSTREPLAYDIR . $fileName)) {
|
||||
trigger_error("Couldn't save ghost replay. " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->client->query('SaveBestGhostsReplay', $login, self::GHOSTREPLAYDIR . $fileName)) {
|
||||
trigger_error("Couldn't save ghost replay. " . $this->mc->getClientErrorText());
|
||||
return null;
|
||||
}
|
||||
|
||||
@ -335,12 +335,12 @@ class Server {
|
||||
* Fetch current map
|
||||
*/
|
||||
public function getMap() {
|
||||
if (!$this->iControl->client) return null;
|
||||
if (!$this->iControl->client->query('GetCurrentMapInfo')) {
|
||||
trigger_error("Couldn't fetch map info. " . $this->iControl->getClientErrorText());
|
||||
if (!$this->mc->client) return null;
|
||||
if (!$this->mc->client->query('GetCurrentMapInfo')) {
|
||||
trigger_error("Couldn't fetch map info. " . $this->mc->getClientErrorText());
|
||||
return null;
|
||||
}
|
||||
return $this->iControl->client->getResponse();
|
||||
return $this->mc->client->getResponse();
|
||||
}
|
||||
|
||||
/**
|
||||
@ -353,7 +353,7 @@ class Server {
|
||||
if ($response['Code'] === 4) return true;
|
||||
// Server not yet in given status -> Wait for it...
|
||||
$waitBegin = time();
|
||||
$timeoutTags = $this->iControl->config->xpath('timeout');
|
||||
$timeoutTags = $this->mc->config->xpath('timeout');
|
||||
$maxWaitTime = (!empty($timeoutTags) ? (int) $timeoutTags[0] : 20);
|
||||
$lastStatus = $response['Name'];
|
||||
error_log("Waiting for server to reach status " . $statusCode . "...");
|
||||
@ -370,7 +370,7 @@ class Server {
|
||||
// It took too long to reach the status
|
||||
trigger_error(
|
||||
"Server couldn't reach status " . $statusCode . " after " . $maxWaitTime . " seconds! " .
|
||||
$this->iControl->getClientErrorText());
|
||||
$this->mc->getClientErrorText());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
@ -17,15 +17,15 @@ class Stats {
|
||||
/**
|
||||
* Private properties
|
||||
*/
|
||||
private $mControl = null;
|
||||
private $mc = null;
|
||||
|
||||
private $config = null;
|
||||
|
||||
/**
|
||||
* Constuct stats manager
|
||||
*/
|
||||
public function __construct($mControl) {
|
||||
$this->mControl = $mControl;
|
||||
public function __construct($mc) {
|
||||
$this->mc = $mc;
|
||||
|
||||
// Load config
|
||||
$this->config = Tools::loadConfig('stats.ManiaControl.xml');
|
||||
@ -35,11 +35,11 @@ class Stats {
|
||||
$this->initTables();
|
||||
|
||||
// Register for needed callbacks
|
||||
$this->iControl->callbacks->registerCallbackHandler(Callbacks::CB_MP_ENDMAP, $this, 'handleEndMap');
|
||||
$this->iControl->callbacks->registerCallbackHandler(Callbacks::CB_MP_PLAYERCHAT, $this, 'handlePlayerChat');
|
||||
$this->iControl->callbacks->registerCallbackHandler(Callbacks::CB_MP_PLAYERCONNECT, $this, 'handlePlayerConnect');
|
||||
$this->iControl->callbacks->registerCallbackHandler(Callbacks::CB_MP_PLAYERDISCONNECT, $this, 'handlePlayerDisconnect');
|
||||
$this->iControl->callbacks->registerCallbackHandler(Callbacks::CB_TM_PLAYERFINISH, $this, 'handlePlayerFinish');
|
||||
$this->mc->callbacks->registerCallbackHandler(Callbacks::CB_MP_ENDMAP, $this, 'handleEndMap');
|
||||
$this->mc->callbacks->registerCallbackHandler(Callbacks::CB_MP_PLAYERCHAT, $this, 'handlePlayerChat');
|
||||
$this->mc->callbacks->registerCallbackHandler(Callbacks::CB_MP_PLAYERCONNECT, $this, 'handlePlayerConnect');
|
||||
$this->mc->callbacks->registerCallbackHandler(Callbacks::CB_MP_PLAYERDISCONNECT, $this, 'handlePlayerDisconnect');
|
||||
$this->mc->callbacks->registerCallbackHandler(Callbacks::CB_TM_PLAYERFINISH, $this, 'handlePlayerFinish');
|
||||
}
|
||||
|
||||
/**
|
||||
@ -78,7 +78,7 @@ class Stats {
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Tracks player stats' AUTO_INCREMENT=1;";
|
||||
|
||||
// Perform queries
|
||||
if (!$this->iControl->database->multiQuery($query)) {
|
||||
if (!$this->mc->database->multiQuery($query)) {
|
||||
trigger_error("Creating stats tables failed.");
|
||||
}
|
||||
}
|
||||
@ -120,7 +120,7 @@ class Stats {
|
||||
}
|
||||
|
||||
// Perform query
|
||||
if (!$this->iControl->database->multiQuery($multiquery)) {
|
||||
if (!$this->mc->database->multiQuery($multiquery)) {
|
||||
trigger_error("Perform queries on end map failed.");
|
||||
}
|
||||
}
|
||||
@ -139,7 +139,7 @@ class Stats {
|
||||
`Login`,
|
||||
`chatCount`
|
||||
) VALUES (
|
||||
'" . $this->iControl->database->escape($login) . "',
|
||||
'" . $this->mc->database->escape($login) . "',
|
||||
1
|
||||
) ON DUPLICATE KEY UPDATE
|
||||
`chatCount` = `chatCount` + VALUES(`chatCount`)
|
||||
@ -147,7 +147,7 @@ class Stats {
|
||||
}
|
||||
|
||||
// Perform query
|
||||
if (!$this->iControl->database->multiQuery($multiquery)) {
|
||||
if (!$this->mc->database->multiQuery($multiquery)) {
|
||||
trigger_error("Perform queries on player chat failed.");
|
||||
}
|
||||
}
|
||||
@ -174,7 +174,7 @@ class Stats {
|
||||
|
||||
// Track server max players
|
||||
if ($this->settings->track_server_max_players) {
|
||||
$players = $this->iControl->server->getPlayers();
|
||||
$players = $this->mc->server->getPlayers();
|
||||
$multiquery .= "INSERT INTO `" . self::TABLE_STATS_SERVER . "` (
|
||||
`day`,
|
||||
`maxPlayerCount`
|
||||
@ -193,7 +193,7 @@ class Stats {
|
||||
`lastJoin`,
|
||||
`connectCount`
|
||||
) VALUES (
|
||||
'" . $this->iControl->database->escape($login) . "',
|
||||
'" . $this->mc->database->escape($login) . "',
|
||||
NOW(),
|
||||
1
|
||||
) ON DUPLICATE KEY UPDATE
|
||||
@ -203,7 +203,7 @@ class Stats {
|
||||
}
|
||||
|
||||
// Perform query
|
||||
if (!$this->iControl->database->multiQuery($multiquery)) {
|
||||
if (!$this->mc->database->multiQuery($multiquery)) {
|
||||
trigger_error("Perform queries on player connect failed.");
|
||||
}
|
||||
}
|
||||
@ -218,9 +218,9 @@ class Stats {
|
||||
// Track player playtime
|
||||
if ($this->settings->track_player_playtime) {
|
||||
$query = "SELECT `lastJoin` FROM `" . self::TABLE_STATS_PLAYERS . "`
|
||||
WHERE `Login` = '" . $this->iControl->database->escape($login) . "'
|
||||
WHERE `Login` = '" . $this->mc->database->escape($login) . "'
|
||||
;";
|
||||
$result = $this->iControl->database->query($query);
|
||||
$result = $this->mc->database->query($query);
|
||||
if (!$result) {
|
||||
// Error
|
||||
trigger_error("Error selecting player join time from '" . $login . "'.");
|
||||
@ -230,12 +230,12 @@ class Stats {
|
||||
while ($row = $result->fetch_object()) {
|
||||
if (!property_exists($row, 'lastJoin')) continue;
|
||||
$lastJoin = strtotime($row->lastJoin);
|
||||
$lastJoin = ($lastJoin > $this->iControl->startTime ? $lastJoin : $this->iControl->startTime);
|
||||
$lastJoin = ($lastJoin > $this->mc->startTime ? $lastJoin : $this->mc->startTime);
|
||||
$multiquery .= "INSERT INTO `" . self::TABLE_STATS_PLAYERS . "` (
|
||||
`Login`,
|
||||
`playTime`
|
||||
) VALUES (
|
||||
'" . $this->iControl->database->escape($login) . "',
|
||||
'" . $this->mc->database->escape($login) . "',
|
||||
TIMESTAMPDIFF(SECOND, '" . Tools::timeToTimestamp($lastJoin) . "', NOW())
|
||||
) ON DUPLICATE KEY UPDATE
|
||||
`playTime` = `playTime` + VALUES(`playTime`)
|
||||
@ -246,7 +246,7 @@ class Stats {
|
||||
}
|
||||
|
||||
// Perform query
|
||||
if (!$this->iControl->database->multiQuery($multiquery)) {
|
||||
if (!$this->mc->database->multiQuery($multiquery)) {
|
||||
trigger_error("Perform queries on player connect failed.");
|
||||
}
|
||||
}
|
||||
@ -280,7 +280,7 @@ class Stats {
|
||||
`Login`,
|
||||
`finishCount`
|
||||
) VALUES (
|
||||
'" . $this->iControl->database->escape($login) . "',
|
||||
'" . $this->mc->database->escape($login) . "',
|
||||
1
|
||||
) ON DUPLICATE KEY UPDATE
|
||||
`finishCount` = `finishCount` + VALUES(`finishCount`)
|
||||
@ -288,7 +288,7 @@ class Stats {
|
||||
}
|
||||
|
||||
// Perform query
|
||||
if (!$this->iControl->database->multiQuery($multiquery)) {
|
||||
if (!$this->mc->database->multiQuery($multiquery)) {
|
||||
trigger_error("Perform queries on player finish failed.");
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user