Download the PHP package asseco-voice/laravel-remote-relations without Composer
On this page you can find all versions of the php package asseco-voice/laravel-remote-relations. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download asseco-voice/laravel-remote-relations
More information about asseco-voice/laravel-remote-relations
Files in asseco-voice/laravel-remote-relations
Package laravel-remote-relations
Short Description Laravel support for making relations between microservices
License MIT
Informations about the package laravel-remote-relations
Laravel remote relations
This package enables creating relations locally from Eloquent models to remote services.
Installation
Install the package through composer. It is automatically registered as a Laravel service provider, so no additional actions are required.
composer require asseco-voice/laravel-remote-relations
Setup
- Run
php artisan migrate
to migrate the table.
Table consists of:
- Local model type/id - polymorphic relation of local Eloquent models
- Service - indicating a key which needs to be mapped to a certain service class
- Remote model - plain string representing a model in a remote service (isn't Laravel specific)
- Remote model ID - actual ID to which a relation is created
- Acknowledged - date to verify if reverse relation was created
Out of the box no services are registered because the package doesn't know where to fetch related data from, so you need to provide services manually.
- Publish the configuration with
php artisan vendor:publish --tag=asseco-remote-relations-config
- Create a new service class for remote service you'd like to make a relation to and
make it extend
HasRemoteRelations
interface - Interface has 2 methods which are responsible for resolving a single relation or a collection of relations.
- Resolving collections will always be done on a single model type (i.e. collection of users) on a single service so that you can resolve multiple models at once if possible.
- Model IDs are of
string
type so that it supports non-numeric IDs as well. - Add the class to config under
services
key in the format'service_name' => Service::class'
Usage
Have your models use a Relatable
trait which will provide an Eloquent relation to
a RemoteRelation
class, so you don't have to repeat yourself.
There are also several handy methods:
relate($service, $model, $id)
- to create a relationrelateQuietly($service, $model, $id)
- to create a relation suppressing all events which would usually be fired by creation of the relation.unrelate($service, $model, $id)
- to remove a relationunrelateQuietly($service, $model, $id)
- to remove a relation suppressing all events which would usually be fired by creation of the relation.
CRUD API
Standard API resource is published on api/remote-relations
endpoint with standard CRUD routes.
Going on api/remote-relations/many
, you can execute a POST request to store many relations at once.
Additionally, there is a GET
api/remote-relations/{remote_relation}/resolved
endpoint which will return a resolved relation.
Acknowledgement
Initially when you create a remote relation from service A to service B, acknowledged
attribute is null
. When service B catches the event and creates the relation in its
database, it should set the acknowledged attribute of a newly created row to true
and
communicate back to service A to set acknowledged attribute of original relation
to now()
.
Resolving relations programmatically
You will probably want to have a class which knows how to resolve particular relations. To do that, have your SDK class implement a HasRemoteRelations
interface and implement methods from it.
Once you do that, register that class in services.php
under
sdk
key. Service name must be the name which you are storing
in the DB when populating the service
attribute.
Example
Given the following configuration in services.php
:
Having added a Relatable
trait to your User
model.
You can now call a relate()
method on a single user instance like this:
Note that first parameter equals to the service key in the configuration. That is how package knows which service to use.
Resolving relations can be done for a single relation, or a collection of relations:
Extending the package
Publishing the configuration will enable you to change package models as well as controlling how migrations behave. If extending the model, make sure you're extending the original model in your implementation.