hskyzhou/roles

用于处理 Laravel 5.3 中角色和权限的强大包

1.0.1 2017-01-16 09:36 UTC

This package is auto-updated.

Last update: 2024-08-29 04:40:30 UTC


README

它是一个从 bican/roles 包 fork 出来的,
我对它进行了一些修改,使其与 laravel 5.3 兼容

安装

此包非常易于设置。只需几个步骤。

Composer

通过 Composer (file composer.json) 拉取此包。

{
    "require": {
        "php": ">=5.5.9",
        "laravel/framework": "~5.3.0",
        "hskyzhou/roles": "^3.0.2"
    }
}

如果您仍在使用 Laravel 5.0,您必须拉取版本 1.7.*

对于 Laravel 5.2,您必须拉取版本 2.1.*

在终端中运行此命令。

composer update

服务提供者

将包添加到您的应用程序服务提供者在 config/app.php 文件中。

'providers' => [
    
    /*
     * Laravel Framework Service Providers...
     */
    Illuminate\Foundation\Providers\ArtisanServiceProvider::class,
    Illuminate\Auth\AuthServiceProvider::class,
    ...
    
    /**
     * Third Party Service Providers...
     */
    HskyZhou\Roles\RolesServiceProvider::class,

],

配置文件和迁移

将包的配置文件和迁移发布到您的应用程序。在终端中运行以下命令。

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

并运行迁移。

php artisan migrate

迁移发布仅适用于低于 laravel 5.3 的版本,
对于 laravel 5.3,您必须只运行 Artisan migrate 命令

这使用了 Laravel 中的默认用户表。您应该已经有用户表的迁移文件可用并已迁移。

HasRoleAndPermission 特性和契约

在您的 User 模型中包含 HasRoleAndPermission 特性和实现 HasRoleAndPermission 契约。

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

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

就这么多!

用法

创建角色

use HskyZhou\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',
]);

由于 Slugable 特性,如果您犯错并在 slug 参数中留下空格,它将被自动替换为点,因为使用了 str_slug 函数。

附加和分离角色

这非常简单。您从数据库中检索一个用户并调用 attachRole 方法。在 UserRole 模型之间存在 BelongsToMany 关系。

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

检查角色

您现在可以检查用户是否具有所需的角色。

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

您也可以这样做

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

当然,还有检查多个角色的方法

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

    // if user has at least one role
}

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

    // if user has all roles
}

级别

在您创建角色时,有一个可选参数 level。它默认设置为 1,但您可以重写它,然后您可以这样做

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

如果用户具有多个角色,方法 level 返回最高级别。

Level 对权限继承也有很大影响。稍后介绍。

创建权限

多亏了 Permission 模型,这非常简单。

use HskyZhou\Roles\Models\Permission;

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

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

附加和分离权限

您可以将权限附加到角色或直接附加到特定用户(当然,也可以分离它们)。

use App\User;
use HskyZhou\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();

检查权限

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

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

您可以像检查角色一样检查多个权限。您可以利用额外的像 canOnecanAllhasPermission 方法。

权限继承

级别较高的角色会从级别较低的角色的角色中继承权限。

这里有一个这种 魔法 的例子

您有三个角色:usermoderatoradmin。用户有权阅读文章,版主可以管理评论,管理员可以创建文章。用户级别为 1,版主级别为 2,管理员级别为 3。这意味着,版主和管理员也有权阅读文章,但管理员还可以管理评论。

如果您不想在应用程序中使用权限继承功能,只需在创建角色时忽略 level 参数即可。

实体检查

假设您有一篇文章,并想编辑它。这篇文章属于一个用户(文章表中有一个user_id列)。

use App\Article;
use HskyZhou\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)
    //
}

这个条件检查当前用户是否是文章的所有者。如果不是,它将在用户权限中查找我们之前创建的行。

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

Blade 扩展

有四个Blade扩展。基本上,它是经典if语句的替代品。

@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

中间件

这个包包含了VerifyRoleVerifyPermissionVerifyLevel中间件。您必须在您的app/Http/Kernel.php文件中添加它们。

/**
 * 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' => \HskyZhou\Roles\Middleware\VerifyRole::class,
    'permission' => \HskyZhou\Roles\Middleware\VerifyPermission::class,
    'level' => \HskyZhou\Roles\Middleware\VerifyLevel::class,
];

现在您可以轻松地保护您的路由。

$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',
]);

如果出现错误,它将抛出\HskyZhou\Roles\Exceptions\RoleDeniedException\HskyZhou\Roles\Exceptions\PermissionDeniedException\HskyZhou\Roles\Exceptions\LevelDeniedException异常。

您可以在app/Exceptions/Handler.php文件中捕获这些异常,并做任何您想做的事情。

/**
 * 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 \HskyZhou\Roles\Exceptions\RoleDeniedException) {
        // you can for example flash message, redirect...
        return redirect()->back();
    }

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

配置文件

您可以更改模型的连接、缩写分隔符、模型路径,还有一个方便的模拟功能。查看配置文件以获取更多信息。

许可协议

这个包是免费软件,按照MIT许可条款分发。