You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

119 lines
4.5KB

  1. <?php
  2. namespace Lc\ShopBundle\Twig;
  3. use Doctrine\ORM\EntityManagerInterface;
  4. use Lc\ShopBundle\Context\MerchantInterface;
  5. use Lc\ShopBundle\Context\MerchantUtilsInterface;
  6. use Lc\ShopBundle\Context\ProductCategoryInterface;
  7. use Lc\ShopBundle\Context\ProductFamilyInterface;
  8. use Lc\ShopBundle\Form\Frontend\NewsletterType;
  9. use Liip\ImagineBundle\Imagine\Cache\CacheManager;
  10. use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
  11. use Symfony\Component\Form\FormFactoryInterface;
  12. use Symfony\Component\HttpFoundation\RequestStack;
  13. use Symfony\Component\Security\Core\Security;
  14. use Twig\Extension\AbstractExtension;
  15. use Twig\TwigFilter;
  16. use Twig\TwigFunction;
  17. class FrontendTwigExtension extends AbstractExtension
  18. {
  19. protected $em ;
  20. protected $security ;
  21. protected $merchantUtils ;
  22. protected $formFactory ;
  23. protected $requestStack ;
  24. protected $productCategoryRepository ;
  25. protected $merchantRepository ;
  26. protected $productFamilyRepository ;
  27. protected $liipCacheHelper ;
  28. protected $parameterBag ;
  29. public function __construct(EntityManagerInterface $em, Security $security, MerchantUtilsInterface $merchantUtils,
  30. FormFactoryInterface $formFactory, RequestStack $requestStack, CacheManager $liipCacheHelper,
  31. ParameterBagInterface $parameterBag)
  32. {
  33. $this->em = $em ;
  34. $this->security = $security ;
  35. $this->merchantUtils = $merchantUtils ;
  36. $this->formFactory = $formFactory ;
  37. $this->requestStack = $requestStack ;
  38. $this->productCategoryRepository = $this->em->getRepository($this->em->getClassMetadata(ProductCategoryInterface::class)->getName()) ;
  39. $this->merchantRepository = $this->em->getRepository($this->em->getClassMetadata(MerchantInterface::class)->getName()) ;
  40. $this->productFamilyRepository = $this->em->getRepository($this->em->getClassMetadata(ProductFamilyInterface::class)->getName()) ;
  41. $this->liipCacheHelper = $liipCacheHelper;
  42. $this->parameterBag = $parameterBag;
  43. }
  44. public function getFunctions()
  45. {
  46. return array(
  47. new TwigFunction('get_product_categories', [$this, 'getProductCategories']),
  48. new TwigFunction('get_form_newsletter', [$this, 'getFormNewsletter']),
  49. new TwigFunction('get_merchants', [$this, 'getMerchants']),
  50. new TwigFunction('lc_liip', [$this, 'lcLiip']),
  51. new TwigFunction('get_file_manager_folder', [$this, 'getFileManagerFolder']),
  52. );
  53. }
  54. public function getFilters()
  55. {
  56. return [
  57. new TwigFilter('format_price', [$this, 'formatPrice']),
  58. new TwigFilter('lc_liip', [$this, 'lcLiip']),
  59. ];
  60. }
  61. public function lcLiip($path, $thumb = 'tile', $default = 'default.jpg')
  62. {
  63. if(strpos($path, $this->getFileManagerFolder())===false){
  64. $path = $this->getFileManagerFolder() .'/'. $path;
  65. }
  66. if ($path) {
  67. return $this->liipCacheHelper->getBrowserPath($path, $thumb);
  68. } else {
  69. return $this->liipCacheHelper->getBrowserPath('assets/img/frontend/'.$default, $thumb);
  70. }
  71. }
  72. /**
  73. * Retourne le chemin vers le dossier d'uploads de responsiveFilemanager
  74. *
  75. * @return string
  76. */
  77. public function getFileManagerFolder(){
  78. return $this->parameterBag->get('app.path.images');
  79. }
  80. public function getProductCategories()
  81. {
  82. $categories = $this->productCategoryRepository->findAllParents($this->merchantUtils->getMerchantCurrent()) ;
  83. return $categories ;
  84. }
  85. public function getFormNewsletter()
  86. {
  87. $form = $this->formFactory->create(NewsletterType::class);
  88. return $form->createView() ;
  89. }
  90. public function formatPrice($price)
  91. {
  92. $price = number_format($price, 2, ',', ' ') ;
  93. $price = $price .'&nbsp;€' ;
  94. return $price ;
  95. }
  96. public function getMerchants()
  97. {
  98. return $this->merchantRepository->findAll() ;
  99. }
  100. }