Softonic Laravel Transactional Event Publisher
softonic/laravel-transactional-event-publisher is a Laravel package for softonic laravel transactional event publisher.
It currently has 4 GitHub stars and 19.301 downloads on Packagist (latest version 11.0.1).
Install it with composer require softonic/laravel-transactional-event-publisher.
Discover more Laravel packages by softonic
or browse all Laravel packages to compare alternatives.
Last updated
Laravel package to handle atomicity between Eloquent model operations and domain event message generation.
Requirements:
You can require the last version of the package using composer
composer require softonic/laravel-transactional-event-publisher
It is possible to configure the basic AMQP information, you can check it in vendor/softonic/transactional-event-publisher/config/transactional-event-publisher.php
If you need further customization, you can publish the configuration.
php artisan vendor:publish --provider="Softonic\TransactionalEventPublisher\ServiceProvider" --tag=config
We provide Softonic\TransactionalEventPublisher\EventStoreMiddlewares\DatabaseMiddleware
and Softonic\TransactionalEventPublisher\EventStoreMiddlewares\AmqpMiddleware middlewares to store and send events.
This middleware just stores the events in a table in database. It can be useful if you want to expose the events as a REST endpoint or check your events history.
To configure this middleware you need to publish the migrations
php artisan vendor:publish --provider="Softonic\TransactionalEventPublisher\ServiceProvider" --tag=migrations
and execute them
php artisan migrate
This middleware publishes the events to an AMQP system. You just need to configure the AMQP connection using the configuration file or environmental variables. As you can see, in the configuration you won't be able to define a queue. This is because the library just publishes the message to an exchange and is the events collector responsibility to declare the needed queues with the needed bindings.
We provide a command to continuously publish events in batches.
You can find its signature in Softonic\TransactionalEventPublisher\Console\Commands\EmitEvents.
It will publish the events in batches of 100 by default, or you can change it with the option --batchSize.
You just need to create a job that will run indefinitely with the command php artisan event-sourcing:emit.
By default, the command php artisan event-sourcing:emit will send all the events stored in database using a MySQL unbuffered connection.
Otherwise, a Mysql buffered Connection it is used to delete the events from database after they have been sent.
You can specify the connection to use with the option --dbConnection for the buffered connection and --dbConnectionUnbuffered for the unbuffered connection.
Unbuffered connection example from config/database.php
return [
'connections' => [
'mysql-unbuffered' => [
'driver' => 'mysql',
'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '3306'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
'unix_socket' => env('DB_SOCKET', ''),
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
'strict' => true,
'engine' => null,
'options' => [
PDO::MYSQL_ATTR_USE_BUFFERED_QUERY => false,
],
],
]
];
To choose what models should send domain events, you need to attach the \Softonic\TransactionalEventPublisher\ModelObserver observer class.
Example:
...
use App\Models\Post as MyModel;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
use Softonic\TransactionalEventPublisher\Observers\ModelObserver;
class EventServiceProvider extends ServiceProvider
{
public function boot()
{
parent::boot();
MyModel::observe(ModelObserver::class);
}
...
}
The middlewares should implement the Softonic\TransactionalEventPublisher\Interfaces\EventStoreMiddlewareInterface interface.
Its purpose is to store the domain event provided, so you can implement any storage for domain events.
The transactional-event.messageBuilder class must implement EventMessageBuilderInterface and transactional-event.middleware class must implement EventStoreMiddlewareInterface.
The builder should return a EventMessageInterface value object. It just needs to implement the toArray and jsonSerialize methods with all the attributes that you need.
This package begins a database transaction in the following Eloquent Model events:
And commit the database transaction when the event store middleware stores the event message successfully. On the other hand, if the event store couldn't store the event message would be a database rollback for the two operations (Eloquent model write + event message storing). Take into account if an error occurs between the event of creating/updating/deleting and created/updated/deleted the transaction would remain started until the connection had been closed.
softonic/laravel-transactional-event-publisher has a PHPUnit test suite and a coding style compliance test suite using PHP CS Fixer following PSR-12.
To run the tests, run the following command from the project folder:
$ docker compose run --rm tests
To run PHPUnit only:
$ docker compose run --rm phpunit
To run PHPStan static analysis:
$ docker compose run --rm phpstan
To check code style:
$ docker compose run --rm php composer run checkstyle
To fix code style issues:
$ docker compose run --rm fixcs
To open a terminal in the dev environment:
$ docker compose run --rm --entrypoint=bash php
For debugging with Xdebug:
$ docker compose run --rm debug
The Apache 2.0 license. Please see LICENSE for more information.