权限设计是后台管理很重要的一个功能,所以要好好设计。 PHP 已经有很多这方面的packages了,就不用我们重复造轮子了。当然,如果你愿意可以从头开始~
以前做权限认证的方式有好几种,我说说常用的两种吧!
packages
会提供用户可以直接拥有权限功能)模型关联关系处理:
<?php
namespace App\Models;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use Notifiable;
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
// 用户和角色的模型关联关系
public function roles()
{
return $this->belongsToMany(Role::class);
}
/****************************************
* 封装一个方法方便使用
* 1. 需要的权限
* 2. 遍历当期那用户拥有的所有角色
* 3. 再通过角色判断是否有当前需要的权限
****************************************/
public function hasPermission($permissionName)
{
foreach ($this->roles as $role) {
if ($role->permisssions()->where('name', $permissionName)->exists()) {
return true;;
}
}
return false;
}
}
<?php
namespace App\Models;
class Role extends Model
{
// 用户和角色的模型关联关系
public function users()
{
return $this->belongsToMany(User::class);
}
// 角色和权限的模型关联关系
public function permissions()
{
return $this->belongsToMany(Permission::class);
}
}
<?php
namespace App\Models;
class Role extends Model
{
// 角色和权限的模型关联关系
public function roles()
{
return $this->belongsToMany(Role::class);
}
}
########################################
# users:
+-------+---------+-----------+
| id | name | password |
+-----------------+-----------+
| 1 | gps | 123456 |
+-----------------+-----------+
| 2 | david | 123456 |
+-----------------+-----------+
########################################
# roles:
+-------+---------+
| id | name |
+-----------------+
| 1 | admin |
+-----------------+
########################################
# permissions:
+-------+-----------------+
| id | name |
+-------------------------+
| 1 | create_product |
| 2 | delete_product |
+-------------------------+
########################################
# role_user (用户 gps 拥有 admin 角色身份)
+---------+---------+
| role_id | user_id |
+---------+---------+
| 1 | 1 |
+------------------+
########################################
# permission_role (角色 admin 拥有创建商品和删除商品的权限)
+---------+---------------+
| role_id | permission_id |
+---------+---------------+
| 1 | 1 |
| 1 | 2 |
+-------------------------+
第一种大概介绍一下:
<?php
namespace App\Http\Controllers;
use App\Models\Product;
class ProductsController extends Controller
{
public function store(Request $request)
{
// 判断当前登录的用户是否有权限
if (! $request->user()->hasPermission('create_product')) {
abort(403);
}
// do something
return back()->with('status', '添加商品成功');
}
public function destroy(Product $product)
{
// 判断当前登录的用户是否有权限
if (! $request->user()->hasPermission('delete_product')) {
abort(403);
}
// do something
return back()->with('status', '删除商品成功');
}
}
通过上面的代码我们可以看到,即使封装了权限验证的代码,还是要在不同的方法进行验证,而且可扩展性不高,这时候我们只需要在权限表加一个字段,就可以解决问题
1. permissions (加多一个 route 字段, 如果不在 laravel 中使用,可以加一个 url 字段匹配)
+-------+------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------+------------------+------+-----+---------+----------------+
| id | int(10) unsigned | NO | PRI | NULL | auto_increment |
| name | varchar(191) | NO | | NULL | |
| route | varchar(191) | NO | | NULL | |
+-------+------------------+------+-----+---------+----------------+
2. 这时候插入数据的时候,我们只要做好相关的录入
+-------+-----------------+------------------+
| id | name | route |
+-------------------------+------------------+
| 1 | create_product | products.store |
| 2 | delete_product | products.destroy |
+-------------------------+------------------+
添加好数据的时候,我们就不用再控制器里验证了,我们只需要新建一个中间件。
<?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Support\Facades\Route;
use App\Models\Permission;
class PermissionAuth
{
/**
* 把这个中间件放入路由组,把需要的验证的路由
* 放入这个中间组里
*/
public function handle($request, Closure $next)
{
/****************************************
* 获取当前路由的别名,如果没有返回 null
* (不在 laravel 中使用时,可以获取当前 url )
****************************************/
$route = Route::currentRouteName();
// 判断权限表中这条路由是否需要验证
if ($permission = Permission::where('route', $route)->first()) {
// 当前用户不拥有这个权限的名字
if (! auth()->user()->hasPermission($permission->name)) {
return response()->view('errors.403', ['status' => "权限不足,需要:{$permission->name}权限"]);
}
}
return $next($request);
}
}
如果是在 laravel 中使用,已经有轮子了,请使用 https://github.com/spatie/laravel-permission
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.