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.

259 lines
9.5KB

  1. <?php
  2. namespace Lc\CaracoleBundle\Twig;
  3. use Lc\CaracoleBundle\Builder\Order\OrderShopBuilder;
  4. use Lc\CaracoleBundle\Model\Merchant\MerchantInterface;
  5. use Lc\CaracoleBundle\Model\Order\OrderShopInterface;
  6. use Lc\CaracoleBundle\Model\Section\SectionInterface;
  7. use Lc\CaracoleBundle\Model\User\UserMerchantInterface;
  8. use Lc\CaracoleBundle\Repository\Config\TaxRateStore;
  9. use Lc\CaracoleBundle\Repository\Config\UnitStore;
  10. use Lc\CaracoleBundle\Repository\Merchant\MerchantStore;
  11. use Lc\CaracoleBundle\Repository\Order\OrderShopStore;
  12. use Lc\CaracoleBundle\Repository\Product\ProductCategoryStore;
  13. use Lc\CaracoleBundle\Repository\Reminder\ReminderStore;
  14. use Lc\CaracoleBundle\Repository\Section\SectionStore;
  15. use Lc\CaracoleBundle\Resolver\MerchantResolver;
  16. use Lc\CaracoleBundle\Resolver\SectionResolver;
  17. use Lc\CaracoleBundle\Resolver\VisitorResolver;
  18. use Lc\SovBundle\Solver\Setting\SettingSolver;
  19. use Symfony\Component\Security\Core\Security;
  20. use Twig\Extension\AbstractExtension;
  21. use Twig\TwigFunction;
  22. class StoreTwigExtension extends AbstractExtension
  23. {
  24. protected MerchantStore $merchantStore;
  25. protected SectionStore $sectionStore;
  26. protected ReminderStore $reminderStore;
  27. protected MerchantResolver $merchantResolver;
  28. protected SectionResolver $sectionResolver;
  29. protected UnitStore $unitStore;
  30. protected TaxRateStore $taxRateStore;
  31. protected ProductCategoryStore $productCategoryStore;
  32. protected OrderShopStore $orderShopStore;
  33. protected SettingSolver $settingSolver;
  34. protected OrderShopBuilder $orderShopBuilder;
  35. protected Security $security;
  36. protected VisitorResolver $visitorResolver;
  37. public function __construct(
  38. MerchantResolver $merchantResolver,
  39. SectionResolver $sectionResolver,
  40. MerchantStore $merchantStore,
  41. SectionStore $sectionStore,
  42. ReminderStore $reminderStore,
  43. UnitStore $unitStore,
  44. TaxRateStore $taxRateStore,
  45. ProductCategoryStore $productCategoryStore,
  46. OrderShopStore $orderShopStore,
  47. SettingSolver $settingSolver,
  48. OrderShopBuilder $orderShopBuilder,
  49. Security $security,
  50. VisitorResolver $visitorResolver
  51. ) {
  52. $this->merchantResolver = $merchantResolver;
  53. $this->sectionResolver = $sectionResolver;
  54. $this->merchantStore = $merchantStore;
  55. $this->sectionStore = $sectionStore;
  56. $this->reminderStore = $reminderStore;
  57. $this->unitStore = $unitStore;
  58. $this->taxRateStore = $taxRateStore;
  59. $this->productCategoryStore = $productCategoryStore;
  60. $this->orderShopStore = $orderShopStore;
  61. $this->settingSolver = $settingSolver;
  62. $this->orderShopBuilder = $orderShopBuilder;
  63. $this->security = $security;
  64. $this->visitorResolver = $visitorResolver;
  65. }
  66. public function getFunctions()
  67. {
  68. return array(
  69. new TwigFunction('carac_sections', [$this, 'getSections']),
  70. new TwigFunction('carac_section_current', [$this, 'getSectionCurrent']),
  71. new TwigFunction('carac_cart_current', [$this, 'getCartCurrent']),
  72. new TwigFunction('carac_merchants', [$this, 'getMerchants']),
  73. new TwigFunction('carac_reminders', [$this, 'getReminders']),
  74. new TwigFunction('carac_units', [$this, 'getUnits']),
  75. new TwigFunction('carac_tax_rates', [$this, 'getTaxRates']),
  76. new TwigFunction('carac_reduction_cart_codes', [$this, 'getTaxRates']),
  77. new TwigFunction('product_categories', [$this, 'getProductCategories']),
  78. new TwigFunction('cart_current', [$this, 'getCartCurrent']),
  79. new TwigFunction('cart_current_visited', [$this, 'getCartCurrentVisited']),
  80. new TwigFunction('merchant_current', [$this, 'getMerchantCurrent']),
  81. new TwigFunction('merchant_current_slug', [$this, 'getMerchantCurrentSlug']),
  82. new TwigFunction('user_merchant_current', [$this, 'getUserMerchantCurrent']),
  83. new TwigFunction('section_current', [$this, 'getSectionCurrent']),
  84. new TwigFunction('section_default', [$this, 'getSectionDefault']),
  85. new TwigFunction('section_current_default', [$this, 'getSectionCurrentDefault']),
  86. new TwigFunction('section_current_visited', [$this, 'getSectionCurrentVisited']),
  87. new TwigFunction('is_out_of_sections', [$this, 'isOutOfSections']),
  88. new TwigFunction('is_inside_section', [$this, 'isInsideSection']),
  89. new TwigFunction('section_current_slug', [$this, 'getSectionCurrentSlug']),
  90. new TwigFunction('section_current_default_slug', [$this, 'getSectionCurrentDefaultSlug']),
  91. new TwigFunction('section_current_visited_slug', [$this, 'getSectionCurrentVisitedSlug']),
  92. new TwigFunction('merchant_setting', [$this, 'getMerchantSetting']),
  93. new TwigFunction('merchant_setting_current', [$this, 'getMerchantSettingCurrent']),
  94. new TwigFunction('section_setting', [$this, 'getSectionSetting']),
  95. new TwigFunction('section_setting_current', [$this, 'getSectionSettingCurrent']),
  96. new TwigFunction('visitor_current', [$this, 'getVisitorCurrent']),
  97. );
  98. }
  99. public function isInsideSection(): bool
  100. {
  101. return (bool) $this->sectionResolver->getCurrent();
  102. }
  103. public function isOutOfSections()
  104. {
  105. return $this->sectionResolver->isOutOfSection();
  106. }
  107. private $sections = null;
  108. public function getSections()
  109. {
  110. if(!$this->sections){
  111. $this->sections = $this->sectionStore
  112. ->setMerchant($this->merchantResolver->getCurrent())
  113. ->getOnline();
  114. }
  115. return $this->sections;
  116. }
  117. public function getMerchants()
  118. {
  119. return $this->merchantStore->getOnline();
  120. }
  121. public function getSectionCurrent(): ?SectionInterface
  122. {
  123. return $this->sectionResolver->getCurrent();
  124. }
  125. public function getSectionDefault(): ?SectionInterface
  126. {
  127. return $this->sectionStore->setMerchant($this->merchantResolver->getCurrent())->getOneDefault();
  128. }
  129. public function getSectionCurrentDefault(): ?SectionInterface
  130. {
  131. return $this->sectionResolver->getCurrent(true);
  132. }
  133. public function getSectionCurrentVisited(): ?SectionInterface
  134. {
  135. return $this->sectionResolver->getCurrent(true, true);
  136. }
  137. public function getSectionCurrentSlug(): string
  138. {
  139. return $this->sectionResolver->getCurrent()->getSlug();
  140. }
  141. public function getSectionCurrentDefaultSlug(): string
  142. {
  143. return $this->sectionResolver->getCurrent(true)->getSlug();
  144. }
  145. public function getSectionCurrentVisitedSlug(): string
  146. {
  147. return $this->sectionResolver->getCurrent(true, true)->getSlug();
  148. }
  149. public function getCartCurrent(): OrderShopInterface
  150. {
  151. return $this->orderShopBuilder->createIfNotExist(
  152. $this->sectionResolver->getCurrent(),
  153. $this->security->getUser(),
  154. $this->visitorResolver->getCurrent(),
  155. true
  156. );
  157. }
  158. public function getCartCurrentVisited(): OrderShopInterface
  159. {
  160. return $this->orderShopBuilder->createIfNotExist(
  161. $this->sectionResolver->getCurrent(true, true),
  162. $this->security->getUser(),
  163. $this->visitorResolver->getCurrent(),
  164. true
  165. );
  166. }
  167. public function getMerchantCurrent(): MerchantInterface
  168. {
  169. return $this->merchantResolver->getCurrent();
  170. }
  171. public function getMerchantCurrentSlug(): string
  172. {
  173. return $this->merchantResolver->getCurrent()->getSlug();
  174. }
  175. public function getUserMerchantCurrent(): ?UserMerchantInterface
  176. {
  177. return $this->merchantResolver->getUserMerchant();
  178. }
  179. public function getMerchantSetting(MerchantInterface $merchant, string $settingName): ?string
  180. {
  181. return $this->settingSolver->getSettingValue($merchant, $settingName);
  182. }
  183. public function getMerchantSettingCurrent(string $settingName): ?string
  184. {
  185. return $this->settingSolver->getSettingValue($this->getMerchantCurrent(), $settingName);
  186. }
  187. public function getSectionSetting(SectionInterface $section, string $settingName): ?string
  188. {
  189. return $this->settingSolver->getSettingValue($section, $settingName);
  190. }
  191. public function getSectionSettingCurrent(string $settingName)
  192. {
  193. return $this->settingSolver->getSettingValue($this->getSectionCurrent(), $settingName);
  194. }
  195. public function getProductCategories()
  196. {
  197. return $this->productCategoryStore
  198. ->setSection($this->sectionResolver->getCurrent())
  199. ->getParent();
  200. }
  201. public function getReminders($params = [])
  202. {
  203. return $this->reminderStore
  204. ->setMerchant($this->merchantResolver->getCurrent())
  205. ->setSection($this->sectionResolver->getCurrent())
  206. ->get($params);
  207. }
  208. public function getUnits()
  209. {
  210. return $this->unitStore->getAsArray();
  211. }
  212. public function getTaxRates()
  213. {
  214. return $this->taxRateStore->setMerchant($this->merchantResolver->getCurrent())->getAsArray();
  215. }
  216. public function getReductionCartCodes()
  217. {
  218. //TODO mettre à jour une fois les repo fait
  219. return array();
  220. }
  221. public function getVisitorCurrent()
  222. {
  223. return $this->visitorResolver->getCurrent();
  224. }
  225. }