dongshengyin0147 2018-01-03 16:14
浏览 135
已采纳

路由的多个中间件不起作用

I'm using Laravel 5.5.

I created 4 middlewares, one middleware by user role.

The admin has same rights as the employee. However, admin owns some more privileges.

Routing File:

Route::group(['prefix' => 'admin'], function() {

    // EMPLOYEE AND ADMIN ROUTES
    Route::group(['middleware' => ['admin', 'employe']], function() {
         Route::get('showCreationSeance', 'AdministrationController@showCreationSeance');
         Route::get('showAjoutCoach', 'AdministrationController@showAjoutCoach');
         Route::get('showReservationClient', 'AdministrationController@showReservationClient');
         Route::get('showAnnulationClient', 'AdministrationController@showAnnulationClient');

         Route::post('creerSeance', 'AdministrationController@creerSeance')->name('admin/creerSeance');
         Route::post('ajouterCoach', 'AdministrationController@ajouterCoach')->name('admin/ajouterCoach');
    });

    // ADMIN ROUTES
    Route::group(['middleware' => 'admin'], function() {
         Route::get('showCreationActivite', 'AdministrationController@showCreationActivite');
         Route::get('showAjoutEmploye', 'AdministrationController@showAjoutEmploye');

         Route::post('creerActivite', 'AdministrationController@creerActivite')->name('admin/creerActivite');
         Route::post('ajouterEmploye', 'AdministrationController@ajouterEmploye')->name('admin/ajouterEmploye');
     });
});

Middlewares:

class AdminMiddleware
{
    public function handle($request, Closure $next)
    {
        $user = User::getUser(Auth::user()->id_utilisateur);

        if(!$user->estAdmin()) {
            throw new AuthorizationException();
        }

        return $next($request);
    }
}

class EmployeMiddleware
{
    public function handle($request, Closure $next)
    {
        $user = User::getUser(Auth::user()->id_utilisateur);

        if(!$user->estEmploye()) {
            throw new AuthorizationException();
        }

        return $next($request);
    }
}

Methods used into middlewares:

public function estAdmin() {
    $idStatutAdmin = Statut::select('id_statut')
        ->where('nom_statut', '=', 'ROLE_ADMIN')
        ->first();

    return ($idStatutAdmin->id_statut == $this->id_statut) ? true : false;
}

public function estEmploye() {
    $idStatutEmployee = Statut::select('id_statut')
        ->where('nom_statut', '=', 'ROLE_EMPLOYEE')
        ->first();

    return ($idStatutEmployee->id_statut == $this->id_statut) ? true : false;
}

Stack Trace:

Illuminate\Foundation\Exceptions\Handler render
…/app/Exceptions/Handler.php 51

Illuminate\Auth\Access\AuthorizationException 
…/app/Http/Middleware/AdminMiddleware.php 25

Illuminate\Foundation\Http\Kernel handle
…/public/index.php 55

The problem: The routes defined for admin and employee didn't work and I get an error:

Symfony \ Component \ HttpKernel \ Exception \ AccessDeniedHttpException

No message

While routes for admin only work perfectly. Can you tell me if I'm doing this correctly?

When I'm connected as an admin, it is EmployeMiddleware which throw an error. And when I'm connected as employee, it is AdminMiddleware which throw an error.

Thank's for your help!

  • 写回答

1条回答 默认 最新

  • dongyuelian9602 2018-01-03 17:12
    关注

    The user has the id_statut column which can only be ROLE_ADMIN or ROLE_EMPLOYEE. Take the following example:

    $roles = [
        'admin' => 2,
        'employee' => 1
    ];
    
    $user = [
        'id_statut' => 1
    ];
    
    if ($user['id_statut'] == $roles['employee']) {
        // User is an employee - this code will execute
    }
    if ($user['id_statut'] == $roles['admin']) {
        // User is not an admin - this code will NOT execute
    }
    if ($user['id_statut'] == $roles['employee'] && $user['id_statut'] == $roles['employee']) {
        // User is an employee AND an admin
        // This is impossible based on your database structure as id_statut cannot be both 1 and 2
    }
    

    An easy solution would be to check if the user is an employee or higher permission in estEmploye(). For example:

    public function estEmploye() {
        $idStatutEmployee = Statut::select('id_statut')
            ->where('nom_statut', 'IN', ['ROLE_EMPLOYEE', 'ROLE_ADMIN'])
            ->get('id_statut');
        return in_array($this->id_status, $idStatutEmployee);
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵