misc_pterodactyl-panel/app/Http/Controllers/Api/Application/ApplicationApiController.php

88 lines
2.6 KiB
PHP
Raw Normal View History

2018-01-20 01:58:57 +00:00
<?php
2018-01-20 03:48:26 +00:00
namespace Pterodactyl\Http\Controllers\Api\Application;
use Illuminate\Http\Request;
use Webmozart\Assert\Assert;
2018-01-20 19:48:02 +00:00
use Illuminate\Http\Response;
use Illuminate\Support\Collection;
2018-01-20 03:48:26 +00:00
use Illuminate\Container\Container;
use Pterodactyl\Http\Controllers\Controller;
use Pterodactyl\Extensions\Spatie\Fractalistic\Fractal;
use Pterodactyl\Transformers\Api\Application\BaseTransformer;
2018-01-20 03:48:26 +00:00
abstract class ApplicationApiController extends Controller
{
/**
* @var \Illuminate\Http\Request
*/
protected $request;
2018-01-20 03:48:26 +00:00
/**
* @var \Pterodactyl\Extensions\Spatie\Fractalistic\Fractal
2018-01-20 03:48:26 +00:00
*/
protected $fractal;
/**
* ApplicationApiController constructor.
*/
2018-01-20 19:48:02 +00:00
public function __construct()
2018-01-20 03:48:26 +00:00
{
2018-01-20 19:48:02 +00:00
Container::getInstance()->call([$this, 'loadDependencies']);
2018-01-20 03:48:26 +00:00
// Parse all of the includes to use on this request.
$input = $this->request->input('include', []);
$input = is_array($input) ? $input : explode(',', $input);
$includes = (new Collection($input))->map(function ($value) {
2018-01-20 03:48:26 +00:00
return trim($value);
})->filter()->toArray();
$this->fractal->parseIncludes($includes);
$this->fractal->limitRecursion(2);
}
2018-01-20 19:48:02 +00:00
/**
* Perform dependency injection of certain classes needed for core functionality
* without littering the constructors of classes that extend this abstract.
*
* @param \Pterodactyl\Extensions\Spatie\Fractalistic\Fractal $fractal
2019-09-06 04:32:57 +00:00
* @param \Illuminate\Http\Request $request
2018-01-20 19:48:02 +00:00
*/
public function loadDependencies(Fractal $fractal, Request $request)
{
$this->fractal = $fractal;
$this->request = $request;
}
2018-01-20 03:48:26 +00:00
/**
* Return an instance of an application transformer.
*
* @param string $abstract
*
2018-01-20 03:48:26 +00:00
* @return \Pterodactyl\Transformers\Api\Application\BaseTransformer
* @throws \Illuminate\Contracts\Container\BindingResolutionException
2018-01-20 03:48:26 +00:00
*/
public function getTransformer(string $abstract)
{
/** @var \Pterodactyl\Transformers\Api\Application\BaseTransformer $transformer */
$transformer = Container::getInstance()->make($abstract);
$transformer->setRootAdmin($this->request->user()->root_admin);
2018-01-20 03:48:26 +00:00
$transformer->setKey($this->request->attributes->get('api_key'));
Assert::isInstanceOf($transformer, BaseTransformer::class);
2018-01-20 03:48:26 +00:00
return $transformer;
}
2018-01-20 19:48:02 +00:00
/**
* Return a HTTP/204 response for the API.
*
* @return \Illuminate\Http\Response
*/
protected function returnNoContent(): Response
{
return new Response('', Response::HTTP_NO_CONTENT);
}
2018-01-20 03:48:26 +00:00
}