A modular controller for exposing your Laravel 5 Eloquent models as a REST API. All you need to do is create one subclass of the controller per model and set up the routes.
Disclaimer: This is an early release! Do not use in production without extensive testing! The API is subject to change!
Please use Github Issues for bug reports and feature requests.
API Reference v0.7.8 (v0.6.5, v0.5.3, v0.4.2, v0.3.0)
composer require sehrgut/laravel5-api
Subclass SehrGut\Laravel5_Api\Controller
and set the eloquent model your controller should expose. Example:
use SehrGut\Laravel5_Api\Controller as ApiController;
use App\Models\Post;
class PostsController extends ApiController
{
protected $model = Post::class;
}
You now have a controller with the same handlers as a Laravel Resource Controller. Those methods can now be used to handle the following routes:
Route::get('/posts', 'PostsController@index');
Route::post('/posts', 'PostsController@store');
Route::get('/posts/{id}', 'PostsController@show');
Route::put('/posts/{id}', 'PostsController@update');
Route::delete('/posts/{id}', 'PostsController@destroy');
By default, it is assumed that there is an {id}
parameter in all urls pointing to a single resource (show
, update
, destroy
). This parameter is then used to find the corresponding model by its id
attribute.
If your model's primary key or your route parameter have a different name than id
, you need to manually map these in your Controller's $key_mapping
. Example:
protected $key_mapping = [
// Maps the `{post_id}` url parameter to the model's `primary_key` attribute/db column
'post_id' => 'primary_key'
];
In the same manner, additional url parameters can be mapped to model attributes. This is especially useful when creating endpoints for nested resources like /api/v1/posts/{post_id}/comments/{comment_id}
.
You might want to create a Validator and a Transformer and assign them to your Model in your ModelMapping. More on how this works under Components.
In order to have Exceptions displayed correctly, make sure to handle SehrGut\Laravel5_Api\Exceptions\Exception
in your app/Exceptions/Handler.php
:
use SehrGut\Laravel5_Api\Exceptions\Exception as SehrGutApiException;
class Handler extends ExceptionHandler
{
public function render($request, Exception $exception)
{
if ($exception instanceof SehrGutApiException) {
return $exception->errorResponse();
}
// Possibly other checks
return parent::render($request, $exception);
}
}
In a larger Project with several endpoints, it is reasonable to have a common BaseController where the ModelMapping is defined for all endpoints.
app/
|---- PublicApi
| +---- V1
| |---- Controllers
| | |---- BaseController.php
| | |---- PostsController.php
| | +---- PostCommentsController.php
| |---- Transformers
| | |---- PostTransformer.php
| | +---- CommentTransformer.php
| |---- Validators
| | |---- PostValidator.php
| | +---- CommentValidator.php
| |---- ModelMapping.php
| +---- RequestAdapter.php
+---- …
The logic is divided up into smaller components, each with their own responsibility:
index()
- Fetch all resourcesstore()
- Create a new resourceshow()
- Fetch a single resourceupdate()
- Update a single resourcedestroy()
- Delete a single resourceSide-loads and relationship counts can be added to the response by enumerating the names of the relation in the $relations
or $counts
properties on the controller. Both work recursively, allowing to side-load/count nested relations using dot-syntax.
Example:
use SehrGut\Laravel5_Api\Controller as ApiController;
use App\Models\Post;
class PostsController extends ApiController
{
protected $model = Post::class;
protected $relations = [
'comments', // Side-load the 'comments' relation within posts
'comments.author' // Side-load the 'author' relation in nested comments
];
protected $counts = [
'comments', // Add 'comments_count' to posts
'comments.responses' // Add `responses_count` to nested comments
];
}
In order to create a custom Validator for a model, you can subclass the Validator
class and set the $rules
array. After that, the Validator needs to be registered in the ModelMapping
which is assigned to your Controller. Please refer to the ModelMapping section on how to do this. A Validator could look like this:
use SehrGut\Laravel5_Api\Validator;
class PostValidator extends Validator
{
protected static $rules = [
'title' => 'required|min:3|max:100',
'body' => 'max:65536'
];
}
To shape how your models are represented at the api, you can do some transformatios on the model while generating the response. This works the same way as with Validators. Just subclass Transformer
and assign them to your models via the ModelMapping
.
In your Transformer subclass, you can define the following attributes to customize the output:
use SehrGut\Laravel5_Api\Transformers\Transformer;
class PostTransformer extends Transformer
{
// Rename Attributes:
protected $aliases = [
'original_attribute_name' => 'new_attribute_name',
'id' => 'post_id'
];
// Remove Attributes:
protected $drop_attributes = [
'private_email'
];
// Remove Relations:
protected $drop_relations = [
'comments'
];
}
Further, you can change the values of individual attributes of your models by defining a formatAttribute
method on the Transformer where Attribute
is the camel-case name of the attribute you want to transform. The method should accept a single argument (the original value) and return the transformed attribute. Example:
use SehrGut\Laravel5_Api\Transformers\Transformer;
class PostTransformer extends Transformer
{
/**
* Correct the date format of the member_since attribute
*/
formatMemberSince($value)
{
return $value->toDateString();
}
}
The Controller asks the ModelMapping which Validator and Transformer it should use for each Model and their respective relations. If no Transformer/Validator is assigned to a model, the respctive defaults are returned (No validation, no transformation).
In order to apply custom Transformers or Validators to your models, you have to create a custom model mapping and assign it to your Controllers (preferrably via a common BaseController).
use SehrGut\Laravel5_Api\ModelMapping as BaseModelMapping;
use App\Models\Post;
use App\PublicApi\V1\Transformers\PostTransformer;
use App\PublicApi\V1\Validators\PostValidator;
class ModelMapping extends BaseModelMapping
{
protected $transformers = [
Post::class => PostTransformer::class
];
protected $validators = [
Post::class => PostValidator::class
];
}
use SehrGut\Laravel5_Api\Controller;
class BaseController extends Controller
{
protected $model_mapping_class = ModelMapping::class;
}
TBD
Plugins are a way of "hooking into" and manipulating the behaviour of controller actions. They replace the old "hooks", used in versions ≤0.3
Plugins can be registered inside the Controller by specifying them in the $plugins
property. The order of execution will be the order in which they are listed here.
Example:
use SehrGut\Laravel5_Api\Plugins\Paginator;
use SehrGut\Laravel5_Api\Plugins\SearchFilter;
class PostsController extends BaseController
{
protected $plugins = [
Paginator::class,
SearchFilter::class,
];
}
Instead of using Plugins, a controller can also implement any of the Hooks itself, in order to influence the request/response lifecycle. In this case, it behaves the same as a Plugin:
implements
the appropriate Hook InterfaceIf a controller subscribes to a Hook this way, the Hook will first be called on the controller, before it gets handed through the Plugins.
Some plugins have configurable options, that can be set through the controller. This can be done from inside the afterConstruct()
method like so:
use SehrGut\Laravel5_Api\Plugins\SearchFilter;
class PostsController extends BaseController
{
protected $plugins = [SearchFilter::class];
protected function afterConstruct()
{
$this->configurePlugin(SearchFilter::class, [
'searchable' => ['name', 'description'], // compare to those fields on the model
'search_param' => 'query', // `?query=some+search+query`
]);
}
}
Please refer to the source code or API reference of the individual plugin to see the available configuration options.
Please use the source for definite answers. Still, here's a (probably outdated) list of plugins:
index
result sets. By default, it uses the limit
and page
query parameters to determine the requested subset.index
queries. You can configure which model attributes to compare the search term with.For help on using the individual plugins, check their respective source files or the API reference!
A plugin is just a class that extends SehrGut\Laravel5_Api\Plugins\Plugin
. It can implement one or more Hooks in order to influence the controller's behaviour.
The base Plugin
class provides a protected $config
attribute, to store configuation options, which are settable through the controller's configurePlugin($name, $options)
method. Use this feature to expose parameters of your plugin to the user (the person writing the controller). Retrieve config options inside the plugin with $this->config['option_name']
. Default values should be set via the protected $default_config
property.
<?php
namespace App\Api\V1\Plugins;
use SehrGut\Laravel5_Api\Plugins\Plugin;
use SehrGut\Laravel5_Api\Hooks\AdaptCollectionQuery;
use SehrGut\Laravel5_Api\Hooks\AdaptResourceQuery;
/**
* Just an example: `dd()` all queries instead of executing them.
*/
class DieAndDumpQuery extends Plugin implements AdaptCollectionQuery, AdaptResourceQuery
{
$default_config = [
'option' => 'Reasonable default',
];
protected function adaptCollectionQuery()
{
dd($this->context->query);
}
protected function adaptResourceQuery()
{
dd($this->context->query);
}
}
The available hooks are listed in the "Hooks" directory.
In order to use a hook, you simply have to declare that your plugin class implements
the corresponding interface and then actually implement the appropriate method of that interface. Take a look at source code of the existing plugins to see how this is done.
Each hook interface declares exactly one method. The name of this method is the same as the interface, just with a lowercase first letter. Example: The Hook Interface AdaptResourceQuery
declares a method named adaptResourceQuery
.
AdaptCollectionQuery::adaptCollectionQuery()
Customize the query for fetching a resource collection (index
action).
AdaptResourceQuery::adaptResourceQuery()
Customize the query for fetching a single resource (show
, update
and destroy
actions).
AdaptRelations::adaptRelations(array $relations)
This hook receives an array of relations to be side-loaded with the queried model. Return the adapted array.
BeginAction::beginAction()
This is the first hook in any action, right after $context->action
was set.
AuthorizeAction::authorizeAction()
Hook in here to perform authorization on action level. This hook is only called on the index
and store
actions.
AuthorizeResource::authorizeResource()
Hook in here to perform authorization on a single resource. This hook is called from the show
, update
and destroy
handler right after the resource was fetched from DB and stored into $this->resource
.
FormatCollection::formatCollection()
This hook receives a Collection of resources before they are transformed.
FormatResource::formatResource()
This hook receives a single resource before it is transformed.
ResponseHeaders::responseHeaders()
Hook in here to manipulate the response headers.
BeforeSave::beforeSave()
Is called on every create
and update
action after the model has been filled from $context->input
right before the call to $context->resource->save()
.
AfterSave::afterSave()
On every create
and update
action after the call to $context->resource->save()
.
BeforeCreate::beforeCreate()
Hook just before beforeSave()
but only in the store
action.
BeforeUpdate::beforeUpdate()
Hook just before beforeSave()
but only in the update
action.
Each plugin has a reference to the controller's Context object stored in Plugin::$context
. The Context
contains all relevant pieces of data, that a Plugin might need to read or write:
// Read-only:
$context->model;
$context->request;
// Read-write:
$context->input;
$context->action;
$context->query;
$context->resource;
$context->collection;
$context->response;
Warning: Hooks are deprecated in favour of Plugins (see above), so be aware when using them: The methods listed below will soon be removed from the controller and substituted with appropriate plugin hooks. "Hook" in the context of a "Plugin" refers to an interface, rather than a controller method like in the old sense.
There are serveral hooks in the Controller which help you customizing its behaviour. All you need to do is implement the desired method in your controller. For details on the hooks please browse the code and refer to the API Reference.
makeModelMapping()
Dynamically customize the ModelMapping, for example based on Auth/Roles
makeRequestAdapter(Request $request)
Dynamically customize the RequestAdapter.
adaptRules(Array $rules)
Adapt the validation rules after fetching them from the validator. Return the adapted rules.
afterConstruct()
Last call in the controller's __construct()
method.
Please refer to CHANGELOG.md.
Tests are based on phpunit and use an in-memory sqlite database. As the tests rely on the laravel framework, composer (dev-) dependencies need to be installed first:
composer install
vendor/bin/phpunit
This software is licensed under the MIT License. See LICENSE.txt for details.