1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-22 17:12:30 +01:00

Use existing method to handle the login

This commit is contained in:
DaneEveritt 2022-05-22 17:26:32 -04:00
parent 4d3362b24f
commit 3ae70efc14
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53

View File

@ -67,27 +67,21 @@ class LoginController extends AbstractLoginController
$this->sendFailedLoginResponse($request, $user);
}
if ($user->use_totp) {
$token = Str::random(64);
$request->session()->put('auth_confirmation_token', [
'user_id' => $user->id,
'token_value' => $token,
'expires_at' => CarbonImmutable::now()->addMinutes(5),
]);
return new JsonResponse([
'data' => [
'complete' => false,
'confirmation_token' => $token,
],
]);
if (!$user->use_totp) {
return $this->sendLoginResponse($user, $request);
}
$this->auth->guard()->login($user, true);
$request->session()->put('auth_confirmation_token', [
'user_id' => $user->id,
'token_value' => $token = Str::random(64),
'expires_at' => CarbonImmutable::now()->addMinutes(5),
]);
$request->session()->regenerate();
return $this->sendLoginResponse($user, $request);
return new JsonResponse([
'data' => [
'complete' => false,
'confirmation_token' => $token,
],
]);
}
}