beatswitch / lock-laravel
A Laravel Driver for Lock.
Installs: 26 901
Dependents: 1
Suggesters: 0
Security: 0
Stars: 153
Watchers: 17
Forks: 21
Open Issues: 3
Requires
- php: >=5.6
- beatswitch/lock: ^0.2.0
- illuminate/auth: >=5.3.0
- illuminate/database: >=5.3.0
- illuminate/support: >=5.3.0
Requires (Dev)
- codeclimate/php-test-reporter: ^0.3.2
- phpunit/phpunit: ^5.7
README
I'm sad to say that Lock is currently not maintained. I won't be able to offer support or accept new contributions for the current time being. Other priorities are keeping me from putting the work into Lock that it deserves. Eventually I'll try to pick up work again but unfortunately I cannot say when. My thanks goes out to all the contributors and users.
-- Dries
This package is a Laravel 5 driver for Lock. Check the documentation of Lock for more info. It requires at least PHP 5.6.
Table of Contents
Installation
Install this package through Composer.
$ composer require beatswitch/lock-laravel
Register the service provider in your app.php
config file.
BeatSwitch\Lock\Integrations\Laravel\LockServiceProvider::class,
Register the facades in your app.php
config file.
'Lock' => BeatSwitch\Lock\Integrations\Laravel\Facades\Lock::class, 'LockManager' => BeatSwitch\Lock\Integrations\Laravel\Facades\LockManager::class,
Publish the configuration file. After publishing you can edit the configuration options at config/lock.php
.
$ php artisan vendor:publish --provider="BeatSwitch\Lock\Integrations\Laravel\LockServiceProvider" --tag="config"
If you're using the database driver you should run the package's migrations. This will create the database table where all permissions will be stored.
$ php artisan vendor:publish --provider="BeatSwitch\Lock\Integrations\Laravel\LockServiceProvider" --tag="migrations" $ php artisan migrate
Please read the main Lock documentation for setting up the caller contract on your User
model and for more in-depth documentation on how Lock works.
Also make sure to set the BeatSwitch\Lock\LockAware
trait on your User
model. That way your authenticated user will receive a Lock instance of itself so you can call permissions directly from your user object. If no user is authenticated, a SimpleCaller
object will be bootstrapped which has the guest
role. That way you can still use the Lock
facade. If you want the LockAware
trait to work on the User
model you'll need to activate it with a middleware. Register the middleware below after the StartSession
middleware.
\BeatSwitch\Lock\Integrations\Laravel\Middleware\InitLockAwareTrait::class,
Usage
Setting roles and aliases
You can register roles and aliases beforehand through the permissions
callback in the config file. Here you can say which actions should be grouped under an alias or set which roles should inherit permissions from each other.
<?php use BeatSwitch\Lock\Manager; return [ ... 'permissions' => function (Manager $manager) { // Set your configuration here. $manager->alias('manage', ['create', 'read', 'update', 'delete']); $manager->setRole('user', 'guest'); $manager->setRole(['editor', 'admin'], 'user'); }, ];
Setting permissions with the array driver
If you're using the array driver you can set all your permissions beforehand in the same permissions
callback from above.
<?php use BeatSwitch\Lock\Callers\SimpleCaller; use BeatSwitch\Lock\Drivers\ArrayDriver; use BeatSwitch\Lock\Manager; return [ ... 'permissions' => function (Manager $manager) { // Only set permissions beforehand when using the array driver. if ($manager->getDriver() instanceof ArrayDriver) { // Set some role permissions. $manager->role('guest')->allow('read', 'posts'); $manager->role('user')->allow('create', 'posts'); $manager->role('editor')->allow('publish', 'posts'); // Set permissions for a specific user. $manager->caller(new SimpleCaller('users', 1))->allow('publish', 'posts'); } }, ];
Using the database driver
Enable the database driver by switching the driver type in the config file. The database driver will use your default database connection to store permissions to your database. You can choose which table to store the permissions into by changing the setting in the config file.
Now that you have your database driver set up, you're ready to create a UI for your permissions and use the lock manager instance in your application to change permissions for callers or roles.
Using the facades
This package ships with two facades: the Lock
facade which holds the BeatSwitch\Lock\Lock
instance for your current authenticated user (or the guest user if no user is authenticated) and the LockManager
class which can be used to bootstrap new lock instances for callers or roles.
Checking permissions for the current user is easy.
Lock::can('create', 'posts'); Lock::cannot('publish', $post); // Or use the auth instance. This is possible because your User model has the LockAware trait. Auth::user()->can('create', 'posts');
Use the manager to set permissions.
LockManager::caller($user)->allow('create', 'posts'); LockManager::caller($user)->allow('all'); LockManager::role('editor')->allow('create', 'posts');
Using dependency injection
You can use Laravel's IoC container to insert an instance of the current user's lock instance or the lock manager instance into your classes or controllers.
<?php use BeatSwitch\Lock\Manager; class UserManagementController extends BaseController { protected $lockManager; public function __construct(Manager $lockManager) { $this->lockManager = $lockManager; } public function togglePermission() { $userId = Input::get('user'); $action = Input::get('action'); $resource = Input::get('resource'); $user = User::find($userId); $this->lockManager->caller($user)->toggle($action, $resource); return Redirect::route('user_management'); } }
Maintainer
Lock is currently unmaintained.
This package is currently maintained by Dries Vints.
If you have any questions please don't hesitate to ask them in an issue.
Contributing
Please see the contributing file for details.
Changelog
You can see a list of changes for each release in the changelog file.
License
The MIT License. Please see the license file for more information.