- cleaned up database class - plugin and plugin handler class - improved player and player handler classes - other cleanup and improvements
		
			
				
	
	
		
			685 lines
		
	
	
		
			21 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			685 lines
		
	
	
		
			21 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace ManiaControl;
 | |
| 
 | |
| /**
 | |
|  * Class for handling chat commands
 | |
|  *
 | |
|  * @author steeffeen
 | |
|  */
 | |
| class Commands {
 | |
| 
 | |
| 	/**
 | |
| 	 * Private properties
 | |
| 	 */
 | |
| 	private $mc = null;
 | |
| 
 | |
| 	private $config = null;
 | |
| 
 | |
| 	private $commandHandlers = array();
 | |
| 
 | |
| 	private $openBills = array();
 | |
| 
 | |
| 	private $serverShutdownTime = -1;
 | |
| 
 | |
| 	private $serverShutdownEmpty = false;
 | |
| 
 | |
| 	/**
 | |
| 	 * Construct commands handler
 | |
| 	 */
 | |
| 	public function __construct($mc) {
 | |
| 		$this->mc = $mc;
 | |
| 		
 | |
| 		// Load config
 | |
| 		$this->config = Tools::loadConfig('commands.xml');
 | |
| 		
 | |
| 		// Register for callbacks
 | |
| 		$this->mc->callbacks->registerCallbackHandler(Callbacks::CB_MC_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', 
 | |
| 			'setservername', 'getplanets', 'donate', 'pay', 'kick', 'nextmap', 'restartmap', 'addmap', 'removemap', 'startwarmup', 
 | |
| 			'stopwarmup');
 | |
| 		foreach ($commands as $command) {
 | |
| 			$this->registerCommandHandler($command, $this, 'command_' . $command);
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Register a command handler
 | |
| 	 *
 | |
| 	 * @param string $commandName        	
 | |
| 	 * @param object $handler        	
 | |
| 	 * @param string $method        	
 | |
| 	 */
 | |
| 	public function registerCommandHandler($commandName, $handler, $method) {
 | |
| 		$command = strtolower($commandName);
 | |
| 		if (!is_object($handler) || !method_exists($handler, $method)) {
 | |
| 			trigger_error("Given handler can't handle command '" . $command . "' (no method '" . $method . "')!");
 | |
| 			return;
 | |
| 		}
 | |
| 		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));
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Handle chat callback
 | |
| 	 */
 | |
| 	public function handleChatCallback($callback) {
 | |
| 		$chat = $callback[1];
 | |
| 		// Check for command
 | |
| 		if (!$chat[3]) return;
 | |
| 		// Check for valid player
 | |
| 		if ($chat[0] <= 0 || strlen($chat[1]) <= 0) return;
 | |
| 		// 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
 | |
| 			return;
 | |
| 		}
 | |
| 		// Inform command handlers
 | |
| 		foreach ($this->commandHandlers[$command] as $handler) {
 | |
| 			call_user_func(array($handler[0], $handler[1]), $callback);
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Handle bill updated callback
 | |
| 	 */
 | |
| 	public function handleBillUpdated($callback) {
 | |
| 		$bill = $callback[1];
 | |
| 		if (!array_key_exists($bill[0], $this->openBills)) return;
 | |
| 		$login = $this->openBills[$bill[0]];
 | |
| 		switch ($bill[1]) {
 | |
| 			case 4:
 | |
| 				{
 | |
| 					// Payed
 | |
| 					$message = 'Success! Thanks.';
 | |
| 					$this->mc->chat->sendSuccess($message, $login);
 | |
| 					unset($this->openBills[$bill[0]]);
 | |
| 					break;
 | |
| 				}
 | |
| 			case 5:
 | |
| 				{
 | |
| 					// Refused
 | |
| 					$message = 'Transaction cancelled.';
 | |
| 					$this->mc->chat->sendError($message, $login);
 | |
| 					unset($this->openBills[$bill[0]]);
 | |
| 					break;
 | |
| 				}
 | |
| 			case 6:
 | |
| 				{
 | |
| 					// Error
 | |
| 					$this->mc->chat->sendError($bill[2], $login);
 | |
| 					unset($this->openBills[$bill[0]]);
 | |
| 					break;
 | |
| 				}
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Retrieve the needed rights level to perform the given command
 | |
| 	 *
 | |
| 	 * @param string $commandName        	
 | |
| 	 * @param string $defaultLevel        	
 | |
| 	 * @return string
 | |
| 	 */
 | |
| 	private function getRightsLevel($commandName, $defaultLevel) {
 | |
| 		$command_rights = $this->config->xpath('//' . strtolower($commandName) . '/..');
 | |
| 		if (empty($command_rights)) return $defaultLevel;
 | |
| 		$rights = $this->mc->authentication->RIGHTS_LEVELS;
 | |
| 		$highest_level = null;
 | |
| 		foreach ($command_rights as $right) {
 | |
| 			$levelName = $right->getName();
 | |
| 			$levelInt = array_search($levelName, $rights);
 | |
| 			if ($levelInt !== false && ($highest_level === null || $highest_level < $levelInt)) {
 | |
| 				$highest_level = $levelInt;
 | |
| 			}
 | |
| 		}
 | |
| 		if ($highest_level === null || !array_key_exists($highest_level, $rights)) return $defaultLevel;
 | |
| 		return $rights[$highest_level];
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Send ManiaControl version
 | |
| 	 */
 | |
| 	private function command_version($chat) {
 | |
| 		$login = $chat[1][1];
 | |
| 		if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('version', 'all'))) {
 | |
| 			// Not allowed!
 | |
| 			$this->mc->authentication->sendNotAllowed($login);
 | |
| 			return;
 | |
| 		}
 | |
| 		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());
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Send help list
 | |
| 	 */
 | |
| 	private function command_help($chat) {
 | |
| 		$login = $chat[1][1];
 | |
| 		if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('help', 'all'))) {
 | |
| 			// Not allowed!
 | |
| 			$this->mc->authentication->sendNotAllowed($login);
 | |
| 			return;
 | |
| 		}
 | |
| 		// 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++) {
 | |
| 			if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel($commands[$index], 'superadmin'))) {
 | |
| 				unset($commands[$index]);
 | |
| 			}
 | |
| 		}
 | |
| 		$count = count($commands);
 | |
| 		$index = 0;
 | |
| 		foreach ($commands as $command) {
 | |
| 			$list .= $command;
 | |
| 			if ($index < $count - 1) {
 | |
| 				$list .= ', ';
 | |
| 			}
 | |
| 			$index++;
 | |
| 		}
 | |
| 		if (!$this->mc->chat->sendInformation($list, $login)) {
 | |
| 			trigger_error("Couldn't send help list to '" . $login . "'. " . $this->mc->getClientErrorText());
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Handle getplanets command
 | |
| 	 */
 | |
| 	private function command_getplanets($chat) {
 | |
| 		$login = $chat[1][1];
 | |
| 		if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('getplanets', 'admin'))) {
 | |
| 			// Not allowed!
 | |
| 			$this->mc->authentication->sendNotAllowed($login);
 | |
| 			return;
 | |
| 		}
 | |
| 		if (!$this->mc->client->query('GetServerPlanets')) {
 | |
| 			trigger_error("Couldn't retrieve server planets. " . $this->mc->getClientErrorText());
 | |
| 		}
 | |
| 		else {
 | |
| 			$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());
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Handle donate command
 | |
| 	 */
 | |
| 	private function command_donate($chat) {
 | |
| 		$login = $chat[1][1];
 | |
| 		if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('donate', 'all'))) {
 | |
| 			// Not allowed!
 | |
| 			$this->mc->authentication->sendNotAllowed($login);
 | |
| 			return;
 | |
| 		}
 | |
| 		$params = explode(' ', $chat[1][2]);
 | |
| 		if (count($params) < 2) {
 | |
| 			// TODO: send usage information
 | |
| 			return;
 | |
| 		}
 | |
| 		$amount = (int) $params[1];
 | |
| 		if (!$amount || $amount <= 0) {
 | |
| 			// TODO: send usage information
 | |
| 			return;
 | |
| 		}
 | |
| 		if (count($params) >= 3) {
 | |
| 			$receiver = $params[2];
 | |
| 			$receiverPlayer = $this->mc->database->getPlayer($receiver);
 | |
| 			$receiverName = ($receiverPlayer ? $receiverPlayer['NickName'] : $receiver);
 | |
| 		}
 | |
| 		else {
 | |
| 			$receiver = '';
 | |
| 			$receiverName = $this->mc->server->getName();
 | |
| 		}
 | |
| 		$message = 'Donate ' . $amount . ' Planets to $<' . $receiverName . '$>?';
 | |
| 		if (!$this->mc->client->query('SendBill', $login, $amount, $message, $receiver)) {
 | |
| 			trigger_error(
 | |
| 					"Couldn't create donation of " . $amount . " planets from '" . $login . "' for '" . $receiver . "'. " .
 | |
| 							 $this->mc->getClientErrorText());
 | |
| 			$this->mc->chat->sendError("Creating donation failed.", $login);
 | |
| 		}
 | |
| 		else {
 | |
| 			$bill = $this->mc->client->getResponse();
 | |
| 			$this->openBills[$bill] = $login;
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Handle pay command
 | |
| 	 */
 | |
| 	private function command_pay($chat) {
 | |
| 		$login = $chat[1][1];
 | |
| 		if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('pay', 'superadmin'))) {
 | |
| 			// Not allowed!
 | |
| 			$this->mc->authentication->sendNotAllowed($login);
 | |
| 			return;
 | |
| 		}
 | |
| 		$params = explode(' ', $chat[1][2]);
 | |
| 		if (count($params) < 2) {
 | |
| 			// TODO: send usage information
 | |
| 			return;
 | |
| 		}
 | |
| 		$amount = (int) $params[1];
 | |
| 		if (!$amount || $amount <= 0) {
 | |
| 			// TODO: send usage information
 | |
| 			return;
 | |
| 		}
 | |
| 		if (count($params) >= 3) {
 | |
| 			$receiver = $params[2];
 | |
| 		}
 | |
| 		else {
 | |
| 			$receiver = $login;
 | |
| 		}
 | |
| 		$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->mc->getClientErrorText());
 | |
| 			$this->mc->chat->sendError("Creating payout failed.", $login);
 | |
| 		}
 | |
| 		else {
 | |
| 			$bill = $this->mc->client->getResponse();
 | |
| 			$this->openBills[$bill] = $login;
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Handle networkstats command
 | |
| 	 */
 | |
| 	private function command_networkstats($chat) {
 | |
| 		$login = $chat[1][1];
 | |
| 		if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('networkstats', 'superadmin'))) {
 | |
| 			// Not allowed!
 | |
| 			$this->mc->authentication->sendNotAllowed($login);
 | |
| 			return;
 | |
| 		}
 | |
| 		$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->mc->chat->sendInformation($message, $login)) {
 | |
| 			trigger_error("Couldn't send network stats to '" . $login . "'. " . $this->mc->getClientErrorText());
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Handle systeminfo command
 | |
| 	 */
 | |
| 	private function command_systeminfo($chat) {
 | |
| 		$login = $chat[1][1];
 | |
| 		if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('systeminfo', 'superadmin'))) {
 | |
| 			// Not allowed!
 | |
| 			$this->mc->authentication->sendNotAllowed($login);
 | |
| 			return;
 | |
| 		}
 | |
| 		$systemInfo = $this->mc->server->getSystemInfo();
 | |
| 		$message = 'SystemInfo: ' . 'ip=' . $systemInfo['PublishedIp'] . ', ' . 'port=' . $systemInfo['Port'] . ', ' . 'p2pPort=' .
 | |
| 				 $systemInfo['P2PPort'] . ', ' . 'title=' . $systemInfo['TitleId'] . ', ' . 'login=' . $systemInfo['ServerLogin'] . ', ';
 | |
| 		if (!$this->mc->chat->sendInformation($message, $login)) {
 | |
| 			trigger_error("Couldn't send system info to '" . $login . "'. " . $this->mc->getClientErrorText());
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Handle shutdown command
 | |
| 	 */
 | |
| 	private function command_shutdown($chat) {
 | |
| 		$login = $chat[1][1];
 | |
| 		if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('shutdown', 'superadmin'))) {
 | |
| 			// Not allowed!
 | |
| 			$this->mc->authentication->sendNotAllowed($login);
 | |
| 			return;
 | |
| 		}
 | |
| 		$this->mc->quit("ManiaControl shutdown requested by '{$login}'");
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Handle startwarmup command
 | |
| 	 */
 | |
| 	private function command_startwarmup($chat) {
 | |
| 		$login = $chat[1][1];
 | |
| 		if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('startwarmup', 'operator'))) {
 | |
| 			// Not allowed!
 | |
| 			$this->mc->authentication->sendNotAllowed($login);
 | |
| 			return;
 | |
| 		}
 | |
| 		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!');
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Handle stopwarmup command
 | |
| 	 */
 | |
| 	private function command_stopwarmup($chat) {
 | |
| 		$login = $chat[1][1];
 | |
| 		if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('stopwarmup', 'operator'))) {
 | |
| 			// Not allowed!
 | |
| 			$this->mc->authentication->sendNotAllowed($login);
 | |
| 			return;
 | |
| 		}
 | |
| 		if (!$this->mc->client->query("SetWarmUp", false)) {
 | |
| 			trigger_error("Couldn't stop warmup. " . $this->mc->getClientErrorText());
 | |
| 		}
 | |
| 		else {
 | |
| 			$player = $this->mc->database->getPlayer($login);
 | |
| 			$this->mc->chat->sendInformation('$<' . ($player ? $player['NickName'] : $login) . '$> stopped WarmUp!');
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Handle server shutdown command
 | |
| 	 */
 | |
| 	private function command_shutdownserver($chat) {
 | |
| 		$login = $chat[1][1];
 | |
| 		if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('shutdownserver', 'superadmin'))) {
 | |
| 			// Not allowed!
 | |
| 			$this->mc->authentication->sendNotAllowed($login);
 | |
| 			return;
 | |
| 		}
 | |
| 		// 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) {
 | |
| 					$this->mc->chat->sendInformation("The server will shutdown as soon as it's empty!", $login);
 | |
| 				}
 | |
| 				else {
 | |
| 					$this->mc->chat->sendInformation("Empty-shutdown cancelled!", $login);
 | |
| 				}
 | |
| 			}
 | |
| 			else {
 | |
| 				$delay = (int) $param;
 | |
| 				if ($delay <= 0) {
 | |
| 					// Cancel shutdown
 | |
| 					$this->serverShutdownTime = -1;
 | |
| 					$this->mc->chat->sendInformation("Delayed shutdown cancelled!", $login);
 | |
| 				}
 | |
| 				else {
 | |
| 					// Trigger delayed shutdown
 | |
| 					$this->serverShutdownTime = time() + $delay * 60.;
 | |
| 					$this->mc->chat->sendInformation("The server will shut down in " . $delay . " minutes!", $login);
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 		else {
 | |
| 			$this->shutdownServer($login);
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Handle kick command
 | |
| 	 */
 | |
| 	private function command_kick($chat) {
 | |
| 		$login = $chat[1][1];
 | |
| 		if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('kick', 'operator'))) {
 | |
| 			// Not allowed!
 | |
| 			$this->mc->authentication->sendNotAllowed($login);
 | |
| 			return;
 | |
| 		}
 | |
| 		$params = explode(' ', $chat[1][2], 3);
 | |
| 		if (count($params) < 2) {
 | |
| 			// TODO: show usage
 | |
| 			return;
 | |
| 		}
 | |
| 		$target = $params[1];
 | |
| 		$players = $this->mc->server->getPlayers();
 | |
| 		foreach ($players as $player) {
 | |
| 			if ($player['Login'] != $target) continue;
 | |
| 			// Kick player
 | |
| 			if (isset($params[2])) {
 | |
| 				$message = $params[2];
 | |
| 			}
 | |
| 			else {
 | |
| 				$message = "";
 | |
| 			}
 | |
| 			if (!$this->mc->client->query('Kick', $target, $message)) {
 | |
| 				trigger_error("Couldn't kick player '" . $target . "'! " . $this->mc->getClientErrorText());
 | |
| 			}
 | |
| 			return;
 | |
| 		}
 | |
| 		$this->mc->chat->sendError("Invalid player login.", $login);
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Handle removemap command
 | |
| 	 */
 | |
| 	private function command_removemap($chat) {
 | |
| 		$login = $chat[1][1];
 | |
| 		if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('kick', 'operator'))) {
 | |
| 			// Not allowed!
 | |
| 			$this->mc->authentication->sendNotAllowed($login);
 | |
| 			return;
 | |
| 		}
 | |
| 		// TODO: allow params
 | |
| 		// Get map name
 | |
| 		$map = $this->mc->server->getMap();
 | |
| 		if (!$map) {
 | |
| 			$this->mc->chat->sendError("Couldn't remove map.", $login);
 | |
| 		}
 | |
| 		else {
 | |
| 			$mapName = $map['FileName'];
 | |
| 			
 | |
| 			// Remove map
 | |
| 			if (!$this->mc->client->query('RemoveMap', $mapName)) {
 | |
| 				trigger_error("Couldn't remove current map. " . $this->mc->getClientErrorText());
 | |
| 			}
 | |
| 			else {
 | |
| 				$this->mc->chat->sendSuccess('Map removed.', $login);
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Handle addmap command
 | |
| 	 */
 | |
| 	private function command_addmap($chat) {
 | |
| 		$login = $chat[1][1];
 | |
| 		if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('addmap', 'operator'))) {
 | |
| 			// Not allowed!
 | |
| 			$this->mc->authentication->sendNotAllowed($login);
 | |
| 			return;
 | |
| 		}
 | |
| 		$params = explode(' ', $chat[1][2], 2);
 | |
| 		if (count($params) < 2) {
 | |
| 			// TODO: show usage
 | |
| 			return;
 | |
| 		}
 | |
| 		// Check if ManiaControl can even write to the maps dir
 | |
| 		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->mc->client->getResponse();
 | |
| 			if (!is_dir($mapDir)) {
 | |
| 				trigger_error("ManiaControl doesn't have have access to the maps directory in '" . $mapDir . "'.");
 | |
| 				$this->mc->chat->sendError("ManiaControl doesn't have access to the maps directory.", $login);
 | |
| 				return;
 | |
| 			}
 | |
| 			$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->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->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->mc->chat->sendError('Invalid MX-Id!', $login);
 | |
| 					return;
 | |
| 				}
 | |
| 				$mapInfo = json_decode($mapInfo, true);
 | |
| 				$url = 'http://' . $title . '.mania-exchange.com/tracks/download/' . $params[1];
 | |
| 				$file = Tools::loadFile($url);
 | |
| 				if (!$file) {
 | |
| 					// Download error
 | |
| 					$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->mc->chat->sendError('Saving map failed!', $login);
 | |
| 					return;
 | |
| 				}
 | |
| 				// Check for valid map
 | |
| 				if (!$this->mc->client->query('CheckMapForCurrentServerParams', $fileName)) {
 | |
| 					trigger_error("Couldn't check if map is valid. " . $this->mc->getClientErrorText());
 | |
| 				}
 | |
| 				else {
 | |
| 					$response = $this->mc->client->getResponse();
 | |
| 					if (!$response) {
 | |
| 						// Inalid map type
 | |
| 						$this->mc->chat->sendError("Invalid map type.", $login);
 | |
| 						return;
 | |
| 					}
 | |
| 				}
 | |
| 				// Add map to map list
 | |
| 				if (!$this->mc->client->query('InsertMap', $fileName)) {
 | |
| 					$this->mc->chat->sendError("Couldn't add map to match settings!", $login);
 | |
| 					return;
 | |
| 				}
 | |
| 				$this->mc->chat->sendSuccess('Map $<' . $mapInfo['Name'] . '$> successfully added!');
 | |
| 			}
 | |
| 			else {
 | |
| 				// TODO: check if map exists locally
 | |
| 				// TODO: load map from direct url
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Handle nextmap command
 | |
| 	 */
 | |
| 	private function command_nextmap($chat) {
 | |
| 		$login = $chat[1][1];
 | |
| 		if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('nextmap', 'operator'))) {
 | |
| 			// Not allowed!
 | |
| 			$this->mc->authentication->sendNotAllowed($login);
 | |
| 			return;
 | |
| 		}
 | |
| 		if (!$this->mc->client->query('NextMap')) {
 | |
| 			trigger_error("Couldn't skip map. " . $this->mc->getClientErrorText());
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Handle retartmap command
 | |
| 	 */
 | |
| 	private function command_restartmap($chat) {
 | |
| 		$login = $chat[1][1];
 | |
| 		if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('restartmap', 'operator'))) {
 | |
| 			// Not allowed!
 | |
| 			$this->mc->authentication->sendNotAllowed($login);
 | |
| 			return;
 | |
| 		}
 | |
| 		if (!$this->mc->client->query('RestartMap')) {
 | |
| 			trigger_error("Couldn't restart map. " . $this->mc->getClientErrorText());
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Handle getservername command
 | |
| 	 */
 | |
| 	private function command_getservername($chat) {
 | |
| 		$login = $chat[1][1];
 | |
| 		if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('getservername', 'operator'))) {
 | |
| 			// Not allowed!
 | |
| 			$this->mc->authentication->sendNotAllowed($login);
 | |
| 			return;
 | |
| 		}
 | |
| 		$serverName = $this->mc->server->getName();
 | |
| 		$this->mc->chat->sendInformation("Server Name: " . $serverName, $login);
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Handle setservername command
 | |
| 	 */
 | |
| 	private function command_setservername($chat) {
 | |
| 		$login = $chat[1][1];
 | |
| 		if (!$this->mc->authentication->checkRight($login, $this->getRightsLevel('setservername', 'admin'))) {
 | |
| 			// Not allowed!
 | |
| 			$this->mc->authentication->sendNotAllowed($login);
 | |
| 			return;
 | |
| 		}
 | |
| 		$params = explode(' ', $chat[1][2], 2);
 | |
| 		if (count($params) < 2) {
 | |
| 			// TODO: show usage
 | |
| 			return;
 | |
| 		}
 | |
| 		$serverName = $params[1];
 | |
| 		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->mc->server->getName();
 | |
| 			$this->mc->chat->sendInformation("New Name: " . $serverName);
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Check stuff each 5 seconds
 | |
| 	 */
 | |
| 	public function each5Seconds() {
 | |
| 		// Empty shutdown
 | |
| 		if ($this->serverShutdownEmpty) {
 | |
| 			$players = $this->mc->server->getPlayers();
 | |
| 			if (count($players) <= 0) {
 | |
| 				$this->shutdownServer('empty');
 | |
| 			}
 | |
| 		}
 | |
| 		
 | |
| 		// Delayed shutdown
 | |
| 		if ($this->serverShutdownTime > 0) {
 | |
| 			if (time() >= $this->serverShutdownTime) {
 | |
| 				$this->shutdownServer('delayed');
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Perform server shutdown
 | |
| 	 */
 | |
| 	private function shutdownServer($login = '#') {
 | |
| 		$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->mc->quit("Server shutdown requested by '" . $login . "'");
 | |
| 	}
 | |
| }
 | |
| 
 | |
| ?>
 |