1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Setup\Fixtures;
use Magento\Catalog\Model\Product;
use Magento\Catalog\Model\Product\Visibility;
use Magento\Catalog\Model\ResourceModel\Product\CollectionFactory as ProductCollectionFactory;
use Magento\ConfigurableProduct\Model\Product\Type\Configurable;
use Magento\Eav\Model\Entity\Attribute;
use Magento\Eav\Model\ResourceModel\Entity\Attribute\CollectionFactory;
use Magento\Framework\Exception\ValidatorException;
use Magento\Setup\Model\DataGenerator;
use Magento\Setup\Model\FixtureGenerator\ConfigurableProductGenerator;
use Magento\Setup\Model\FixtureGenerator\ProductGenerator;
use Symfony\Component\Console\Output\OutputInterface;
/**
* Generate configurable products based on profile configuration
* Generated configurable options are not displayed individually in catalog
* Support one of two formats:
* 1. Distributed per Default and pre-defined attribute sets (@see setup/performance-toolkit/config/attributeSets.xml)
* <configurable_products>{products amount}</configurable_products>
*
* 2.1 Generate products based on existing attribute set:
* <configurable_products>
* <config>
* <attributeSet>{Existing attribute set name}</attributeSet>
* <sku>{Configurable sku pattern with %s}</sku>
* <products>{Amount of configurable products}</products>
* <category>[{Category Name}]</category> By default category name from CategoriesFixture will be used
* <swatches>color|image</swatches> Type of Swatch attribute
* </config>
* </configurable_products>
*
* 2.2 Generate products based on dynamically created attribute set with specified amount of attributes and options
* <configurable_products>
* <config>
* <attributes>{Amount of attributes in configurable product}</attributes>
* <options>{Amount of options per attribute}</options>
* <sku>{Configurable sku pattern with %s}</sku>
* <products>{Amount of configurable products}</products>
* <category>[{Category Name}]</category> By default category name from CategoriesFixture will be used
* <swatches>color|image</swatches> Type of Swatch attribute
* </config>
* </configurable_products>
*
* 2.3 Generate products based on dynamically created attribute set with specified configuration per each attribute
* <configurable_products> <!-- Configurable product -->
* <config>
* <attributes>
* <!-- Configuration for a first attribute -->
* <attribute>
* <options>{Amount of options per attribute}</options>
* <swatches>color|image</swatches> Type of Swatch attribute
* </attribute>
* <!-- Configuration for a second attribute -->
* <attribute>
* <options>{Amount of options per attribute}</options>
* </attribute>
* </attributes>
* <sku>{Configurable sku pattern with %s}</sku>
* <products>{Amount of configurable products}</products>
* </config>
* </configurable_products>
*
* Products will be uniformly distributed per categories and websites
* If node "assign_entities_to_all_websites" from profile is set to "1" then products will be assigned to all websites
*
* @see setup/performance-toolkit/profiles/ce/small.xml
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
* @SuppressWarnings(PHPMD.TooManyFields)
*/
class ConfigurableProductsFixture extends Fixture
{
/**
* @var int
*/
protected $priority = 50;
/**
* @var array
*/
private $searchConfig;
/**
* @var DataGenerator
*/
private $dataGenerator;
/**
* @var AttributeSet\AttributeSetFixture
*/
private $attributeSetsFixture;
/**
* @var AttributeSet\Pattern
*/
private $attributePattern;
/**
* @var ProductGenerator
*/
private $productGenerator;
/**
* @var CollectionFactory
*/
private $attributeCollectionFactory;
/**
* @var ConfigurableProductGenerator
*/
private $configurableProductGenerator;
/**
* @var ProductCollectionFactory
*/
private $productCollectionFactory;
/**
* @var int
*/
private $productStartIndex;
/**
* @var ProductsAmountProvider
*/
private $productsAmountProvider;
/**
* @var CategoryResolver
*/
private $categoryResolver;
/**
* @var WebsiteCategoryProvider
*/
private $websiteCategoryProvider;
/**
* @var PriceProvider
*/
private $priceProvider;
/**
* @var \Magento\Setup\Fixtures\AttributeSet\SwatchesGenerator
*/
private $swatchesGenerator;
/**
* @var \Magento\Framework\Serialize\SerializerInterface
*/
private $serializer;
/**
* @param FixtureModel $fixtureModel
* @param AttributeSet\AttributeSetFixture $attributeSetsFixture
* @param AttributeSet\Pattern $attributePattern
* @param ProductGenerator $productGenerator
* @param CollectionFactory $attributeCollectionFactory
* @param ConfigurableProductGenerator $configurableProductGenerator
* @param ProductCollectionFactory $collectionFactory
* @param ProductsAmountProvider $productsAmountProvider
* @param CategoryResolver $categoryResolver
* @param WebsiteCategoryProvider $websiteCategoryProvider
* @param PriceProvider $priceProvider
* @param AttributeSet\SwatchesGenerator $swatchesGenerator
* @param \Magento\Framework\Serialize\SerializerInterface $serializer
* @SuppressWarnings(PHPMD.ExcessiveParameterList)
*/
public function __construct(
FixtureModel $fixtureModel,
\Magento\Setup\Fixtures\AttributeSet\AttributeSetFixture $attributeSetsFixture,
\Magento\Setup\Fixtures\AttributeSet\Pattern $attributePattern,
ProductGenerator $productGenerator,
CollectionFactory $attributeCollectionFactory,
ConfigurableProductGenerator $configurableProductGenerator,
ProductCollectionFactory $collectionFactory,
ProductsAmountProvider $productsAmountProvider,
CategoryResolver $categoryResolver,
WebsiteCategoryProvider $websiteCategoryProvider,
PriceProvider $priceProvider,
\Magento\Setup\Fixtures\AttributeSet\SwatchesGenerator $swatchesGenerator,
\Magento\Framework\Serialize\SerializerInterface $serializer
) {
parent::__construct($fixtureModel);
$this->attributeSetsFixture = $attributeSetsFixture;
$this->attributePattern = $attributePattern;
$this->productGenerator = $productGenerator;
$this->attributeCollectionFactory = $attributeCollectionFactory;
$this->configurableProductGenerator = $configurableProductGenerator;
$this->productCollectionFactory = $collectionFactory;
$this->productsAmountProvider = $productsAmountProvider;
$this->categoryResolver = $categoryResolver;
$this->websiteCategoryProvider = $websiteCategoryProvider;
$this->priceProvider = $priceProvider;
$this->swatchesGenerator = $swatchesGenerator;
$this->serializer = $serializer;
}
/**
* {@inheritdoc}
* @SuppressWarnings(PHPMD)
*/
public function execute()
{
if (!$this->fixtureModel->getValue('configurable_products', [])) {
return;
}
$simpleProductsCount = $this->fixtureModel->getValue('simple_products', 0);
$maxAmountOfWordsDescription = $this->getSearchConfigValue('max_amount_of_words_description');
$maxAmountOfWordsShortDescription = $this->getSearchConfigValue('max_amount_of_words_short_description');
$minAmountOfWordsDescription = $this->getSearchConfigValue('min_amount_of_words_description');
$minAmountOfWordsShortDescription = $this->getSearchConfigValue('min_amount_of_words_short_description');
foreach ($this->getConfigurableProductConfig() as $configurableConfig) {
$configurableSku = $configurableConfig['sku'];
$productAmount = $this->productsAmountProvider->getAmount(
$configurableConfig['products'],
$configurableSku
);
if (!$productAmount) {
continue;
}
$searchTerms = $this->getSearchTerms();
$shortDescriptionClosure = $this->getDescriptionClosure(
$searchTerms,
$simpleProductsCount,
$productAmount,
$maxAmountOfWordsShortDescription,
$minAmountOfWordsShortDescription,
'shortDescription'
);
$descriptionClosure = $this->getDescriptionClosure(
$searchTerms,
$simpleProductsCount,
$productAmount,
$maxAmountOfWordsDescription,
$minAmountOfWordsDescription,
'description'
);
$variationCount = $configurableConfig['variationCount'];
$attributeSet = $configurableConfig['attributeSet'];
$variationSkuClosure = function ($productId, $entityNumber) use ($configurableSku, $variationCount) {
$variationIndex = $this->getConfigurableVariationIndex($entityNumber, $variationCount);
$productId = $this->getConfigurableProductIndex($entityNumber, $variationCount);
return sprintf($this->getConfigurableOptionSkuPattern($configurableSku), $productId, $variationIndex);
};
$fixture = [
'name' => $variationSkuClosure,
'sku' => $variationSkuClosure,
'price' => function ($index, $entityNumber) {
return $this->priceProvider->getPrice($entityNumber);
},
'website_ids' => function ($index, $entityNumber) use ($variationCount) {
$configurableIndex = $this->getConfigurableProductIndex($entityNumber, $variationCount);
return $this->websiteCategoryProvider->getWebsiteIds($configurableIndex);
},
'attribute_set_id' => $attributeSet['id'],
'additional_attributes' => $this->getAdditionalAttributesClosure(
$attributeSet['attributes'],
$variationCount
),
'visibility' => Visibility::VISIBILITY_NOT_VISIBLE,
];
$this->productGenerator->generate($productAmount * $variationCount, $fixture);
$skuClosure = function ($productId, $entityNumber) use ($configurableSku) {
return sprintf($configurableSku, $entityNumber + $this->getNewProductStartIndex());
};
$fixture = [
'_variation_sku_pattern' => $this->getFirstVariationSkuPattern($configurableConfig),
'_attributes_count' => count($attributeSet['attributes']),
'_variation_count' => $variationCount,
'_attributes' => $attributeSet['attributes'],
'type_id' => Configurable::TYPE_CODE,
'name' => $skuClosure,
'sku' => $skuClosure,
'description' => $descriptionClosure,
'short_description' => $shortDescriptionClosure,
'attribute_set_id' => $attributeSet['id'],
'website_ids' => $this->getConfigurableWebsiteIdsClosure(),
'category_ids' => $configurableConfig['category'],
'meta_keyword' => $skuClosure,
'meta_title' => $skuClosure,
];
$this->configurableProductGenerator->generate($productAmount, $fixture);
}
}
/**
* @return \Closure
* @SuppressWarnings(PHPMD.UnusedLocalVariable)
*/
private function getConfigurableWebsiteIdsClosure()
{
return function ($index, $entityNumber) {
return $this->websiteCategoryProvider->getWebsiteIds($entityNumber + $this->getNewProductStartIndex());
};
}
/**
* Get product distribution per attribute sets for default attribute sets
*
* @param array $defaultAttributeSets
* @param int $configurableProductsCount
* @return array
*/
private function getDefaultAttributeSetsConfig(array $defaultAttributeSets, $configurableProductsCount)
{
$attributeSetClosure = function ($index) use ($defaultAttributeSets) {
$attributeSetAmount = count(array_keys($defaultAttributeSets));
mt_srand($index);
return $attributeSetAmount > ($index - 1) % (int)$this->fixtureModel->getValue('categories', 30)
? array_keys($defaultAttributeSets)[mt_rand(0, $attributeSetAmount - 1)]
: 'Default';
};
$productsPerSet = [];
for ($i = 1; $i <= $configurableProductsCount; $i++) {
$attributeSet = $attributeSetClosure($i);
if (!isset($productsPerSet[$attributeSet])) {
$productsPerSet[$attributeSet] = 0;
}
$productsPerSet[$attributeSet]++;
}
$configurableConfig = [];
foreach ($defaultAttributeSets as $attributeSetName => $attributeSet) {
$skuSuffix = $attributeSetName === 'Default' ? '' : ' - ' . $attributeSetName;
$configurableConfig[] = [
'attributeSet' => $attributeSetName,
'products' => $productsPerSet[$attributeSetName],
'sku' => 'Configurable Product %s' . $skuSuffix,
];
}
return $configurableConfig;
}
/**
* Get sku pattern in format "{configurable-sku}{configurable-index}-option 1" for get associated product ids
*
* @param array $configurableConfig
* @see \Magento\Setup\Model\FixtureGenerator\ConfigurableProductTemplateGenerator
* @return string
*/
private function getFirstVariationSkuPattern($configurableConfig)
{
$productIndex = $this->getConfigurableProductIndex(0, $configurableConfig['variationCount']);
return sprintf($this->getConfigurableOptionSkuPattern($configurableConfig['sku']), $productIndex, 1);
}
/**
* Get start product index which used in product name, sku, url generation
*
* @return int
*/
private function getNewProductStartIndex()
{
if (null === $this->productStartIndex) {
$this->productStartIndex = $this->productCollectionFactory->create()
->addFieldToFilter('type_id', Configurable::TYPE_CODE)
->getSize() + 1;
}
return $this->productStartIndex;
}
/**
* Get configurable product index number
*
* @param int $entityNumber
* @param int $variationCount
* @return float
*/
private function getConfigurableProductIndex($entityNumber, $variationCount)
{
return floor($entityNumber / $variationCount) + $this->getNewProductStartIndex();
}
/**
* Get configurable variation index number
*
* @param int $entityNumber
* @param int $variationCount
* @return float
*/
private function getConfigurableVariationIndex($entityNumber, $variationCount)
{
return $entityNumber % $variationCount + 1;
}
/**
* {@inheritdoc}
*/
public function getActionTitle()
{
return 'Generating configurable products';
}
/**
* {@inheritdoc}
*/
public function introduceParamLabels()
{
return [];
}
/**
* {@inheritdoc}
* @throws ValidatorException
*/
public function printInfo(OutputInterface $output)
{
if (!$this->fixtureModel->getValue('configurable_products', [])) {
return;
}
$configurableProductConfig = $this->prepareConfigurableConfig(
$this->getDefaultAttributeSetsWithAttributes()
);
$generalAmount = array_sum(array_column($configurableProductConfig, 'products'));
$output->writeln(sprintf('<info> |- Configurable products: %s</info>', $generalAmount));
}
/**
* Gen default attribute sets with attributes
* @see config/attributeSets.xml
*
* @return array
*/
private function getDefaultAttributeSetsWithAttributes()
{
$attributeSets = $this->fixtureModel->getValue('attribute_sets', null);
$attributeSetData = [];
if ($attributeSets !== null && array_key_exists('attribute_set', $attributeSets)) {
foreach ($attributeSets['attribute_set'] as $attributeSet) {
$attributesData = array_key_exists(0, $attributeSet['attributes']['attribute'])
? $attributeSet['attributes']['attribute'] : [$attributeSet['attributes']['attribute']];
$attributes = [];
foreach ($attributesData as $attributeData) {
$values = [];
$optionsData = array_key_exists(0, $attributeData['options']['option'])
? $attributeData['options']['option'] : [$attributeData['options']['option']];
foreach ($optionsData as $optionData) {
$values[] = $optionData['label'];
}
$attributes[] = ['name' => $attributeData['attribute_code'], 'values' => $values];
}
$attributeSetData[$attributeSet['name']] = [
'name' => $attributeSet['name'],
'attributes' => $attributes
];
}
}
$attributeOptions = range(1, $this->getConfigurableProductsVariationsValue());
array_walk(
$attributeOptions,
function (&$item, $key) {
$item = 'option ' . ($key + 1);
}
);
$attributeSetData['Default'] = [
'name' => 'Default',
'attributes' => [
[
'name' => 'configurable_variation',
'values' => $attributeOptions
]
]
];
return $attributeSetData;
}
/**
* Get configurable product configuration for generate products per attribute set
*
* @return array
* @throws ValidatorException
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
*/
private function getConfigurableProductConfig()
{
$defaultAttributeSets = $this->getDefaultAttributeSetsWithAttributes();
$configurableProductConfig = $this->prepareConfigurableConfig($defaultAttributeSets);
$configurableProductConfig = array_map(function ($config) {
return array_merge(
[
'attributeSet' => null,
'attributes' => null,
'options' => null,
'sku' => null,
'category' => null,
'swatches' => null,
],
$config
);
}, $configurableProductConfig);
$skuPull = [];
foreach ($configurableProductConfig as $i => &$config) {
$attributeSet = $config['attributeSet'];
$attributes = $config['attributes'];
$options = (int)$config['options'];
if ($attributeSet && isset($defaultAttributeSets[$attributeSet])) {
// process default attribute sets
$attributeSet = $defaultAttributeSets[$attributeSet];
$attributes = count($attributeSet['attributes']);
$options = count($attributeSet['attributes'][0]['values']);
} elseif (is_array($attributes)) {
$attributeSet = $this->getCustomAttributeSet($attributes);
$options = array_column($attributes, 'options');
$attributes = count($attributes);
} elseif ($attributes && $options) {
$attributes = (int)$attributes;
// convert attributes and options to array for process custom attribute set creation
$attributesData = array_map(function ($options) use ($config) {
return ['options' => $options, 'swatches' => $config['swatches']];
}, array_fill(0, $attributes, $options));
$attributeSet = $this->getCustomAttributeSet($attributesData);
}
// do not process if any required option is missed
if (count(array_filter([$attributeSet, $attributes, $options])) !== 3) {
unset($configurableProductConfig[$i]);
continue;
}
$config['sku'] = $this->getConfigurableSkuPattern($config, $attributeSet['name']);
$config['category'] = $this->getConfigurableCategory($config);
$config['attributeSet'] = $this->convertAttributesToDBFormat($attributeSet);
$config['attributes'] = $attributes;
$config['options'] = $options;
$config['variationCount'] = is_array($options) ? array_product($options) : pow($options, $attributes);
$skuPull[] = $config['sku'];
}
if (count($skuPull) !== count(array_unique($skuPull))) {
throw new ValidatorException(
__("The configurable product's SKU pattern must be unique in an attribute set.")
);
}
return $configurableProductConfig;
}
/**
* Prepare configuration. If amount of configurable products set in profile then return predefined attribute sets
* else return configuration from profile
*
* @param array $defaultAttributeSets
* @return array
* @throws ValidatorException
*/
private function prepareConfigurableConfig($defaultAttributeSets)
{
$configurableConfigs = $this->fixtureModel->getValue('configurable_products', []);
$configurableConfigs = is_array($configurableConfigs) ? $configurableConfigs : (int)$configurableConfigs;
if (is_int($configurableConfigs)) {
$configurableConfigs = $this->getDefaultAttributeSetsConfig($defaultAttributeSets, $configurableConfigs);
} elseif (isset($configurableConfigs['config'])) {
if (!isset($configurableConfigs['config'][0])) {
// in case when one variation is passed
$configurableConfigs = [$configurableConfigs['config']];
} else {
$configurableConfigs = $configurableConfigs['config'];
}
foreach ($configurableConfigs as &$config) {
if (isset($config['attributes']) && is_array($config['attributes'])) {
if (!isset($config['attributes']['attribute'][0])) {
$config['attributes'] = [$config['attributes']['attribute']];
} else {
$config['attributes'] = $config['attributes']['attribute'];
}
}
}
} else {
throw new ValidatorException(
__('The configurable product config is invalid. Verify the product and try again.')
);
}
return $configurableConfigs;
}
/**
* @param array $config
* @return \Closure
*/
private function getConfigurableCategory($config)
{
if (isset($config['category'])) {
return function ($index, $entityNumber) use ($config) {
$websiteClosure = $this->getConfigurableWebsiteIdsClosure();
$websites = $websiteClosure($index, $entityNumber);
return $this->categoryResolver->getCategory(
array_shift($websites),
$config['category']
);
};
} else {
return function ($index, $entityNumber) {
return $this->websiteCategoryProvider->getCategoryId($entityNumber);
};
}
}
/**
* @param array $config
* @param string $attributeSetName
* @return string
*/
private function getConfigurableSkuPattern($config, $attributeSetName)
{
$sku = isset($config['sku']) ? $config['sku'] : null;
if (!$sku) {
$sku = 'Configurable Product ' . $attributeSetName . ' %s';
}
if (false === strpos($sku, '%s')) {
$sku .= ' %s';
}
return $sku;
}
/**
* Provide attribute set based on attributes configuration
*
* @param array $attributes
* @return array
*/
private function getCustomAttributeSet(array $attributes)
{
$attributeSetHash = crc32($this->serializer->serialize($attributes));
$attributeSetName = sprintf('Dynamic Attribute Set %s', $attributeSetHash);
$pattern = $this->attributePattern->generateAttributeSet(
$attributeSetName,
count($attributes),
array_column($attributes, 'options'),
function ($index, $attribute) use ($attributeSetName, $attributes, $attributeSetHash) {
$swatch = [];
$attributeCode = substr(
sprintf('ca_%s_%s', $index, $attributeSetHash),
0,
Attribute::ATTRIBUTE_CODE_MAX_LENGTH
);
$data = [
'attribute_code' => $attributeCode,
'frontend_label' => 'Dynamic Attribute ' . $attributeCode,
];
if (isset($attributes[$index - 1]['swatches'])) {
$data['is_visible_in_advanced_search'] = 1;
$data['is_searchable'] = 1;
$data['is_filterable'] = 1;
$data['is_filterable_in_search'] = 1;
$data['used_in_product_listing'] = 1;
$swatch = $this->swatchesGenerator->generateSwatchData(
(int) $attributes[$index-1]['options'],
$attributeSetName . $index,
$attributes[$index-1]['swatches']
);
}
return array_replace_recursive(
$attribute,
$data,
$swatch
);
}
);
return $this->attributeSetsFixture->createAttributeSet($pattern);
}
/**
* @return array
*/
private function getSearchConfig()
{
if (!$this->searchConfig) {
$this->searchConfig = $this->fixtureModel->getValue('search_config', null);
}
return $this->searchConfig;
}
/**
* @param string $name
* @return int|mixed
*/
private function getSearchConfigValue($name)
{
return $this->getSearchConfig() === null
? 0 : ($this->getSearchConfig()[$name] === null ? 0 : $this->getSearchConfig()[$name]);
}
/**
* @return array
*/
private function getSearchTerms()
{
$searchTerms = $this->fixtureModel->getValue('search_terms', null);
if ($searchTerms !== null) {
$searchTerms = array_key_exists(0, $searchTerms['search_term'])
? $searchTerms['search_term'] : [$searchTerms['search_term']];
} else {
$searchTerms = [];
}
return $searchTerms;
}
/**
* Get configurable products variations value.
*
* @return int
*/
private function getConfigurableProductsVariationsValue()
{
return $this->fixtureModel->getValue('configurable_products_variation', 3);
}
/**
* Get additional attributes closure.
*
* @param array $attributes
* @param int $variationCount
* @return \Closure
* @SuppressWarnings(PHPMD.UnusedLocalVariable)
*/
private function getAdditionalAttributesClosure(array $attributes, $variationCount)
{
$optionsPerAttribute = array_map(function ($attr) {
return count($attr['values']);
}, $attributes);
$variationsMatrix = $this->generateVariationsMatrix(count($attributes), $optionsPerAttribute);
return function ($attributeSetId, $index, $entityNumber) use ($attributes, $variationCount, $variationsMatrix) {
$variationIndex = $this->getConfigurableVariationIndex($entityNumber, $variationCount) - 1;
if (isset($variationsMatrix[$variationIndex])) {
$tempProductData = [];
foreach ($variationsMatrix[$variationIndex] as $attributeIndex => $optionIndex) {
$attributeCode = $attributes[$attributeIndex]['name'];
$option = $attributes[$attributeIndex]['values'][$optionIndex];
$tempProductData[$attributeCode] = $option;
}
return $tempProductData;
}
return [];
};
}
/**
* Generates matrix of all possible variations.
* @param int $attributesPerSet
* @param int $optionsPerAttribute
* @return array
*/
private function generateVariationsMatrix($attributesPerSet, $optionsPerAttribute)
{
$variationsMatrix = null;
for ($i = 0; $i < $attributesPerSet; $i++) {
$variationsMatrix[] = range(0, $optionsPerAttribute[$i] - 1);
}
return $this->generateVariations($variationsMatrix);
}
/**
* Build all possible variations based on attributes and options count.
* @param array|null $variationsMatrix
* @return array
*/
private function generateVariations($variationsMatrix)
{
if (!$variationsMatrix) {
return [[]];
}
$set = array_shift($variationsMatrix);
$subset = $this->generateVariations($variationsMatrix);
$result = [];
foreach ($set as $value) {
foreach ($subset as $subValue) {
array_unshift($subValue, $value);
$result[] = $subValue;
}
}
return $result;
}
/**
* Get configurable option sku pattern.
*
* @param string $skuPattern
* @return string
*/
private function getConfigurableOptionSkuPattern($skuPattern)
{
return $skuPattern . ' - option %s';
}
/**
* @param array|null $searchTerms
* @param int $simpleProductsCount
* @param int $configurableProductsCount
* @param int $maxAmountOfWordsDescription
* @param int $minAmountOfWordsDescription
* @param string $descriptionPrefix
* @return \Closure
*/
private function getDescriptionClosure(
$searchTerms,
$simpleProductsCount,
$configurableProductsCount,
$maxAmountOfWordsDescription,
$minAmountOfWordsDescription,
$descriptionPrefix = 'description'
) {
if (null === $this->dataGenerator) {
$fileName = __DIR__ . DIRECTORY_SEPARATOR . '_files' . DIRECTORY_SEPARATOR . 'dictionary.csv';
$this->dataGenerator = new DataGenerator(realpath($fileName));
}
return function ($index) use (
$searchTerms,
$simpleProductsCount,
$configurableProductsCount,
$maxAmountOfWordsDescription,
$minAmountOfWordsDescription,
$descriptionPrefix
) {
$countSearchTerms = is_array($searchTerms) ? count($searchTerms) : 0;
$count = !$searchTerms
? 0
: round(
$searchTerms[$index % $countSearchTerms]['count'] * (
$configurableProductsCount / ($simpleProductsCount + $configurableProductsCount)
)
);
mt_srand($index);
return $this->dataGenerator->generate(
$minAmountOfWordsDescription,
$maxAmountOfWordsDescription,
$descriptionPrefix . '-' . $index
) .
($index <= ($count * $countSearchTerms) ? ' ' .
$searchTerms[$index % $countSearchTerms]['term'] : '');
};
}
/**
* Convert attribute set data to db format for use in simple product generation
*
* @param array $attributeSet
* @return array
*/
private function convertAttributesToDBFormat(array $attributeSet)
{
$attributeSetName = $attributeSet['name'];
$attributeSetId = null;
$attributes = [];
foreach ($attributeSet['attributes'] as $attributeData) {
$attributeCollection = $this->attributeCollectionFactory->create();
$attributeCollection->setAttributeSetFilterBySetName($attributeSetName, Product::ENTITY);
$attributeCollection->addFieldToFilter(
'attribute_code',
$attributeData['name']
);
/** @var Attribute $attribute */
foreach ($attributeCollection as $attribute) {
$attributeSetId = $attribute->getAttributeSetId();
$values = [];
$options = $attribute->getOptions();
foreach ($options ?: [] as $option) {
if ($option->getValue()) {
$values[] = $option->getValue();
}
}
$attributes[] =
[
'name' => $attribute->getAttributeCode(),
'id' => $attribute->getAttributeId(),
'values' => $values
];
}
}
return ['id' => $attributeSetId, 'name' => $attributeSetName, 'attributes' => $attributes];
}
}