|
| 1 | +<?php |
| 2 | + |
| 3 | +namespace CtiDigital\Configurator\Component; |
| 4 | + |
| 5 | +use CtiDigital\Configurator\Api\ComponentInterface; |
| 6 | +use CtiDigital\Configurator\Exception\ComponentException; |
| 7 | +use Magento\SalesSequence\Model\Builder; |
| 8 | +use Magento\SalesSequence\Model\EntityPool; |
| 9 | +use Magento\SalesSequence\Model\Config; |
| 10 | +use Magento\Store\Api\StoreRepositoryInterface; |
| 11 | +use CtiDigital\Configurator\Api\LoggerInterface; |
| 12 | + |
| 13 | +class Sequence implements ComponentInterface |
| 14 | +{ |
| 15 | + /** |
| 16 | + * @var Builder |
| 17 | + */ |
| 18 | + protected $sequenceBuilder; |
| 19 | + |
| 20 | + /** |
| 21 | + * @var EntityPool |
| 22 | + */ |
| 23 | + protected $entityPool; |
| 24 | + |
| 25 | + /** |
| 26 | + * @var Config |
| 27 | + */ |
| 28 | + protected $sequenceConfig; |
| 29 | + |
| 30 | + /** |
| 31 | + * @var StoreRepositoryInterface |
| 32 | + */ |
| 33 | + protected $storeRepository; |
| 34 | + |
| 35 | + protected $logger; |
| 36 | + |
| 37 | + protected $alias = 'sequence'; |
| 38 | + protected $description = 'Component to allow manual configuring of the sequence tables.'; |
| 39 | + |
| 40 | + public function __construct( |
| 41 | + Builder $sequenceBuilder, |
| 42 | + EntityPool $entityPool, |
| 43 | + Config $sequenceConfig, |
| 44 | + StoreRepositoryInterface $repository, |
| 45 | + LoggerInterface $logger |
| 46 | + ) { |
| 47 | + $this->sequenceBuilder = $sequenceBuilder; |
| 48 | + $this->entityPool = $entityPool; |
| 49 | + $this->sequenceConfig = $sequenceConfig; |
| 50 | + $this->storeRepository = $repository; |
| 51 | + $this->logger = $logger; |
| 52 | + } |
| 53 | + |
| 54 | + public function execute($data) |
| 55 | + { |
| 56 | + if (!isset($data['stores'])) { |
| 57 | + throw new ComponentException("No stores found."); |
| 58 | + } |
| 59 | + |
| 60 | + foreach ($data['stores'] as $code => $overrides) { |
| 61 | + try { |
| 62 | + $this->logger->logInfo(__("Starting creating sequence tables for %1", $code)); |
| 63 | + $store = $this->storeRepository->get($code); |
| 64 | + $this->newSequenceTable($store, $overrides); |
| 65 | + $this->logger->logInfo(__("Finished creating sequence tables for %1", $code)); |
| 66 | + // todo handle existing sequence tables |
| 67 | + } catch (\Exception $exception) { |
| 68 | + $this->logger->logError($exception->getMessage()); |
| 69 | + } |
| 70 | + } |
| 71 | + } |
| 72 | + |
| 73 | + public function getAlias() |
| 74 | + { |
| 75 | + return $this->alias; |
| 76 | + } |
| 77 | + |
| 78 | + public function getDescription() |
| 79 | + { |
| 80 | + return $this->description; |
| 81 | + } |
| 82 | + |
| 83 | + protected function newSequenceTable($store, $overrides) |
| 84 | + { |
| 85 | + $configKeys = ['suffix', 'startValue', 'step', 'warningValue', 'maxValue', 'prefix']; |
| 86 | + $configValues = []; |
| 87 | + foreach ($configKeys as $key) { |
| 88 | + if ($key != 'prefix') { |
| 89 | + $configValues[$key] = $this->sequenceConfig->get($key); |
| 90 | + } else { |
| 91 | + $configValues[$key] = $store->getId(); |
| 92 | + } |
| 93 | + if (isset($overrides[$key])) { |
| 94 | + $configValues[$key] = $overrides[$key]; |
| 95 | + } |
| 96 | + } |
| 97 | + |
| 98 | + foreach ($this->entityPool->getEntities() as $entityType) { |
| 99 | + try { |
| 100 | + $this->logger->logComment(__( |
| 101 | + 'Store: %1 '. |
| 102 | + 'Prefix: %2, '. |
| 103 | + 'Suffix: %3, '. |
| 104 | + 'Start Value: %4, '. |
| 105 | + 'Step: %5, '. |
| 106 | + 'Warning Value: %6, '. |
| 107 | + 'Max Value: %7, '. |
| 108 | + 'Entity Type: %8', |
| 109 | + $store->getCode(), |
| 110 | + $configValues['prefix'], |
| 111 | + $configValues['suffix'], |
| 112 | + $configValues['startValue'], |
| 113 | + $configValues['step'], |
| 114 | + $configValues['warningValue'], |
| 115 | + $configValues['maxValue'], |
| 116 | + $entityType |
| 117 | + ), 1); |
| 118 | + $this->sequenceBuilder->setPrefix($configValues['prefix']) |
| 119 | + ->setSuffix($configValues['suffix']) |
| 120 | + ->setStartValue($configValues['startValue']) |
| 121 | + ->setStoreId($store->getId()) |
| 122 | + ->setStep($configValues['step']) |
| 123 | + ->setWarningValue($configValues['warningValue']) |
| 124 | + ->setMaxValue($configValues['maxValue']) |
| 125 | + ->setEntityType($entityType) |
| 126 | + ->create(); |
| 127 | + $this->logger->logInfo(__("Sequence table created for %1", $entityType), 1); |
| 128 | + } catch (\Exception $exception) { |
| 129 | + $this->logger->logError($exception->getMessage()); |
| 130 | + } |
| 131 | + } |
| 132 | + } |
| 133 | +} |
0 commit comments