app/Plugin/CustomProductSearch/Event/Event.php line 66

Open in your IDE?
  1. <?php
  2. namespace Plugin\CustomProductSearch\Event;
  3. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  4. use Symfony\Component\Form\FormFactoryInterface;
  5. use Symfony\Component\HttpFoundation\RequestStack;
  6. use Twig\Environment;
  7. use Eccube\Event\TemplateEvent;
  8. use Eccube\Event\EccubeEvents;
  9. use Plugin\CustomProductSearch\Form\Type\SearchProductType;
  10. use Symfony\Component\HttpFoundation\Request;
  11. class Event implements EventSubscriberInterface
  12. {
  13.     /**
  14.      * @var FormFactoryInterface
  15.      */
  16.     private $formFactory;
  17.     /**
  18.      * @var Environment
  19.      */
  20.     private $twig;
  21.     /**
  22.      * @var RequestStack
  23.      */
  24.     private $requestStack;
  25.     /**
  26.      * @var Request
  27.      */
  28.     private $request;
  29.     public function __construct(
  30.         FormFactoryInterface $formFactory,
  31.         Environment $twig,
  32.         RequestStack $requestStack
  33.     ) {
  34.         $this->formFactory $formFactory;
  35.         $this->twig $twig;
  36.         $this->requestStack $requestStack;
  37.         $this->request $requestStack->getCurrentRequest();
  38.     }
  39.     /**
  40.      * Register events
  41.      */
  42.     public static function getSubscribedEvents()
  43.     {
  44.         return [
  45.             // Hook into product list template
  46.             'Product/list.twig' => [
  47.                 ['onProductListRender'10]
  48.             ],
  49.             'Block/header.twig' => [
  50.                 ['onHeaderRender'10]
  51.             ],
  52.         ];
  53.     }
  54.     /**
  55.      * Handle rendering search form on product list page
  56.      */
  57.     public function onProductListRender(TemplateEvent $event)
  58.     {
  59.         try {
  60.             // Create search form
  61.             $searchForm $this->createSearchForm();
  62.             // Render search form
  63.             $searchFormHtml $this->renderSearchForm($searchForm);
  64.             // Insert search form into template
  65.             $this->insertSearchFormIntoTemplate($event$searchFormHtml);
  66.         } catch (\Exception $e) {
  67.             // Log error if any
  68.             $this->logError('Product List Render Error'$e);
  69.         }
  70.     }
  71.     /**
  72.      * Handle rendering search form on product list page
  73.      */
  74.     public function onHeaderRender(TemplateEvent $event)
  75.     {
  76.         try {
  77.             // Create search form
  78.             $searchForm $this->createSearchForm();
  79.             // Render search form
  80.             $searchFormHtml $this->renderHeaderSearchForm($searchForm);
  81.             // Insert search form into template
  82.             $this->insertSearchFormIntoTemplate($event$searchFormHtml);
  83.         } catch (\Exception $e) {
  84.             // Log error if any
  85.             $this->logError('Product List Render Error'$e);
  86.         }
  87.     }
  88.     /**
  89.      * Handle rendering search form on search page
  90.      */
  91.     public function onProductSearchRender(TemplateEvent $event)
  92.     {
  93.         try {
  94.             // Create search form
  95.             $searchForm $this->createSearchForm();
  96.             // Render search form
  97.             $searchFormHtml $this->renderSearchForm($searchForm);
  98.             // Insert search form into template
  99.             $this->insertSearchFormIntoTemplate($event$searchFormHtml);
  100.         } catch (\Exception $e) {
  101.             // Log error if any
  102.             $this->logError('Product Search Render Error'$e);
  103.         }
  104.     }
  105.     /**
  106.      * Create search form
  107.      */
  108.     private function createSearchForm()
  109.     {
  110.         // Get data from the current request
  111.         $searchData $this->request->query->all();
  112.         // Create form with initial data
  113.         $searchForm $this->formFactory->create(SearchProductType::class, $searchData, [
  114.             'method' => 'GET'// Use GET method
  115.             'csrf_protection' => false// Disable CSRF to allow searching
  116.         ]);
  117.         return $searchForm;
  118.     }
  119.     /**
  120.      * Render search form to HTML
  121.      */
  122.     private function renderSearchForm($searchForm)
  123.     {
  124.         return $this->twig->render(
  125.             'Block/search_form.twig',
  126.             [
  127.                 'searchForm' => $searchForm->createView(),
  128.                 'category' => [],
  129.                 'category17' => [],
  130.                 'category19' => [],
  131.             ]
  132.         );
  133.     }
  134.     /**
  135.      * Render search form to HTML
  136.      */
  137.     private function renderHeaderSearchForm($searchForm)
  138.     {
  139.         return $this->twig->render(
  140.             'Block/header_search_form.twig',
  141.             [
  142.                 'searchForm' => $searchForm->createView(),
  143.                 'category' => [],
  144.                 'category17' => [],
  145.                 'category19' => [],
  146.             ]
  147.         );
  148.     }
  149.     /**
  150.      * Insert search form into template
  151.      */
  152.     private function insertSearchFormIntoTemplate(TemplateEvent $event$searchFormHtml)
  153.     {
  154.         // Get source template
  155.         $source $event->getSource();
  156.         // Patterns to insert search form
  157.         $insertPatterns = [
  158.             '/(<div class="product_form_search">)/'
  159.         ];
  160.         // Try to insert using patterns
  161.         foreach ($insertPatterns as $pattern) {
  162.             if (preg_match($pattern$source)) {
  163.                 $modifiedSource preg_replace(
  164.                     $pattern,
  165.                     $searchFormHtml '$1',
  166.                     $source
  167.                 );
  168.                 // If insertion is successful
  169.                 if ($modifiedSource !== $source) {
  170.                     $event->setSource($modifiedSource);
  171.                     return;
  172.                 }
  173.             }
  174.         }
  175.         // If no insertion position found, add to the beginning of the template
  176.         $event->setSource($searchFormHtml $source);
  177.     }
  178.     /**
  179.      * Log error
  180.      */
  181.     private function logError($message\Exception $e)
  182.     {
  183.         // Use EC-CUBE logger to log errors
  184.         // You need to inject logger if you want to use it
  185.         error_log(sprintf(
  186.             "%s: %s\nTrace: %s",
  187.             $message,
  188.             $e->getMessage(),
  189.             $e->getTraceAsString()
  190.         ));
  191.     }
  192. }