server directory class

This commit is contained in:
Steffen Schröder 2014-06-20 15:58:41 +02:00
parent 6fd042b57b
commit dfec7d0028
3 changed files with 60 additions and 25 deletions

View File

@ -0,0 +1,56 @@
<?php
namespace ManiaControl\Server;
use ManiaControl\ManiaControl;
/**
* Class offering Operations for the Server Directory
*
* @author ManiaControl Team <mail@maniacontrol.com>
* @copyright 2014 ManiaControl Team
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
class Directory {
/**
* Private Properties
*/
private $maniaControl = null;
/**
* Create new Server Directory Object
*
* @param ManiaControl $maniaControl
*/
public function __construct(ManiaControl $maniaControl) {
$this->maniaControl = $maniaControl;
}
/**
* Retrieve the Game Data Folder Path
*
* @return string
*/
public function getGameDataFolder() {
return $this->maniaControl->client->gameDataDirectory();
}
/**
* Retrieve the Maps Folder Path
*
* @return string
*/
public function getMapsFolder() {
return $this->maniaControl->client->getMapsDirectory();
}
/**
* Retrieve the Skins Folder Path
*
* @return string
*/
public function getSkinsFolder() {
return $this->maniaControl->client->getSkinsDirectory();
}
}

View File

@ -34,7 +34,7 @@ class Server implements CallbackListener {
public $p2pPort = -1; public $p2pPort = -1;
public $login = null; public $login = null;
public $titleId = null; public $titleId = null;
public $dataDirectory = null; public $directory = null;
public $serverCommands = null; public $serverCommands = null;
public $usageReporter = null; public $usageReporter = null;
public $rankingManager = null; public $rankingManager = null;
@ -55,6 +55,7 @@ class Server implements CallbackListener {
$this->maniaControl = $maniaControl; $this->maniaControl = $maniaControl;
$this->initTables(); $this->initTables();
$this->directory = new Directory($maniaControl);
$this->serverCommands = new ServerCommands($maniaControl); $this->serverCommands = new ServerCommands($maniaControl);
$this->usageReporter = new UsageReporter($maniaControl); $this->usageReporter = new UsageReporter($maniaControl);
$this->rankingManager = new RankingManager($maniaControl); $this->rankingManager = new RankingManager($maniaControl);
@ -198,28 +199,6 @@ class Server implements CallbackListener {
$statement->close(); $statement->close();
} }
/**
* Get Maps Directory
*
* @return string
*/
public function getMapsDirectory() {
$dataDirectory = $this->getDataDirectory();
return $dataDirectory . 'Maps' . DIRECTORY_SEPARATOR;
}
/**
* Get Game Data Directory
*
* @return string
*/
public function getDataDirectory() {
if (!$this->dataDirectory) {
$this->dataDirectory = $this->maniaControl->client->gameDataDirectory();
}
return $this->dataDirectory;
}
/** /**
* Get Server Player Info * Get Server Player Info
* *
@ -255,7 +234,7 @@ class Server implements CallbackListener {
* @return string * @return string
*/ */
public function getGhostReplay($login) { public function getGhostReplay($login) {
$dataDir = $this->getDataDirectory(); $dataDir = $this->directory->getGameDataFolder();
if (!$this->checkAccess($dataDir)) { if (!$this->checkAccess($dataDir)) {
return null; return null;
} }

View File

@ -989,7 +989,7 @@ class DedimaniaPlugin implements CallbackListener, CommandListener, TimerListene
// Set ghost replay // Set ghost replay
if ($record->rank <= 1) { if ($record->rank <= 1) {
$dataDirectory = $this->maniaControl->server->getDataDirectory(); $dataDirectory = $this->maniaControl->server->directory->getGameDataFolder();
if (!isset($this->dedimaniaData->directoryAccessChecked)) { if (!isset($this->dedimaniaData->directoryAccessChecked)) {
$access = $this->maniaControl->server->checkAccess($dataDirectory); $access = $this->maniaControl->server->checkAccess($dataDirectory);
if (!$access) { if (!$access) {