Где найти метод Auth :: попытки в laravel - PullRequest
0 голосов
/ 28 августа 2018

Я хочу добавить дополнительные условия к запросу аутентификации в дополнение к электронной почте и паролю пользователя в моем проекте Laravel

Я прочитал это на официальной документации. https://laravel.com/docs/5.6/authentication

Указание дополнительных условий Если вы хотите, вы также можете добавить дополнительные условия для запроса аутентификации в дополнение к пользователю электронная почта и пароль. Например, мы можем убедиться, что пользователь помечен как "Активный":

if (Auth::attempt(['email' => $email, 'password' => $password, 'active' => 1])) {
    // The user is active, not suspended, and exists.
}

Где я могу найти этот метод?

Ответы [ 4 ]

0 голосов
/ 29 августа 2018

Auth::attempt, по которому вы звоните, скорее всего Illuminate\Auth\SessionGuard@attempt.

Путь:

Auth::attempt -> Illuminate\Auth\AuthManager -> (guard) Illuminate\Auth\SessionGuard

Facade -> Illuminate\Auth\AuthManager@call -> @guard -> Illuminate\Auth\SessionGuard@attempt

Laravel 5.6 Документы - Фасады - Ссылка на класс

Чтобы иметь возможность настроить эти учетные данные, переданные для LoginController, вам нужно только переопределить 1 метод, credentials, поскольку это единственный метод, связанный с массивом, который передается в attempt.

protected function credentials(Request $request)
{
    return $request->only($this->username(), 'password')
        + ['active' => true];
}
0 голосов
/ 28 августа 2018

Если вы используете леса авторизации, предоставленные Laravel, они будут в черте AuthenticatesUsers:

/**
 * Attempt to log the user into the application.
 *
 * @param  \Illuminate\Http\Request  $request
 * @return bool
 */
protected function attemptLogin(Request $request)
{
    return $this->guard()->attempt(
        $this->credentials($request), $request->filled('remember')
    );
}

Вы можете переопределить этот метод в вашем LoginController.

0 голосов
/ 28 августа 2018

Вам необходимо перезаписать метод входа в свой LoginController

public function login(\Illuminate\Http\Request $request) {
    $this->validateLogin($request);

    // If the class is using the ThrottlesLogins trait, we can automatically throttle
    // the login attempts for this application. We'll key this by the username and
    // the IP address of the client making these requests into this application.
    if ($this->hasTooManyLoginAttempts($request)) {
        $this->fireLockoutEvent($request);
        return $this->sendLockoutResponse($request);
    }

    // This section is the only change
    if ($this->guard()->validate($this->credentials($request))) {
        $user = $this->guard()->getLastAttempted();

        // Make sure the user is active
        if ($user->active && $this->attemptLogin($request)) {
            // Send the normal successful login response
            return $this->sendLoginResponse($request);
        } else {
            // Increment the failed login attempts and redirect back to the
            // login form with an error message.
            $this->incrementLoginAttempts($request);
            return redirect()
                ->back()
                ->withInput($request->only($this->username(), 'remember'))
                ->withErrors(['active' => 'You must be active to login.']);
        }
    }

    // If the login attempt was unsuccessful we will increment the number of attempts
    // to login and redirect the user back to the login form. Of course, when this
    // user surpasses their maximum number of attempts they will get locked out.
    $this->incrementLoginAttempts($request);

    return $this->sendFailedLoginResponse($request);
}

Это работает для меня

0 голосов
/ 28 августа 2018

AuthController.php

<?php

namespace App\Http\Controllers;

use Auth;
use Illuminate\Routing\Controller;

class AuthController extends Controller
{
/**
 * Handle an authentication attempt.
 *
 * @return Response
 */
public function authenticate()
{
    if (Auth::attempt(['email' => $email, 'password' => $password])) {
        // Authentication passed...
        return redirect()->intended('dashboard');
    }
}
}

Это тот, который вы ищете?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...