Entrust provides a flexible way to add Role-based Permissions to Laravel4.
PS: Even though it's not needed. Entrust works very well with Confide in order to eliminate repetitive tasks involving the management of users: Account creation, login, logout, confirmation by e-mail, password reset, etc.
In the require
key of composer.json
file add the following
"zizaco/entrust": "1.2.*@dev"
Run the Composer update comand
$ composer update
In your config/app.php
add 'Zizaco\Entrust\EntrustServiceProvider'
to the end of the $providers
array
'providers' => array(
'Illuminate\Foundation\Providers\ArtisanServiceProvider',
'Illuminate\Auth\AuthServiceProvider',
...
'Zizaco\Entrust\EntrustServiceProvider',
),
At the end of config/app.php
add 'Entrust' => 'Zizaco\Entrust\EntrustFacade'
to the $aliases
array
'aliases' => array(
'App' => 'Illuminate\Support\Facades\App',
'Artisan' => 'Illuminate\Support\Facades\Artisan',
...
'Entrust' => 'Zizaco\Entrust\EntrustFacade',
),
Set the property values in the config/auth.php
. These values will be used by entrust to refer to the correct user table and model.
Now generate the Entrust migration
$ php artisan entrust:migration
It will generate the <timestamp>_entrust_setup_tables.php
migration. You may now run it with the artisan migrate command:
$ php artisan migrate
After the migration, two new tables will be present: roles
which contain the existent roles and it's permissions and assigned_roles
which will represent the Many-to-Many relation between User
and Role
.
Create a Role model following the example at app/models/Role.php
:
<?php
use Zizaco\Entrust\EntrustRole;
class Role extends EntrustRole
{
}
The Role
model has two main attributes: name
and permissions
.
name
, as you can imagine, is the name of the Role. For example: "Admin", "Owner", "Employee".
The permissions
field has been deprecated in preference for the permission table. You should no longer use it.
It is an array that is automatically serialized and unserialized when the Model is saved. This array should contain the name of the permissions of the Role
. For example: array( "manage_posts", "manage_users", "manage_products" )
.
Create a Permission model following the example at app/models/Permission.php
:
<?php
use Zizaco\Entrust\EntrustPermission;
class Permission extends EntrustPermission
{
}
The Permission
model has two attributes: name
and display_name
.
name
, as you can imagine, is the name of the Permission. For example: "Admin", "Owner", "Employee", "can_manage".
display_name
is a viewer friendly version of the permission string. "Admin", "Can Manage", "Something Cool".
Next, use the HasRole
trait in your existing User
model. For example:
<?php
use Zizaco\Entrust\HasRole;
class User extends Eloquent /* or ConfideUser 'wink' */{
use HasRole; // Add this trait to your user model
...
This will do the trick to enable the relation with Role
and the following methods roles
, hasRole( $name )
,
can( $permission )
, and ability($roles, $permissions, $options)
within your User
model.
This fork of the Entrust package extends the above behavior with the ability to achieve polymorphic roles and permissions on other Models. You may now add an optional Model class and instance id to the above commands to restrict the scope of the role/permission. For example,
hasRole( $name, $modelName, $modelId )
,can( $permission, $modelName, $modelId )
will check for a role or permission for a specific Model. See the Usage section below for further explaination.
The above discussion of roles and permissions have been restricted to users in the global scope. Often times, it is desirable to apply permissions on a specific resource within your application. This is now possibly by adding the HasModelRole
trait to a Model. For example, consider the follow example of a Trip:
<?php
use Zizaco\Entrust\HasModelRole;
class Trip extends Eloquent {
use HasModelRole; // Add this trait to the models you want to protect with roles and permissions
...
This will add the following methods hasRole( $name )
, can( $permission )
, and ability($roles, $permissions, $options)
within your Trip
model. These methods will work identicaly as before, but apply specifically to the model instance thus giving you fine-grain control over which resources you keep private and which you Entrust to others.
Don't forget to dump composer autoload
$ composer dump-autoload
And you are ready to go.
Let's start by creating the following Role
s and Permission
s:
$owner = new Role;
$owner->name = 'Owner';
$owner->save();
$admin = new Role;
$admin->name = 'Admin';
$admin->save();
Next, with these roles created let's assign then to the users. Thanks to the HasRole
trait this is as easy as:
$user = User::where('username','=','Zizaco')->first();
/* role attach alias */
$user->attachRole( $admin ); // Parameter can be an Role object, array or id.
/* OR the eloquent's original: */
$user->roles()->attach( $admin->id ); // id only
Now we just need to add permissions to those Roles.
$managePosts = new Permission;
$managePosts->name = 'manage_posts';
$managePosts->display_name = 'Manage Posts';
$managePosts->save();
$viewPosts = new Permission;
$viewPosts->name = 'view_posts';
$viewPosts->display_name = 'View Posts';
$managePosts->save();
$manageUsers = new Permission;
$manageUsers->name = 'manage_users';
$manageUsers->display_name = 'Manage Users';
$manageUsers->save();
$owner->perms()->sync(array($managePosts->id,$manageUsers->id));
$admin->perms()->sync(array($managePosts->id));
Now we can check for role 8000 s and permissions simply by doing:
$user->hasRole("Owner"); // false
$user->hasRole("Admin"); // true
$user->can("manage_posts"); // true
$user->can("manage_users"); // false
You can have as many Role
s as you want for each User
and vice versa.
While this is fine for many situations, there are times when you don't want to give global permissions to a user to, for example, manage_posts
. This fork of Entrust allows us to add fine-grained access control on specific Models and Model instances. To see what we mean, let's look at our Trip Model.
Recently our example users has started to travel a bit. As a result, they are now going to start contributing to travel reviews. Since they are new to the travel review genre, they will collaborate with another author on all their content. Until they have a little experience under their belt, they should not be able to edit any Trip reviews they have not been assigned. This kind of behavior is what this fork of Entrust enables.
Let's create a new role to keep things clean.
$editor = new Role;
$editor->name = 'Trip Editor';
$editor->save();
Now we can add the users as follows.
$user = User::where('username','=','Zizaco')->first();
/* role attach alias */
$user->attachRole( $editor, 'Trip', 1 ); // Any model class can be specified. Model id should be an integer value
/* OR the eloquent's original: */
$user->roles()->attach( $admin->id, array( 'model_name' => 'Trip', 'model_id' => 1 ) ); // id and relation fields
Now we just need to add permissions to the Trip Editor
Role.
$manageTrips = new Permission;
$manageTrips->name = 'manage_trips';
$manageTrips->display_name = 'Manage Trips';
$manageTrips->save();
$editor->perms()->sync(array($manageTrips->id));
Now we can check for roles and permissions simply by doing:
$trip1 = Trip::find(1);
$trip2 = Trip::find(2);
// check for Role and Permission for authenticated user on a Trip instance
$trip1->hasRole("Trip Editor"); // true
$trip2->hasRole("Trip Editor"); // false
$trip1->can("manage_trips"); // true
$trip2->can("manage_trips"); // false
// check Role for a specific user
$user->hasRole("Trip Editor"); // false - role was not given globally
$user->hasRole("Trip Editor", 'Trips'); // false - role was not given at a Model level
$user->hasRole("Trip Editor", 'Trips', 1); // true - role was given just for this Model instance
$user->hasRole("Trip Editor", 'Trips', 2); // false - role was not given for this Model instance
// check Permission for a specific user
$user->can("manage_trips"); // false - role with this permission was not given globally
$user->can("manage_trips", 'Trips'); // false - role with this permission was not given at a Model level
$user->can("manage_trips", 'Trips', 1); // true - role with this permission was given just for this Model instance
$user->can("manage_trips", 'Trips', 2); // false - role with this permission was not given for this Model instance
More advanced checking can be done using the awesome ability
function. It takes in three parameters (roles, permissions, options).
roles
is a set of roles to check. permissions
is a set of permissions to check.
Either of the roles or permissions variable can be a comma separated string or array.
$user->ability(array('Admin','Owner'), array('manage_posts','manage_users');
//or
$user->ability('Admin,Owner', 'manage_posts,manage_users');
This will check whether the user has any of the provided roles and permissions. In this case it will return true since the user is an Admin and has the manage_posts permission.
The third parameter is an options array.
$options = array(
'validate_all' => true | false (Default: false),
'return_type' => boolean | array | both (Default: boolean),
'model_name' => string,
'model_id' => int
);
validate_all
is a boolean flag to set whether to check all the values for true, or to return true if at least one role or permission is matched.
return_type
specifies whether to return a boolean, array of checked values, or both in an array.
model_name
is the name of the Model class to which you wish to grant a role.
model_id
is an instance id of a Model object.
Here's some example output.
$options = array(
'validate_all' => true,
'return_type' => 'both'
);
list($validate,$allValidations) = $user->ability(array('Admin','Owner'), array('manage_posts','manage_users'), $options);
// Output
var_dump($validate);
bool(false)
var_dump($allValidations);
array(4) {
['role']=>
bool(true)
['role_2']=>
bool(false)
['manage_posts']=>
bool(true)
['manage_users']=>
bool(false)
}
To filter a route by permission or role you can call the following in your app/filters.php
:
// Only users with roles that have the 'manage_posts' permission will
// be able to access any route within admin/post.
Entrust::routeNeedsPermission( 'admin/post*', 'manage_posts' );
// Only owners will have access to routes within admin/advanced
Entrust::routeNeedsRole( 'admin/advanced*', 'Owner' );
// Optionally the second parameter can be an array of permissions or roles.
// User would need to match all roles or permissions for that route.
Entrust::routeNeedsPermission( 'admin/post*', array('manage_posts','manage_comments') );
Entrust::routeNeedsRole( 'admin/advanced*', array('Owner','Writer') );
// Only users with roles that have the 'manage_trips' permission for the
// Trip Model will be able to access routes starting with 'admin/trips'.
Entrust::routeNeedsPermission( 'admin/trips*', 'manage_trips:Trip:{tripId}' );
// Only users with roles that have a global 'Owner' role or the 'Trip Editor' role
// for the Trip Model will be able to access routes starting with 'admin/trips'.
Entrust::routeNeedsRole( 'admin/trips*', array('Owner','Trip Editor:Trip') );
Both of these methods accept a third parameter. If the third parameter is null then the return of a prohibited access will be App::abort(403)
. Otherwise the third parameter will be returned. So you can use it like:
Entrust::routeNeedsRole( 'admin/advanced*', 'Owner', Redirect::to('/home') );
Further more both of these methods accept a fourth parameter. It defaults to true and checks all roles/permissions given. If you set it to false, the function will only fail if all roles/permissions fail for that user. Useful for admin applications where you want to allow access for multiple groups.
// If a user has `manage_posts`, `manage_comments` or both they will have access.
Entrust::routeNeedsPermission( 'admin/post*', array('manage_posts','manage_comments'), null, false );
// If a user is a member of `Owner`, `Writer` or both they will have access.
Entrust::routeNeedsRole( 'admin/advanced*', array('Owner','Writer'), null, false );
// If a user is a member of `Owner`, `Writer` or both, or user has `manage_posts`, `manage_comments` they will have access.
// You can set the 4th parameter to true then user must be member of Role and must has Permission.
Entrust::routeNeedsRoleOrPermission( 'admin/advanced*', array('Owner','Writer'), array('manage_posts','manage_comments'), null, false);
Entrust roles/permissions can be used in filters by simply using the can
and hasRole
methods from within the Facade.
Route::filter('manage_posts', function()
{
if (! Entrust::can('manage_posts') ) // Checks the current user
{
return Redirect::to('admin');
}
});
// Only users with roles that have the 'manage_posts' permission will
// be able to access any admin/post route.
Route::when('admin/post*', 'manage_posts');
Route::filter('manage_trips', function($tripId)
{
if (! Entrust::can('manage_trips', 'Trip', $tripId) ) // Checks the current user
{
return Redirect::to('admin');
}
});
// Only users with roles that have the 'manage_trips' permission will
// be able to access any admin/post route.
Route::when('admin/trips/{tripId}/*', 'manage_trips');
Using a filter to check for a role:
Route::filter('owner_role', function()
{
if (! Entrust::hasRole('Owner') ) // Checks the current user
{
App::abort(404);
}
});
// Only owners will have access to routes within admin/advanced
Route::when('admin/advanced*', 'owner_role');
Route::filter('trip_editor_role', function($tripId)
{
if (! Entrust::hasRole('Trip Editor', 'Trip', $tripId) ) // Checks the current user
{
App::abort(404);
}
});
// Only trip editors with permission to a Trip will have access to routes within admin/advanced
Route::when('admin/trips/{tripId}/*', 'trip_editor_role');
As you can see Entrust::hasRole()
and Entrust::can()
checks if the user is logged, and then if he has the role or permission. If the user is not logged the return will also be false
.
If you encounter an error when doing the migration th 5986 at looks like:
SQLSTATE[HY000]: General error: 1005 Can't create table 'laravelbootstrapstarter.#sql-42c_f8' (errno: 150) (SQL: alter table `assigned_roles` add constraint assigned_roles_user_id_foreign foreign key (`
user_id`) references `users` (`id`)) (Bindings: array (
))
Then it's likely that the id
column in your user table does not match the user_id
column in assigned_roles
. Match sure both are INT(10)
.
Name is having issues saving.
EntrustRole->name has a length limitation set within the rules variable of the EntrustRole class.
You can adjust it by changing your Role Model.
Entrust is free software distributed under the terms of the MIT license
Any questions, feel free to contact me or ask here
Any issues, please report here