some fixes
This commit is contained in:
@ -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 . "'");
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user