


How to implement automatic allocation and recycling of permissions in Laravel
Laravel is a widely used PHP framework that provides convenient tools to implement common problems like permission management. In many applications, fine-grained control of users' permissions is required to ensure that they can only access what they need to access. In this article, we will explore how to automatically assign and revoke permissions in Laravel. At the same time, we will also provide specific code examples.
1. Use polymorphic association in Laravel to realize automatic allocation and recycling of permissions
Laravel's Eloquent ORM provides the function of polymorphic association, which means that we can combine multiple different models associated with the same set of data. This is very useful for automatic allocation and recycling of permissions.
For example, suppose we need to control permissions on "articles" and "comments" in our application and assign roles to users. We can create the following four models:
- User (user)
- Article (article)
- Comment (comment)
- Role (role) )
Then, we can use the polymorphic association function to associate the three models with the role:
class User extends Model { public function roles() { return $this->morphToMany(Role::class, 'model', 'model_has_roles'); } } class Article extends Model { public function roles() { return $this->morphToMany(Role::class, 'model', 'model_has_roles'); } } class Comment extends Model { public function roles() { return $this->morphToMany(Role::class, 'model', 'model_has_roles'); } }
This example uses Laravel's polymorphic association function, so that we can Define role relationships on the three models and their records. The next step is to create an intermediate table to hold these relationships:
class CreateModelHasRolesTable extends Migration { public function up() { Schema::create('model_has_roles', function (Blueprint $table) { $table->unsignedBigInteger('role_id'); $table->unsignedBigInteger('model_id'); $table->string('model_type'); $table->foreign('role_id')->references('id')->on('roles')->onDelete('cascade'); $table->primary(['role_id', 'model_id', 'model_type']); }); } }
Now we can associate the above model with the corresponding role. For example, assuming we assigned the "Author" role to the creator of the post, we could do this:
$article->roles()->syncWithoutDetaching([ Role::where('name', 'author')->first()->id ]);
Similarly, create a new comment and assign the "Commenter" role to the creator of that comment, It can be implemented like this:
$comment = new Comment(); $comment->content = 'This is a new comment.'; $comment->user_id = Auth::user()->id; $comment->save(); $comment->roles()->syncWithoutDetaching([ Role::where('name', 'commenter')->first()->id ]);
Code like this allows us to use roles to control who can perform which actions. Now, we need a way to automatically assign the appropriate roles to new users and their posts and comments, and automatically remove the role assignments when those records are deleted.
2. Use event listeners in Laravel to realize automatic allocation and recycling of permissions
In order to realize automatic allocation and recycling of permissions, we use event listeners in the Laravel event system to capture our feelings events of interest. An event listener is a mechanism that registers application-specific event response functions. This mechanism allows us to respond to different events in the application very flexibly.
For example, Laravel provides UserCreating and UserDeleting events, which are automatically triggered when users are created and deleted. We can write an event listener to create the required role relationship when the user is created and delete this relationship when it is deleted.
First, we need to define a new event listener:
class UserEventListener { public function onUserCreating(UserCreating $event) { $user = $event->user; $roles = Role::where('name', 'user')->get(); foreach ($roles as $role) { $user->roles()->create([ 'role_id' => $role->id, ]); } } public function onUserDeleting(UserDeleting $event) { $user = $event->user; $user->roles()->detach(); } }
This event listener defines two methods. One method (onUserCreating) is automatically triggered when a user is created and assigns the "User" role to the user. Another method (onUserDeleting) automatically fires when a user deletes and deletes all records related to that role.
Next, we need to register these event listeners in our application service provider:
class AppServiceProvider extends ServiceProvider { protected $listen = [ UserCreating::class => [ UserEventListener::class, ], UserDeleting::class => [ UserEventListener::class, ], ]; public function boot() { // } }
Now, when we create or delete a user, the appropriate actions will be automatically performed. The final step in installing the role is to define a similar event listener for posts and comments.
class ArticleEventListener { public function onArticleCreating(ArticleCreating $event) { $article = $event->article; $roles = Role::where('name', 'author')->get(); foreach ($roles as $role) { $article->roles()->create([ 'role_id' => $role->id, ]); } } public function onArticleDeleting(ArticleDeleting $event) { $article = $event->article; $article->roles()->detach(); } } class CommentEventListener { public function onCommentCreating(CommentCreating $event) { $comment = $event->comment; $roles = Role::where('name', 'commenter')->get(); foreach ($roles as $role) { $comment->roles()->create([ 'role_id' => $role->id, ]); } } public function onCommentDeleting(CommentDeleting $event) { $comment = $event->comment; $comment->roles()->detach(); } }
We also need to register these listeners as corresponding events in the service provider:
class AppServiceProvider extends ServiceProvider { protected $listen = [ UserCreating::class => [ UserEventListener::class, ], UserDeleting::class => [ UserEventListener::class, ], ArticleCreating::class => [ ArticleEventListener::class, ], ArticleDeleting::class => [ ArticleEventListener::class, ], CommentCreating::class => [ CommentEventListener::class, ], CommentDeleting::class => [ CommentEventListener::class, ], ]; public function boot() { // } }
Now, we have completed all the steps to implement automatic allocation and recycling of permissions. After this, when we create users, articles or comments, the corresponding roles will be automatically assigned. When these records are deleted, we will automatically remove them from the associated roles.
Summary:
In this article, we introduced how to automatically assign and recycle permissions in Laravel. We used polymorphic association functionality and event listeners to associate users, roles, posts, and comments together and automatically assign and recycle roles for them. At the same time, we also provide you with detailed code examples to help you better understand the method of implementing permission management in Laravel.
The above is the detailed content of How to implement automatic allocation and recycling of permissions in Laravel. 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

PHP and Flutter are popular technologies for mobile development. Flutter excels in cross-platform capabilities, performance and user interface, and is suitable for applications that require high performance, cross-platform and customized UI. PHP is suitable for server-side applications with lower performance and not cross-platform.

Database operations in PHP are simplified using ORM, which maps objects into relational databases. EloquentORM in Laravel allows you to interact with the database using object-oriented syntax. You can use ORM by defining model classes, using Eloquent methods, or building a blog system in practice.

PHP unit testing tool analysis: PHPUnit: suitable for large projects, provides comprehensive functionality and is easy to install, but may be verbose and slow. PHPUnitWrapper: suitable for small projects, easy to use, optimized for Lumen/Laravel, but has limited functionality, does not provide code coverage analysis, and has limited community support.

Laravel - Artisan Commands - Laravel 5.7 comes with new way of treating and testing new commands. It includes a new feature of testing artisan commands and the demonstration is mentioned below ?

The latest versions of Laravel 9 and CodeIgniter 4 provide updated features and improvements. Laravel9 adopts MVC architecture and provides functions such as database migration, authentication and template engine. CodeIgniter4 uses HMVC architecture to provide routing, ORM and caching. In terms of performance, Laravel9's service provider-based design pattern and CodeIgniter4's lightweight framework give it excellent performance. In practical applications, Laravel9 is suitable for complex projects that require flexibility and powerful functions, while CodeIgniter4 is suitable for rapid development and small applications.

Compare the data processing capabilities of Laravel and CodeIgniter: ORM: Laravel uses EloquentORM, which provides class-object relational mapping, while CodeIgniter uses ActiveRecord to represent the database model as a subclass of PHP classes. Query builder: Laravel has a flexible chained query API, while CodeIgniter’s query builder is simpler and array-based. Data validation: Laravel provides a Validator class that supports custom validation rules, while CodeIgniter has less built-in validation functions and requires manual coding of custom rules. Practical case: User registration example shows Lar

PHP Unit and Integration Testing Guide Unit Testing: Focus on a single unit of code or function and use PHPUnit to create test case classes for verification. Integration testing: Pay attention to how multiple code units work together, and use PHPUnit's setUp() and tearDown() methods to set up and clean up the test environment. Practical case: Use PHPUnit to perform unit and integration testing in Laravel applications, including creating databases, starting servers, and writing test code.

For beginners, CodeIgniter has a gentler learning curve and fewer features, but covers basic needs. Laravel offers a wider feature set but has a slightly steeper learning curve. In terms of performance, both Laravel and CodeIgniter perform well. Laravel has more extensive documentation and active community support, while CodeIgniter is simpler, lightweight, and has strong security features. In the practical case of building a blogging application, Laravel's EloquentORM simplifies data manipulation, while CodeIgniter requires more manual configuration.
