All Projects → spatie → Laravel Queueable Action

spatie / Laravel Queueable Action

Licence: mit
Queueable actions in Laravel

Labels

Projects that are alternatives of or similar to Laravel Queueable Action

Finance
A self hosted app to help you get a better understanding of your personal finances.
Stars: ✭ 313 (-3.99%)
Mutual labels:  laravel
Laravel S
LaravelS is an out-of-the-box adapter between Swoole and Laravel/Lumen.
Stars: ✭ 3,479 (+967.18%)
Mutual labels:  laravel
Admin
laravel + ant design vue 权限后台
Stars: ✭ 319 (-2.15%)
Mutual labels:  laravel
Nocaptcha
🛂 Helper for Google's new noCAPTCHA (reCAPTCHA v2 & v3)
Stars: ✭ 313 (-3.99%)
Mutual labels:  laravel
Laravel Query Logger
📝 A dev tool to log all queries for laravel application.
Stars: ✭ 316 (-3.07%)
Mutual labels:  laravel
Awesome Spark
Curated list of Laravel Spark ressources
Stars: ✭ 319 (-2.15%)
Mutual labels:  laravel
Laravel Log Enhancer
Make debugging easier by adding more data to your laravel logs (Laravel 5.6+)
Stars: ✭ 311 (-4.6%)
Mutual labels:  laravel
Plans
Laravel Plans is a package for SaaS apps that need management over plans, features, subscriptions, events for plans or limited, countable features.
Stars: ✭ 326 (+0%)
Mutual labels:  laravel
Reading
整理阅读过的干货文章, 帖子
Stars: ✭ 318 (-2.45%)
Mutual labels:  laravel
Entity Builder
🍅 Laravel code generator with GUI
Stars: ✭ 321 (-1.53%)
Mutual labels:  laravel
Php Snowflake
❄ An ID Generator for PHP based on Snowflake Algorithm (Twitter announced).
Stars: ✭ 313 (-3.99%)
Mutual labels:  laravel
Laravel Mail Viewer
View all the mailables in your laravel app at a single place
Stars: ✭ 315 (-3.37%)
Mutual labels:  laravel
Jwt Auth Guard
JWT Auth Guard for Laravel and Lumen Frameworks.
Stars: ✭ 319 (-2.15%)
Mutual labels:  laravel
Laravel5 Jsonapi
Laravel 5 JSON API Transformer Package
Stars: ✭ 313 (-3.99%)
Mutual labels:  laravel
Tall Forms
Laravel Livewire (TALL-stack) form generator with realtime validation, file uploads, array fields, blade form input components and more.
Stars: ✭ 321 (-1.53%)
Mutual labels:  laravel
Laravel Bookings
Rinvex Bookable is a generic resource booking system for Laravel, with the required tools to run your SAAS like services efficiently. It's simple architecture, accompanied by powerful underlying to afford solid platform for your business.
Stars: ✭ 309 (-5.21%)
Mutual labels:  laravel
Laravel Media
Attach files to eloquent models
Stars: ✭ 319 (-2.15%)
Mutual labels:  laravel
Shadowfax
Run Laravel on Swoole.
Stars: ✭ 325 (-0.31%)
Mutual labels:  laravel
Laravel Api Query Builder
Laravel & Lumen Api Query Builder Package
Stars: ✭ 324 (-0.61%)
Mutual labels:  laravel
L5scaffold
Scaffold generator for Laravel 5.x
Stars: ✭ 320 (-1.84%)
Mutual labels:  laravel

Queueable actions in Laravel

Latest Version on Packagist GitHub Workflow Status Check & fix styling Total Downloads

Actions are a way of structuring your business logic in Laravel. This package adds easy support to make them queueable.

$myAction->onQueue()->execute();

You can specify a queue name.

$myAction->onQueue('my-favorite-queue')->execute();

Support us

We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.

We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.

Installation

You can install the package via composer:

composer require spatie/laravel-queueable-action

You can optionally publish the config file with:

php artisan vendor:publish --provider="Spatie\QueueableAction\QueueableActionServiceProvider" --tag="config"

This is the contents of the published config file:

return [
    /*
     * The job class that will be dispatched.
     * If you would like to change it and use your own job class,
     * it must extends the \Spatie\QueueableAction\ActionJob class.
     */
    'job_class' => \Spatie\QueueableAction\ActionJob::class,
];

Usage

If you want to know about the reasoning behind actions and their asynchronous usage, you should read the dedicated blog post: https://stitcher.io/blog/laravel-queueable-actions.

You can use the following Artisan command to generate queueable and synchronous action classes on the fly.

php artisan make:action MyAction [--sync]

Here's an example of queueable actions in use:

class MyAction
{
    use QueueableAction;

    public function __construct(
        OtherAction $otherAction,
        ServiceFromTheContainer $service
    ) {
        // Constructor arguments can come from the container.

        $this->otherAction = $otherAction;
        $this->service = $service;
    }

    public function execute(
        MyModel $model,
        RequestData $requestData
    ) {
        // The business logic goes here, this can be executed in an async job.
    }
}
class MyController
{
    public function store(
        MyRequest $request,
        MyModel $model,
        MyAction $action
    ) {
        $requestData = RequestData::fromRequest($myRequest);

        // Execute the action on the queue:
        $action->onQueue()->execute($model, $requestData);

        // Or right now:
        $action->execute($model, $requestData);
    }
}

The package also supports actions using the __invoke() method. This will be detected automatically. Here is an example:

class MyInvokeableAction
{
    use QueueableAction;

    public function __invoke(
        MyModel $model,
        RequestData $requestData
    ) {
        // The business logic goes here, this can be executed in an async job.
    }
}

The actions using the __invoke() method should be added to the queue the same way as explained in the examples above, by running the execute() method after the onQueue() method.

$myInvokeableAction->onQueue()->execute($model, $requestData);

Testing queued actions

The package provides some test assertions in the Spatie\QueueableAction\Testing\QueueableActionFake class. You can use them in a PhpUnit test like this:

/** @test */
public function it_queues_an_action()
{
    Queue::fake();

    (new DoSomethingAction)->onQueue()->execute();

    QueueableActionFake::assertPushed(DoSomethingAction::class);
}

Don't forget to use Queue::fake() to mock Laravel's queues before using the QueueableActionFake assertions.

The following assertions are available:

QueueableActionFake::assertPushed(string $actionClass);
QueueableActionFake::assertPushedTimes(string $actionClass, int $times = 1);
QueueableActionFake::assertNotPushed(string $actionClass);
QueueableActionFake::assertPushedWithChain(string $actionClass, array $expextedActionChain = [])
QueueableActionFake::assertPushedWithoutChain(string $actionClass)

Feel free to send a PR if you feel any of the other QueueFake assertions are missing.

Chaining actions

You can chain actions by wrapping them in the ActionJob.

Here's an example of two actions with the same arguments:

use Spatie\QueueableAction\ActionJob;

$args = [$userId, $data];

app(MyAction::class)
    ->onQueue()
    ->execute(...$args)
    ->chain([
        new ActionJob(AnotherAction::class, $args),
    ]);

The ActionJob takes the action class or instance as the first argument followed by an array of the action's own arguments.

Custom Tags

If you want to change what tags show up in Horizon for your custom actions you can override the tags() function.

class CustomTagsAction
{
    use QueueableAction;

    // ...

    public function tags() {
        return ['action', 'custom_tags'];
    }
}

Job Middleware

Middleware where action job passes through can be added by overriding the middleware() function.

class CustomTagsAction
{
    use QueueableAction;

    // ...

    public function middleware() {
        return [new RateLimited()];
    }
}

What is the difference between actions and jobs?

In short: constructor injection allows for much more flexibility. You can read an in-depth explanation here: https://stitcher.io/blog/laravel-queueable-actions.

Testing the package

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].