mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 00:26:51 +01:00 
			
		
		
		
	 c0eedc16e0
			
		
	
	
		c0eedc16e0
		
			
		
	
	
	
	
		
			
			* update web installer * make sure we have a user * save SESSION_SECURE_COOKIE as text so it's written correctly to the .env * set `SESSION_COOKIE` so session doesn't expire when changing the app name * Allow enter to go to next step --------- Co-authored-by: notCharles <charles@pelican.dev>
		
			
				
	
	
		
			76 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Controllers\Auth;
 | |
| 
 | |
| use App\Filament\Pages\Installer\PanelInstaller;
 | |
| use Carbon\CarbonImmutable;
 | |
| use Illuminate\Support\Str;
 | |
| use Illuminate\Http\Request;
 | |
| use App\Models\User;
 | |
| use Illuminate\Http\JsonResponse;
 | |
| use App\Facades\Activity;
 | |
| 
 | |
| 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()
 | |
|     {
 | |
|         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,
 | |
|             ],
 | |
|         ]);
 | |
|     }
 | |
| }
 |