4
4
5
5
use CtiDigital \Configurator \Api \ComponentInterface ;
6
6
use CtiDigital \Configurator \Api \FileComponentInterface ;
7
+ use CtiDigital \Configurator \Api \ComponentListInterface ;
7
8
use CtiDigital \Configurator \Api \LoggerInterface ;
8
- use CtiDigital \Configurator \Component \ComponentAbstract ;
9
9
use CtiDigital \Configurator \Exception \ComponentException ;
10
- use CtiDigital \Configurator \Api \ConfigInterface ;
11
- use CtiDigital \Configurator \Component \Factory \ComponentFactoryInterface ;
12
10
use Symfony \Component \Yaml \Parser ;
13
11
use Magento \Framework \App \State ;
14
12
use Magento \Framework \App \Area ;
@@ -26,48 +24,39 @@ class Processor
26
24
protected $ environment ;
27
25
28
26
/**
29
- * @var array
27
+ * @var []
30
28
*/
31
- protected $ components = array () ;
29
+ protected $ components = [] ;
32
30
33
31
/**
34
- * @var ConfigInterface
32
+ * @var ComponentListInterface
35
33
*/
36
- protected $ configInterface ;
37
-
38
- /**
39
- * @var LoggerInterface
40
- */
41
- protected $ log ;
34
+ protected $ componentList ;
42
35
43
36
/**
44
37
* @var State
45
38
*/
46
39
protected $ state ;
47
40
48
41
/**
49
- * @var ComponentFactoryInterface
42
+ * @var LoggerInterface
50
43
*/
51
- protected $ componentFactory ;
44
+ protected $ log ;
52
45
53
46
/**
54
47
* Processor constructor.
55
- *
56
- * @param ConfigInterface $configInterface
57
- * @param ComponentFactoryInterface $componentFactory
58
- * @param LoggerInterface $logging
48
+ * @param ComponentListInterface $componentList
59
49
* @param State $state
50
+ * @param LoggerInterface $logging
60
51
*/
61
52
public function __construct (
62
- ConfigInterface $ configInterface ,
63
- LoggerInterface $ logging ,
53
+ ComponentListInterface $ componentList ,
64
54
State $ state ,
65
- ComponentFactoryInterface $ componentFactory
55
+ LoggerInterface $ logging
66
56
) {
67
- $ this ->log = $ logging ;
68
- $ this ->configInterface = $ configInterface ;
57
+ $ this ->componentList = $ componentList ;
69
58
$ this ->state = $ state ;
70
- $ this ->componentFactory = $ componentFactory ;
59
+ $ this ->log = $ logging ;
71
60
}
72
61
73
62
public function getLogger ()
@@ -181,10 +170,8 @@ public function runComponent($componentAlias, $componentConfig)
181
170
$ this ->log ->logComment (sprintf ("| Loading component %s | " , $ componentAlias ));
182
171
$ this ->log ->logComment (str_pad ("---------------------- " , (22 + strlen ($ componentAlias )), "- " ));
183
172
184
- $ componentClass = $ this ->configInterface ->getComponentByName ($ componentAlias );
185
-
186
173
/* @var ComponentInterface $component */
187
- $ component = $ this ->componentFactory -> create ( $ componentClass );
174
+ $ component = $ this ->componentList -> getComponent ( $ componentAlias );
188
175
189
176
$ sourceType = (isset ($ componentConfig ['type ' ]) === true ) ? $ componentConfig ['type ' ] : null ;
190
177
@@ -247,10 +234,12 @@ private function getMasterYaml()
247
234
{
248
235
// Read master yaml
249
236
$ masterPath = BP . '/app/etc/master.yaml ' ;
237
+ // phpcs:ignore Magento2.Functions.DiscouragedFunction
250
238
if (!file_exists ($ masterPath )) {
251
239
throw new ComponentException ("Master YAML does not exist. Please create one in $ masterPath " );
252
240
}
253
241
$ this ->log ->logComment (sprintf ("Found Master YAML " ));
242
+ // phpcs:ignore Magento2.Functions.DiscouragedFunction
254
243
$ yamlContents = file_get_contents ($ masterPath );
255
244
$ yaml = new Parser ();
256
245
$ master = $ yaml ->parse ($ yamlContents );
@@ -272,15 +261,8 @@ private function isValidComponent($componentName)
272
261
if ($ this ->log ->getLogLevel () > \Symfony \Component \Console \Output \OutputInterface::VERBOSITY_NORMAL ) {
273
262
$ this ->log ->logQuestion (sprintf ("Does the %s component exist? " , $ componentName ));
274
263
}
275
- $ componentClass = $ this ->configInterface -> getComponentByName ($ componentName );
264
+ $ component = $ this ->componentList -> getComponent ($ componentName );
276
265
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 );
284
266
if ($ component instanceof ComponentInterface) {
285
267
return true ;
286
268
}
@@ -303,26 +285,29 @@ private function validateMasterYaml($master)
303
285
sprintf ('It appears %s does not have a "enabled" node. This is required. ' , $ componentAlias )
304
286
);
305
287
}
306
-
307
288
// 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 ;
313
296
}
314
297
315
- if (isset ($ componentConfig ['env ' ])) {
298
+ if (isset ($ componentConfig ['env ' ]) === true ) {
316
299
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 ;
321
306
}
322
307
}
323
308
}
324
309
325
- if ($ sourceCount < 1 ) {
310
+ if ($ componentHasSource === false ) {
326
311
throw new ComponentException (
327
312
sprintf ('It appears there are no data sources for the %s component. ' , $ componentAlias )
328
313
);
0 commit comments