ログイン後にLaravelが元の宛先にリダイレクトします


188

これはかなり基本的なフローのようです。 Laravel、基本的なことに対する非常に多くの素晴らしい解決策があり、何かが足りないように感じます。

ユーザーが認証を必要とするリンクをクリックします。Laravelの認証フィルターが起動し、ログインページにルーティングされます。ユーザーはログインしてから、「auth」フィルターが有効になる前にアクセスしようとしていた元のページに移動します。

彼らが最初にアクセスしようとしたページを知る良い方法はありますか?Laravelがリクエストをインターセプトするものであるため、ユーザーがログインした後、簡単にルーティングできるようにどこかに追跡されるかどうかはわかりませんでした。

そうでない場合は、一部のユーザーがこれを手動で実装した方法を知りたいと思います。

回答:


234

Laravel 5.3以降の場合

スコットの答えを確認してください以下の。

Laravel 5から5.2まで

簡単に言えば、

認証ミドルウェア:

// redirect the user to "/login"
// and stores the url being accessed on session
if (Auth::guest()) {
    return redirect()->guest('login');
}
return $next($request);

ログイン時:

// redirect the user back to the intended page
// or defaultpage if there isn't one
if (Auth::attempt(['email' => $email, 'password' => $password])) {
    return redirect()->intended('defaultpage');
}

Laravel 4(古い回答)

この回答の時点では、フレームワーク自体からの公式のサポートはありませんでした。最近は使えます以下のbgdrlによって指摘されたメソッドこの方法:(私は彼の答えを更新しようとしましたが、彼は受け入れないようです)

認証フィルター:

// redirect the user to "/login"
// and stores the url being accessed on session
Route::filter('auth', function() {
    if (Auth::guest()) {
        return Redirect::guest('login');
    }
});

ログイン時:

// redirect the user back to the intended page
// or defaultpage if there isn't one
if (Auth::attempt(['email' => $email, 'password' => $password])) {
    return Redirect::intended('defaultpage');
}

Laravel 3の場合(さらに古い回答)

次のように実装できます。

Route::filter('auth', function() {
    // If there's no user authenticated session
    if (Auth::guest()) {
        // Stores current url on session and redirect to login page
        Session::put('redirect', URL::full());
        return Redirect::to('/login');
    }
    if ($redirect = Session::get('redirect')) {
        Session::forget('redirect');
        return Redirect::to($redirect);
    }
});
// on controller
public function get_login()
{
    $this->layout->nest('content', 'auth.login'); 
}

public function post_login()
{
    $credentials = [
        'username' => Input::get('email'),
        'password' => Input::get('password')
    ];

    if (Auth::attempt($credentials)) {
        return Redirect::to('logged_in_homepage_here');
    }

    return Redirect::to('login')->with_input();
}

セッションにリダイレクトを保存すると、ユーザーが資格情報を誤って入力した場合や、アカウントを持っていないためサインアップする必要がある場合でも、リダイレクトを維持できるという利点があります。

これにより、Auth以外にセッションでリダイレクトを設定でき、魔法のように機能します。


忘れてしまうより、セッションにフラッシュするほうが理にかなっていますか?ログインアクションは、セッション内の値がある場合はその値へのリダイレクトを、そうでない場合はデフォルトページを返すだけです。
bilalq 2013年

2
これがフラッシュよりも優れている理由を説明するために、回答を編集しました。
vFragosop 2013年

それは理にかなっている。毎回再フラッシュするよりも優れています。
bilalq 2013年

1
Auth :: attempt()がパスすると、ユーザーをデフォルトページ(通常はホーム)にリダイレクトできます。そのリダイレクトは再びそのフィルターを通過し、元の要求されたURLがある場合はそれをリダイレクトします。それ以外の場合は、彼の家のレンダリングを続行します。ログインアクションの例を示します。
vFragosop 2013年

1
5.1ではミドルウェアRedirectIfAuthenticated.phpにあります:if($ this-> auth-> check()){return redirect( '/ privatepage'); }
Dave Driesmans 2015年

72

Laravel> = 5.3

5.3でのAuthの変更により、Authミドルウェアがサービスコンテナに移動されたため、実装は少し簡単になり、5.2とは少し異なります。

新しいミドルウェア認証リダイレクターを変更する

/app/Http/Middleware/RedirectIfAuthenticated.php

ハンドル関数を少し変更すると、次のようになります。

public function handle($request, Closure $next, $guard = null)
{
    if (Auth::guard($guard)->check()) {
        return redirect()->intended('/home');
    }

    return $next($request);
}

TL; DRの説明

唯一の違いは4行目です。デフォルトでは次のようになります。

return redirect("/home");

Laravel> = 5.3は、Auth Guardをチェックするときに最後の「意図された」ルートを自動的に保存するため、次のように変更されます。

return redirect()->intended('/home');

これにより、Laravelはログイン前に最後に意図したページにリダイレクトするように指示します。そうでない場合は、「/ home」またはデフォルトで送信したい場所に移動します。

これが他の誰かの役に立つことを願っています-5.2と5.3の違いについてはそれほど多くはなく、特にこの領域にはかなりの数があります。


1
Laravel 6.4の場合、これはもう機能していません...何かアイデアpls?
アレックストーダー

私はreturn redirect()->intended(RouteServiceProvider::HOME);あなたの家の道を一箇所に保つのに使います。
マテウス

26

私はあなたに非常に役立つかもしれない2つの素晴らしい方法を見つけました。

Redirect::guest();
Redirect::intended();

このフィルタは、認証が必要なルートに適用できます。

Route::filter('auth', function()
{
    if (Auth::guest()) {
           return Redirect::guest('login');
    }
});

このメソッドが基本的に行うことは、アクセスしようとしたページを保存することであり、ログインページにリダイレクトされます。

ユーザーが認証されると、呼び出すことができます

return Redirect::intended();

最初にアクセスしようとしていたページにリダイレクトします。

私は通常以下の方法を使用しますが、それはそれを行うための素晴らしい方法です。

Redirect::back()

あなたはこの素晴らしいブログをチェックすることができます。


これは上記のソリューションよりもはるかに優れています。上記のソリューションでは、ログイン機能にクロージャーを渡すことができる必要がありますが、これは4.1ではできませんでした。しかし、これはずっと単純で、そのまま機能しました。
user2662680

20

Redirect :: intended関数を使用できます。認証フィルターに捕捉される前に、ユーザーがアクセスしようとしていたURLにユーザーをリダイレクトします。目的の宛先が使用できない場合に備えて、このメソッドにフォールバックURIを指定できます。

ログイン/登録後:

return Redirect::intended('defaultpageafterlogin');

11

私はこれを言語セレクターコードでしばらく使用しています。1ページだけ戻る必要がある限り、問題なく動作します。

return Redirect::to(URL::previous());

これは最も強力なソリューションではありませんが、非常に簡単で、いくつかのパズルの解決に役立ちます。:)


5
はいprevious()は正常に動作します。ただし、最初のログインが失敗し(「ログイン失敗」ページが前のページになる)、2回目のログインが成功した場合は、再度ログインページにリダイレクトされます(ホームページにリダイレクトされる場合があります)。
Shriganesh Shintre 2015

11

LoginControllersコンストラクタを次のように変更します。

public function __construct()
    {
        session(['url.intended' => url()->previous()]);
        $this->redirectTo = session()->get('url.intended');

        $this->middleware('guest')->except('logout');
    }

ログインページの前のページ(2ページ前)にリダイレクトされます。


私のために働く唯一のもの。これは、どこかで別のリダイレクトが発生していることを意味しているはずですが、誰がどこを知っているのでしょうか。
Arthur Tarasov

8
return Redirect::intended('/');

これにより、プロジェクトのデフォルトページ、つまり開始ページにリダイレクトされます。



5

ララヴェル3

(ViníciusFragoso Pinheiro)コードを少し調整し、filters.phpに以下を配置しました

Route::filter('auth', function()
{
    // If there's no user authenticated session
    if (Auth::guest()) {
        // Flash current url to session and redirect to login page
        Session::flash('redirect', URL::full());
        return Redirect::guest('login');
    }
});

そして、私のAuthController.php内で:

// Try to log the user in.
if (Auth::attempt($userdata)) {

    if ($redirect = Session::get('redirect')) {
        return Redirect::to($redirect);
    } else {
        // Redirect to homepage
        return Redirect::to('your_default_logged_in_page')->with('success', 'You have logged in successfully');
    }
} else {
    // Reflash the session data in case we are in the middle of a redirect 
    Session::reflash('redirect');

    // Redirect to the login page.
    return Redirect::to('login')->withErrors(['password' => 'Password invalid'])->withInput(Input::except('password'));
}

'redirect'認証に問題がある場合、セッションデータが再フラッシュされることに注意してください。これにより、ログインが失敗してもリダイレクトはそのまま維持されますが、ユーザーが任意の場所でクリックした場合でも、次のログインプロセスがセッションデータによって中断されることはありません。

また、でログインフォームを表示した時点でデータを再フラッシュする必要がありますAuthController。そうしないと、チェーンが壊れます。

public function showLogin()
{
    // Reflash the session data in case we are in the middle of a redirect 
    Session::reflash('redirect');

    // Show the login page
    return View::make('auth/login');
}


0

Laravel 5.5とおそらく5.4

App \のHttp \ミドルウェア\ RedirectIfAuthenticated変更redirect('/home')redirect()->intended('/home')のハンドル機能で:

public function handle($request, Closure $next, $guard = null)
{
    if (Auth::guard($guard)->check()) {
        return redirect()->intended('/home');
    }

    return $next($request);
}

App \のHttp \コントローラ\認証\ LoginControllerが作成しshowLoginForm()、以下のように機能します:

public function showLoginForm()
{
    if(!session()->has('url.intended'))
    {
        session(['url.intended' => url()->previous()]);
    }
    return view('auth.login');
}

この方法では、別のページに意図があった場合はそこにリダイレクトされ、そうでない場合はホームにリダイレクトされます。


0

Laravel 5.7のカスタムログインコントローラーとミドルウェアで次のアプローチを使用していますが、laravel 5のどのバージョンでも動作することを願っています

  • ミドルウェア内

    if (Auth::check()){
        return $next($request);
    }
    else{
      return redirect()->guest(route('login'));
    }
  • コントローラー内部のログイン方法

    if (Auth::attempt(['email' => $email, 'password' => $password])) {
    return redirect()->intended('/default');
    }
  • 意図したURLをクライアント側に渡す必要がある場合は、以下を試すことができます

       if (Auth::attempt(['username' => $request->username, 'password' => $request->password])) {
           $intended_url= redirect()->intended('/default')->getTargetUrl();
           $response = array(
          'status' => 'success',
          'redirectUrl' => $intended_url,
          'message' => 'Login successful.you will be redirected to home..', );
          return response()->json($response);
        } else {
            $response = array(
          'status' => 'failed',
          'message' => 'username or password is incorrect', );
         return response()->json($response);
        }

0

まず、ユーザーを「ログイン」ルートにリダイレクトする方法を知っておく必要があります。

return redirect()->guest('/signin');

このようではありません:

return redirect()->intended('/signin');

0

Laravelはすぐにこの機能をサポートします! (私は5.5以前から信じています)。

以下に示すように、__construct()メソッドをに追加しますController

public function __construct()
{
    $this->middleware('auth');
}

ログイン後、ユーザーは最初にアクセスする予定のページにリダイレクトされます。

アプリケーションロジックの必要に応じて、Laravelの電子メール検証機能を追加することもできます。

public function __construct()
{
    $this->middleware(['auth', 'verified']);
}

ドキュメントには非常に簡単な例が含まれています:

except またはonlyオプションを使用して、ミドルウェアが適用されるコントローラのメソッドを選択することもできます。

の例except

public function __construct()
{
    $this->middleware('auth', ['except' => ['index', 'show']]);
}

の例only

public function __construct()
{
    $this->middleware('auth', ['only' => ['index', 'show']]);
}

exceptおよびonlyミドルウェアオプションの詳細:


0

axiosまたは他のAJAX JavaScriptライブラリを使用している場合は、URLを取得してフロントエンドに渡すことができます

あなたは以下のコードでそれを行うことができます

   $default = '/';

   $location = $request->session()->pull('url.intended', $default);

    return ['status' => 200, 'location' => $location];

これはjson形式の文字列を返します


0

Laravel 5.8の場合

App \ Http \ Controllers \ Auth \ LoginControllerに次のメソッドを追加します

public function showLoginForm()
{
    if(!session()->has('url.intended'))
        {
            session(['url.intended' => url()->previous()]);
        }
    return view('auth.login');
}

App \ Http \ Middleware \ RedirectIfAuthenticatedで、「return redirect( '/ home');」を次のように置き換えます

 if (Auth::guard($guard)->check()) 
    {
        return redirect()->intended();
    }

-1

あなたはroutes.phpでこれを試しましたか?

Route::group(['middleware' => ['web']], function () {
    //
    Route::get('/','HomeController@index');
});

-1
       // Also place this code into base controller in contract function,            because ever controller extends base  controller
 if(Auth::id) {
  //here redirect your code or function
 }
if (Auth::guest()) {
       return Redirect::guest('login');
}

2
いくつかのコンテキストを提供するためにコードと一緒に行くためにいくつかのコメントを提供してください。ありがとう
Suever '20

-1

これが5.1の解決策です。誰かが投稿の[いいね]ボタンをクリックしてログインにリダイレクトされ、元のページに戻る必要がありました。すでにログインしている場合は、href、「いいね」ボタンのがJavaScriptでインターセプトされ、AJAXリクエストに変わりました。

ボタンはのようなものです<a href="https://stackoverflow.com/like/931">Like This Post!</a>。ミドルウェア/like/931を必要とするLikeControllerによって処理されauthます。

Authenticateミドルウェア(handle()関数)で、最初に次のようなものを追加します。

    if(!str_contains($request->session()->previousUrl(), "/auth/login")) {
        $request->session()->put('redirectURL', $request->session()->previousUrl());
        $request->session()->save();
    }

/auth/loginログイン用のURLに変更します。URLがログインURLでない限り、このコードは元のページのURLをセッションに保存します。これは、このミドルウェアが2回呼び出されるように見えるために必要です。なぜか、それが本当かどうかはわかりません。しかし、その条件をチェックしないと、正しい元のページと同じになり、どういうわけかが発生し/auth/loginます。これを行うには、おそらくよりエレガントな方法があります。

次に、LikeController元のページでプッシュされたボタンのURLを処理する任意のコントローラーで、次のようにします。

//some code here that adds a like to the database
//...
return redirect($request->session()->get('redirectURL'));

この方法は非常に単純で、既存の関数をオーバーライドする必要がなく、うまく機能します。Laravelがこれを行う簡単な方法がある可能性がありますが、それが何かはわかりません。intended()LikeControllerは、前のURLがそれにリダイレクトするために何であったかを知る必要があるため、私の場合は機能しません。本質的に2レベルの逆方向リダイレクト。


-1

Laravel 5.2(以前使用していないバージョン)

コードをファイルapp \ Http \ Controllers \ Auth \ AurhController.phpに貼り付けます

   /**
 * Overrides method in class 'AuthenticatesUsers'
 *
 * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
 */
public function showLoginForm()
{
    $view = property_exists($this, 'loginView')
        ? $this->loginView : 'auth.authenticate';
    if (view()->exists($view)) {
        return view($view);
    }
    /**
     * seve the previous page in the session
     */
    $previous_url = Session::get('_previous.url');
    $ref = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '';
    $ref = rtrim($ref, '/');
    if ($previous_url != url('login')) {
        Session::put('referrer', $ref);
        if ($previous_url == $ref) {
            Session::put('url.intended', $ref);
        }
    }
    /**
     * seve the previous page in the session
     * end
     */
    return view('auth.login');
}
/**
 * Overrides method in class 'AuthenticatesUsers'
 *
 * @param Request $request
 * @param $throttles
 *
 * @return \Illuminate\Http\RedirectResponse
 */
protected function handleUserWasAuthenticated(Request $request, $throttles)
{
    if ($throttles) {
        $this->clearLoginAttempts($request);
    }
    if (method_exists($this, 'authenticated')) {
        return $this->authenticated($request, Auth::guard($this->getGuard())->user());
    }
    /*return to the previous page*/
    return redirect()->intended(Session::pull('referrer'));
    /*return redirect()->intended($this->redirectPath()); /*Larevel default*/
}

名前空間をインポートします。 use Session;

app \ Http \ Controllers \ Auth \ AurhController.phpファイルに変更を加えていない場合は、GitHubのファイルに置き換えるだけです。


-1

Laravel 5.2

管理ミドルウェアのような別のミドルウェアを使用している場合は、次を使用してurl.intendedのセッションを設定できます。

基本的に\Session::put('url.intended', \URL::full());、リダイレクトのために手動で設定する必要があります。

  if (\Auth::guard($guard)->guest()) {
      if ($request->ajax() || $request->wantsJson()) {
         return response('Unauthorized.', 401);
      } else {
        \Session::put('url.intended', \URL::full());
        return redirect('login');
      }
  }

ログイン試行時

ログイン時に使用することを確認してください return \Redirect::intended('default_path');


それredirect()->guest('login')が目的です。
エミールベルジェロン2017

-1

Larvel 5.3 これは、LoginController.phpを更新するだけで実際に機能しました

 use Illuminate\Support\Facades\Session;
 use Illuminate\Support\Facades\URL;


public function __construct()
{
    $this->middleware('guest', ['except' => 'logout']);
    Session::set('backUrl', URL::previous());
}


public function redirectTo()
{
    return Session::get('backUrl') ? Session::get('backUrl') :   $this->redirectTo;
}

ref:https : //laracasts.com/discuss/channels/laravel/redirect-to-previous-page-after-login


-1

Laravle 5.7の場合、次のものに変更を加える必要があります。

ミドルウェア> RedirectIfAuthenticated.php

これを変える:

public function handle($request, Closure $next, $guard = null)
    {
        if (Auth::guard($guard)->check()) {
            return redirect('/admin');
        }

        return $next($request);
    }

これに:

public function handle($request, Closure $next, $guard = null)
    {
        if (Auth::guard($guard)->check()) {
            return redirect('/yourpath');
        }

        return $next($request);
    }

return redirect( '/ yourpath');


なにmypath?(これに戻るためのユーザーパス)
モスタファノルザデ
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.