lushdigital / microservice-crud
A CRUD convenience layer for microservices built in Lumen.
Installs: 3 887
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 3
Forks: 6
Open Issues: 0
Requires
- php: >=5.6.4
- laravel/lumen-framework: ^5.3
- lushdigital/microservice-core: ~1.0
- lushdigital/microservice-model-utils: ~1.0
Requires (Dev)
- phpunit/phpunit: ~5.0
README
A CRUD convenience layer for microservices built in Lumen.
Description
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.
Package Contents
- An abstract controller which can be extended for quick RESTful CRUD logic.
- Cache clearing observer to ensure your data always appears as up-to-date as possible.
Installation
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');
Usage
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);
Model
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'; }
Model Namespace
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'; }
Cache Attributes
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
Routing
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');