Skip to content

Commit cfb18aa

Browse files
Remove component factory as components are loaded differently now.
1 parent b363bc5 commit cfb18aa

File tree

7 files changed

+37
-123
lines changed

7 files changed

+37
-123
lines changed

Api/ComponentListInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ interface ComponentListInterface
66
{
77
/**
88
* @param $componentAlias
9-
* @return ComponentInterface
9+
* @return ComponentInterface|bool
1010
*/
1111
public function getComponent($componentAlias);
1212

Component/ComponentList.php

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ public function getComponent($componentAlias)
2525
if (array_key_exists($componentAlias, $this->components) === true) {
2626
return $this->components[$componentAlias];
2727
}
28+
return false;
2829
}
2930

3031
/**

Component/Factory/ComponentFactory.php

-43
This file was deleted.

Component/Factory/ComponentFactoryInterface.php

-24
This file was deleted.

Console/Command/RunCommand.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,17 @@ protected function configure()
3838
'c',
3939
InputOption::VALUE_OPTIONAL | InputOption::VALUE_IS_ARRAY,
4040
'Test',
41-
array()
41+
[]
4242
);
4343

4444
$this
4545
->setName('configurator:run')
4646
->setDescription('Run configurator components')
4747
->setDefinition(
48-
new InputDefinition(array(
48+
new InputDefinition([
4949
$environmentOption,
5050
$componentOption
51-
))
51+
])
5252
);
5353
}
5454

Model/Processor.php

+32-47
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@
44

55
use CtiDigital\Configurator\Api\ComponentInterface;
66
use CtiDigital\Configurator\Api\FileComponentInterface;
7+
use CtiDigital\Configurator\Api\ComponentListInterface;
78
use CtiDigital\Configurator\Api\LoggerInterface;
8-
use CtiDigital\Configurator\Component\ComponentAbstract;
99
use CtiDigital\Configurator\Exception\ComponentException;
10-
use CtiDigital\Configurator\Api\ConfigInterface;
11-
use CtiDigital\Configurator\Component\Factory\ComponentFactoryInterface;
1210
use Symfony\Component\Yaml\Parser;
1311
use Magento\Framework\App\State;
1412
use Magento\Framework\App\Area;
@@ -26,48 +24,39 @@ class Processor
2624
protected $environment;
2725

2826
/**
29-
* @var array
27+
* @var []
3028
*/
31-
protected $components = array();
29+
protected $components = [];
3230

3331
/**
34-
* @var ConfigInterface
32+
* @var ComponentListInterface
3533
*/
36-
protected $configInterface;
37-
38-
/**
39-
* @var LoggerInterface
40-
*/
41-
protected $log;
34+
protected $componentList;
4235

4336
/**
4437
* @var State
4538
*/
4639
protected $state;
4740

4841
/**
49-
* @var ComponentFactoryInterface
42+
* @var LoggerInterface
5043
*/
51-
protected $componentFactory;
44+
protected $log;
5245

5346
/**
5447
* Processor constructor.
55-
*
56-
* @param ConfigInterface $configInterface
57-
* @param ComponentFactoryInterface $componentFactory
58-
* @param LoggerInterface $logging
48+
* @param ComponentListInterface $componentList
5949
* @param State $state
50+
* @param LoggerInterface $logging
6051
*/
6152
public function __construct(
62-
ConfigInterface $configInterface,
63-
LoggerInterface $logging,
53+
ComponentListInterface $componentList,
6454
State $state,
65-
ComponentFactoryInterface $componentFactory
55+
LoggerInterface $logging
6656
) {
67-
$this->log = $logging;
68-
$this->configInterface = $configInterface;
57+
$this->componentList = $componentList;
6958
$this->state = $state;
70-
$this->componentFactory = $componentFactory;
59+
$this->log = $logging;
7160
}
7261

7362
public function getLogger()
@@ -181,10 +170,8 @@ public function runComponent($componentAlias, $componentConfig)
181170
$this->log->logComment(sprintf("| Loading component %s |", $componentAlias));
182171
$this->log->logComment(str_pad("----------------------", (22 + strlen($componentAlias)), "-"));
183172

184-
$componentClass = $this->configInterface->getComponentByName($componentAlias);
185-
186173
/* @var ComponentInterface $component */
187-
$component = $this->componentFactory->create($componentClass);
174+
$component = $this->componentList->getComponent($componentAlias);
188175

189176
$sourceType = (isset($componentConfig['type']) === true) ? $componentConfig['type'] : null;
190177

@@ -247,10 +234,12 @@ private function getMasterYaml()
247234
{
248235
// Read master yaml
249236
$masterPath = BP . '/app/etc/master.yaml';
237+
// phpcs:ignore Magento2.Functions.DiscouragedFunction
250238
if (!file_exists($masterPath)) {
251239
throw new ComponentException("Master YAML does not exist. Please create one in $masterPath");
252240
}
253241
$this->log->logComment(sprintf("Found Master YAML"));
242+
// phpcs:ignore Magento2.Functions.DiscouragedFunction
254243
$yamlContents = file_get_contents($masterPath);
255244
$yaml = new Parser();
256245
$master = $yaml->parse($yamlContents);
@@ -272,15 +261,8 @@ private function isValidComponent($componentName)
272261
if ($this->log->getLogLevel() > \Symfony\Component\Console\Output\OutputInterface::VERBOSITY_NORMAL) {
273262
$this->log->logQuestion(sprintf("Does the %s component exist?", $componentName));
274263
}
275-
$componentClass = $this->configInterface->getComponentByName($componentName);
264+
$component = $this->componentList->getComponent($componentName);
276265

277-
if (!$componentClass) {
278-
$this->log->logError(sprintf("The %s component has no class name.", $componentName));
279-
return false;
280-
}
281-
282-
$this->log->logComment(sprintf("The %s component has %s class name.", $componentName, $componentClass));
283-
$component = $this->componentFactory->create($componentClass);
284266
if ($component instanceof ComponentInterface) {
285267
return true;
286268
}
@@ -303,26 +285,29 @@ private function validateMasterYaml($master)
303285
sprintf('It appears %s does not have a "enabled" node. This is required.', $componentAlias)
304286
);
305287
}
306-
307288
// Check it has at least 1 data source
308-
$sourceCount = 0;
309-
if (isset($componentConfig['sources'])) {
310-
foreach ($componentConfig['sources'] as $i => $source) {
311-
$sourceCount++;
312-
}
289+
$componentHasSource = false;
290+
291+
if (isset($componentConfig['sources']) &&
292+
is_array($componentConfig['sources']) &&
293+
count($componentConfig['sources']) > 0 === true
294+
) {
295+
$componentHasSource = true;
313296
}
314297

315-
if (isset($componentConfig['env'])) {
298+
if (isset($componentConfig['env']) === true) {
316299
foreach ($componentConfig['env'] as $envData) {
317-
if (isset($envData['sources'])) {
318-
foreach ($envData['sources'] as $i => $source) {
319-
$sourceCount++;
320-
}
300+
if (isset($envData['sources']) &&
301+
is_array($envData['sources']) &&
302+
count($envData['sources']) > 0 === true
303+
) {
304+
$componentHasSource = true;
305+
break;
321306
}
322307
}
323308
}
324309

325-
if ($sourceCount < 1) {
310+
if ($componentHasSource === false) {
326311
throw new ComponentException(
327312
sprintf('It appears there are no data sources for the %s component.', $componentAlias)
328313
);

etc/di.xml

-5
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,6 @@
6363
</arguments>
6464
</type>
6565

66-
<type name="CtiDigital\Configurator\Model\Processor">
67-
<arguments>
68-
<argument name="componentFactory" xsi:type="object">CtiDigital\Configurator\Component\Factory\ComponentFactory</argument>
69-
</arguments>
70-
</type>
7166
<type name="CtiDigital\Configurator\Component\CatalogPriceRules">
7267
<arguments>
7368
<argument name="processor" xsi:type="object">CtiDigital\Configurator\Component\CatalogPriceRules\CatalogPriceRulesProcessor</argument>

0 commit comments

Comments
 (0)