custom/plugins/KayloManagement/src/Subscriber/KayloKeySubscriber.php line 28

Open in your IDE?
  1. <?php
  2. namespace Kaylo\Management\Subscriber;
  3. use Kaylo\Management\Storefront\KayloController;
  4. use League\OAuth2\Server\CryptKey;
  5. use Symfony\Component\Config\Definition\Exception\Exception;
  6. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  7. use Symfony\Component\HttpKernel\Event\ControllerEvent;
  8. use Symfony\Component\HttpKernel\KernelEvents;
  9. class KayloKeySubscriber implements EventSubscriberInterface {
  10.     private CryptKey $privateKey;
  11.     private string   $kayloKey;
  12.     public function __construct($privateKey$kayloKey) {
  13.         if (!$privateKey instanceof CryptKey) {
  14.             $privateKey = new CryptKey($privateKey);
  15.         }
  16.         $this->privateKey $privateKey;
  17.         $this->kayloKey   $kayloKey;
  18.     }
  19.     /**
  20.      * @throws Exception
  21.      */
  22.     public function onKernelController(ControllerEvent $event) {
  23.         $controller $event->getController();
  24.         // when a controller class defines multiple action methods, the controller
  25.         // is returned as [$controllerInstance, 'methodName']
  26.         if (is_array($controller)) {
  27.             $controller array_shift($controller);
  28.         }
  29.         if ($controller instanceof KayloController) {
  30.             $encryptedKey $event->getRequest()->get('key');
  31.             if (empty($encryptedKey)) {
  32.                 throw new Exception('This action needs a Kaylo key');
  33.             }
  34.             if ($this->decryptKey($encryptedKey) !== $this->kayloKey) {
  35.                 throw new Exception('This Kaylo key is invalid ');
  36.             }
  37.         }
  38.     }
  39.     private function decryptKey(string $encryptedMessage) {
  40.         $key        hex2bin($encryptedMessage);
  41.         $privateKey openssl_pkey_get_private($this->privateKey->getKeyPath(), $this->privateKey->getPassPhrase());
  42.         openssl_private_decrypt(
  43.             $key,
  44.             $decryptedMessage,
  45.             $privateKey
  46.         );
  47.         return $decryptedMessage;
  48.     }
  49.     public static function getSubscribedEvents(): array {
  50.         return [
  51.             KernelEvents::CONTROLLER => 'onKernelController',
  52.         ];
  53.     }
  54. }