如何在Laravel Jetstream中自定义重定向

时间:2020-09-25 03:25:34

标签: laravel jetstream

我运行laravel jetstream并设置为livewire not vue。我通常使用auth ui并自定义登录名

App-> Http->控制器-> auth-> LoginController

在该LoginController中,我自定义了这样的重定向

 protected function authenticated(Request $request, $user)
{
    if ( $user->isUser() ) {// do your margic here
        return redirect()->route('user_dashboard');
    }
    elseif ($user->isSarpras()) {
        return redirect()->route('admin_sarpras_dashboard');
    }
}

但是在laravel jetstream上,iam无法找到Controller-> auth。如何最好地管理登录并使用laravel jetstream创建多个登录?

2 个答案:

答案 0 :(得分:2)

在这里找到:https://talltips.novate.co.uk/laravel/laravel-8-conditional-login-redirects

  1. 在 app\Http 下创建一个名为 Responses 的文件夹
  2. 创建文件 LoginResponse.php
<?php

namespace App\Http\Responses;

use Illuminate\Support\Facades\Auth;
use Laravel\Fortify\Contracts\LoginResponse as LoginResponseContract;

class LoginResponse implements LoginResponseContract
{

    public function toResponse($request)
    {
        
        // below is the existing response
        // replace this with your own code
        // the user can be located with Auth facade
        
        return $request->wantsJson()
                    ? response()->json(['two_factor' => false])
                    : redirect()->intended(config('fortify.home'));
    }

}
  1. 让 Laravel 使用我们新的响应类

这个新类现在取代了 Fortify 之前注册的 Singleton。

编辑 app\Providers 文件夹中的 JetstreamServiceProvider;

在引导方法中,添加对新响应类的引用。当登录完成(并且用户实际上已通过身份验证)后,您的新响应将被调用。

    public function boot()
    {
        $this->configurePermissions();

        Jetstream::deleteUsersUsing(DeleteUser::class);

        // register new LoginResponse
        $this->app->singleton(
            \Laravel\Fortify\Contracts\LoginResponse::class,
            \App\Http\Responses\LoginResponse::class
        );
    }

双重身份验证

如果您在 Jetstream 中使用 2FA,您还需要捕获 TwoFactorLoginResponse。使用相同的方法;

        // register new TwofactorLoginResponse
        $this->app->singleton(
            \Laravel\Fortify\Contracts\TwoFactorLoginResponse::class,
            \App\Http\Responses\LoginResponse::class
        );

如果您希望使用 2FA 登录的用户有不同的行为,您可以返回相同的响应,或创建额外的响应。

答案 1 :(得分:0)

Jetstream 使用 Fortify 进行身份验证。

当前,Fortify无法自定义重定向。

这里有一个公开的问题要求这种行为:https://github.com/laravel/fortify/issues/77

很有可能会很快添加!