mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 21:04:44 +02:00
78 lines
2.5 KiB
PHP
78 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Auth;
|
|
|
|
use App\Livewire\Installer\PanelInstaller;
|
|
use Carbon\CarbonImmutable;
|
|
use Illuminate\Http\RedirectResponse;
|
|
use Illuminate\Support\Str;
|
|
use Illuminate\Http\Request;
|
|
use App\Models\User;
|
|
use Illuminate\Http\JsonResponse;
|
|
use App\Facades\Activity;
|
|
use Illuminate\View\View;
|
|
|
|
class LoginController extends AbstractLoginController
|
|
{
|
|
/**
|
|
* Handle all incoming requests for the authentication routes and render the
|
|
* base authentication view component. React will take over at this point and
|
|
* turn the login area into an SPA.
|
|
*/
|
|
public function index(): View|RedirectResponse
|
|
{
|
|
if (!PanelInstaller::isInstalled()) {
|
|
return redirect('/installer');
|
|
}
|
|
|
|
return view('templates/auth.core');
|
|
}
|
|
|
|
/**
|
|
* Handle a login request to the application.
|
|
*
|
|
* @throws \App\Exceptions\DisplayException
|
|
* @throws \Illuminate\Validation\ValidationException
|
|
*/
|
|
public function login(Request $request): JsonResponse
|
|
{
|
|
if ($this->hasTooManyLoginAttempts($request)) {
|
|
$this->fireLockoutEvent($request);
|
|
$this->sendLockoutResponse($request);
|
|
}
|
|
|
|
$username = $request->input('user');
|
|
$user = User::query()->where($this->getField($username), $username)->first();
|
|
if (!$user) {
|
|
$this->sendFailedLoginResponse($request);
|
|
}
|
|
|
|
// Ensure that the account is using a valid username and password before trying to
|
|
// continue. Previously this was handled in the 2FA checkpoint, however that has
|
|
// a flaw in which you can discover if an account exists simply by seeing if you
|
|
// can proceed to the next step in the login process.
|
|
if (!password_verify($request->input('password'), $user->password)) {
|
|
$this->sendFailedLoginResponse($request, $user);
|
|
}
|
|
|
|
if (!$user->use_totp) {
|
|
return $this->sendLoginResponse($user, $request);
|
|
}
|
|
|
|
Activity::event('auth:checkpoint')->withRequestMetadata()->subject($user)->log();
|
|
|
|
$request->session()->put('auth_confirmation_token', [
|
|
'user_id' => $user->id,
|
|
'token_value' => $token = Str::random(64),
|
|
'expires_at' => CarbonImmutable::now()->addMinutes(5),
|
|
]);
|
|
|
|
return new JsonResponse([
|
|
'data' => [
|
|
'complete' => false,
|
|
'confirmation_token' => $token,
|
|
],
|
|
]);
|
|
}
|
|
}
|