69 lines
2.6 KiB
PHP
69 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Actions\Fortify\CreateNewUser;
|
|
use App\Actions\Fortify\ResetUserPassword;
|
|
use App\Actions\Fortify\UpdateUserPassword;
|
|
use App\Actions\Fortify\UpdateUserProfileInformation;
|
|
use Illuminate\Cache\RateLimiting\Limit;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\RateLimiter;
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Illuminate\Support\Str;
|
|
use Laravel\Fortify\Actions\RedirectIfTwoFactorAuthenticatable;
|
|
use Laravel\Fortify\Fortify;
|
|
|
|
class FortifyServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register any application services.
|
|
*/
|
|
public function register(): void
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Bootstrap any application services.
|
|
*/
|
|
public function boot(): void
|
|
{
|
|
// No console-aware LoginResponse/TwoFactorLoginResponse bindings here
|
|
// any more. Those existed to route ONE shared sign-in to the right
|
|
// destination — the console on the console's hostname, the portal
|
|
// everywhere else. Now that the console has its own sign-in
|
|
// (admin.login) on the operator guard, Fortify only ever authenticates
|
|
// the portal, so its own default responses — which redirect to
|
|
// Fortify::redirects('login'), the portal dashboard — are already
|
|
// correct.
|
|
Fortify::createUsersUsing(CreateNewUser::class);
|
|
Fortify::updateUserProfileInformationUsing(UpdateUserProfileInformation::class);
|
|
Fortify::updateUserPasswordsUsing(UpdateUserPassword::class);
|
|
Fortify::resetUserPasswordsUsing(ResetUserPassword::class);
|
|
Fortify::redirectUserForTwoFactorAuthenticationUsing(RedirectIfTwoFactorAuthenticatable::class);
|
|
|
|
RateLimiter::for('login', function (Request $request) {
|
|
$throttleKey = Str::transliterate(Str::lower($request->input(Fortify::username())).'|'.$request->ip());
|
|
|
|
return Limit::perMinute(5)->by($throttleKey);
|
|
});
|
|
|
|
RateLimiter::for('two-factor', function (Request $request) {
|
|
return Limit::perMinute(5)->by($request->session()->get('login.id'));
|
|
});
|
|
|
|
// Registration is public (no per-account key), so throttle per IP to blunt
|
|
// signup spam / CPU-exhaustion via repeated password hashing.
|
|
RateLimiter::for('registration', fn (Request $request) => Limit::perMinute(10)->by($request->ip()));
|
|
|
|
RateLimiter::for('passkeys', function (Request $request) {
|
|
$credentialId = $request->input('credential.id');
|
|
|
|
return Limit::perMinute(10)->by(
|
|
($credentialId ?: $request->session()->getId()).'|'.$request->ip()
|
|
);
|
|
});
|
|
}
|
|
}
|