Package Data | |
---|---|
Maintainer Username: | sam_benne |
Maintainer Contact: | sam@cachethq.io (Sam Bennett) |
Package Create Date: | 2015-05-24 |
Package Last Update: | 2015-06-02 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-15 03:00:21 |
Package Statistics | |
---|---|
Total Downloads: | 6 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
This package adds extra functionality to the built in User Authentication. This adds the ability to do User Roles and Permissions.
You should install this package with Composer. Add the following require
to your composer.json
file and run the composer install
command to install it.
{
"require": {
"sbennett/jukumu": "dev-master"
}
}
Then in your config/app.php
add this line to the providers
array.
'SamBenne\Jukumu\Providers\JukumuServiceProvider',
To get the extra features into the User class you simply need to add inside the User class.
For example:
use Illuminate\Database\Eloquent\Model;
use SamBenne\Jukumu\Traits\JukumuRoleTrait;
class User extends Model
{
use Authenticatable, CanResetPassword, JukumuRoleTrait;
}
Once this is in you can use these new methods are automatically made available, within the class:
setRole( $roleName )
is( $roleName )
hasRole( array $roleNames )
has( array $permissions )
There are also a helper class Jukumu
that will help with creating the roles and permissions.
Jukumu::createRole( $name, $display_name = NULL, $description = NULL, $order = 0 )
Jukumu::createPermission( $name, $group = NULL, $display_name = NULL, $description = NULL )
Jukumu::attachRole( $user, Role $role, array $permissions = [] )
Jukumu::attachPermissions( Role $role, array $permissions = [] )
This will create a role. This only requires a name however, there are extra information that you can add.
Example
Jukumu::createRole('admin', 'Admin', 'This is my main admin role.');
Jukumu::createRole('user', 'User', 'This is the basic user role.', 1);
This will create a permission that you can attach to a role later.
The group parameter allows you to group the permissions together, this then allows for dot notation on permission checking later.
Example
Jukumu::createPermission('view', 'blog', 'View Blog Post', 'View the blog post.');
Jukumu::createPermission('edit', 'blog', 'Edit Blog Post', 'Edit the blog post.');
There are two methods of attaching the first attachRole
allows you to attach a role to a user and the permissions to that role. The other just allows for attaching permissions to the role.
Example 1
This attaches a role and permissions to the user.
Jukumu::attachRole(Auth::user(), Role::find(1), ['blog.view', 'blog.edit']);
Example 2
This attaches the permissions straight to the role.
Jukumu::attachPermissions( Role::find(1), [
'blog.view', 'blog.edit'
] );
If an error has occurred please check and add an issue with the error in the issues.
Jukumu is licensed under The MIT License (MIT).