src/Controller/WeightTax/WeightTaxController.php line 20

Open in your IDE?
  1. <?php
  2. namespace App\Controller\WeightTax;
  3. use App\Controller\BaseController;
  4. use App\Entity\WeightTax\WeightTax;
  5. use App\Manager\BitbagStatic\BlockManager;
  6. use App\Service\CustomerService;
  7. use App\Service\StaticPagesBitbagService;
  8. use App\Service\WeightTax\WeightTaxService;
  9. use RedisException;
  10. use Symfony\Component\HttpFoundation\JsonResponse;
  11. use Symfony\Component\HttpFoundation\Request;
  12. use Symfony\Component\HttpFoundation\Response;
  13. class WeightTaxController extends BaseController
  14. {
  15.     public function indexAction(Request $request)
  16.     {
  17.         $customer CustomerService::retrieveCustomerFromShopUser($this->getUser());
  18.         $request->getSession()->remove('iframeSourceLink');
  19.         $weightTaxApiService $this->getContainer()->get('app.service.weight_tax_api');
  20.         try {
  21.             $sessionToken $weightTaxApiService->getSessionToken();
  22.         } catch (\Exception $exception) {
  23.             $this->addFlash('error''A intervenit o eroare. Va rugam sa incercati din nou.');
  24.             return $this->redirectToRoute('sylius_shop_homepage');
  25.         }
  26.         $render '@templates/WeightTax/weight-tax.html.twig';
  27.         return $this->render($render, [
  28.             'url' => $weightTaxApiService->getUrl(),
  29.             'iframeUrl' => $weightTaxApiService->getIframeUrl(),
  30.             'sessionToken' => $sessionToken,
  31.             'customer' => $customer,
  32.             'accordionBlocksFaq' => StaticPagesBitbagService::getAllFilteredBlocks($this->getEntityManager(), BlockManager::BLOCK_ACCORDION_TEXT_WEIGHT_TAX_CODE_PATTERN),
  33.             'keywordsForSeo' => StaticPagesBitbagService::getFirstFilteredBlocks($this->getEntityManager(), BlockManager::BLOCK_SEO_META_WEIGHT_TAX_KEYWORD_CODE_PATTERN),
  34.             'descriptionForSeo' => StaticPagesBitbagService::getFirstFilteredBlocks($this->getEntityManager(), BlockManager::BLOCK_SEO_META_WEIGHT_TAX_DESCRIPTION_CODE_PATTERN)
  35.         ]);
  36.     }
  37.     /**
  38.      * @param Request $request
  39.      * @return JsonResponse
  40.      */
  41.     public function removeFromCart(Request $request): JsonResponse
  42.     {
  43.         /** @var WeightTaxService $weightTaxService */
  44.         $weightTaxService $this->getContainer()->get('app.service.weight_tax');
  45.         $result $weightTaxService->removeFromCartSession($request->get('weightTaxId'));
  46.         return new JsonResponse(['result' => $result]);
  47.     }
  48.     public function submitData(Request $request) : Response
  49.     {
  50.         $result = array('success' => false'errorCode' => '');
  51.         $customer CustomerService::retrieveCustomerFromShopUser($this->getUser());
  52.         $weightTaxService $this->getContainer()->get('app.service.weight_tax');
  53.         $weightTaxApiService $this->getContainer()->get('app.service.weight_tax_api');
  54.         $weightTax $weightTaxService->storeWeightTaxToDatabase($customer);
  55.         if ($weightTax instanceof WeightTax) {
  56.             $weightTaxApiService->createOrUpdateApiLog($weightTax$this->getEntityManager(), $request->request->all());
  57.             $result $weightTaxService->storeNewWeightTaxInCart($weightTax);
  58.         } else {
  59.             $result['errorCode'] = 'A intervenit o eroare. Va rugam sa incercati din nou.';
  60.         }
  61.         return new Response(json_encode($result));
  62.     }
  63.     public function correctWeightTaxIssuedData(Request $request) : Response
  64.     {
  65.         $result = array('success' => false'errorCode' => '');
  66.         $weightTaxApiService $this->getContainer()->get('app.service.weight_tax_api');
  67.         $weightTaxRepository $this->getEntityManager()->getRepository(WeightTax::class);
  68.         $weightTax $weightTaxRepository->find($request->request->get('id'));
  69.         if ($weightTax instanceof WeightTax) {
  70.             $weightTaxApiService->correctionWeightTax($this->getEntityManager(), $weightTax$request->request->all());
  71.         } else {
  72.             $result['errorCode'] = 'A intervenit o eroare. Va rugam sa incercati din nou.';
  73.         }
  74.         return new Response(json_encode($result));
  75.     }
  76. }