Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Laravel middleware with multiple roles

I've been running into some issues with Laravel's middleware. Let me tell you the basic idea of what I'm trying to accomplish:

Registered users on the site will have one of four roles:

  1. Student (default): can access 'index' and 'show' views
  2. Approver: can access previous, plus 'overview', 'update'
  3. Editor: can access previous, plus 'create', 'edit' and 'store'
  4. Admin: can access everything

fyi: 'overview' is sort of an index view, but only for approver role and higher

What would you guys suggest is the best way to go about doing this? This is what I've done so far, but it doesn't seem to work:


Kernel.php

protected $middlewareGroups = [ ...     'approver+' => [         \App\Http\Middleware\Approver::class,         \App\Http\Middleware\Editor::class,         \App\Http\Middleware\Admin::class,     ], ];  protected $routeMiddleware = [ ...     'student' => \App\Http\Middleware\Student::class,     'approver' => \App\Http\Middleware\Approver::class,     'editor' => \App\Http\Middleware\Editor::class,     'admin' => \App\Http\Middleware\Admin::class, ]; 

Http\Middleware\Admin.php

public function handle($request, Closure $next) {    if (Auth::check())    {          if(Auth::user()->isAdmin())         {             return $next($request);         }    }      return redirect('login'); } 

The 'User' Eloquent model:

public function isAdmin() {     if($this->role_id === 4)     {          return true;      }      else      {          return false;      } } 

I've done the exact same in the Approver and Editor middleware files, and in the isApprover and isEditor functions in the User model, only edited the checked value in the if-statement to 2 and 3 respectively.

Finally, here's what I've done in my routes\web file:

Route::get('scholen', 'SchoolsController@index'); Route::get('admin/scholen/overzicht', 'SchoolsController@overview')->middleware('approver+'); Route::get('admin/scholen/maken', 'SchoolsController@create')->middleware('approver+'); Route::post('scholen', 'SchoolsController@store')->middleware('approver+'); Route::get('scholen/{id}', 'SchoolsController@show'); Route::get('admin/scholen/{id}/bewerken', 'SchoolsController@edit')->middleware('admin'); Route::patch('admin/scholen/{id}', 'SchoolsController@update')->middleware('admin'); Route::delete('admin/scholen/{id}', 'SchoolsController@destroy')->middleware('admin'); 

It isn't all exactly on point yet, but I got stuck since when I log in as a user with Approver rights and try to access the schools overview, it redirects me back to the home page.

In general, it just feels like I'm working much too chaotically and not right at all, could somebody give me advice on how to do it more efficiently?

Thank you very much in advance!

like image 713
Jesse Avatar asked May 10 '17 19:05

Jesse


People also ask

Can Laravel use two middleware?

To assign middleware to a route you can use either single middleware (first code snippet) or middleware groups (second code snippet). With middleware groups you are assigning multiple middleware to a route at once.

How many types of middleware are there in Laravel?

There are two types of Middleware in Laravel. The Global Middleware will run on every HTTP request of the application, whereas the Route Middleware will be assigned to a specific route. The middleware can be registered at app/Http/Kernel.


1 Answers

You should't have a separate middleware for each role. It will get very messy very fast. It would be better to have a single role checking middleware that can check against any role passed to it.

Http\Kernel.php

protected $routeMiddleware = [     ...     'role' => \App\Http\Middleware\Role::class, ]; 

Http\Middleware\Role.php

public function handle($request, Closure $next, ... $roles) {     if (!Auth::check()) // I included this check because you have it, but it really should be part of your 'auth' middleware, most likely added as part of a route group.         return redirect('login');      $user = Auth::user();      if($user->isAdmin())         return $next($request);      foreach($roles as $role) {         // Check if user has the role This check will depend on how your roles are set up         if($user->hasRole($role))             return $next($request);     }      return redirect('login'); } 

Finally in your web routes

Route::get('admin/scholen/overzicht', 'SchoolsController@overview')->middleware('role:editor,approver'); Route::get('admin/scholen/{id}/bewerken', 'SchoolsController@edit')->middleware('role:admin'); 
like image 133
jfadich Avatar answered Sep 29 '22 05:09

jfadich