2016-10-14 20:20:24 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Pterodactyl - Panel
|
2017-01-24 22:57:08 +00:00
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
2016-10-14 20:20:24 +00:00
|
|
|
*
|
2017-09-26 02:43:01 +00:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2016-10-14 20:20:24 +00:00
|
|
|
*/
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2017-03-16 00:52:37 +00:00
|
|
|
namespace Pterodactyl\Providers;
|
2016-10-14 20:20:24 +00:00
|
|
|
|
2017-03-16 00:52:37 +00:00
|
|
|
use File;
|
2017-04-08 16:05:29 +00:00
|
|
|
use Cache;
|
|
|
|
use Carbon;
|
2017-04-08 01:25:17 +00:00
|
|
|
use Request;
|
2018-01-14 18:06:15 +00:00
|
|
|
use Pterodactyl\Models\ApiKey;
|
2017-03-16 00:52:37 +00:00
|
|
|
use Illuminate\Support\ServiceProvider;
|
2017-07-08 20:51:13 +00:00
|
|
|
use Pterodactyl\Services\ApiKeyService;
|
2016-10-14 20:20:24 +00:00
|
|
|
|
2017-03-16 00:52:37 +00:00
|
|
|
class MacroServiceProvider extends ServiceProvider
|
2016-12-07 22:46:38 +00:00
|
|
|
{
|
2016-10-14 20:20:24 +00:00
|
|
|
/**
|
2017-03-16 00:52:37 +00:00
|
|
|
* Bootstrap the application services.
|
2016-10-14 20:20:24 +00:00
|
|
|
*/
|
2017-03-16 00:52:37 +00:00
|
|
|
public function boot()
|
2016-10-14 20:20:24 +00:00
|
|
|
{
|
2017-03-16 00:52:37 +00:00
|
|
|
File::macro('humanReadableSize', function ($path, $precision = 2) {
|
|
|
|
$size = File::size($path);
|
|
|
|
static $units = ['B', 'kB', 'MB', 'GB', 'TB'];
|
|
|
|
|
|
|
|
$i = 0;
|
|
|
|
while (($size / 1024) > 0.9) {
|
|
|
|
$size = $size / 1024;
|
2017-11-05 18:59:51 +00:00
|
|
|
$i++;
|
2017-03-16 00:52:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return round($size, ($i < 2) ? 0 : $precision) . ' ' . $units[$i];
|
|
|
|
});
|
2017-04-08 01:25:17 +00:00
|
|
|
|
|
|
|
Request::macro('apiKey', function () {
|
|
|
|
if (! Request::bearerToken()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$parts = explode('.', Request::bearerToken());
|
|
|
|
|
2017-07-08 20:51:13 +00:00
|
|
|
if (count($parts) === 2 && strlen($parts[0]) === ApiKeyService::PUB_CRYPTO_BYTES * 2) {
|
2017-04-08 16:05:29 +00:00
|
|
|
// Because the key itself isn't changing frequently, we simply cache this for
|
|
|
|
// 15 minutes to speed up the API and keep requests flowing.
|
|
|
|
return Cache::tags([
|
|
|
|
'ApiKeyMacro',
|
|
|
|
'ApiKeyMacro:Key:' . $parts[0],
|
2017-04-09 23:16:39 +00:00
|
|
|
])->remember('ApiKeyMacro.' . $parts[0], Carbon::now()->addMinutes(15), function () use ($parts) {
|
2018-01-14 18:06:15 +00:00
|
|
|
return ApiKey::where('public', $parts[0])->first();
|
2017-04-08 16:05:29 +00:00
|
|
|
});
|
2017-04-08 01:25:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
2017-04-08 16:05:29 +00:00
|
|
|
|
2017-04-09 23:16:39 +00:00
|
|
|
Request::macro('apiKeyHasPermission', function ($permission) {
|
2017-04-08 16:05:29 +00:00
|
|
|
$key = Request::apiKey();
|
|
|
|
if (! $key) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Request::user()->can($permission, $key);
|
|
|
|
});
|
2016-10-14 20:20:24 +00:00
|
|
|
}
|
|
|
|
}
|