src/EventListener/AccessDeniedListener.php line 35

  1. <?php
  2. namespace App\EventListener;
  3. use Symfony\Component\HttpFoundation\Response;
  4. use Symfony\Component\HttpKernel\KernelEvents;
  5. use Symfony\Component\HttpKernel\KernelInterface;
  6. use Symfony\Component\HttpFoundation\RedirectResponse;
  7. use Symfony\Component\HttpKernel\Event\ExceptionEvent;
  8. use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
  9. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  10. use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
  11. use Symfony\Component\Security\Core\Exception\AccessDeniedException;
  12. class AccessDeniedListener implements EventSubscriberInterface
  13. {
  14.     private $gUrl;
  15.     private $kernel;
  16.     public function __construct(UrlGeneratorInterface $gUrlKernelInterface $kernel)
  17.     {
  18.         $this->gUrl $gUrl;
  19.         $this->kernel $kernel;
  20.     }
  21.     public static function getSubscribedEvents(): array
  22.     {
  23.         return [
  24.             // the priority must be greater than the Security HTTP
  25.             // ExceptionListener, to make sure it's called before
  26.             // the default exception listener
  27.             KernelEvents::EXCEPTION => 'onKernelException',
  28.         ];
  29.     }
  30.     public function onKernelException(ExceptionEvent $event): void
  31.     {
  32.         $exception $event->getThrowable();
  33.         $request $event->getRequest();
  34.         $env $this->kernel->getEnvironment();
  35.         $baseUrl $request->getHttpHost();
  36.         $local strpos($baseUrl"zekin.me") === false ?? false;
  37.         $prod $env === "prod" ?? false;
  38.         if($exception instanceof NotFoundHttpException){ // 404 error
  39.             // $event->setResponse(new RedirectResponse($this->gUrl->generate('app_404')));
  40.         }else if($exception->getCode() == 403){ // AccessDenied
  41.         }else{ // Others error
  42.             /*$message = sprintf('Error: %s with code: %s', $exception->getMessage(), $exception->getCode());
  43.             $this->notify($message, $prod, $local, $request);
  44.             $filePath = $this->kernel->getProjectDir() . '/templates/vitrine/t0/500.html.twig';
  45.             $htmlContent = file_get_contents($filePath);
  46.             if($local){
  47.                 $htmlContent = str_replace("_1_", "", $htmlContent);
  48.                 $htmlContent = str_replace("_2_", "<code class='message'>".$message."</code>", $htmlContent);
  49.             }else{
  50.                 $htmlContent = str_replace("_1_", "/public", $htmlContent);
  51.                 $htmlContent = str_replace("_2_", "", $htmlContent);
  52.             }
  53.             if($prod){
  54.                 $event->setResponse(new Response($htmlContent, Response::HTTP_OK, ['Content-Type' => 'text/html']));
  55.             }
  56.             // $event->stopPropagation();
  57.             */
  58.         }
  59.     }
  60.     private function notify($message$envProd$envLocal$request null)
  61.     {
  62.         $dir "./log/ExceptionEvent/";
  63.         if(!is_dir($dir)) mkdir($dir0777true);
  64.         $file $dir.date("YmdH").'.log';
  65.             
  66.         $log  "ExceptionEvent : ".date("F j, Y, g:i a").PHP_EOL.
  67.         "Message..: ".$message.PHP_EOL.
  68.         $this->additional($request).
  69.         "-------------------------".PHP_EOL;
  70.         //Save string to log, use FILE_APPEND to append.
  71.         file_put_contents($file$logFILE_APPEND);
  72.         $this->sendSMS($file$envProd$envLocal$message);
  73.     }
  74.     private function corrigeCarac($originMessage)
  75.     {
  76.         $str str_replace(['<br>''<br/>''<br />'"\n""\r""`"'{''}''['']''|''^''~''€''WhatsApp''whatsapp''WHATSAPP'], ''$originMessage);
  77.         $str preg_replace('#<[^>]*>#'''$str );
  78.         $str htmlentities($strENT_NOQUOTES'utf-8');
  79.         $str preg_replace('#&([A-za-z])(?:acute|grave|cedil|circ|orn|ring|slash|th|tilde|uml);#''\1'$str);
  80.         $str preg_replace('#&([A-za-z]{2})(?:lig);#''\1'$str);
  81.         $str preg_replace('#&[^;]+;#'''$str);
  82.         return $str;
  83.     }
  84.     private function additional($request null)
  85.     {
  86.         $addtional "";
  87.         if($request){
  88.             $addtional .= "Controller..: ".$request->attributes->get("_controller").PHP_EOL;
  89.             $session $request->getSession()->all();
  90.             if(isset($session["_security.last_username"])) $addtional .= "LastUser..: ".$session["_security.last_username"].PHP_EOL;
  91.             if(isset($session["_security.main.target_path"])) $addtional .= "TargetPath..: ".$session["_security.main.target_path"].PHP_EOL;
  92.             $params $request->attributes->get("_route_params");
  93.             foreach ($params?$params:[] as $key => $value) {
  94.                 $addtional .= $key."..: ".$value.PHP_EOL;
  95.             }
  96.         }
  97.         return $addtional;
  98.     }
  99.     private function sendSMS($file$envProd$envLocal$message)
  100.     {
  101.         $support "22952735555";
  102.         // if($envProd){
  103.         if(!is_file($file) && $envProd && !$envLocal){
  104.             try {
  105.                 $sendsmsurl_prefix "http://51.38.34.139:13013/cgi-bin/sendsms";
  106.                 $curl curl_init();
  107.                 $sendsmsurl_params = array(
  108.                     "username" =>  "VpsovhFaster",
  109.                     "password" =>  "Tbc6aBL38yMh",
  110.                     "to"       => $support,
  111.                     "text"     => $this->corrigeCarac($message)." ".date("Y.m.d H:i"),
  112.                     "from"     => "ZEKIN",
  113.                     "smsc"     => "Fastermessage_moov",
  114.                     'priority' => 3,
  115.                     'dlr_url'  => "",
  116.                     'dlr_mask' => 31,
  117.                     "mclass"   => 1,
  118.                 );
  119.                 $sendsmsurl $sendsmsurl_prefix."?".http_build_query($sendsmsurl_params);
  120.                 curl_setopt($curlCURLOPT_RETURNTRANSFERtrue);
  121.                 curl_setopt($curlCURLOPT_URL$sendsmsurl);
  122.                 curl_exec($curl);
  123.                 curl_close($curl);
  124.             } catch (\Exception $e) {
  125.                 /*\App\Service\FasterApi::call_api([
  126.                     "from"=>"ZEKIN",
  127.                     "to"=>$support,
  128.                     "text"=>$message." ".date("Y.m.d H:i")
  129.                 ], "send_sms");*/
  130.             }
  131.         }
  132.     } 
  133. }