<?php
namespace App\Controller\WeightTax;
use App\Controller\BaseController;
use App\Entity\WeightTax\WeightTax;
use App\Manager\BitbagStatic\BlockManager;
use App\Service\CustomerService;
use App\Service\StaticPagesBitbagService;
use App\Service\WeightTax\WeightTaxService;
use RedisException;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
class WeightTaxController extends BaseController
{
public function indexAction(Request $request)
{
$customer = CustomerService::retrieveCustomerFromShopUser($this->getUser());
$request->getSession()->remove('iframeSourceLink');
$weightTaxApiService = $this->getContainer()->get('app.service.weight_tax_api');
try {
$sessionToken = $weightTaxApiService->getSessionToken();
} catch (\Exception $exception) {
$this->addFlash('error', 'A intervenit o eroare. Va rugam sa incercati din nou.');
return $this->redirectToRoute('sylius_shop_homepage');
}
$render = '@templates/WeightTax/weight-tax.html.twig';
return $this->render($render, [
'url' => $weightTaxApiService->getUrl(),
'iframeUrl' => $weightTaxApiService->getIframeUrl(),
'sessionToken' => $sessionToken,
'customer' => $customer,
'accordionBlocksFaq' => StaticPagesBitbagService::getAllFilteredBlocks($this->getEntityManager(), BlockManager::BLOCK_ACCORDION_TEXT_WEIGHT_TAX_CODE_PATTERN),
'keywordsForSeo' => StaticPagesBitbagService::getFirstFilteredBlocks($this->getEntityManager(), BlockManager::BLOCK_SEO_META_WEIGHT_TAX_KEYWORD_CODE_PATTERN),
'descriptionForSeo' => StaticPagesBitbagService::getFirstFilteredBlocks($this->getEntityManager(), BlockManager::BLOCK_SEO_META_WEIGHT_TAX_DESCRIPTION_CODE_PATTERN)
]);
}
/**
* @param Request $request
* @return JsonResponse
*/
public function removeFromCart(Request $request): JsonResponse
{
/** @var WeightTaxService $weightTaxService */
$weightTaxService = $this->getContainer()->get('app.service.weight_tax');
$result = $weightTaxService->removeFromCartSession($request->get('weightTaxId'));
return new JsonResponse(['result' => $result]);
}
public function submitData(Request $request) : Response
{
$result = array('success' => false, 'errorCode' => '');
$customer = CustomerService::retrieveCustomerFromShopUser($this->getUser());
$weightTaxService = $this->getContainer()->get('app.service.weight_tax');
$weightTaxApiService = $this->getContainer()->get('app.service.weight_tax_api');
$weightTax = $weightTaxService->storeWeightTaxToDatabase($customer);
if ($weightTax instanceof WeightTax) {
$weightTaxApiService->createOrUpdateApiLog($weightTax, $this->getEntityManager(), $request->request->all());
$result = $weightTaxService->storeNewWeightTaxInCart($weightTax);
} else {
$result['errorCode'] = 'A intervenit o eroare. Va rugam sa incercati din nou.';
}
return new Response(json_encode($result));
}
public function correctWeightTaxIssuedData(Request $request) : Response
{
$result = array('success' => false, 'errorCode' => '');
$weightTaxApiService = $this->getContainer()->get('app.service.weight_tax_api');
$weightTaxRepository = $this->getEntityManager()->getRepository(WeightTax::class);
$weightTax = $weightTaxRepository->find($request->request->get('id'));
if ($weightTax instanceof WeightTax) {
$weightTaxApiService->correctionWeightTax($this->getEntityManager(), $weightTax, $request->request->all());
} else {
$result['errorCode'] = 'A intervenit o eroare. Va rugam sa incercati din nou.';
}
return new Response(json_encode($result));
}
}