mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 09:06:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			82 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Controllers\Api\Application;
 | 
						|
 | 
						|
use Illuminate\Http\Request;
 | 
						|
use Webmozart\Assert\Assert;
 | 
						|
use Illuminate\Http\Response;
 | 
						|
use Illuminate\Support\Collection;
 | 
						|
use Illuminate\Container\Container;
 | 
						|
use App\Http\Controllers\Controller;
 | 
						|
use App\Extensions\Spatie\Fractalistic\Fractal;
 | 
						|
use App\Transformers\Api\Application\BaseTransformer;
 | 
						|
 | 
						|
abstract class ApplicationApiController extends Controller
 | 
						|
{
 | 
						|
    protected Request $request;
 | 
						|
 | 
						|
    protected Fractal $fractal;
 | 
						|
 | 
						|
    /**
 | 
						|
     * ApplicationApiController constructor.
 | 
						|
     */
 | 
						|
    public function __construct()
 | 
						|
    {
 | 
						|
        Container::getInstance()->call([$this, 'loadDependencies']);
 | 
						|
 | 
						|
        // Parse all 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) {
 | 
						|
            return trim($value);
 | 
						|
        })->filter()->toArray();
 | 
						|
 | 
						|
        $this->fractal->parseIncludes($includes);
 | 
						|
        $this->fractal->limitRecursion(2);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Perform dependency injection of certain classes needed for core functionality
 | 
						|
     * without littering the constructors of classes that extend this abstract.
 | 
						|
     */
 | 
						|
    public function loadDependencies(Fractal $fractal, Request $request): void
 | 
						|
    {
 | 
						|
        $this->fractal = $fractal;
 | 
						|
        $this->request = $request;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Return an instance of an application transformer.
 | 
						|
     *
 | 
						|
     * @template T of \App\Transformers\Api\Application\BaseTransformer
 | 
						|
     *
 | 
						|
     * @param  class-string<T>  $abstract
 | 
						|
     * @return T
 | 
						|
     *
 | 
						|
     * @noinspection PhpDocSignatureInspection
 | 
						|
     */
 | 
						|
    public function getTransformer(string $abstract)
 | 
						|
    {
 | 
						|
        Assert::subclassOf($abstract, BaseTransformer::class);
 | 
						|
 | 
						|
        return $abstract::fromRequest($this->request);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Return an HTTP/204 response for the API.
 | 
						|
     */
 | 
						|
    protected function returnNoContent(): Response
 | 
						|
    {
 | 
						|
        return new Response('', Response::HTTP_NO_CONTENT);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Return an HTTP/406 response for the API.
 | 
						|
     */
 | 
						|
    protected function returnNotAcceptable(): Response
 | 
						|
    {
 | 
						|
        return new Response('', Response::HTTP_NOT_ACCEPTABLE);
 | 
						|
    }
 | 
						|
}
 |