> */ public function rules(): array { return [ 'login' => ['required', 'string'], 'password' => ['required', 'string'], ]; } /** * @throws ValidationException */ public function authenticate(): void { $this->ensureIsNotRateLimited(); $login = $this->string('login'); $field = filter_var($login, FILTER_VALIDATE_EMAIL) ? 'email' : 'username'; if (! Auth::attempt([$field => $login, 'password' => $this->string('password')], $this->boolean('remember'))) { RateLimiter::hit($this->throttleKey()); throw ValidationException::withMessages([ 'login' => 'Email/username atau kata sandi salah.', ]); } $user = Auth::user(); if (! $user?->is_active) { Auth::logout(); throw ValidationException::withMessages([ 'login' => 'Akun Anda tidak aktif. Hubungi administrator.', ]); } RateLimiter::clear($this->throttleKey()); } /** * @throws ValidationException */ 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()); } }