定制 riteshjha/laravel-permission 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

riteshjha/laravel-permission

最新稳定版本:v2.0.4

Composer 安装命令:

composer require riteshjha/laravel-permission

包简介

Laravel role and user based permission

README 文档

README

Latest Version on Packagist Total Downloads Software License

This package allows you to manage user permissions in a database using role and direct user based permission with Account (Organization) level and owner level permission check. It handle 2 types of abilities (route ability and field ability).

Installation

  1. Require it with Composer

    composer require riteshjha/laravel-permission    
    
  2. You can publish the migrations, views, assets and the config file with:

    php artisan vendor:publish --provider="Rkj\Permission\PermissionServiceProvider"
    
  3. Add the service provider in your config/app.php file:

    'providers' => [
        // ...
        Rkj\Permission\PermissionServiceProvider::class,
    ];
    
    'aliases' => [
        //...
        'Permission' => Rkj\Permission\Facades\Permission::class
    ];
    
  4. This package publishes a config/permission.php file. Check this file and change accourding to your needs for different (Ability, Role and User) model name and other config options.

  5. Run migrations: php artisan migrate

Configuration

  1. First configure models namesapce in config/permission.php

  2. Add UserHasRole trait to your User model and RoleHasAbility to Role model.

  3. All model that you want to include in permission should implements Permissionable interface and add HasPermission trait.

Ability

Package handle 2 types of ability (route ability and field ability). Package parse Auth route (route which has auth middleware) and store route name as a Route Ability. For field ability, you have to define it in your model like this:

class Project extends Model
{
    protected $fieldAbilities = ['cost', 'estimated_cost'] ; //list projects table fields on which you want to apply permission
}

You can use Project::allowFieldAbilities(['cost']) in your seeder to alow default field ability. For details check PermissionSeeder in tests.

Role and Ability Group

Role and Ability is divided in 2 groups (SYSTEM and ACCOUNT). All admin users that mange admin tasks will under SYSTEM group role. All users that signup or login as front end user will under ACCOUNT group. Similarly All ability (route name) which is used for admin interface will be under SYSTEM group and all ability which is used for front-end will be under ACCOUNT group. To disable it change disableAbilityGroup to true in config.

Sync Ability

php artisan ability:record  // if need fresh then add --fresh

Admin Interface

There is an admin interface with routes and views for handling ability and permissions. You have to add package routes in your admin route group.

Route::group(['middleware' => ['auth'], 'prefix' => 'admin'], function () {
    Permission::routes();
});

Now you can access permission interface via admin/permission/roles routes

Note: If you use admin routes prefix other than 'admin' then change adminRoutePrefix value in config/permission.php

Usage

Package use laravel gate, so you can use can('project.create') in view and $this->authorize('project.create') in controller for route ability. And can('projects::cost') for field ability in view. Here projects is a table name.

For Details check Tests

Create/Update

When creating or updating record in model then filter data using filterFieldAccess method like :

$data = Project::filterFieldAccess($data)

统计信息

  • 总下载量: 689
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2020-06-18