inani/laravel-same-request

The missing Laravel's request check on its unicity.

1.3.0 2023-10-23 09:07 UTC

This package is auto-updated.

Last update: 2024-04-26 08:21:16 UTC


README

Total Downloads

This laravel package will allow you to execute a code once in the current request based on the key provided.

Installation

composer require inani/laravel-same-request

You will(for L5) need to register the service provider in the config/app.php .

return [
       /*
         * Package Service Providers...
         */

        /*
         * Application Service Providers...
         */
        App\Providers\AppServiceProvider::class,
        App\Providers\AuthServiceProvider::class,
        // App\Providers\BroadcastServiceProvider::class,
        App\Providers\EventServiceProvider::class,
        App\Providers\RouteServiceProvider::class,
        Inani\UniqueRequest\UniqueRequestServiceProvider::class, // <=== HERE
];

You will need to use the middleware or binding it globally in your app/Http/Kernel.php

return [
        'api' => [
                'throttle:120,1',
                'bindings',
                PreventCache::class,
                GetJwtFromCookie::class,
                AddUniqueIdentifier::class
         ],
];

Usage

    for ($i= 0; $i < 2; $i++){
        $greeting = request()->once(function (){
            info('entred once');
            return 'hello';
        }, 'greeting');
    }

    $goodbye = request()->once(function (){
        return 'Saynoara';
    }, 'bye');

    $goodbye = request()->once(function (){
        return 'ByeBye';
    }, 'bye');

    return [$greeting, $goodbye];