How to use ThinkPHP6 to implement user role permission management
With the continuous development of business, many small and medium-sized companies have their own user maintenance systems, and user rights management is an important part of it. In order to protect sensitive information in the system and ensure the normal operation of the business, we need to use a role permission management mechanism to ensure that users in different roles can only access designated resources and data.
This article will take the ThinkPHP6 framework as an example to introduce how to use the permission control middleware and extension packages it provides to implement user role permission management.
- Create role table and permission table
First we need to define two database tables, one is the role table, used to store system role information; the other is the permission table , used to store system permission information.
CREATE TABLE role
(
id
int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary key',
name
varchar( 20) NOT NULL COMMENT 'Role name',
description
varchar(50) NOT NULL COMMENT 'Role description',
PRIMARY KEY (id
)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='role table';
CREATE TABLE permission
(
id
int(11) NOT NULL AUTO_INCREMENT COMMENT 'Primary key ',
name
varchar(20) NOT NULL COMMENT 'Permission name',
description
varchar(50) NOT NULL COMMENT 'Permission description',
PRIMARY KEY (id
)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Permission table';
We can use the database migration tool provided by ThinkPHP to create the table: php think migrate :run.
- Create roles and permissions models
Next, we need to create roles and permissions models. Create the Role.php and Permission.php files in the app/model directory. The code is as follows:
namespace appmodel;
use thinkModel;
class Role extends Model
{
protected $table = 'role';
}
namespace appmodel;
use thinkModel;
class Permission extends Model
{
protected $table = 'permission';
}
- Create role and permission association table
Since a user may have multiple roles, a role may also Corresponds to multiple permissions, so we need to create an association table of roles and permissions. Create a role_permission table in the database.
CREATE TABLE role_permission
(
id
int(11) NOT NULL AUTO_INCREMENT COMMENT 'primary key',
role_id
int( 11) NOT NULL COMMENT 'Role ID',
permission_id
int(11) NOT NULL COMMENT 'Permission ID',
PRIMARY KEY (id
),
KEY role_id
(role_id
),
KEY permission_id
(permission_id
)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT ='Role-permission association table';
Define the many-to-many relationship between roles and permissions in the model:
namespace appmodel;
use thinkModel;
class Role extends Model
{
protected $table = 'role'; public function permissions() { return $this->belongsToMany( Permission::class, 'role_permission', 'role_id', 'permission_id' ); }
}
namespace appmodel;
use thinkModel;
class Permission extends Model
{
protected $table = 'permission'; public function roles() { return $this->belongsToMany( Role::class, 'role_permission', 'permission_id', 'role_id' ); }
}
- Define middleware
In ThinkPHP6, the middleware is A powerful tool for processing requests, we can implement permission control through middleware. Create a CheckAuth middleware to determine whether the user has permission to perform the current operation. Create the CheckAuth.php file in the appmiddleware directory with the following code:
namespace appmiddleware;
use think acadeDb;
use think acadeSession;
use think acadeConfig;
class CheckAuth
{
public function handle($request, Closure $next) { if (Session::has('user')) { $roles = Db::table('user') ->alias('u') ->leftJoin('role_user ru', 'u.id = ru.user_id') ->leftJoin('role r', 'ru.role_id = r.id') ->where('u.id', '=', Session::get('user')->id) ->field('r.id') ->select(); $permissions = Config::get('permissions'); foreach ($roles as $role) { $rolePermissions = Db::table('role_permission') ->where('role_id', '=', $role->id) ->field('permission_id') ->select(); foreach ($rolePermissions as $rolePermission) { if (in_array($rolePermission->permission_id, $permissions)) { return $next($request); } } } } abort(403, '没有权限'); }
}
This middleware will first query all roles owned by the current user. When traversing the roles, query each If the permissions owned by a role match the current request, execution will be allowed to continue, otherwise a 403 error will be returned.
- Create permission configuration file
In order to facilitate the management of system permissions, we can use the Config function provided by ThinkPHP to write all permissions into the configuration file. Create a permissions.php file in the config directory. The code is as follows:
return [
1 => 'user.create', 2 => 'user.read', 3 => 'user.update', 4 => 'user.delete',
];
We can pass key/value To record all the permissions of the system, the key is an integer and the value is a string, indicating the name of the permission.
- Applying middleware
Finally, we need to actually apply the above middleware. Open the middleware.php file in the config directory and add the CheckAuth middleware.
return [
// ... 'check_auth' => appmiddlewareCheckAuth::class,
];
The application order of middleware is executed from front to back according to the key name of the array. We can Adjust the execution order of middleware through array subscripts.
On the controller or method that requires permission control, you can use the middleware method to bind the CheckAuth middleware.
namespace appcontroller;
use think acadeView;
class UserController
{
public function create() { $this->middleware('check_auth'); // ... }
}
So far, we have completed all the steps to implement user role permission management using ThinkPHP6. You can expand and improve the above sample code according to actual business needs.
The above is the detailed content of How to use ThinkPHP6 to implement user role permission management. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

To run the ThinkPHP project, you need to: install Composer; use Composer to create the project; enter the project directory and execute php bin/console serve; visit http://localhost:8000 to view the welcome page.

ThinkPHP has multiple versions designed for different PHP versions. Major versions include 3.2, 5.0, 5.1, and 6.0, while minor versions are used to fix bugs and provide new features. The latest stable version is ThinkPHP 6.0.16. When choosing a version, consider the PHP version, feature requirements, and community support. It is recommended to use the latest stable version for best performance and support.

How to use the Layui framework to develop a permission management system that supports multi-user login Introduction: In the modern Internet era, more and more applications need to support multi-user login to achieve personalized functions and permission management. In order to protect the security of the system and the privacy of data, developers need to use certain means to implement multi-user login and permission management functions. This article will introduce how to use the Layui framework to develop a permission management system that supports multi-user login, and give specific code examples. Preparation before starting development

Steps to run ThinkPHP Framework locally: Download and unzip ThinkPHP Framework to a local directory. Create a virtual host (optional) pointing to the ThinkPHP root directory. Configure database connection parameters. Start the web server. Initialize the ThinkPHP application. Access the ThinkPHP application URL and run it.

How to implement a permission management system in Laravel Introduction: With the continuous development of web applications, the permission management system has become one of the basic functions of many applications. Laravel, as a popular PHP framework, provides a wealth of tools and functions to implement permission management systems. This article will introduce how to implement a simple and powerful permission management system in Laravel and provide specific code examples. 1. Design ideas of the permission management system When designing the permission management system, the following key points need to be considered: roles and

Performance comparison of Laravel and ThinkPHP frameworks: ThinkPHP generally performs better than Laravel, focusing on optimization and caching. Laravel performs well, but for complex applications, ThinkPHP may be a better fit.

ThinkPHP installation steps: Prepare PHP, Composer, and MySQL environments. Create projects using Composer. Install the ThinkPHP framework and dependencies. Configure database connection. Generate application code. Launch the application and visit http://localhost:8000.

"Development Suggestions: How to Use the ThinkPHP Framework to Implement Asynchronous Tasks" With the rapid development of Internet technology, Web applications have increasingly higher requirements for handling a large number of concurrent requests and complex business logic. In order to improve system performance and user experience, developers often consider using asynchronous tasks to perform some time-consuming operations, such as sending emails, processing file uploads, generating reports, etc. In the field of PHP, the ThinkPHP framework, as a popular development framework, provides some convenient ways to implement asynchronous tasks.
