2013-11-09 17:24:03 +01:00
|
|
|
<?php
|
|
|
|
|
2013-11-12 15:48:25 +01:00
|
|
|
namespace ManiaControl\Commands;
|
|
|
|
|
|
|
|
require_once __DIR__ . '/CommandListener.php';
|
|
|
|
|
|
|
|
use ManiaControl\ManiaControl;
|
2013-11-13 01:43:12 +01:00
|
|
|
use ManiaControl\Admin\AuthenticationManager;
|
2013-11-12 15:48:25 +01:00
|
|
|
use ManiaControl\Callbacks\CallbackListener;
|
|
|
|
use ManiaControl\Callbacks\CallbackManager;
|
|
|
|
use ManiaControl\Players\Player;
|
2013-11-09 17:24:03 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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-12 15:48:25 +01:00
|
|
|
class CommandManager implements CallbackListener, CommandListener {
|
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-12 15:48:25 +01:00
|
|
|
private $commandListeners = array();
|
2013-11-09 17:24:03 +01:00
|
|
|
private $serverShutdownTime = -1;
|
|
|
|
private $serverShutdownEmpty = false;
|
|
|
|
|
|
|
|
/**
|
2013-11-12 19:33:25 +01:00
|
|
|
* Construct commands manager
|
2013-11-12 15:48:25 +01:00
|
|
|
*
|
|
|
|
* @param \ManiaControl\ManiaControl $maniaControl
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-10 14:56:37 +01:00
|
|
|
public function __construct(ManiaControl $maniaControl) {
|
|
|
|
$this->maniaControl = $maniaControl;
|
2013-11-09 17:24:03 +01:00
|
|
|
|
2013-11-12 15:48:25 +01:00
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MC_5_SECOND, $this, 'each5Seconds');
|
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MP_PLAYERCHAT, $this, 'handleChatCallback');
|
2013-11-09 17:24:03 +01:00
|
|
|
|
|
|
|
// Register basic commands
|
2013-11-12 19:33:25 +01:00
|
|
|
$commands = array('version', 'shutdown', 'shutdownserver', 'systeminfo', 'setservername', 'kick');
|
2013-11-09 17:24:03 +01:00
|
|
|
foreach ($commands as $command) {
|
2013-11-12 15:48:25 +01:00
|
|
|
$this->registerCommandListener($command, $this, 'command_' . $command);
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-11-12 15:48:25 +01:00
|
|
|
* Register a command listener
|
2013-11-09 17:24:03 +01:00
|
|
|
*
|
|
|
|
* @param string $commandName
|
2013-11-12 15:48:25 +01:00
|
|
|
* @param CommandListener $listener
|
2013-11-09 17:24:03 +01:00
|
|
|
* @param string $method
|
2013-11-10 14:56:37 +01:00
|
|
|
* @return bool
|
2013-11-09 17:24:03 +01:00
|
|
|
*/
|
2013-11-12 15:48:25 +01:00
|
|
|
public function registerCommandListener($commandName, CommandListener $listener, $method) {
|
2013-11-09 17:24:03 +01:00
|
|
|
$command = strtolower($commandName);
|
2013-11-12 15:48:25 +01:00
|
|
|
if (!method_exists($listener, $method)) {
|
|
|
|
trigger_error("Given listener can't handle command '{$command}' (no method '{$method}')!");
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-12 15:48:25 +01:00
|
|
|
if (!array_key_exists($command, $this->commandListeners) || !is_array($this->commandListeners[$command])) {
|
|
|
|
// Init listeners array
|
|
|
|
$this->commandListeners[$command] = array();
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-12 15:48:25 +01:00
|
|
|
// Register command listener
|
|
|
|
array_push($this->commandListeners[$command], array($listener, $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
|
|
|
// Check for command
|
2013-11-12 15:48:25 +01:00
|
|
|
if (!$callback[1][3]) {
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
|
|
|
}
|
2013-11-09 17:24:03 +01:00
|
|
|
// Check for valid player
|
2013-11-12 15:48:25 +01:00
|
|
|
$player = $this->maniaControl->playerManager->getPlayer($callback[1][1]);
|
2013-11-10 19:30:14 +01:00
|
|
|
if (!$player) {
|
2013-11-10 14:56:37 +01:00
|
|
|
return false;
|
|
|
|
}
|
2013-11-09 17:24:03 +01:00
|
|
|
// Handle command
|
2013-11-12 15:48:25 +01:00
|
|
|
$command = explode(" ", substr($callback[1][2], 1));
|
2013-11-09 17:24:03 +01:00
|
|
|
$command = strtolower($command[0]);
|
2013-11-12 15:48:25 +01:00
|
|
|
if (!array_key_exists($command, $this->commandListeners) || !is_array($this->commandListeners[$command])) {
|
2013-11-12 19:33:25 +01:00
|
|
|
// No command listener registered
|
2013-11-10 14:56:37 +01:00
|
|
|
return true;
|
2013-11-09 17:24:03 +01:00
|
|
|
}
|
2013-11-12 19:33:25 +01:00
|
|
|
// Inform command listeners
|
2013-11-12 15:48:25 +01:00
|
|
|
foreach ($this->commandListeners[$command] as $listener) {
|
|
|
|
call_user_func(array($listener[0], $listener[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
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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) {
|
2013-11-13 01:43:12 +01:00
|
|
|
if (!$this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_SUPERADMIN)) {
|
|
|
|
$this->maniaControl->authenticationManager->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) {
|
2013-11-13 01:43:12 +01:00
|
|
|
if (!$this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_SUPERADMIN)) {
|
|
|
|
$this->maniaControl->authenticationManager->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) {
|
2013-11-13 01:43:12 +01:00
|
|
|
if (!$this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_SUPERADMIN)) {
|
|
|
|
$this->maniaControl->authenticationManager->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) {
|
2013-11-13 01:43:12 +01:00
|
|
|
if (!$this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_OPERATOR)) {
|
|
|
|
$this->maniaControl->authenticationManager->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-12 19:33:25 +01:00
|
|
|
$target = $this->maniaControl->playerManager->getPlayer($target);
|
2013-11-10 19:30:14 +01:00
|
|
|
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 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) {
|
2013-11-13 01:43:12 +01:00
|
|
|
if (!$this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_ADMIN)) {
|
|
|
|
$this->maniaControl->authenticationManager->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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|