Skip to content

Commit 0deb6ac

Browse files
committedMar 2, 2020
Initial Sequence Component
1 parent 3bf6d90 commit 0deb6ac

File tree

4 files changed

+142
-0
lines changed

4 files changed

+142
-0
lines changed
 

‎Component/Sequence.php

+133
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
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+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
stores:
2+
base:
3+
prefix: PREFIX_

‎Samples/master.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ config:
1818
sources:
1919
- ../configurator/Configuration/global.yaml
2020
- ../configurator/Configuration/base-website-config.yaml
21+
sequence:
22+
enabled: 1
23+
method: code
24+
sources:
25+
- ../configurator/Sequence/sequence.yaml
2126
attributes:
2227
enabled: 1
2328
method: code

‎etc/di.xml

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<argument name="components" xsi:type="array">
2525
<item name="websites" xsi:type="object">CtiDigital\Configurator\Component\Websites</item>
2626
<item name="config" xsi:type="object">CtiDigital\Configurator\Component\Config</item>
27+
<item name="sequence" xsi:type="object">CtiDigital\Configurator\Component\Sequence</item>
2728
<item name="attributes" xsi:type="object">CtiDigital\Configurator\Component\Attributes</item>
2829
<item name="attribute_sets" xsi:type="object">CtiDigital\Configurator\Component\AttributeSets</item>
2930
<item name="adminroles" xsi:type="object">CtiDigital\Configurator\Component\AdminRoles</item>

0 commit comments

Comments
 (0)
Please sign in to comment.