|string> */ public function rules(): array { return [ 'login' => ['required', 'string'], 'password' => ['required', 'string'], ]; } public function authenticate(): void { $this->ensureIsNotRateLimited(); $login = $this->string('login')->toString(); $field = filter_var($login, FILTER_VALIDATE_EMAIL) ? 'email' : 'name'; if (! Auth::attempt([$field => $login, 'password' => $this->string('password')->toString()], $this->boolean('remember'))) { RateLimiter::hit($this->throttleKey()); throw ValidationException::withMessages([ 'login' => trans('auth.failed'), ]); } if (! Auth::user()->is_active) { Auth::logout(); RateLimiter::hit($this->throttleKey()); throw ValidationException::withMessages([ 'login' => 'Votre compte est désactivé. Contactez un administrateur.', ]); } RateLimiter::clear($this->throttleKey()); } public function ensureIsNotRateLimited(): void { if (! RateLimiter::tooManyAttempts($this->throttleKey(), 5)) { return; } event(new Lockout($this)); $seconds = RateLimiter::availableIn($this->throttleKey()); throw ValidationException::withMessages([ 'login' => trans('auth.throttle', [ 'seconds' => $seconds, 'minutes' => ceil($seconds / 60), ]), ]); } public function throttleKey(): string { return Str::transliterate(Str::lower($this->string('login')).'|'.$this->ip()); } }