src/Controller/SupportController.php line 133

  1. <?php
  2. namespace App\Controller;
  3. use Sav;
  4. use App\Services\DbMenu;
  5. use App\Services\DbPage;
  6. use App\Services\DbSupport;
  7. use App\Services\PdfHandler;
  8. use App\Services\MailerHandler;
  9. use Symfony\Component\HttpFoundation\Request;
  10. use Symfony\Component\HttpFoundation\Response;
  11. use Symfony\Component\Routing\Annotation\Route;
  12. use Symfony\Component\HttpFoundation\JsonResponse;
  13. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  14. class SupportController extends ConfigurateurController
  15. {
  16.     function decodeURIComponent($str)
  17.     {
  18.         $revert = array('!' => '%21''*' => '%2A'"'" => '%27''(' => '%28'')' => '%29');
  19.         return rawurldecode(strtr($str$revert));
  20.     }
  21.     function savePDF($surname$jobFunction$email$company$address$street$cp$town$country$telephone$lignes$lang$pdfHandler) {
  22.         //Set les données client pour le PDF
  23.         $pdfCustomer['surname'] =  $surname;
  24.         $pdfCustomer['JobFunction'] =  $jobFunction;
  25.         $pdfCustomer['email'] =  $email;
  26.         $pdfCustomer['company'] =  $company;
  27.         $pdfCustomer['address'] =  $address;
  28.         $pdfCustomer['street'] =  $street;
  29.         $pdfCustomer['cp'] =  $cp;
  30.         $pdfCustomer['town'] =  $town;
  31.         $pdfCustomer['country'] =  $country;
  32.         $pdfCustomer['telephone'] =  $telephone;
  33.     
  34.         foreach ($lignes as $id => $ligne) {
  35.             if ($id != 0) {
  36.                 $infos explode(';;'$ligne);
  37.     
  38.                 if ($id == 1) {
  39.                     //Ajoute le code RMA au customer pour le pdf
  40.                     $pdfCustomer['rma'] = htmlentities($infos[0]);
  41.                 }
  42.                 //Génère les différent produits pour le PDF
  43.                 $pdfProducts[$id] =  array(
  44.                     htmlentities($infos[1]),
  45.                     htmlentities($infos[9]),
  46.                     htmlentities($infos[2]),
  47.                     htmlentities($infos[3]),
  48.                     htmlentities($infos[4]),
  49.                     htmlentities($infos[5]),
  50.                     htmlentities($infos[6]),
  51.                     htmlentities($infos[7]),
  52.                     htmlentities($infos[8])
  53.                 );
  54.                 //END Génère les différent produits pour le PDF
  55.             }
  56.         }
  57.         //END Set les données client pour le PDF
  58.         
  59.         //Génération du PDF
  60.         // $pdf = generatePDF($pdfCustomer, $pdfProducts, $lang);
  61.         $pdf $pdfHandler->generatePdf('pdf/sav/sav.html.twig', [], null);
  62.     
  63.         return $pdf;
  64.     }
  65.     #[Route(
  66.         path: ['fr' => '/{_locale}/definitions''en' => '/{_locale}/definitions'],
  67.         name'definitionmenu',
  68.         requirements: [
  69.             '_locale' => 'en|fr',
  70.         ],
  71.         priority2
  72.     )]
  73.     public function definitionmenu(Request $requestDbMenu $dbMenu): Response
  74.     {
  75.         if ($request->getLocale() == 'fr') {
  76.             $link '/en/definitions';
  77.             $breadcrumb = array(['name' => 'Définitions''link_rewrite' => 'definitions']);
  78.         } else {
  79.             $link '/fr/definitions';
  80.             $breadcrumb = array(['name' => 'Definitions''link_rewrite' => 'definitions']);
  81.         }
  82.         $lienDb "definitions";
  83.         $parent $dbMenu->getContent($lienDb$request->getLocale());
  84.         $menus $dbMenu->getMenus($parent[0]['id_cms_category'], $request->getLocale());
  85.         $menusCms $dbMenu->getMenusCms($parent[0]['id_cms_category'], $request->getLocale());
  86.         return $this->render('apropos/aproposmenu.html.twig', ['link' => $link'breadcrumb' => $breadcrumb'menus' => $menus'menusCms' => $menusCms]);
  87.     }
  88.     #[Route(
  89.         path: ['fr' => '/{_locale}/definitions/{link}''en' => '/{_locale}/definitions/{link}'],
  90.         name'definitions',
  91.         requirements: [
  92.             '_locale' => 'en|fr',
  93.         ]
  94.     )]
  95.     public function definitions(Request $requestDbSupport $dbSupport$link null): Response
  96.     {
  97.         $contents $dbSupport->getContent($link$request->getLocale());
  98.         $breadcrumb = array(['name' => 'Definitions''link_rewrite' => 'definitions'], ['name' => $contents[0]["name"], 'link_rewrite' => $link]);
  99.         $linkRewrite $dbSupport->getLink($contents[0]['id_cms_category'], $request);
  100.         return $this->render('support/definitions.html.twig', ['link' => $linkRewrite'breadcrumb' => $breadcrumb'menusCms' => $contents]);
  101.     }
  102.     #[Route(
  103.         path: ['fr' => '/{_locale}/definitions/certifications/{link}''en' => '/{_locale}/definitions/certifications/{link}'],
  104.         name'certifications',
  105.         requirements: [
  106.             '_locale' => 'en|fr',
  107.         ]
  108.     )]
  109.     #[Route(
  110.         path: ['fr' => '/{_locale}/definitions/caracteristiques-techniques/{link}''en' => '/{_locale}/definitions/technical-features/{link}'],
  111.         name'techniques',
  112.         requirements: [
  113.             '_locale' => 'en|fr',
  114.         ]
  115.     )]
  116.     #[Route(
  117.         path: ['fr' => '/{_locale}/options-capteurs-de-force/{link}''en' => '/{_locale}/load-cells-options/{link}'],
  118.         name'optionscapteurslien',
  119.         requirements: [
  120.             '_locale' => 'en|fr',
  121.         ]
  122.     )]
  123.     public function certifications(Request $requestDbPage $dbPage$link null): Response
  124.     {
  125.         $contents $dbPage->getContent($link$request->getLocale());
  126.         $link $dbPage->getLink($contents[0]['id_cms'], $request);
  127.         $breadcrumb $dbPage->getBreadcrumb($request);
  128.         return $this->render('apropos/apropos.html.twig', ['contents' => $contents'link' => $link'breadcrumb' => $breadcrumb'definition' => true]);
  129.     }
  130.     #[Route(
  131.         path: ['fr' => '/{_locale}/options-capteurs-de-force''en' => '/{_locale}/load-cells-options'],
  132.         name'optionscapteurs',
  133.         requirements: [
  134.             '_locale' => 'en|fr',
  135.         ],
  136.         priority2
  137.     )]
  138.     public function optionscapteurs(Request $requestDbMenu $dbMenu): Response
  139.     {
  140.         if ($request->getLocale() == 'fr') {
  141.             $link '/en/load-cells-options';
  142.             $lienDb "options-capteurs-de-force";
  143.             $breadcrumb = array(['name' => 'Options''link_rewrite' => $lienDb]);
  144.         } else {
  145.             $link '/fr/options-capteurs-de-force';
  146.             $lienDb "load-cells-options";
  147.             $breadcrumb = array(['name' => 'Options''link_rewrite' => $lienDb]);
  148.         }
  149.         $parent $dbMenu->getContent($lienDb$request->getLocale());
  150.         $menus $dbMenu->getMenus($parent[0]['id_cms_category'], $request->getLocale());
  151.         $menusCms $dbMenu->getMenusCms($parent[0]['id_cms_category'], $request->getLocale());
  152.         return $this->render('apropos/aproposmenu.html.twig', ['link' => $link'breadcrumb' => $breadcrumb'menus' => $menus'menusCms' => $menusCms]);
  153.     }
  154.     #[Route(
  155.         path: ['fr' => '/{_locale}/faqs''en' => '/{_locale}/faqs'],
  156.         name'faq',
  157.         requirements: [
  158.             '_locale' => 'en|fr',
  159.         ],
  160.         priority2
  161.     )]
  162.     public function faq(Request $requestDbSupport $dbSupport): Response
  163.     {
  164.         if ($request->getLocale() == 'fr') {
  165.             $link '/en/faqs';
  166.         } else {
  167.             $link '/fr/faqs';
  168.         }
  169.         $breadcrumb = array(['name' => 'FAQ''link_rewrite' => 'faqs']);
  170.         $categories $dbSupport->getFaqCategory($request);
  171.         $search $request->query->get('search');
  172.         $questions $dbSupport->getFaq($requestnull$search);
  173.         return $this->render('support/faq.html.twig', ['link' => $link'breadcrumb' => $breadcrumb'questions' => $questions'categories' => $categories]);
  174.     }
  175.     #[Route(
  176.         path: ['fr' => '/{_locale}/faqs/{category}/{linkRewrite}''en' => '/{_locale}/faqs/{category}/{linkRewrite}'],
  177.         name'faqContent',
  178.         requirements: [
  179.             '_locale' => 'en|fr',
  180.         ],
  181.         priority2
  182.     )]
  183.     public function faqContent(Request $requestDbSupport $dbSupport$category null$linkRewrite null): Response
  184.     {
  185.         $altLang $request->getLocale() == "fr" "en" "fr";
  186.         $breadcrumb = array(['name' => 'FAQ''link_rewrite' => 'faqs'], ['name' => ucfirst($category), 'link_rewrite' => 'faqs']);
  187.         $contents $dbSupport->getFaq($request$linkRewrite);
  188.         $link $dbSupport->getLinkFaq($request$contents[0]["id_gomakoil_faq"], $category);
  189.         foreach ($contents as $k => $content) {
  190.             $contents[$k]["meta_title"] = strip_tags($content["question"]);
  191.         }
  192.         return $this->render('support/faqcontent.html.twig', ['link' => $link'breadcrumb' => $breadcrumb'contents' => $contents]);
  193.     }
  194.     #[Route(
  195.         path: ['fr' => '/{_locale}/sav''en' => '/{_locale}/rma'], 
  196.         name'sav'
  197.         requirements: [
  198.             '_locale' => 'en|fr',
  199.         ],
  200.         priority2
  201.     )]
  202.     public function sav(Request $requestDbSupport $dbSupport): Response
  203.     {
  204.         if ($request->getLocale() == 'fr') {
  205.             $link '/en/rma';
  206.             $breadcrumb = array(['name' => 'Requête SAV''link_rewrite' => 'sav']);
  207.         } else {
  208.             $link '/fr/sav';
  209.             $breadcrumb = array(['name' => 'RMA Request''link_rewrite' => 'rma']);
  210.         }
  211.         // $categories = $dbSupport->getFaqCategory($request);
  212.         // $search = $request->query->get('search');
  213.         // $questions = $dbSupport->getFaq($request, null, $search);
  214.         return $this->render('support/sav.html.twig', ['link' => $link'breadcrumb' => $breadcrumb]);
  215.     }
  216.     #[Route(
  217.         path: ['fr' => '/rma''en' => '/rma'], 
  218.         name'rma_file'
  219.         requirements: [
  220.             '_locale' => 'en|fr',
  221.         ], 
  222.         priority2
  223.     )]
  224.     public function rma_file() : Response
  225.     {
  226.         $monfichier fopen($this->getParameter('kernel.project_dir') . '/public/rma.txt''r+');
  227.         $rma fgets($monfichier);
  228.         $yearInFile substr($rma04);
  229.         $rma str_replace($yearInFiledate("Y"), $rma);
  230.         $rma += 1;
  231.         fseek($monfichier0);
  232.         fputs($monfichier$rma);
  233.         
  234.         //fclose($rma);
  235.         return new JsonResponse($rma);
  236.     }
  237.     #[Route(
  238.         path: ['fr' => '/{_locale}/send-sav''en' => '/{_locale}/send-rma'], 
  239.         name'send_sav'
  240.         requirements: [
  241.             '_locale' => 'en|fr',
  242.         ], 
  243.         priority2
  244.     )]
  245.     public function send_sav(Request $requestPdfHandler $pdfHandlerMailerHandler $mailer): Response
  246.     {
  247.         $content $this->getJsonContent($request);
  248.         $trimedEmail trim($content['email']);
  249.         if (isset($trimedEmail) && !empty($trimedEmail)) {
  250.             // Récupérer les infos $content
  251.             $surname htmlspecialchars(decodeURIComponent($content['surname']));
  252.             $jobFunction htmlspecialchars(decodeURIComponent($content['JobFunction']));
  253.             $email htmlspecialchars(decodeURIComponent($content['email']));
  254.             $company htmlspecialchars(decodeURIComponent($content['company']));
  255.             $address htmlspecialchars(decodeURIComponent($content['address']));
  256.             $telephone htmlspecialchars(decodeURIComponent($content['telephone']));
  257.             $sendingBackDate htmlspecialchars(decodeURIComponent($content['sendingBackDate']));
  258.             $langue =  htmlspecialchars(decodeURIComponent($content['language']));
  259.             $street htmlspecialchars(decodeURIComponent($content['street'])); 
  260.             $cp htmlspecialchars(decodeURIComponent($content['cp']));
  261.             $town htmlspecialchars(decodeURIComponent($content['town']));
  262.             $country htmlspecialchars(decodeURIComponent($content['country']));
  263.             if ($langue == 0) {
  264.                 $langue 'English';
  265.             } else if ($langue == 1) {
  266.                 $langue 'Français';
  267.             } else if ($langue == 2) {
  268.                 $langue 'Deutsch';
  269.             } else if ($langue == 3) {
  270.                 $langue 'Nederlands';
  271.             } else if ($langue == 4) {
  272.                 $langue 'Español';
  273.             } else if ($langue == 5) {
  274.                 $langue 'Italiano';
  275.             } else if ($langue == 6) {
  276.                 $langue 'Magyar';
  277.             } else if ($langue == 7) {
  278.                 $langue 'Hrvatski';
  279.             } else if ($langue == 8) {
  280.                 $langue 'Ceský';
  281.             } else if ($langue == 9) {
  282.                 $langue 'Polski';
  283.             }
  284.             // Récupéré la langue (français ou anglais)
  285.             if (isset($content['site_lang']) && $content['site_lang'] == 'fr') {
  286.                 $lang 1;
  287.                 $savTitle '#SAV : ';
  288.                 $typeProduit 'Type du Produit : ';
  289.                 $nserie 'Numero de Serie : ';
  290.                 $ncommande 'Numero de Commande SENSY : ';
  291.                 $remarque 'Remarque : ';
  292.                 $motifrenvoi 'Motif du renvoi : ';
  293.                 $options 'Options : ';
  294.                 $courbeEtalonnage "Courbe d'étalonnage : ";
  295.                 $nouveauCable 'Nouveau câble : ';
  296.                 $nouveauConnecteur 'Nouveau connecteur : ';
  297.             } else {
  298.                 $lang 2;
  299.                 $savTitle '#RMA : ';
  300.                 $typeProduit 'Model : ';
  301.                 $nserie 'Serial number : ';
  302.                 $ncommande 'Order number : ';
  303.                 $remarque 'Remark / Fault description : '
  304.                 $motifrenvoi 'Reason for return : ';
  305.                 $courbeEtalonnage 'Calibration certificate : '
  306.                 $nouveauCable 'New cable : ';
  307.                 $nouveauConnecteur 'New connector : ';
  308.             }
  309.             $tab htmlspecialchars(decodeURIComponent(urldecode($content['tab'])));
  310.             $lignes explode('HYHY'$tab);
  311.             
  312.             // $pdf = $this->savePDF($surname, $jobFunction, $email, $company, $address, $street, $cp, $town, $country, $telephone, $lignes, $lang, $pdfHandler);
  313.             $pdf null;
  314.             $success sendMail($lang$surname$jobFunction$email$company$address$langue$telephone$sendingBackDate$lignes$savTitle$typeProduit$nserie$ncommande$remarque$motifrenvoi$courbeEtalonnage$nouveauCable$nouveauConnecteur$pdf$mailer);
  315.         }
  316.         return new JsonResponse();
  317.     }
  318. }