mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 16:56:52 +01:00 
			
		
		
		
	 d5d50d4150
			
		
	
	
		d5d50d4150
		
			
		
	
	
	
	
		
			
			Co-authored-by: RMartinOscar <40749467+RMartinOscar@users.noreply.github.com> Co-authored-by: notCharles <charles@pelican.dev>
		
			
				
	
	
		
			139 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			139 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Controllers\Auth;
 | |
| 
 | |
| use App\Extensions\OAuth\OAuthSchemaInterface;
 | |
| use App\Extensions\OAuth\OAuthService;
 | |
| use App\Filament\Pages\Auth\EditProfile;
 | |
| use App\Http\Controllers\Controller;
 | |
| use App\Models\User;
 | |
| use App\Services\Users\UserCreationService;
 | |
| use Exception;
 | |
| use Filament\Notifications\Notification;
 | |
| use Illuminate\Http\RedirectResponse;
 | |
| use Illuminate\Http\Request;
 | |
| use Laravel\Socialite\Contracts\User as OAuthUser;
 | |
| use Laravel\Socialite\Facades\Socialite;
 | |
| use Symfony\Component\HttpFoundation\RedirectResponse as SymfonyRedirectResponse;
 | |
| 
 | |
| class OAuthController extends Controller
 | |
| {
 | |
|     public function __construct(
 | |
|         private readonly UserCreationService $userCreation,
 | |
|         private readonly OAuthService $oauthService,
 | |
|     ) {}
 | |
| 
 | |
|     /**
 | |
|      * Redirect user to the OAuth provider
 | |
|      */
 | |
|     public function redirect(string $driver): SymfonyRedirectResponse|RedirectResponse
 | |
|     {
 | |
|         if (!$this->oauthService->get($driver)->isEnabled()) {
 | |
|             return redirect()->route('auth.login');
 | |
|         }
 | |
| 
 | |
|         return Socialite::driver($driver)->redirect();
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Callback from OAuth provider.
 | |
|      */
 | |
|     public function callback(Request $request, string $driver): RedirectResponse
 | |
|     {
 | |
|         $driver = $this->oauthService->get($driver);
 | |
| 
 | |
|         if (!$driver || !$driver->isEnabled()) {
 | |
|             return redirect()->route('auth.login');
 | |
|         }
 | |
| 
 | |
|         // Check for errors (https://www.oauth.com/oauth2-servers/server-side-apps/possible-errors/)
 | |
|         if ($request->get('error')) {
 | |
|             report($request->get('error_description') ?? $request->get('error'));
 | |
| 
 | |
|             return $this->errorRedirect($request->get('error'));
 | |
|         }
 | |
| 
 | |
|         $oauthUser = Socialite::driver($driver->getId())->user();
 | |
| 
 | |
|         if ($request->user()) {
 | |
|             $this->linkUser($request->user(), $driver, $oauthUser);
 | |
| 
 | |
|             return redirect(EditProfile::getUrl(['tab' => 'oauth::data::tab'], panel: 'app'));
 | |
|         }
 | |
| 
 | |
|         $user = User::whereJsonContains('oauth->'. $driver->getId(), $oauthUser->getId())->first();
 | |
|         if ($user) {
 | |
|             return $this->loginUser($user);
 | |
|         }
 | |
| 
 | |
|         return $this->handleMissingUser($driver, $oauthUser);
 | |
|     }
 | |
| 
 | |
|     private function linkUser(User $user, OAuthSchemaInterface $driver, OAuthUser $oauthUser): User
 | |
|     {
 | |
|         $oauth = $user->oauth;
 | |
|         $oauth[$driver->getId()] = $oauthUser->getId();
 | |
| 
 | |
|         $user->update(['oauth' => $oauth]);
 | |
| 
 | |
|         return $user->refresh();
 | |
|     }
 | |
| 
 | |
|     private function handleMissingUser(OAuthSchemaInterface $driver, OAuthUser $oauthUser): RedirectResponse
 | |
|     {
 | |
|         $email = $oauthUser->getEmail();
 | |
| 
 | |
|         if (!$email) {
 | |
|             return $this->errorRedirect();
 | |
|         }
 | |
| 
 | |
|         $user = User::whereEmail($email)->first();
 | |
|         if ($user) {
 | |
|             if (!$driver->shouldLinkMissingUsers()) {
 | |
|                 return $this->errorRedirect();
 | |
|             }
 | |
| 
 | |
|             $user = $this->linkUser($user, $driver, $oauthUser);
 | |
|         } else {
 | |
|             if (!$driver->shouldCreateMissingUsers()) {
 | |
|                 return $this->errorRedirect();
 | |
|             }
 | |
| 
 | |
|             try {
 | |
|                 $user = $this->userCreation->handle([
 | |
|                     'username' => $oauthUser->getNickname(),
 | |
|                     'email' => $email,
 | |
|                     'oauth' => [
 | |
|                         $driver->getId() => $oauthUser->getId(),
 | |
|                     ],
 | |
|                 ]);
 | |
|             } catch (Exception $exception) {
 | |
|                 report($exception);
 | |
| 
 | |
|                 return $this->errorRedirect();
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         return $this->loginUser($user);
 | |
|     }
 | |
| 
 | |
|     private function loginUser(User $user): RedirectResponse
 | |
|     {
 | |
|         auth()->guard()->login($user, true);
 | |
| 
 | |
|         return redirect('/');
 | |
|     }
 | |
| 
 | |
|     private function errorRedirect(?string $error = null): RedirectResponse
 | |
|     {
 | |
|         Notification::make()
 | |
|             ->title($error ? 'Something went wrong' : 'No linked User found')
 | |
|             ->body($error)
 | |
|             ->danger()
 | |
|             ->persistent()
 | |
|             ->send();
 | |
| 
 | |
|         return redirect()->route('auth.login');
 | |
|     }
 | |
| }
 |