2017 © Pedro PelĆ”ez
 

library roles

Powerful package for handling roles and permissions in Laravel 5.

image

bican/roles

Powerful package for handling roles and permissions in Laravel 5.

  • Thursday, July 30, 2015
  • by romanbican1
  • Repository
  • 96 Watchers
  • 1190 Stars
  • 145,809 Installations
  • PHP
  • 9 Dependents
  • 0 Suggesters
  • 305 Forks
  • 84 Open issues
  • 31 Versions
  • 4 % Grown

The README.md

Roles And Permissions For Laravel 5

Powerful package for handling roles and permissions in Laravel 5 (5.1 and also 5.0)., (*1)

Installation

This package is very easy to set up. There are only couple of steps., (*2)

Composer

Pull this package in through Composer (file composer.json)., (*3)

{
    "require": {
        "php": ">=5.5.9",
        "laravel/framework": "5.1.*",
        "bican/roles": "2.1.*"
    }
}

If you are still using Laravel 5.0, you must pull in version 1.7.*., (*4)

Run this command inside your terminal., (*5)

composer update

Service Provider

Add the package to your application service providers in config/app.php file., (*6)

'providers' => [

    /*
     * Laravel Framework Service Providers...
     */
    Illuminate\Foundation\Providers\ArtisanServiceProvider::class,
    Illuminate\Auth\AuthServiceProvider::class,
    ...

    /**
     * Third Party Service Providers...
     */
    Bican\Roles\RolesServiceProvider::class,

],

Config File And Migrations

Publish the package config file and migrations to your application. Run these commands inside your terminal., (*7)

php artisan vendor:publish --provider="Bican\Roles\RolesServiceProvider" --tag=config
php artisan vendor:publish --provider="Bican\Roles\RolesServiceProvider" --tag=migrations

And also run migrations., (*8)

php artisan migrate

This uses the default users table which is in Laravel. You should already have the migration file for the users table available and migrated., (*9)

HasRoleAndPermission Trait And Contract

Include HasRoleAndPermission trait and also implement HasRoleAndPermission contract inside your User model., (*10)

use Bican\Roles\Traits\HasRoleAndPermission;
use Bican\Roles\Contracts\HasRoleAndPermission as HasRoleAndPermissionContract;

class User extends Model implements AuthenticatableContract, CanResetPasswordContract, HasRoleAndPermissionContract
{
    use Authenticatable, CanResetPassword, HasRoleAndPermission;

And that's it!, (*11)

Usage

Creating Roles

use Bican\Roles\Models\Role;

$adminRole = Role::create([
    'name' => 'Admin',
    'slug' => 'admin',
    'description' => '', // optional
    'level' => 1, // optional, set to 1 by default
]);

$moderatorRole = Role::create([
    'name' => 'Forum Moderator',
    'slug' => 'forum.moderator',
]);

Because of Slugable trait, if you make a mistake and for example leave a space in slug parameter, it'll be replaced with a dot automatically, because of str_slug function., (*12)

Attaching And Detaching Roles

It's really simple. You fetch a user from database and call attachRole method. There is BelongsToMany relationship between User and Role model., (*13)

use App\User;

$user = User::find($id);

$user->attachRole($adminRole); // you can pass whole object, or just an id
$user->detachRole($adminRole); // in case you want to detach role
$user->detachAllRoles(); // in case you want to detach all roles

Checking For Roles

You can now check if the user has required role., (*14)

if ($user->is('admin')) { // you can pass an id or slug
    // or alternatively $user->hasRole('admin')
}

You can also do this:, (*15)

if ($user->isAdmin()) {
    //
}

And of course, there is a way to check for multiple roles:, (*16)

if ($user->is('admin|moderator')) { 
    /*
    | Or alternatively:
    | $user->is('admin, moderator'), $user->is(['admin', 'moderator']),
    | $user->isOne('admin|moderator'), $user->isOne('admin, moderator'), $user->isOne(['admin', 'moderator'])
    */

    // if user has at least one role
}

if ($user->is('admin|moderator', true)) {
    /*
    | Or alternatively:
    | $user->is('admin, moderator', true), $user->is(['admin', 'moderator'], true),
    | $user->isAll('admin|moderator'), $user->isAll('admin, moderator'), $user->isAll(['admin', 'moderator'])
    */

    // if user has all roles
}

Levels

When you are creating roles, there is optional parameter level. It is set to 1 by default, but you can overwrite it and then you can do something like this:, (*17)

if ($user->level() > 4) {
    //
}

If user has multiple roles, method level returns the highest one., (*18)

Level has also big effect on inheriting permissions. About it later., (*19)

Creating Permissions

It's very simple thanks to Permission model., (*20)

use Bican\Roles\Models\Permission;

$createUsersPermission = Permission::create([
    'name' => 'Create users',
    'slug' => 'create.users',
    'description' => '', // optional
]);

$deleteUsersPermission = Permission::create([
    'name' => 'Delete users',
    'slug' => 'delete.users',
]);

Attaching And Detaching Permissions

You can attach permissions to a role or directly to a specific user (and of course detach them as well)., (*21)

use App\User;
use Bican\Roles\Models\Role;

$role = Role::find($roleId);
$role->attachPermission($createUsersPermission); // permission attached to a role

$user = User::find($userId);
$user->attachPermission($deleteUsersPermission); // permission attached to a user
$role->detachPermission($createUsersPermission); // in case you want to detach permission
$role->detachAllPermissions(); // in case you want to detach all permissions

$user->detachPermission($deleteUsersPermission);
$user->detachAllPermissions();

Checking For Permissions

if ($user->can('create.users') { // you can pass an id or slug
    //
}

if ($user->canDeleteUsers()) {
    //
}

You can check for multiple permissions the same way as roles. You can make use of additional methods like canOne, canAll or hasPermission., (*22)

Permissions Inheriting

Role with higher level is inheriting permission from roles with lower level., (*23)

There is an example of this magic:, (*24)

You have three roles: user, moderator and admin. User has a permission to read articles, moderator can manage comments and admin can create articles. User has a level 1, moderator level 2 and admin level 3. It means, moderator and administrator has also permission to read articles, but administrator can manage comments as well., (*25)

If you don't want permissions inheriting feature in you application, simply ignore level parameter when you're creating roles., (*26)

Entity Check

Let's say you have an article and you want to edit it. This article belongs to a user (there is a column user_id in articles table)., (*27)

use App\Article;
use Bican\Roles\Models\Permission;

$editArticlesPermission = Permission::create([
    'name' => 'Edit articles',
    'slug' => 'edit.articles',
    'model' => 'App\Article',
]);

$user->attachPermission($editArticlesPermission);

$article = Article::find(1);

if ($user->allowed('edit.articles', $article)) { // $user->allowedEditArticles($article)
    //
}

This condition checks if the current user is the owner of article. If not, it will be looking inside user permissions for a row we created before., (*28)

if ($user->allowed('edit.articles', $article, false)) { // now owner check is disabled
    //
}

Blade Extensions

There are four Blade extensions. Basically, it is replacement for classic if statements., (*29)

@role('admin') // @if(Auth::check() && Auth::user()->is('admin'))
    // user is admin
@endrole

@permission('edit.articles') // @if(Auth::check() && Auth::user()->can('edit.articles'))
    // user can edit articles
@endpermission

@level(2) // @if(Auth::check() && Auth::user()->level() >= 2)
    // user has level 2 or higher
@endlevel

@allowed('edit', $article) // @if(Auth::check() && Auth::user()->allowed('edit', $article))
    // show edit button
@endallowed

@role('admin|moderator', 'all') // @if(Auth::check() && Auth::user()->is('admin|moderator', 'all'))
    // user is admin and also moderator
@else
    // something else
@endrole

Middleware

This package comes with VerifyRole, VerifyPermission and VerifyLevel middleware. You must add them inside your app/Http/Kernel.php file., (*30)

/**
 * The application's route middleware.
 *
 * @var array
 */
protected $routeMiddleware = [
    'auth' => \App\Http\Middleware\Authenticate::class,
    'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
    'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
    'role' => \Bican\Roles\Middleware\VerifyRole::class,
    'permission' => \Bican\Roles\Middleware\VerifyPermission::class,
    'level' => \Bican\Roles\Middleware\VerifyLevel::class,
];

Now you can easily protect your routes., (*31)

$router->get('/example', [
    'as' => 'example',
    'middleware' => 'role:admin',
    'uses' => 'ExampleController@index',
]);

$router->post('/example', [
    'as' => 'example',
    'middleware' => 'permission:edit.articles',
    'uses' => 'ExampleController@index',
]);

$router->get('/example', [
    'as' => 'example',
    'middleware' => 'level:2', // level >= 2
    'uses' => 'ExampleController@index',
]);

It throws \Bican\Roles\Exceptions\RoleDeniedException, \Bican\Roles\Exceptions\PermissionDeniedException or \Bican\Roles\Exceptions\LevelDeniedException exceptions if it goes wrong., (*32)

You can catch these exceptions inside app/Exceptions/Handler.php file and do whatever you want., (*33)

/**
 * Render an exception into an HTTP response.
 *
 * @param  \Illuminate\Http\Request  $request
 * @param  \Exception  $e
 * @return \Illuminate\Http\Response
 */
public function render($request, Exception $e)
{
    if ($e instanceof \Bican\Roles\Exceptions\RoleDeniedException) {
        // you can for example flash message, redirect...
        return redirect()->back();
    }

    return parent::render($request, $e);
}

Config File

You can change connection for models, slug separator, models path and there is also a handy pretend feature. Have a look at config file for more information., (*34)

More Information

For more information, please have a look at HasRoleAndPermission contract., (*35)

License

This package is free software distributed under the terms of the MIT license., (*36)

The Versions

30/07 2015

dev-master

9999999-dev

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel acl auth roles permissions illuminate

30/07 2015

2.1.7

2.1.7.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel acl auth roles permissions illuminate

29/07 2015

2.1.6

2.1.6.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel acl auth roles permissions illuminate

01/07 2015

2.1.5

2.1.5.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel acl auth roles permissions illuminate

25/06 2015

2.1.4

2.1.4.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel acl auth roles permissions illuminate

25/06 2015

2.1.3

2.1.3.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel acl auth roles permissions illuminate

22/06 2015

2.1.2

2.1.2.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel acl auth roles permissions illuminate

22/06 2015

2.1.1

2.1.1.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

21/06 2015

2.1.0

2.1.0.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

16/06 2015

2.0.2

2.0.2.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

16/06 2015

2.0.1

2.0.1.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

09/06 2015

2.0.0

2.0.0.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

18/05 2015

1.7.0

1.7.0.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

18/05 2015

1.7.1

1.7.1.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

04/04 2015

1.6.0

1.6.0.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

25/03 2015

1.5.4

1.5.4.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

23/03 2015

1.5.3

1.5.3.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

07/03 2015

1.5.2

1.5.2.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

05/03 2015

1.5.1

1.5.1.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

05/03 2015

1.5.0

1.5.0.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

26/02 2015

1.4.1

1.4.1.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

26/02 2015

1.4.0

1.4.0.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

16/02 2015

1.3.0

1.3.0.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

12/02 2015

1.2.4

1.2.4.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

11/02 2015

1.2.3

1.2.3.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

10/02 2015

1.2.2

1.2.2.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

10/02 2015

1.2.1

1.2.1.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

09/02 2015

1.2.0

1.2.0.0

Powerful package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

09/02 2015

1.1

1.1.0.0

Simple package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

26/01 2015

1.0

1.0.0.0

Simple package for handling roles and permissions in Laravel 5.

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles permissions laravel5

15/01 2015

0.9

0.9.0.0

Simple package for handling user roles for Laravel 5

  Sources   Download

MIT

The Requires

 

by Roman Bičan

laravel roles laravel5