mirror of
https://github.com/flarum/core.git
synced 2025-10-20 03:06:07 +02:00
- An API action handles a Flarum\Api\Request, which is a simple object containing an array of params, the actor, and optionally an HTTP request object - Most API actions use SerializeAction as a base, which parses request input according to the JSON-API spec (creates a JsonApiRequest object), runs the child class method to get data, then serializes it and assigns it to a JsonApiResponse (standard HTTP response with a Tobscure\JsonApi\Document as content) - The JSON-API request input parsing is subject to restrictions as defined by public static properties on the action (i.e. extensible) - Also the actor is given to the serializer instance now, instead of being a static property
33 lines
652 B
PHP
33 lines
652 B
PHP
<?php namespace Flarum\Api;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Flarum\Api\Serializers\BaseSerializer;
|
|
|
|
class ApiServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Bootstrap the application events.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
$this->app->singleton(
|
|
'Illuminate\Contracts\Debug\ExceptionHandler',
|
|
'Flarum\Api\ExceptionHandler'
|
|
);
|
|
|
|
include __DIR__.'/routes.php';
|
|
}
|
|
|
|
/**
|
|
* Register the service provider.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->app->singleton('Flarum\Support\Actor');
|
|
}
|
|
}
|