TrackManiaControl/application/core/Files/FileUtil.php

155 lines
3.7 KiB
PHP
Raw Normal View History

<?php
2014-02-07 00:26:32 +01:00
namespace ManiaControl\Files;
2014-03-31 21:04:15 +02:00
use ManiaControl\Formatter;
2014-05-02 17:40:47 +02:00
use ManiaControl\ManiaControl;
/**
* Files Utility Class
2014-05-02 17:40:47 +02:00
*
* @author ManiaControl Team <mail@maniacontrol.com>
* @copyright 2014 ManiaControl Team
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
2013-11-27 02:42:39 +01:00
abstract class FileUtil {
/*
* Constants
*/
const FOLDER_NAME_TEMP = '/temp/';
2014-01-06 14:22:48 +01:00
/**
* Load a remote file
2014-05-02 17:40:47 +02:00
*
* @param string $url
2013-12-27 21:10:53 +01:00
* @param string $contentType
* @return string || null
*/
2013-12-27 21:10:53 +01:00
public static function loadFile($url, $contentType = 'UTF-8') {
if (!$url) {
return null;
}
2014-05-02 17:40:47 +02:00
$urlData = parse_url($url);
$port = (isset($urlData['port']) ? $urlData['port'] : 80);
2014-02-07 12:30:53 +01:00
$urlQuery = isset($urlData['query']) ? "?" . $urlData['query'] : "";
2014-05-02 17:40:47 +02:00
$fsock = fsockopen($urlData['host'], $port);
stream_set_timeout($fsock, 3);
2014-05-02 17:40:47 +02:00
2014-02-07 12:30:53 +01:00
$query = 'GET ' . $urlData['path'] . $urlQuery . ' HTTP/1.0' . PHP_EOL;
$query .= 'Host: ' . $urlData['host'] . PHP_EOL;
2013-12-27 21:10:53 +01:00
$query .= 'Content-Type: ' . $contentType . PHP_EOL;
$query .= 'User-Agent: ManiaControl v' . ManiaControl::VERSION . PHP_EOL;
$query .= PHP_EOL;
2014-05-02 17:40:47 +02:00
fwrite($fsock, $query);
2014-05-02 17:40:47 +02:00
$buffer = '';
2014-05-02 17:40:47 +02:00
$info = array('timed_out' => false);
while (!feof($fsock) && !$info['timed_out']) {
$buffer .= fread($fsock, 1024);
$info = stream_get_meta_data($fsock);
}
fclose($fsock);
2014-05-02 17:40:47 +02:00
if ($info['timed_out'] || !$buffer) {
return null;
}
if (substr($buffer, 9, 3) != "200") {
return null;
}
2014-05-02 17:40:47 +02:00
$result = explode("\r\n\r\n", $buffer, 2);
2014-05-02 17:40:47 +02:00
if (count($result) < 2) {
return null;
}
2014-05-02 17:40:47 +02:00
return $result[1];
}
2014-01-06 14:22:48 +01:00
/**
* Load config xml-file
2014-05-02 17:40:47 +02:00
*
2014-01-06 14:22:48 +01:00
* @param string $fileName
* @return \SimpleXMLElement
*/
public static function loadConfig($fileName) {
$fileLocation = ManiaControlDir . '/configs/' . $fileName;
if (!file_exists($fileLocation)) {
trigger_error("Config file doesn't exist! ({$fileName})");
return null;
}
if (!is_readable($fileLocation)) {
2014-05-01 20:15:58 +02:00
trigger_error("Config file isn't readable! Please check your file permissions. ({$fileName})");
return null;
}
return simplexml_load_file($fileLocation);
}
2013-11-27 02:42:39 +01:00
/**
* Return file name cleared from special characters
2014-05-02 17:40:47 +02:00
*
2014-01-06 14:22:48 +01:00
* @param string $fileName
2013-11-27 02:42:39 +01:00
* @return string
*/
public static function getClearedFileName($fileName) {
2014-03-31 21:04:15 +02:00
$fileName = Formatter::stripCodes($fileName);
$fileName = str_replace(array('\\', '/', ':', '*', '?', '"', '<', '>', '|'), '_', $fileName);
$fileName = preg_replace('/[^[:print:]]/', '', $fileName);
2014-03-31 21:04:15 +02:00
return $fileName;
2013-11-27 02:42:39 +01:00
}
2014-05-02 17:40:47 +02:00
/**
* Delete the Temporary Folder if it's empty
*
* @return bool
*/
public static function removeTempFolder() {
$tempFolder = self::getTempFolder(false);
return @rmdir($tempFolder);
}
/**
* Get the Temporary Folder and create it if necessary
2014-05-02 17:40:47 +02:00
*
* @param bool $createIfNecessary
* @return string
*/
public static function getTempFolder($createIfNecessary = true) {
$tempFolder = ManiaControlDir . self::FOLDER_NAME_TEMP;
if ($createIfNecessary && !is_dir($tempFolder)) {
mkdir($tempFolder);
}
return $tempFolder;
}
/**
* Check if ManiaControl has sufficient Access to write to Files in the given Directories
2014-05-02 17:40:47 +02:00
*
* @param mixed $directories
* @return bool
*/
public static function checkWritePermissions($directories) {
if (!is_array($directories)) {
$directories = array($directories);
}
2014-05-02 17:40:47 +02:00
foreach ($directories as $directory) {
$dir = new \RecursiveDirectoryIterator(ManiaControlDir . $directory);
foreach (new \RecursiveIteratorIterator($dir) as $fileName => $file) {
if (substr($fileName, 0, 1) === '.') {
continue;
}
if (!is_writable($fileName)) {
$message = "Write-Access missing for File '{$fileName}'!";
2014-05-02 15:12:28 +02:00
logMessage($message);
return false;
}
}
}
2014-05-02 17:40:47 +02:00
return true;
}
}