Package Data | |
---|---|
Maintainer Username: | biliboobrian |
Maintainer Contact: | dan.richards@lush.co.uk (Dan Richards) |
Package Create Date: | 2019-10-10 |
Package Last Update: | 2020-10-10 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:20:25 |
Package Statistics | |
---|---|
Total Downloads: | 278 |
Monthly Downloads: | 8 |
Daily Downloads: | 1 |
Total Stars: | 1 |
Total Watchers: | 1 |
Total Forks: | 1 |
Total Open Issues: | 0 |
A CRUD convenience layer for microservices built in Lumen.
This package is intended to provide a convenient layer on top of Lumen to streamline the process of developing a RESTful CRUD microservice. It reduces the repetitive nature of writing controllers, models and CRUD logic over and over again.
Install the package as normal:
$ composer require lushdigital/microservice-crud
The package requires that the following changes are made to the Lumen config in bootstrap/app.php
<?php
// Uncomment the line below to enable Facade support.
$app->withFacades();
// Uncomment the line below to enable Eloquent ORM support.
$app->withEloquent();
// Add the line below to load database config. This is required for caching to work.
$app->configure('database');
To create a new CRUD resource first extend your model from \LushDigital\MicroServiceModelUtils\Models\MicroServiceBaseModel
.
The model must also implement the LushDigital\MicroServiceCrud\Models\CrudModelInterface
interface.
<?php
namespace App\Models;
use LushDigital\MicroServiceModelUtils\Models\MicroServiceBaseModel;
use LushDigital\MicroServiceCrud\Models\CrudModelInterface;
class Example extends MicroServiceBaseModel implements CrudModelInterface
{
/**
* {@inheritdoc}
*/
public function getValidationRules($mode = 'create', $primaryKeyValue = null)
{
// TODO: Implement getValidationRules() method.
}
}
Next you need to create a controller which extends from \LushDigital\MicroServiceCrud\Http\Controllers\CrudController
<?php
namespace App\Http\Controllers;
use LushDigital\MicroServiceCrud\Http\Controllers\CrudController;
class ExamplesController extends CrudController {}
Finally if you are using caching you need to register the Crud observer against your model. Do this by editing the
existing app/Providers/AppServiceProvider.php
class (or add a new service provider) like so:
<?php
namespace App\Providers;
use App\Models\Example;
use Illuminate\Support\ServiceProvider;
use LushDigital\MicroServiceCrud\Observers\CrudObserver;
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
// Add an observer to the example model.
Example::observe(CrudObserver::class);
}
}
Make sure that your service provider is added (or uncommented) in bootstrap/app.php
:
$app->register(App\Providers\AppServiceProvider::class);
Note that above the model is called Example
and the controller is called ExamplesController
. This follows the
plural pattern you're used to with Laravel. Basically the controller name needs to be the plural version of the model
plus 'Controller'.
This can be changed by overriding the $modelBaseClass
attribute in the controller:
<?php
namespace App\Http\Controllers;
use LushDigital\MicroServiceCrud\Http\Controllers\CrudController;
class ExamplesController extends CrudController
{
/**
* The model associated with the CRUD controller.
*
* @var string
*/
protected $modelBaseClass = 'NotAnExample';
}
The CRUD controller assumes the model exists in the App\Models
namespace (e.g. App\Controllers\ExamplesController => App\Models\Example
).
This can be changed by overriding the $modelNamespace
attribute:
<?php
namespace App\Http\Controllers;
use LushDigital\MicroServiceCrud\Http\Controllers\CrudController;
class ExamplesController extends CrudController
{
/**
* The model associated with the CRUD controller.
*
* @var string
*/
protected $modelNamespace = 'My\\Awesome\\Namespace';
}
The package provides support for caching data based on any attribute of a model. By default the package will cache data
using the id attribute only. This works using cache keys, so for an instance of the Example
model with id 1 the
following cache keys will be set on read and cleared on update/delete:
examples:index
examples:1
Note the
:index
cache key is always used for the indexing endpoint listing all model instances.
To cache based on other attributes just override the $attributeCacheKeys
attribute in your model:
<?php
namespace App\Models;
use LushDigital\MicroServiceModelUtils\Models\MicroServiceBaseModel;
class Example extends MicroServiceBaseModel
{
/**
* A list of the model attributes that can be used as cache keys.
*
* @var array
*/
protected $attributeCacheKeys = ['name'];
}
So in this cache Example (ID: 1) with a name of 'test' would have a cache key of
examples:name:test
Once your controller and model are set up you need to configure routes. The package provides logic for the standard REST endpoints (GET, POST, PUT, DELETE). You can use as many or as few as you like, an example of all routes would be:
<?php
// routes/web.php
$app->get('/examples', 'ExamplesController@index');
$app->post('/examples', 'ExamplesController@store');
$app->get('/examples/{id}', 'ExamplesController@show');
$app->put('/examples/{id}', 'ExamplesController@update');
$app->delete('/examples/{id}', 'ExamplesController@destroy');