2013-11-09 17:24:03 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace ManiaControl;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class for handling chat commands
|
|
|
|
*
|
2013-11-10 17:38:54 +01:00
|
|
|
* @author steeffeen & kremsy
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 19:30:14 +01:00
|
|
|
// TODO: settings for command auth levels
|
2013-11-09 17:24:03 +01:00
|
|
|
class Commands {
|
2013-11-10 14:56:37 +01:00
|
|
|
|
2013-11-09 17:24:03 +01:00
|
|
|
/**
|
|
|
|
* Private properties
|
|
|
|
*/
|
2013-11-10 14:56:37 +01:00
|
|
|
private $maniaControl = null;
|
2013-11-09 17:24:03 +01:00
|
|
|
private $commandHandlers = array();
|
|
|
|
private $openBills = array();
|
|
|
|
private $serverShutdownTime = -1;
|
|
|
|
private $serverShutdownEmpty = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct commands handler
|
|
|
|
*/
|
2013-11-10 14:56:37 +01:00
|
|
|
public function __construct(ManiaControl $maniaControl) {
|
|
|
|
$this->maniaControl = $maniaControl;
|
2013-11-09 17:24:03 +01:00
|
|
|
|
|
|
|
// Register for callbacks
|
2013-11-10 14:56:37 +01:00
|
|
|
$this->maniaControl->callbacks->registerCallbackHandler(Callbacks::CB_MC_5_SECOND, $this, 'each5Seconds');
|
|
|
|
$this->maniaControl->callbacks->registerCallbackHandler(Callbacks::CB_MP_BILLUPDATED, $this, 'handleBillUpdated');
|
|
|
|
$this->maniaControl->callbacks->registerCallbackHandler(Callbacks::CB_MP_PLAYERCHAT, $this, 'handleChatCallback');
|
2013-11-09 17:24:03 +01:00
|
|
|
|
|
|
|
// Register basic commands
|
2013-11-10 19:30:14 +01:00
|
|
|
$commands = array('help', 'version', 'shutdown', 'shutdownserver', 'systeminfo', 'setservername', 'getplanets', 'donate',
|
|
|
|
'pay', 'kick', 'nextmap', 'restartmap', 'addmap', 'removemap');
|
2013-11-09 17:24:03 +01:00
|
|
|
foreach ($commands as $command) {
|
|
|
|
$this->registerCommandHandler($command, $this, 'command_' . $command);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register a command handler
|
|
|
|
*
|
|
|
|
* @param string $commandName
|
|
|
|
* @param object $handler
|
|
|
|
* @param string $method
|
2013-11-10 14:56:37 +01:00
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
|
|
|
public function registerCommandHandler($commandName, $handler, $method) {
|
|
|
|
$command = strtolower($commandName);
|
|
|
|
if (!is_object($handler) || !method_exists($handler, $method)) {
|
2013-11-10 14:56:37 +01:00
|
|
|
trigger_error("Given handler can't handle command '{$command}' (no method '{$method}')!");
|
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
if (!array_key_exists($command, $this->commandHandlers) || !is_array($this->commandHandlers[$command])) {
|
|
|
|
// Init handlers array
|
|
|
|
$this->commandHandlers[$command] = array();
|
|
|
|
}
|
|
|
|
// Register command handler
|
|
|
|
array_push($this->commandHandlers[$command], array($handler, $method));
|
2013-11-10 14:56:37 +01:00
|
|
|
return true;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle chat callback
|
2013-11-10 14:56:37 +01:00
|
|
|
*
|
|
|
|
* @param array $callback
|
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 14:56:37 +01:00
|
|
|
public function handleChatCallback(array $callback) {
|
2013-11-09 17:24:03 +01:00
|
|
|
$chat = $callback[1];
|
|
|
|
// Check for command
|
2013-11-10 14:56:37 +01:00
|
|
|
if (!$chat[3]) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-11-09 17:24:03 +01:00
|
|
|
// Check for valid player
|
2013-11-10 19:30:14 +01:00
|
|
|
$player = $this->maniaControl->playerHandler->getPlayer($login);
|
|
|
|
if (!$player) {
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
|
|
|
}
|
2013-11-09 17:24:03 +01:00
|
|
|
// Handle command
|
|
|
|
$command = explode(" ", substr($chat[2], 1));
|
|
|
|
$command = strtolower($command[0]);
|
|
|
|
if (!array_key_exists($command, $this->commandHandlers) || !is_array($this->commandHandlers[$command])) {
|
|
|
|
// No command handler registered
|
2013-11-10 14:56:37 +01:00
|
|
|
return true;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
// Inform command handlers
|
|
|
|
foreach ($this->commandHandlers[$command] as $handler) {
|
2013-11-10 19:30:14 +01:00
|
|
|
call_user_func(array($handler[0], $handler[1]), $callback, $player);
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-10 14:56:37 +01:00
|
|
|
return true;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle bill updated callback
|
2013-11-10 14:56:37 +01:00
|
|
|
*
|
|
|
|
* @param array $callback
|
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 14:56:37 +01:00
|
|
|
public function handleBillUpdated(array $callback) {
|
2013-11-09 17:24:03 +01:00
|
|
|
$bill = $callback[1];
|
2013-11-10 14:56:37 +01:00
|
|
|
if (!array_key_exists($bill[0], $this->openBills)) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-11-09 17:24:03 +01:00
|
|
|
$login = $this->openBills[$bill[0]];
|
|
|
|
switch ($bill[1]) {
|
|
|
|
case 4:
|
|
|
|
{
|
|
|
|
// Payed
|
|
|
|
$message = 'Success! Thanks.';
|
2013-11-10 14:56:37 +01:00
|
|
|
$this->maniaControl->chat->sendSuccess($message, $login);
|
2013-11-09 17:24:03 +01:00
|
|
|
unset($this->openBills[$bill[0]]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 5:
|
|
|
|
{
|
|
|
|
// Refused
|
|
|
|
$message = 'Transaction cancelled.';
|
2013-11-10 14:56:37 +01:00
|
|
|
$this->maniaControl->chat->sendError($message, $login);
|
2013-11-09 17:24:03 +01:00
|
|
|
unset($this->openBills[$bill[0]]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 6:
|
|
|
|
{
|
|
|
|
// Error
|
2013-11-10 14:56:37 +01:00
|
|
|
$this->maniaControl->chat->sendError($bill[2], $login);
|
2013-11-09 17:24:03 +01:00
|
|
|
unset($this->openBills[$bill[0]]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-11-10 14:56:37 +01:00
|
|
|
return true;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send ManiaControl version
|
2013-11-10 14:56:37 +01:00
|
|
|
*
|
|
|
|
* @param array $chat
|
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 14:56:37 +01:00
|
|
|
private function command_version(array $chat) {
|
2013-11-09 17:24:03 +01:00
|
|
|
$login = $chat[1][1];
|
2013-11-10 14:56:37 +01:00
|
|
|
$message = 'This server is using ManiaControl v' . ManiaControl::VERSION . '!';
|
|
|
|
return $this->maniaControl->chat->sendInformation($message, $login);
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send help list
|
2013-11-10 14:56:37 +01:00
|
|
|
*
|
|
|
|
* @param array $chat
|
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 14:56:37 +01:00
|
|
|
private function command_help(array $chat) {
|
2013-11-09 17:24:03 +01:00
|
|
|
$login = $chat[1][1];
|
|
|
|
// TODO: improve help command
|
|
|
|
// TODO: enable help for specific commands
|
|
|
|
$list = 'Available commands: ';
|
|
|
|
$commands = array_keys($this->commandHandlers);
|
|
|
|
$count = count($commands);
|
|
|
|
for ($index = 0; $index < $count; $index++) {
|
2013-11-10 14:56:37 +01:00
|
|
|
if (!$this->maniaControl->authentication->checkRight($login, $this->getRightsLevel($commands[$index], 'superadmin'))) {
|
2013-11-09 17:24:03 +01:00
|
|
|
unset($commands[$index]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$count = count($commands);
|
|
|
|
$index = 0;
|
|
|
|
foreach ($commands as $command) {
|
|
|
|
$list .= $command;
|
|
|
|
if ($index < $count - 1) {
|
|
|
|
$list .= ', ';
|
|
|
|
}
|
|
|
|
$index++;
|
|
|
|
}
|
2013-11-10 14:56:37 +01:00
|
|
|
return $this->maniaControl->chat->sendInformation($list, $login);
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle getplanets command
|
2013-11-10 14:56:37 +01:00
|
|
|
*
|
|
|
|
* @param array $chat
|
2013-11-10 19:30:14 +01:00
|
|
|
* @param Player $player
|
2013-11-10 14:56:37 +01:00
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 19:30:14 +01:00
|
|
|
private function command_getplanets(array $chat, Player $player) {
|
|
|
|
if (!$this->maniaControl->authentication->checkRight($player, Authentication::AUTH_LEVEL_ADMIN)) {
|
|
|
|
$this->maniaControl->authentication->sendNotAllowed($player);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-10 14:56:37 +01:00
|
|
|
if (!$this->maniaControl->client->query('GetServerPlanets')) {
|
|
|
|
trigger_error("Couldn't retrieve server planets. " . $this->maniaControl->getClientErrorText());
|
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-10 14:56:37 +01:00
|
|
|
$planets = $this->maniaControl->client->getResponse();
|
|
|
|
$message = "This Server has {$planets} Planets!";
|
2013-11-10 19:30:14 +01:00
|
|
|
return $this->maniaControl->chat->sendInformation($message, $player->login);
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle donate command
|
2013-11-10 14:56:37 +01:00
|
|
|
*
|
|
|
|
* @param array $chat
|
2013-11-10 19:30:14 +01:00
|
|
|
* @param Player $player
|
2013-11-10 14:56:37 +01:00
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 19:30:14 +01:00
|
|
|
private function command_donate(array $chat, Player $player) {
|
2013-11-09 17:24:03 +01:00
|
|
|
$params = explode(' ', $chat[1][2]);
|
|
|
|
if (count($params) < 2) {
|
|
|
|
// TODO: send usage information
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
$amount = (int) $params[1];
|
|
|
|
if (!$amount || $amount <= 0) {
|
|
|
|
// TODO: send usage information
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
if (count($params) >= 3) {
|
|
|
|
$receiver = $params[2];
|
2013-11-10 19:30:14 +01:00
|
|
|
$receiverPlayer = $this->maniaControl->playerHandler->getPlayer($receiver);
|
2013-11-09 17:24:03 +01:00
|
|
|
$receiverName = ($receiverPlayer ? $receiverPlayer['NickName'] : $receiver);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$receiver = '';
|
2013-11-10 14:56:37 +01:00
|
|
|
$receiverName = $this->maniaControl->server->getName();
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
$message = 'Donate ' . $amount . ' Planets to $<' . $receiverName . '$>?';
|
2013-11-10 19:30:14 +01:00
|
|
|
if (!$this->maniaControl->client->query('SendBill', $pl, $amount, $message, $receiver)) {
|
2013-11-09 17:24:03 +01:00
|
|
|
trigger_error(
|
2013-11-10 19:30:14 +01:00
|
|
|
"Couldn't create donation of {$amount} planets from '{$player->login}' for '{$receiver}'. " .
|
2013-11-10 14:56:37 +01:00
|
|
|
$this->maniaControl->getClientErrorText());
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->maniaControl->chat->sendError("Creating donation failed.", $player->login);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-10 14:56:37 +01:00
|
|
|
$bill = $this->maniaControl->client->getResponse();
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->openBills[$bill] = $player->login;
|
2013-11-10 14:56:37 +01:00
|
|
|
return true;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle pay command
|
2013-11-10 14:56:37 +01:00
|
|
|
*
|
|
|
|
* @param array $chat
|
2013-11-10 19:30:14 +01:00
|
|
|
* @param Player $player
|
2013-11-10 14:56:37 +01:00
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 19:30:14 +01:00
|
|
|
private function command_pay(array $chat, Player $player) {
|
|
|
|
if (!$this->maniaControl->authentication->checkRight($player, Authentication::AUTH_LEVEL_SUPERADMIN)) {
|
|
|
|
$this->maniaControl->authentication->sendNotAllowed($player);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
$params = explode(' ', $chat[1][2]);
|
|
|
|
if (count($params) < 2) {
|
|
|
|
// TODO: send usage information
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
$amount = (int) $params[1];
|
|
|
|
if (!$amount || $amount <= 0) {
|
|
|
|
// TODO: send usage information
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
if (count($params) >= 3) {
|
|
|
|
$receiver = $params[2];
|
|
|
|
}
|
|
|
|
else {
|
2013-11-10 19:30:14 +01:00
|
|
|
$receiver = $player->login;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-10 14:56:37 +01:00
|
|
|
$message = 'Payout from $<' . $this->maniaControl->server->getName() . '$>.';
|
|
|
|
if (!$this->maniaControl->client->query('Pay', $receiver, $amount, $message)) {
|
2013-11-09 17:24:03 +01:00
|
|
|
trigger_error(
|
2013-11-10 19:30:14 +01:00
|
|
|
"Couldn't create payout of {$amount} planets by '{$player->login}' for '{$receiver}'. " .
|
2013-11-10 14:56:37 +01:00
|
|
|
$this->maniaControl->getClientErrorText());
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->maniaControl->chat->sendError("Creating payout failed.", $player->login);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$bill = $this->maniaControl->client->getResponse();
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->openBills[$bill] = $player->login;
|
2013-11-10 14:56:37 +01:00
|
|
|
return true;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle systeminfo command
|
2013-11-10 14:56:37 +01:00
|
|
|
*
|
|
|
|
* @param array $chat
|
2013-11-10 19:30:14 +01:00
|
|
|
* @param Player $player
|
2013-11-10 14:56:37 +01:00
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 19:30:14 +01:00
|
|
|
private function command_systeminfo(array $chat, Player $player) {
|
|
|
|
if (!$this->maniaControl->authentication->checkRight($player, Authentication::AUTH_LEVEL_SUPERADMIN)) {
|
|
|
|
$this->maniaControl->authentication->sendNotAllowed($player);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-10 14:56:37 +01:00
|
|
|
$systemInfo = $this->maniaControl->server->getSystemInfo();
|
|
|
|
$message = 'SystemInfo: ip=' . $systemInfo['PublishedIp'] . ', port=' . $systemInfo['Port'] . ', p2pPort=' .
|
|
|
|
$systemInfo['P2PPort'] . ', title=' . $systemInfo['TitleId'] . ', login=' . $systemInfo['ServerLogin'] . ', ';
|
2013-11-10 19:30:14 +01:00
|
|
|
return $this->maniaControl->chat->sendInformation($message, $player->login);
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle shutdown command
|
2013-11-10 14:56:37 +01:00
|
|
|
*
|
|
|
|
* @param array $chat
|
2013-11-10 19:30:14 +01:00
|
|
|
* @param Player $player
|
2013-11-10 14:56:37 +01:00
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 19:30:14 +01:00
|
|
|
private function command_shutdown(array $chat, Player $player) {
|
|
|
|
if (!$this->maniaControl->authentication->checkRight($player, Authentication::AUTH_LEVEL_SUPERADMIN)) {
|
|
|
|
$this->maniaControl->authentication->sendNotAllowed($player);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-10 19:30:14 +01:00
|
|
|
return $this->maniaControl->quit("ManiaControl shutdown requested by '{$player->login}'");
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle server shutdown command
|
2013-11-10 14:56:37 +01:00
|
|
|
*
|
|
|
|
* @param array $chat
|
2013-11-10 19:30:14 +01:00
|
|
|
* @param Player $player
|
2013-11-10 14:56:37 +01:00
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 19:30:14 +01:00
|
|
|
private function command_shutdownserver(array $chat, Player $player) {
|
|
|
|
if (!$this->maniaControl->authentication->checkRight($player, Authentication::AUTH_LEVEL_SUPERADMIN)) {
|
|
|
|
$this->maniaControl->authentication->sendNotAllowed($player);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
// Check for delayed shutdown
|
|
|
|
$params = explode(' ', $chat[1][2]);
|
|
|
|
if (count($params) >= 2) {
|
|
|
|
$param = $params[1];
|
|
|
|
if ($param == 'empty') {
|
|
|
|
$this->serverShutdownEmpty = !$this->serverShutdownEmpty;
|
|
|
|
if ($this->serverShutdownEmpty) {
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->maniaControl->chat->sendInformation("The server will shutdown as soon as it's empty!", $player->login);
|
2013-11-10 14:56:37 +01:00
|
|
|
return true;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->maniaControl->chat->sendInformation("Empty-shutdown cancelled!", $player->login);
|
2013-11-10 14:56:37 +01:00
|
|
|
return true;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-10 14:56:37 +01:00
|
|
|
$delay = (int) $param;
|
|
|
|
if ($delay <= 0) {
|
|
|
|
// Cancel shutdown
|
|
|
|
$this->serverShutdownTime = -1;
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->maniaControl->chat->sendInformation("Delayed shutdown cancelled!", $player->login);
|
2013-11-10 14:56:37 +01:00
|
|
|
return true;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-10 14:56:37 +01:00
|
|
|
// Trigger delayed shutdown
|
|
|
|
$this->serverShutdownTime = time() + $delay * 60.;
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->maniaControl->chat->sendInformation("The server will shut down in {$delay} minutes!", $player->login);
|
2013-11-10 14:56:37 +01:00
|
|
|
return true;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-10 19:30:14 +01:00
|
|
|
return $this->shutdownServer($player->login);
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle kick command
|
2013-11-10 14:56:37 +01:00
|
|
|
*
|
|
|
|
* @param array $chat
|
2013-11-10 19:30:14 +01:00
|
|
|
* @param Player $player
|
2013-11-10 14:56:37 +01:00
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 19:30:14 +01:00
|
|
|
private function command_kick(array $chat, Player $player) {
|
|
|
|
if (!$this->maniaControl->authentication->checkRight($player, Authentication::AUTH_LEVEL_OPERATOR)) {
|
|
|
|
$this->maniaControl->authentication->sendNotAllowed($player);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
$params = explode(' ', $chat[1][2], 3);
|
|
|
|
if (count($params) < 2) {
|
|
|
|
// TODO: show usage
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
$target = $params[1];
|
2013-11-10 19:30:14 +01:00
|
|
|
$target = $this->maniaControl->playerHandler->getPlayer($target);
|
|
|
|
if (!$target) {
|
|
|
|
$this->maniaControl->chat->sendError("Invalid player login.", $player->login);
|
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-10 19:30:14 +01:00
|
|
|
$message = '';
|
|
|
|
if (isset($params[2])) {
|
|
|
|
$message = $params[2];
|
|
|
|
}
|
|
|
|
return $this->maniaControl->client->query('Kick', $target->login, $message);
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle removemap command
|
2013-11-10 14:56:37 +01:00
|
|
|
*
|
|
|
|
* @param array $chat
|
2013-11-10 19:30:14 +01:00
|
|
|
* @param Player $player
|
2013-11-10 14:56:37 +01:00
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 19:30:14 +01:00
|
|
|
private function command_removemap(array $chat, Player $player) {
|
|
|
|
if (!$this->maniaControl->authentication->checkRight($player, Authentication::AUTH_LEVEL_OPERATOR)) {
|
|
|
|
$this->maniaControl->authentication->sendNotAllowed($player);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
// Get map name
|
2013-11-10 14:56:37 +01:00
|
|
|
$map = $this->maniaControl->server->getMap();
|
2013-11-09 17:24:03 +01:00
|
|
|
if (!$map) {
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->maniaControl->chat->sendError("Couldn't remove map.", $player->login);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-10 14:56:37 +01:00
|
|
|
$mapName = $map['FileName'];
|
|
|
|
// Remove map
|
|
|
|
if (!$this->maniaControl->client->query('RemoveMap', $mapName)) {
|
|
|
|
trigger_error("Couldn't remove current map. " . $this->maniaControl->getClientErrorText());
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->maniaControl->chat->sendError("Couldn't remove map.", $player->login);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->maniaControl->chat->sendSuccess('Map removed.', $player->login);
|
2013-11-10 14:56:37 +01:00
|
|
|
return true;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle addmap command
|
2013-11-10 14:56:37 +01:00
|
|
|
*
|
|
|
|
* @param array $chat
|
2013-11-10 19:30:14 +01:00
|
|
|
* @param Player $player
|
2013-11-10 14:56:37 +01:00
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 19:30:14 +01:00
|
|
|
private function command_addmap(array $chat, Player $player) {
|
|
|
|
if (!$this->maniaControl->authentication->checkRight($player, Authentication::AUTH_LEVEL_OPERATOR)) {
|
|
|
|
$this->maniaControl->authentication->sendNotAllowed($player);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
$params = explode(' ', $chat[1][2], 2);
|
|
|
|
if (count($params) < 2) {
|
|
|
|
// TODO: show usage
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
// Check if ManiaControl can even write to the maps dir
|
2013-11-10 14:56:37 +01:00
|
|
|
if (!$this->maniaControl->client->query('GetMapsDirectory')) {
|
|
|
|
trigger_error("Couldn't get map directory. " . $this->maniaControl->getClientErrorText());
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->maniaControl->chat->sendError("ManiaControl couldn't retrieve the maps directory.", $player->login);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$mapDir = $this->maniaControl->client->getResponse();
|
|
|
|
if (!is_dir($mapDir)) {
|
|
|
|
trigger_error("ManiaControl doesn't have have access to the maps directory in '{$mapDir}'.");
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->maniaControl->chat->sendError("ManiaControl doesn't have access to the maps directory.", $player->login);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$downloadDirectory = $this->maniaControl->settingManager->getSetting($this, 'MapDownloadDirectory', 'mx');
|
|
|
|
// Create download directory if necessary
|
|
|
|
if (!is_dir($mapDir . $downloadDirectory) && !mkdir($mapDir . $downloadDirectory)) {
|
|
|
|
trigger_error("ManiaControl doesn't have to rights to save maps in '{$mapDir}{$downloadDirectory}'.");
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->maniaControl->chat->sendError("ManiaControl doesn't have the rights to save maps.", $player->login);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$mapDir .= $downloadDirectory . '/';
|
|
|
|
// Download the map
|
|
|
|
$mapId = $params[1];
|
|
|
|
if (is_numeric($mapId)) {
|
|
|
|
// Load from MX
|
|
|
|
$serverInfo = $this->maniaControl->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/{$mapId}?format=json";
|
|
|
|
$mapInfo = FileUtil::loadFile($url);
|
|
|
|
if (!$mapInfo || strlen($mapInfo) <= 0) {
|
|
|
|
// Invalid id
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->maniaControl->chat->sendError('Invalid MX-Id!', $player->login);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-10 14:56:37 +01:00
|
|
|
$mapInfo = json_decode($mapInfo, true);
|
|
|
|
$url = "http://{$title}.mania-exchange.com/tracks/download/{$mapId}";
|
|
|
|
$file = FileUtil::loadFile($url);
|
|
|
|
if (!$file) {
|
|
|
|
// Download error
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->maniaControl->chat->sendError('Download failed!', $player->login);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-10 14:56:37 +01:00
|
|
|
// Save map
|
|
|
|
$fileName = $mapDir . $mapInfo['TrackID'] . '_' . $mapInfo['Name'] . '.Map.Gbx';
|
|
|
|
if (!file_put_contents($fileName, $file)) {
|
|
|
|
// Save error
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->maniaControl->chat->sendError('Saving map failed!', $player->login);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// Check for valid map
|
|
|
|
if (!$this->maniaControl->client->query('CheckMapForCurrentServerParams', $fileName)) {
|
|
|
|
trigger_error("Couldn't check if map is valid. " . $this->maniaControl->getClientErrorText());
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->maniaControl->chat->sendError('Error checking map!', $player->login);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-10 14:56:37 +01:00
|
|
|
$response = $this->maniaControl->client->getResponse();
|
|
|
|
if (!$response) {
|
|
|
|
// Inalid map type
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->maniaControl->chat->sendError("Invalid map type.", $player->login);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-10 14:56:37 +01:00
|
|
|
// Add map to map list
|
|
|
|
if (!$this->maniaControl->client->query('InsertMap', $fileName)) {
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->maniaControl->chat->sendError("Couldn't add map to match settings!", $player->login);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
|
|
|
}
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->maniaControl->chat->sendSuccess('Map $<' . $mapInfo['Name'] . '$> added!');
|
2013-11-10 14:56:37 +01:00
|
|
|
return true;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-10 14:56:37 +01:00
|
|
|
// TODO: add local map by filename
|
|
|
|
// TODO: load map from direct url
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle nextmap command
|
2013-11-10 14:56:37 +01:00
|
|
|
*
|
|
|
|
* @param array $chat
|
2013-11-10 19:30:14 +01:00
|
|
|
* @param Player $player
|
2013-11-10 14:56:37 +01:00
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 19:30:14 +01:00
|
|
|
private function command_nextmap(array $chat, Player $player) {
|
|
|
|
if (!$this->maniaControl->authentication->checkRight($player, Authentication::AUTH_LEVEL_OPERATOR)) {
|
|
|
|
$this->maniaControl->authentication->sendNotAllowed($player);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-10 14:56:37 +01:00
|
|
|
return $this->maniaControl->client->query('NextMap');
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle retartmap command
|
2013-11-10 14:56:37 +01:00
|
|
|
*
|
|
|
|
* @param array $chat
|
2013-11-10 19:30:14 +01:00
|
|
|
* @param Player $player
|
2013-11-10 14:56:37 +01:00
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 19:30:14 +01:00
|
|
|
private function command_restartmap(array $chat, Player $player) {
|
|
|
|
if (!$this->maniaControl->authentication->checkRight($player, Authentication::AUTH_LEVEL_OPERATOR)) {
|
|
|
|
$this->maniaControl->authentication->sendNotAllowed($player);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-10 14:56:37 +01:00
|
|
|
return $this->maniaControl->client->query('RestartMap');
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle setservername command
|
2013-11-10 14:56:37 +01:00
|
|
|
*
|
|
|
|
* @param array $chat
|
2013-11-10 19:30:14 +01:00
|
|
|
* @param Player $player
|
2013-11-10 14:56:37 +01:00
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 19:30:14 +01:00
|
|
|
private function command_setservername(array $chat, Player $player) {
|
|
|
|
if (!$this->maniaControl->authentication->checkRight($player, Authentication::AUTH_LEVEL_ADMIN)) {
|
|
|
|
$this->maniaControl->authentication->sendNotAllowed($player);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
$params = explode(' ', $chat[1][2], 2);
|
|
|
|
if (count($params) < 2) {
|
|
|
|
// TODO: show usage
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
$serverName = $params[1];
|
2013-11-10 14:56:37 +01:00
|
|
|
if (!$this->maniaControl->client->query('SetServerName', $serverName)) {
|
|
|
|
trigger_error("Couldn't set server name. " . $this->maniaControl->getClientErrorText());
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->maniaControl->chat->sendError("Error setting server name!", $player->login);
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$serverName = $this->maniaControl->server->getName();
|
2013-11-10 19:30:14 +01:00
|
|
|
$this->maniaControl->chat->sendInformation("New Name: " . $serverName, $player->login);
|
2013-11-10 14:56:37 +01:00
|
|
|
return true;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check stuff each 5 seconds
|
2013-11-10 14:56:37 +01:00
|
|
|
*
|
|
|
|
* @param array $callback
|
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 14:56:37 +01:00
|
|
|
public function each5Seconds(array $callback) {
|
2013-11-09 17:24:03 +01:00
|
|
|
// Empty shutdown
|
|
|
|
if ($this->serverShutdownEmpty) {
|
2013-11-10 14:56:37 +01:00
|
|
|
$players = $this->maniaControl->server->getPlayers();
|
2013-11-09 17:24:03 +01:00
|
|
|
if (count($players) <= 0) {
|
2013-11-10 14:56:37 +01:00
|
|
|
return $this->shutdownServer('empty');
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delayed shutdown
|
|
|
|
if ($this->serverShutdownTime > 0) {
|
|
|
|
if (time() >= $this->serverShutdownTime) {
|
2013-11-10 14:56:37 +01:00
|
|
|
return $this->shutdownServer('delayed');
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Perform server shutdown
|
2013-11-10 14:56:37 +01:00
|
|
|
*
|
|
|
|
* @param string $login
|
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
|
|
|
private function shutdownServer($login = '#') {
|
2013-11-10 14:56:37 +01:00
|
|
|
if (!$this->maniaControl->client->query('StopServer')) {
|
2013-11-10 19:30:14 +01:00
|
|
|
trigger_error("Server shutdown command from '{login}' failed. " . $this->maniaControl->getClientErrorText());
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-10 14:56:37 +01:00
|
|
|
$this->maniaControl->quit("Server shutdown requested by '{$login}'");
|
|
|
|
return true;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|