100 lines
2.9 KiB
PHP
100 lines
2.9 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 App\Models\Plantel;
|
|
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;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Support\Facades\Hash;
|
|
use Illuminate\Validation\ValidationException;
|
|
use Laravel\Fortify\Contracts\RegisterResponse;
|
|
|
|
|
|
class FortifyServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register any application services.
|
|
*/
|
|
public function register(): void
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Bootstrap any application services.
|
|
*/
|
|
public function boot(): void
|
|
{
|
|
Fortify::createUsersUsing(CreateNewUser::class);
|
|
Fortify::updateUserProfileInformationUsing(UpdateUserProfileInformation::class);
|
|
Fortify::updateUserPasswordsUsing(UpdateUserPassword::class);
|
|
Fortify::resetUserPasswordsUsing(ResetUserPassword::class);
|
|
Fortify::redirectUserForTwoFactorAuthenticationUsing(RedirectIfTwoFactorAuthenticatable::class);
|
|
Fortify::registerView(function () {
|
|
|
|
$plantels = Plantel::where('status',1)->get();
|
|
|
|
return view('auth.register', [
|
|
'plantels' => $plantels
|
|
]);
|
|
});
|
|
|
|
Fortify::authenticateUsing(function (Request $request) {
|
|
|
|
$user = User::where('email', $request->email)->first();
|
|
|
|
if (! $user) {
|
|
return null;
|
|
}
|
|
|
|
if ($user->status == 0) {
|
|
throw ValidationException::withMessages([
|
|
Fortify::username() => 'Tu cuenta ha sido desactivada. Contacta al administrador.'
|
|
]);
|
|
}
|
|
|
|
if (Hash::check($request->password, $user->password)) {
|
|
return $user;
|
|
}
|
|
|
|
return null;
|
|
});
|
|
|
|
|
|
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'));
|
|
});
|
|
|
|
|
|
$this->app->singleton(RegisterResponse::class, function () {
|
|
return new class implements RegisterResponse {
|
|
public function toResponse($request)
|
|
{
|
|
return redirect()->route('login')
|
|
->with([
|
|
'registro_exitoso' => true,
|
|
'mensaje_registro' => 'Tu cuenta ha sido creada. Revisa tu correo electrónico para activar tu acceso.'
|
|
]);
|
|
}
|
|
};
|
|
});
|
|
}
|
|
}
|