TrackManiaControl/core/Server/Directory.php

105 lines
2.3 KiB
PHP
Raw Normal View History

2014-06-20 15:58:41 +02:00
<?php
namespace ManiaControl\Server;
use ManiaControl\Callbacks\CallbackListener;
use ManiaControl\Callbacks\CallbackManager;
use ManiaControl\Files\FileUtil;
2014-06-20 15:58:41 +02:00
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 implements CallbackListener {
/*
* Private properties
2014-06-20 15:58:41 +02:00
*/
/** @var ManiaControl $maniaControl */
2014-06-20 15:58:41 +02:00
private $maniaControl = null;
/**
* Construct new server directory instance
2014-06-20 15:58:41 +02:00
*
* @param ManiaControl $maniaControl
*/
public function __construct(ManiaControl $maniaControl) {
$this->maniaControl = $maniaControl;
// Callbacks
2014-08-13 11:05:52 +02:00
$this->maniaControl->getCallbackManager()->registerCallbackListener(CallbackManager::CB_MP_SERVERSTOP, $this, 'handleServerStopCallback');
2014-06-20 15:58:41 +02:00
}
/**
* Retrieve the Maps Folder Path
*
* @return string
*/
public function getMapsFolder() {
2014-08-13 11:05:52 +02:00
return $this->maniaControl->getClient()->getMapsDirectory();
2014-06-20 15:58:41 +02:00
}
/**
* Retrieve the Skins Folder Path
*
* @return string
*/
public function getSkinsFolder() {
2014-08-13 11:05:52 +02:00
return $this->maniaControl->getClient()->getSkinsDirectory();
2014-06-20 15:58:41 +02:00
}
/**
* Handle Server Stop Callback
*/
public function handleServerStopCallback() {
$this->cleanLogsFolder();
$this->cleanCacheFolder();
}
/**
* Clean the server logs folder
*
* @return bool
*/
private function cleanLogsFolder() {
return FileUtil::cleanDirectory($this->getLogsFolder());
}
/**
* Retrieve the Logs Folder Path
*
* @return string
*/
public function getLogsFolder() {
return $this->getGameDataFolder() . '..' . DIRECTORY_SEPARATOR . 'Logs' . DIRECTORY_SEPARATOR;
}
/**
* Retrieve the Game Data Folder Path
*
* @return string
*/
public function getGameDataFolder() {
2014-08-13 11:05:52 +02:00
return $this->maniaControl->getClient()->gameDataDirectory();
}
/**
* @return bool
*/
private function cleanCacheFolder() {
return FileUtil::cleanDirectory($this->getCacheFolder(), 50);
}
/**
* Retrieve the Cache Folder Path
*
* @return string
*/
public function getCacheFolder() {
return $this->getGameDataFolder() . '..' . DIRECTORY_SEPARATOR . 'CommonData' . DIRECTORY_SEPARATOR . 'Cache' . DIRECTORY_SEPARATOR;
}
2014-06-20 15:58:41 +02:00
}