mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-21 06:19:38 +08:00
216 lines
6.1 KiB
PHP
216 lines
6.1 KiB
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use Log;
|
|
use Illuminate\Support\Str;
|
|
use Storage as LaravelStorage;
|
|
use App\Exceptions\PrettyPageException;
|
|
|
|
class Utils
|
|
{
|
|
/**
|
|
* Returns the client IP address.
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function getClientIp()
|
|
{
|
|
if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
|
|
$ip = $_SERVER['HTTP_CLIENT_IP'];
|
|
} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
|
|
$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
|
|
} else {
|
|
$ip = $_SERVER['REMOTE_ADDR'];
|
|
}
|
|
|
|
return $ip;
|
|
}
|
|
|
|
public static function versionCompare($version1, $version2, $operator = null)
|
|
{
|
|
$versions = [$version1, $version2];
|
|
|
|
// pre-processing for version contains hyphen
|
|
foreach ([0, 1] as $offset) {
|
|
if (false !== ($result = self::parseVersionWithHyphen($versions[$offset]))) {
|
|
$versions[$offset] = $result;
|
|
} else {
|
|
$versions[$offset] = ['main' => $versions[$offset], 'sub' => ''];
|
|
}
|
|
}
|
|
|
|
if (version_compare($versions[0]['main'], $versions[1]['main'], '=')) {
|
|
// v3.2-pr < v3.2
|
|
if ($versions[0]['sub'] != "" || $versions[1]['sub'] != "") {
|
|
return version_compare($versions[0]['sub'], $versions[1]['sub'], $operator);
|
|
}
|
|
}
|
|
|
|
return version_compare($versions[0]['main'], $versions[1]['main'], $operator);
|
|
}
|
|
|
|
public static function parseVersionWithHyphen($version)
|
|
{
|
|
preg_match('/(.*)-(.*)/', $version, $matches);
|
|
|
|
if (isset($matches[2])) {
|
|
return [
|
|
'main' => $matches[1],
|
|
'sub' => $matches[2]
|
|
];
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Rename uploaded file
|
|
*
|
|
* @param array $file files uploaded via HTTP POST
|
|
* @return string $hash sha256 hash of file
|
|
*/
|
|
public static function upload($file)
|
|
{
|
|
$path = 'tmp'.time();
|
|
$absolute_path = storage_path("textures/$path");
|
|
|
|
try {
|
|
if (false === move_uploaded_file($file['tmp_name'], $absolute_path)) {
|
|
throw new \Exception('Failed to remove uploaded files, please check the permission', 1);
|
|
}
|
|
} catch (\Exception $e) {
|
|
Log::warning("Failed to move uploaded file, $e");
|
|
} finally {
|
|
if (file_exists($absolute_path)) {
|
|
$hash = hash_file('sha256', $absolute_path);
|
|
|
|
if (!LaravelStorage::disk('textures')->has($hash)) {
|
|
LaravelStorage::disk('textures')->move($path, $hash);
|
|
} else {
|
|
// delete the temp file
|
|
unlink($absolute_path);
|
|
}
|
|
|
|
return $hash;
|
|
} else {
|
|
Log::warning("Failed to upload file $path");
|
|
}
|
|
}
|
|
}
|
|
|
|
public static function download($url, $path)
|
|
{
|
|
@set_time_limit(0);
|
|
|
|
touch($path);
|
|
|
|
Log::info("[File Downloader] Download started, source: $url");
|
|
Log::info("[File Downloader] ======================================");
|
|
|
|
if ($fp = fopen($url, "rb")) {
|
|
|
|
if (!$download_fp = fopen($path, "wb")) {
|
|
return false;
|
|
}
|
|
|
|
while (!feof($fp)) {
|
|
|
|
if (!file_exists($path)) {
|
|
// cancel downloading if destination is no longer available
|
|
fclose($download_fp);
|
|
|
|
return false;
|
|
}
|
|
|
|
Log::info("[Download] 1024 bytes wrote");
|
|
fwrite($download_fp, fread($fp, 1024 * 8 ), 1024 * 8);
|
|
}
|
|
|
|
fclose($download_fp);
|
|
fclose($fp);
|
|
|
|
Log::info("[File Downloader] Finished downloading, data stored to: $path");
|
|
Log::info("[File Downloader] ===========================================");
|
|
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public static function getRemoteFileSize($url)
|
|
{
|
|
$regex = '/^Content-Length: *+\K\d++$/im';
|
|
|
|
if (!$fp = @fopen($url, 'rb')) {
|
|
return false;
|
|
}
|
|
|
|
if (
|
|
isset($http_response_header) &&
|
|
preg_match($regex, implode("\n", $http_response_header), $matches)
|
|
) {
|
|
return (int)$matches[0];
|
|
}
|
|
|
|
return strlen(stream_get_contents($fp));
|
|
}
|
|
|
|
/**
|
|
* Generate random string
|
|
*
|
|
* @param int $length
|
|
* @param bool $special_chars
|
|
* @return string
|
|
*/
|
|
public static function generateRndString($length, $special_chars = true)
|
|
{
|
|
$chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
|
|
if ($special_chars) $chars .= "!@#$%^&*()-_ []{}<>~`+=,.;:/?|";
|
|
|
|
$rnd_string = '';
|
|
for ($i = 0; $i < $length; $i++) {
|
|
$rnd_string .= $chars[mt_rand(0, strlen($chars) - 1)];
|
|
}
|
|
return $rnd_string;
|
|
}
|
|
|
|
public static function getTimeFormatted($timestamp = 0)
|
|
{
|
|
return ($timestamp == 0) ? date('Y-m-d H:i:s') : date('Y-m-d H:i:s', $timestamp);
|
|
}
|
|
|
|
/**
|
|
* Replace content of string according to given rules
|
|
*
|
|
* @param string $str
|
|
* @param array $rules
|
|
* @return string
|
|
*/
|
|
public static function getStringReplaced($str, $rules)
|
|
{
|
|
foreach ($rules as $search => $replace) {
|
|
$str = str_replace($search, $replace, $str);
|
|
}
|
|
return $str;
|
|
}
|
|
|
|
public static function convertUploadFileError($errno = 0)
|
|
{
|
|
$phpFileUploadErrors = [
|
|
0 => 'There is no error, the file uploaded with success',
|
|
1 => 'The uploaded file exceeds the upload_max_filesize directive in php.ini',
|
|
2 => 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form',
|
|
3 => 'The uploaded file was only partially uploaded',
|
|
4 => 'No file was uploaded',
|
|
6 => 'Missing a temporary folder',
|
|
7 => 'Failed to write file to disk.',
|
|
8 => 'A PHP extension stopped the file upload.',
|
|
];
|
|
|
|
return $phpFileUploadErrors[$errno];
|
|
}
|
|
|
|
}
|