2018-01-12 04:49:46 +00:00
|
|
|
<?php
|
|
|
|
|
2018-01-20 03:47:06 +00:00
|
|
|
namespace Pterodactyl\Transformers\Api\Application;
|
2018-01-12 04:49:46 +00:00
|
|
|
|
2021-01-23 20:09:16 +00:00
|
|
|
use Carbon\CarbonImmutable;
|
2018-01-14 18:06:15 +00:00
|
|
|
use Pterodactyl\Models\ApiKey;
|
2018-01-12 04:49:46 +00:00
|
|
|
use Illuminate\Container\Container;
|
2018-03-04 22:30:16 +00:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2018-01-12 04:49:46 +00:00
|
|
|
use League\Fractal\TransformerAbstract;
|
|
|
|
use Pterodactyl\Services\Acl\Api\AdminAcl;
|
2018-02-25 21:30:56 +00:00
|
|
|
use Pterodactyl\Exceptions\Transformer\InvalidTransformerLevelException;
|
2018-01-12 04:49:46 +00:00
|
|
|
|
2018-03-04 22:30:16 +00:00
|
|
|
/**
|
|
|
|
* @method array transform(Model $model)
|
|
|
|
*/
|
2018-01-12 04:49:46 +00:00
|
|
|
abstract class BaseTransformer extends TransformerAbstract
|
|
|
|
{
|
2021-01-23 20:33:34 +00:00
|
|
|
public const RESPONSE_TIMEZONE = 'UTC';
|
2018-01-13 20:08:19 +00:00
|
|
|
|
2021-01-07 17:21:09 +00:00
|
|
|
private ApiKey $key;
|
2018-01-12 04:49:46 +00:00
|
|
|
|
2021-01-07 17:21:09 +00:00
|
|
|
private bool $rootAdmin;
|
2021-01-05 16:17:44 +00:00
|
|
|
|
2018-01-26 03:26:06 +00:00
|
|
|
/**
|
|
|
|
* Return the resource name for the JSONAPI output.
|
|
|
|
*/
|
|
|
|
abstract public function getResourceName(): string;
|
|
|
|
|
2018-01-20 03:47:06 +00:00
|
|
|
/**
|
|
|
|
* BaseTransformer constructor.
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
// Transformers allow for dependency injection on the handle method.
|
|
|
|
if (method_exists($this, 'handle')) {
|
|
|
|
Container::getInstance()->call([$this, 'handle']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-12 04:49:46 +00:00
|
|
|
/**
|
|
|
|
* Set the HTTP request class being used for this request.
|
|
|
|
*
|
|
|
|
* @return $this
|
|
|
|
*/
|
2018-01-14 18:06:15 +00:00
|
|
|
public function setKey(ApiKey $key)
|
2018-01-12 04:49:46 +00:00
|
|
|
{
|
|
|
|
$this->key = $key;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the request instance being used for this transformer.
|
|
|
|
*/
|
2018-01-14 18:06:15 +00:00
|
|
|
public function getKey(): ApiKey
|
2018-01-12 04:49:46 +00:00
|
|
|
{
|
|
|
|
return $this->key;
|
|
|
|
}
|
|
|
|
|
2021-01-05 16:17:44 +00:00
|
|
|
/**
|
|
|
|
* ?
|
|
|
|
*
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
public function setRootAdmin(bool $rootAdmin)
|
|
|
|
{
|
|
|
|
$this->rootAdmin = $rootAdmin;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ?
|
|
|
|
*/
|
|
|
|
public function isRootAdmin(): bool
|
|
|
|
{
|
|
|
|
return $this->rootAdmin;
|
|
|
|
}
|
|
|
|
|
2018-01-12 04:49:46 +00:00
|
|
|
/**
|
|
|
|
* Determine if the API key loaded onto the transformer has permission
|
|
|
|
* to access a different resource. This is used when including other
|
|
|
|
* models on a transformation request.
|
|
|
|
*/
|
|
|
|
protected function authorize(string $resource): bool
|
|
|
|
{
|
2021-01-05 16:17:44 +00:00
|
|
|
if ($this->isRootAdmin()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-01-12 04:49:46 +00:00
|
|
|
return AdminAcl::check($this->getKey(), $resource, AdminAcl::READ);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new instance of the transformer and pass along the currently
|
|
|
|
* set API key.
|
|
|
|
*
|
2018-01-20 03:47:06 +00:00
|
|
|
* @return \Pterodactyl\Transformers\Api\Application\BaseTransformer
|
2018-02-25 21:30:56 +00:00
|
|
|
*
|
2021-01-01 22:55:30 +00:00
|
|
|
* @throws \Illuminate\Contracts\Container\BindingResolutionException
|
2018-02-25 21:30:56 +00:00
|
|
|
* @throws \Pterodactyl\Exceptions\Transformer\InvalidTransformerLevelException
|
2018-01-12 04:49:46 +00:00
|
|
|
*/
|
2018-02-25 21:30:56 +00:00
|
|
|
protected function makeTransformer(string $abstract, array $parameters = [])
|
2018-01-12 04:49:46 +00:00
|
|
|
{
|
2018-01-20 03:47:06 +00:00
|
|
|
/** @var \Pterodactyl\Transformers\Api\Application\BaseTransformer $transformer */
|
2018-01-12 04:49:46 +00:00
|
|
|
$transformer = Container::getInstance()->makeWith($abstract, $parameters);
|
|
|
|
$transformer->setKey($this->getKey());
|
|
|
|
|
2021-01-24 01:17:35 +00:00
|
|
|
if (!$transformer instanceof self) {
|
2018-02-25 21:30:56 +00:00
|
|
|
throw new InvalidTransformerLevelException('Calls to ' . __METHOD__ . ' must return a transformer that is an instance of ' . __CLASS__);
|
|
|
|
}
|
|
|
|
|
2018-01-12 04:49:46 +00:00
|
|
|
return $transformer;
|
|
|
|
}
|
2018-01-13 20:08:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return an ISO-8601 formatted timestamp to use in the API response.
|
|
|
|
*/
|
|
|
|
protected function formatTimestamp(string $timestamp): string
|
|
|
|
{
|
2021-01-23 20:09:16 +00:00
|
|
|
return CarbonImmutable::createFromFormat(CarbonImmutable::DEFAULT_TO_STRING_FORMAT, $timestamp)
|
2018-01-13 20:08:19 +00:00
|
|
|
->setTimezone(self::RESPONSE_TIMEZONE)
|
|
|
|
->toIso8601String();
|
|
|
|
}
|
2018-01-12 04:49:46 +00:00
|
|
|
}
|