简体   繁体   English

如果未在Laravel 5.4中进行身份验证,我想重定向登录页面

[英]I want to redirect login page if not authenticate in Laravel 5.4

How does unauthenticated function not work in Laravel? 未经身份验证的功能如何在Laravel中不起作用?

This is Handler.php 这是Handler.php

<?php

namespace App\Exceptions;

use Exception; use Illuminate\Auth\AuthenticationException; use
    Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;

class Handler extends ExceptionHandler {
    /**
     * A list of the exception types that should not be reported.
     *
     * @var array
     */
    protected $dontReport = [
        \Illuminate\Auth\AuthenticationException::class,
        \Illuminate\Auth\Access\AuthorizationException::class,
        \Symfony\Component\HttpKernel\Exception\HttpException::class,
        \Illuminate\Database\Eloquent\ModelNotFoundException::class,
        \Illuminate\Session\TokenMismatchException::class,
        \Illuminate\Validation\ValidationException::class,
    ];

    /**
     * Report or log an exception.
     *
     * This is a great spot to send exceptions to Sentry, Bugsnag, etc.
     *
     * @param  \Exception  $exception
     * @return void
     */
    public function report(Exception $exception)
    {
        parent::report($exception);
    }

    /**
     * Render an exception into an HTTP response.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Exception  $exception
     * @return \Illuminate\Http\Response
     */
    public function render($request, Exception $exception)
    {
        return parent::render($request, $exception);
    }

    /**
     * Convert an authentication exception into an unauthenticated response.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Illuminate\Auth\AuthenticationException  $exception
     * @return \Illuminate\Http\Response
     */
    protected function unauthenticated($request, AuthenticationException $exception)
    {
        if ($request->expectsJson()) {
            return response()->json(['error' => 'Unauthenticated.'], 401);
        }

        return redirect()->guest(route('home'));
    } 
}

unauthenticated() is called when a login attempt fails. 登录尝试失败时,将调用unauthenticated() If a login attempt fails, the user is redirected back to the login page where they can see errors related to the login attempt by default. 如果登录尝试失败,则默认情况下,用户将被重定向回登录页面,在该页面上他们可以看到与登录尝试相关的错误。 To change this behaviour, simply edit the redirect url eg 要更改此行为,只需编辑重定向网址,例如

protected function unauthenticated($request, AuthenticationException $exception
{
    if ($request->expectsJson()) {
        return response()->json(['error' => 'Unauthenticated.'], 401);
    }
    return redirect('home/dashboard');
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM