Home PHP Framework ThinkPHP How to use ThinkPHP6 to implement user role permission management

How to use ThinkPHP6 to implement user role permission management

Jun 20, 2023 pm 10:06 PM
thinkphp authority management user role

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.

  1. 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.

  1. 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';
Copy after login

}

namespace appmodel;

use thinkModel;

class Permission extends Model
{

protected $table = 'permission';
Copy after login

}

  1. 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'
    );
}
Copy after login

}

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'
    );
}
Copy after login

}

  1. 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, '没有权限');
}
Copy after login

}

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.

  1. 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',
Copy after login

];

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.

  1. 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,
Copy after login

];

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');
    // ...
}
Copy after login

}

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!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to run thinkphp project How to run thinkphp project Apr 09, 2024 pm 05:33 PM

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.

There are several versions of thinkphp There are several versions of thinkphp Apr 09, 2024 pm 06:09 PM

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 How to use the Layui framework to develop a permission management system that supports multi-user login Oct 27, 2023 pm 01:27 PM

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

How to run thinkphp How to run thinkphp Apr 09, 2024 pm 05:39 PM

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 How to implement a permission management system in Laravel Nov 02, 2023 pm 04:51 PM

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

Which one is better, laravel or thinkphp? Which one is better, laravel or thinkphp? Apr 09, 2024 pm 03:18 PM

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.

How to install thinkphp How to install thinkphp Apr 09, 2024 pm 05:42 PM

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 Development suggestions: How to use the ThinkPHP framework to implement asynchronous tasks Nov 22, 2023 pm 12:01 PM

"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.

See all articles