Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Laravel Lockable Laravel Package

lowerrocklabs/laravel-lockable

View on GitHub
Deep Wiki
Context7

Laravel Lockable provides traits to allow for models to be locked

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

This model allows for on-demand locking of models. You can integrate this with your permissions methodology of choice, or leave it stand-alone. This package allows you to determine whether a particular instance of a model is Locked or Not. Or it will independently prevent updating of a model instance.

Installation

Requires [PHP 7.3+ or 8.0+] and [Laravel 8.x or 9.x] (https://laravel.com/docs/8.x/releases or https://laravel.com/docs/9.x/releases)

You can install the package via composer:

composer require lowerrocklabs/laravel-lockable

You can publish and run the migrations with:

php artisan vendor:publish --tag="laravel-lockable-migrations"
php artisan migrate

You can publish the config file with:

php artisan vendor:publish --tag="laravel-lockable-config"

This is the contents of the published config file, which controls the global lock duration, this is customisable on a per-model basis (see below).

return [
    // Name of the Table containing the locks
    'locks_table' => 'model_locks',
    
     // Name of the Table containing the lock watchers
    'lock_watchers_table' => 'model_lock_watchers',
    
    // Enable retrieval of lock status on retrieving a model
    'get_locked_on_retrieve' => true,
    
    // Prevent updating if a model is locked by another user
    'prevent_updating' => true,

    // Time in Seconds For Lock To Persist
    'duration' => '3600',
];

Usage

Model Configuration

In the Model(s) that you wish to be lockable, add the IsLockable Trait

use LowerRockLabs\Lockable\Traits\IsLockable;

and then set the Trait

use IsLockable;

In Your Component/Controller

Then use the acquireLock function to attempt to acquire a lock on the model, it will return false if there is an existing lock.

acquireLock()

You can override the existing lock by calling the releaseLock() function before acquireLock(), if you are using a permissions-based approach, it is suggested that you restrict this to approriate users.

releaseLock()

You can tell if a lock exists as follows, this will acquire the lock if one does not exist.

isLocked()

You can send a Broadcast to the user holding the lock with the following

requestLock()

Lock Duration

You can override the default Lock Duration (in seconds) which is taken from the configuration on a per-model basis by setting the following in your Model, for example, the following would limit the duration of a lock to 600 seconds.

public $modelLockDuration = "600";

Locks will clear when the Duration has expired, and an attempt is made to access the Model, or you can call the commands below, or add them to a schedule (as you see fit).

Commands

To Flush Expired Locks

php artisan locks:flushexpired

To Flush All Locks

php artisan locks:flushall

Events

Two Events will be fired during the Lock process, that can be used to fire Notifications or Logs if desired On Model Locking

LowerRockLabs\Lockable\Events\ModelWasLocked;

and On Model UnLocking

LowerRockLabs\Lockable\Events\ModelWasUnLocked;

An additional event will be fired when a user requests the release of the lock and On Model UnLocking

LowerRockLabs\Lockable\Events\ModelUnlockRequested;

Testing

composer test

Changelog

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

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

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

Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
besmartand-pro/php-quality-config
sentix/ai-chatbot
codifyo/ts-generator-bundle
mintobit/jobqueue
a4sex/maintenance-bundle
a4sex/entity-date-update
a4sex/client-identifier
a4sex/base-utilites
a4sex/key-value-storage
a4sex/micro-status
chilldev/dependency-injection-extra
datinglibre/datinglibre-app-api
biberltd/corebundle
bricre/symfony-bundle-test
biberltd/logbundle
dominium/http-adapter-bundle
dominium/google-analytics
a4sex/auto-clean-entity
christhompsontldr/laravel-inky
spatie/mailcoach-vapor