mirror of
https://github.com/flarum/framework.git
synced 2025-04-02 23:19:04 +08:00

The custom interface already had the same signature as the one from the standard (except for the return type hint), so why not use that one now? :)
234 lines
5.6 KiB
PHP
234 lines
5.6 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* (c) Toby Zerner <toby.zerner@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Flarum\Api\Controller;
|
|
|
|
use Flarum\Api\Event\WillGetData;
|
|
use Flarum\Api\Event\WillSerializeData;
|
|
use Flarum\Api\JsonApiResponse;
|
|
use Illuminate\Contracts\Container\Container;
|
|
use Illuminate\Contracts\Events\Dispatcher;
|
|
use Psr\Http\Message\ResponseInterface;
|
|
use Psr\Http\Message\ServerRequestInterface;
|
|
use Psr\Http\Server\RequestHandlerInterface;
|
|
use Tobscure\JsonApi\Document;
|
|
use Tobscure\JsonApi\Parameters;
|
|
use Tobscure\JsonApi\SerializerInterface;
|
|
|
|
abstract class AbstractSerializeController implements RequestHandlerInterface
|
|
{
|
|
/**
|
|
* The name of the serializer class to output results with.
|
|
*
|
|
* @var string
|
|
*/
|
|
public $serializer;
|
|
|
|
/**
|
|
* The relationships that are included by default.
|
|
*
|
|
* @var array
|
|
*/
|
|
public $include = [];
|
|
|
|
/**
|
|
* The relationships that are available to be included.
|
|
*
|
|
* @var array
|
|
*/
|
|
public $optionalInclude = [];
|
|
|
|
/**
|
|
* The maximum number of records that can be requested.
|
|
*
|
|
* @var int
|
|
*/
|
|
public $maxLimit = 50;
|
|
|
|
/**
|
|
* The number of records included by default.
|
|
*
|
|
* @var int
|
|
*/
|
|
public $limit = 20;
|
|
|
|
/**
|
|
* The fields that are available to be sorted by.
|
|
*
|
|
* @var array
|
|
*/
|
|
public $sortFields = [];
|
|
|
|
/**
|
|
* The default sort field and order to user.
|
|
*
|
|
* @var array|null
|
|
*/
|
|
public $sort;
|
|
|
|
/**
|
|
* @var Container
|
|
*/
|
|
protected static $container;
|
|
|
|
/**
|
|
* @var Dispatcher
|
|
*/
|
|
protected static $events;
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function handle(ServerRequestInterface $request): ResponseInterface
|
|
{
|
|
$document = new Document;
|
|
|
|
static::$events->dispatch(
|
|
new WillGetData($this)
|
|
);
|
|
|
|
$data = $this->data($request, $document);
|
|
|
|
static::$events->dispatch(
|
|
new WillSerializeData($this, $data, $request, $document)
|
|
);
|
|
|
|
$serializer = static::$container->make($this->serializer);
|
|
$serializer->setActor($request->getAttribute('actor'));
|
|
|
|
$element = $this->createElement($data, $serializer)
|
|
->with($this->extractInclude($request))
|
|
->fields($this->extractFields($request));
|
|
|
|
$document->setData($element);
|
|
|
|
return new JsonApiResponse($document);
|
|
}
|
|
|
|
/**
|
|
* Get the data to be serialized and assigned to the response document.
|
|
*
|
|
* @param ServerRequestInterface $request
|
|
* @param Document $document
|
|
* @return mixed
|
|
*/
|
|
abstract protected function data(ServerRequestInterface $request, Document $document);
|
|
|
|
/**
|
|
* Create a PHP JSON-API Element for output in the document.
|
|
*
|
|
* @param mixed $data
|
|
* @param SerializerInterface $serializer
|
|
* @return \Tobscure\JsonApi\ElementInterface
|
|
*/
|
|
abstract protected function createElement($data, SerializerInterface $serializer);
|
|
|
|
/**
|
|
* @param ServerRequestInterface $request
|
|
* @return array
|
|
* @throws \Tobscure\JsonApi\Exception\InvalidParameterException
|
|
*/
|
|
protected function extractInclude(ServerRequestInterface $request)
|
|
{
|
|
$available = array_merge($this->include, $this->optionalInclude);
|
|
|
|
return $this->buildParameters($request)->getInclude($available) ?: $this->include;
|
|
}
|
|
|
|
/**
|
|
* @param ServerRequestInterface $request
|
|
* @return array
|
|
*/
|
|
protected function extractFields(ServerRequestInterface $request)
|
|
{
|
|
return $this->buildParameters($request)->getFields();
|
|
}
|
|
|
|
/**
|
|
* @param ServerRequestInterface $request
|
|
* @return array|null
|
|
* @throws \Tobscure\JsonApi\Exception\InvalidParameterException
|
|
*/
|
|
protected function extractSort(ServerRequestInterface $request)
|
|
{
|
|
return $this->buildParameters($request)->getSort($this->sortFields) ?: $this->sort;
|
|
}
|
|
|
|
/**
|
|
* @param ServerRequestInterface $request
|
|
* @return int
|
|
* @throws \Tobscure\JsonApi\Exception\InvalidParameterException
|
|
*/
|
|
protected function extractOffset(ServerRequestInterface $request)
|
|
{
|
|
return $this->buildParameters($request)->getOffset($this->extractLimit($request)) ?: 0;
|
|
}
|
|
|
|
/**
|
|
* @param ServerRequestInterface $request
|
|
* @return int
|
|
*/
|
|
protected function extractLimit(ServerRequestInterface $request)
|
|
{
|
|
return $this->buildParameters($request)->getLimit($this->maxLimit) ?: $this->limit;
|
|
}
|
|
|
|
/**
|
|
* @param ServerRequestInterface $request
|
|
* @return array
|
|
*/
|
|
protected function extractFilter(ServerRequestInterface $request)
|
|
{
|
|
return $this->buildParameters($request)->getFilter() ?: [];
|
|
}
|
|
|
|
/**
|
|
* @param ServerRequestInterface $request
|
|
* @return Parameters
|
|
*/
|
|
protected function buildParameters(ServerRequestInterface $request)
|
|
{
|
|
return new Parameters($request->getQueryParams());
|
|
}
|
|
|
|
/**
|
|
* @return Dispatcher
|
|
*/
|
|
public static function getEventDispatcher()
|
|
{
|
|
return static::$events;
|
|
}
|
|
|
|
/**
|
|
* @param Dispatcher $events
|
|
*/
|
|
public static function setEventDispatcher(Dispatcher $events)
|
|
{
|
|
static::$events = $events;
|
|
}
|
|
|
|
/**
|
|
* @return Container
|
|
*/
|
|
public static function getContainer()
|
|
{
|
|
return static::$container;
|
|
}
|
|
|
|
/**
|
|
* @param Container $container
|
|
*/
|
|
public static function setContainer(Container $container)
|
|
{
|
|
static::$container = $container;
|
|
}
|
|
}
|