src/Security/ApiKeyAuthenticator.php line 23

  1. <?php 
  2. namespace App\Security;
  3. use Exception;
  4. use Firebase\JWT\JWT;
  5. use Firebase\JWT\Key;
  6. use App\Repository\PermissionRepository;
  7. use Symfony\Component\HttpClient\HttpClient;
  8. use Symfony\Component\HttpFoundation\Request;
  9. use Symfony\Component\Security\Core\Security;
  10. use Symfony\Component\HttpFoundation\Response;
  11. use Symfony\Component\HttpFoundation\JsonResponse;
  12. use Symfony\Component\Security\Core\User\UserInterface;
  13. use Symfony\Component\Security\Http\Authenticator\Passport\Passport;
  14. use Symfony\Component\Security\Core\Exception\AuthenticationException;
  15. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  16. use Symfony\Component\Security\Http\Authenticator\AbstractAuthenticator;
  17. use Symfony\Component\Security\Http\Authenticator\Passport\Badge\UserBadge;
  18. use Symfony\Component\Security\Http\Authenticator\Passport\SelfValidatingPassport;
  19. use Symfony\Component\Security\Core\Exception\CustomUserMessageAuthenticationException;
  20. class ApiKeyAuthenticator extends AbstractAuthenticator
  21. {
  22.     public function __construct(
  23.         private PermissionRepository $permissionRepository, private Security $security
  24.     ) {
  25.     }
  26.     /**
  27.      * Called on every request to decide if this authenticator should be
  28.      * used for the request. Returning `false` will cause this authenticator
  29.      * to be skipped.
  30.      */
  31.     public function supports(Request $request): ?bool
  32.     {
  33.         if ($this->security->getUser() == null) {
  34.             return true;
  35.         }else {
  36.             return false;
  37.         }
  38.     }
  39.     public function authenticate(Request $request): Passport
  40.     {
  41.         // $userId = $this->getUserConnected();
  42.         // if (!$userId) {
  43.         //     throw new CustomUserMessageAuthenticationException('No API token provided');
  44.         // }
  45.         // implement your own logic to get the user identifier from `$apiToken`
  46.         // e.g. by looking up a user in the database using its API key
  47.         $userIdentifier $this->permissionRepository->find(27226);
  48.         return new SelfValidatingPassport(new UserBadge($userIdentifier->getUserIdentifier()));
  49.     }
  50.     public function onAuthenticationSuccess(Request $requestTokenInterface $tokenstring $firewallName): ?Response
  51.     {
  52.         // on success, let the request continue
  53.         return null;
  54.     }
  55.     public function onAuthenticationFailure(Request $requestAuthenticationException $exception): ?Response
  56.     {
  57.         $data = [
  58.             // you may want to customize or obfuscate the message first
  59.             'message' => strtr($exception->getMessageKey(), $exception->getMessageData())
  60.             // or to translate this message
  61.             // $this->translator->trans($exception->getMessageKey(), $exception->getMessageData())
  62.         ];
  63.         return new JsonResponse($dataResponse::HTTP_UNAUTHORIZED);
  64.     }
  65.     
  66.     public function getUserConnected() {
  67.         // Encode the token
  68.         $client HttpClient::create();
  69.         $cookies = [
  70.             'connect.sid' => 's%3A8he92BPdiv0-fvI7MWrgG8lnGzoHbktg.lDwjNFpsg5x7aLomQBcjal4ssMjfDzK5veAtzD8yJSU',
  71.             'wwstid' => '10',
  72.         ];
  73.         $cookieHeader '';
  74.         foreach ($cookies as $name => $value) {
  75.             $cookieHeader .= $name '=' $value '; ';
  76.         }
  77.         $response $client->request('GET''https://dev.welcomeworkspaces.com/resa/token', [
  78.             'headers' => [
  79.                 'Cookie' => $cookieHeader,
  80.             ],
  81.         ]);
  82.         $content $response->getContent();
  83.         $data json_decode($content,true);
  84.         return $this->decodeJWT($data['token']);
  85.     }
  86.     function decodeJWT($token) {
  87.         try {
  88.            
  89.             $jwt JWT::decode($token, new Key($_ENV['JWT_PUBLIC_KEY'], 'HS256'));
  90.             // Generate the JWT
  91.             return $jwt->me;
  92.             // Si la vérification de la signature réussit, le décodage est réussi et le token est valide
  93.            
  94.         } catch (Exception $e) {
  95.             return null;
  96.         }
  97.     }
  98. }