109 lines
3.3 KiB
PHP
109 lines
3.3 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Auth;
|
|
|
|
use Illuminate\Auth\Events\Lockout;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\RateLimiter;
|
|
use Illuminate\Support\Str;
|
|
use Illuminate\Validation\ValidationException;
|
|
|
|
class LoginRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'password' => ['required', 'string'],
|
|
];
|
|
}
|
|
|
|
public function authenticate(): void
|
|
{
|
|
$this->ensureIsNotRateLimited();
|
|
|
|
$roleDariForm = $this->input('role');
|
|
$loginIdentifier = $this->input('nisn') ?: $this->input('nip');
|
|
$password = $this->input('password');
|
|
|
|
$errorField = $this->filled('nisn') ? 'nisn' : 'nip';
|
|
$labelField = $this->filled('nisn') ? 'NISN' : 'NIP/NIK';
|
|
|
|
// 1. Cek keberadaan user berdasarkan nomor_induk
|
|
$user = \App\Models\User::where('nomor_induk', $loginIdentifier)->first();
|
|
|
|
if (!$user) {
|
|
RateLimiter::hit($this->throttleKey());
|
|
throw ValidationException::withMessages([
|
|
$errorField => "Nomor Induk ({$labelField}) tidak ditemukan.",
|
|
]);
|
|
}
|
|
|
|
// 2. Cek password (Auth::attempt)
|
|
if (!Auth::attempt(['nomor_induk' => $loginIdentifier, 'password' => $password], $this->boolean('remember'))) {
|
|
RateLimiter::hit($this->throttleKey());
|
|
throw ValidationException::withMessages([
|
|
'password' => 'Kata sandi yang Anda masukkan salah.',
|
|
]);
|
|
}
|
|
|
|
// Ambil user yang sudah terautentikasi
|
|
$user = Auth::user();
|
|
|
|
// Cek jika role sesuai
|
|
if ($user->role !== $roleDariForm) {
|
|
Auth::logout();
|
|
$this->session()->invalidate();
|
|
$this->session()->regenerateToken();
|
|
|
|
RateLimiter::hit($this->throttleKey());
|
|
|
|
$actualRole = Str::title($user->role ?? 'Tidak Dikenal');
|
|
throw ValidationException::withMessages([
|
|
'forbidden' => "Akses ditolak. Akun ini terdaftar sebagai {$actualRole}.",
|
|
]);
|
|
}
|
|
|
|
// Cek jika akun di-banned
|
|
if ($user->is_banned) {
|
|
Auth::logout();
|
|
$this->session()->invalidate();
|
|
$this->session()->regenerateToken();
|
|
|
|
throw ValidationException::withMessages([
|
|
'forbidden' => "Akun Anda telah dinonaktifkan. Silakan hubungi admin.",
|
|
]);
|
|
}
|
|
|
|
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([
|
|
'email' => trans('auth.throttle', [
|
|
'seconds' => $seconds,
|
|
'minutes' => ceil($seconds / 60),
|
|
]),
|
|
]);
|
|
}
|
|
|
|
public function throttleKey(): string
|
|
{
|
|
$field = $this->input('email') ?? $this->input('nisn') ?? $this->input('nip') ?? 'unknown';
|
|
return Str::transliterate(Str::lower($field) . '|' . $this->ip());
|
|
}
|
|
}
|