2017-04-08 01:25:17 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Pterodactyl - Panel
|
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
|
|
|
*
|
2017-09-26 02:43:01 +00:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2017-04-08 01:25:17 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Pterodactyl\Policies;
|
|
|
|
|
|
|
|
use Cache;
|
|
|
|
use Carbon;
|
|
|
|
use Pterodactyl\Models\User;
|
|
|
|
use Pterodactyl\Models\APIKey as Key;
|
|
|
|
use Pterodactyl\Models\APIPermission as Permission;
|
|
|
|
|
|
|
|
class APIKeyPolicy
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Checks if the API key has permission to perform an action.
|
|
|
|
*
|
|
|
|
* @param \Pterodactyl\Models\User $user
|
|
|
|
* @param \Pterodactyl\Models\APIKey $key
|
|
|
|
* @param string $permission
|
|
|
|
* @return bool
|
|
|
|
*/
|
2017-04-09 17:34:47 +00:00
|
|
|
protected function checkPermission(User $user, Key $key, $permission)
|
2017-04-08 01:25:17 +00:00
|
|
|
{
|
2017-04-09 22:59:54 +00:00
|
|
|
// Non-administrative users cannot use administrative routes.
|
2017-09-11 04:57:18 +00:00
|
|
|
if (! starts_with($key, 'user.') && ! $user->root_admin) {
|
2017-04-09 22:59:54 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-04-08 16:05:29 +00:00
|
|
|
// We don't tag this cache key with the user uuid because the key is already unique,
|
|
|
|
// and multiple users are not defiend for a single key.
|
|
|
|
$permissions = Cache::remember('APIKeyPolicy.' . $key->public, Carbon::now()->addSeconds(5), function () use ($key) {
|
2017-04-08 01:25:17 +00:00
|
|
|
return $key->permissions()->get()->transform(function ($item) {
|
|
|
|
return $item->permission;
|
|
|
|
})->values();
|
|
|
|
});
|
|
|
|
|
|
|
|
return $permissions->search($permission, true) !== false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-04-09 17:34:47 +00:00
|
|
|
* Determine if a user has permission to perform this action against the system.
|
|
|
|
*
|
2017-08-22 03:10:48 +00:00
|
|
|
* @param \Pterodactyl\Models\User $user
|
|
|
|
* @param string $permission
|
|
|
|
* @param \Pterodactyl\Models\APIKey $key
|
2017-04-08 01:25:17 +00:00
|
|
|
* @return bool
|
|
|
|
*/
|
2017-04-09 17:34:47 +00:00
|
|
|
public function before(User $user, $permission, Key $key)
|
2017-04-08 01:25:17 +00:00
|
|
|
{
|
2017-04-09 17:34:47 +00:00
|
|
|
return $this->checkPermission($user, $key, $permission);
|
2017-04-08 01:25:17 +00:00
|
|
|
}
|
|
|
|
}
|