This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/develop'
- Loading branch information
Showing
7 changed files
with
191 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
"name": "Agata", | ||
"email": "[email protected]" | ||
}], | ||
"version": "1.7.0", | ||
"version": "1.8.0", | ||
"keywords": [ | ||
"magento", | ||
"magento2", | ||
|
162 changes: 162 additions & 0 deletions
162
...exer-catalog/Model/Indexer/DataProvider/Product/Configurable/ChildAttributesProcessor.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
<?php | ||
/** | ||
* @package Divante\VsbridgeIndexerCatalog | ||
* @author Agata Firlejczyk <[email protected]> | ||
* @copyright 2019 Divante Sp. z o.o. | ||
* @license See LICENSE_DIVANTE.txt for license details. | ||
*/ | ||
|
||
declare(strict_types = 1); | ||
|
||
namespace Divante\VsbridgeIndexerCatalog\Model\Indexer\DataProvider\Product\Configurable; | ||
|
||
use Divante\VsbridgeIndexerCatalog\Model\Attributes\ConfigurableAttributes; | ||
use Divante\VsbridgeIndexerCatalog\Model\ResourceModel\Product\AttributeDataProvider; | ||
use Divante\VsbridgeIndexerCatalog\Model\ResourceModel\Product\Prices as PriceResourceModel; | ||
use Divante\VsbridgeIndexerCatalog\Model\TierPriceProcessor; | ||
|
||
/** | ||
* Class ChildAttributesProcessor | ||
*/ | ||
class ChildAttributesProcessor | ||
{ | ||
/** | ||
* @var int | ||
*/ | ||
private $batchSize; | ||
|
||
/** | ||
* @var TierPriceProcessor | ||
*/ | ||
private $tierPriceProcessor; | ||
|
||
/** | ||
* @var PriceResourceModel | ||
*/ | ||
private $priceResourceModel; | ||
|
||
/** | ||
* @var AttributeDataProvider | ||
*/ | ||
private $resourceAttributeModel; | ||
|
||
/** | ||
* @var ConfigurableAttributes | ||
*/ | ||
private $configurableAttributes; | ||
|
||
/** | ||
* ChildAttributesProcessor constructor. | ||
* | ||
* @param AttributeDataProvider $attributeDataProvider | ||
* @param ConfigurableAttributes $configurableAttributes | ||
* @param TierPriceProcessor $tierPriceProcessor | ||
* @param PriceResourceModel $priceResourceModel | ||
* @param int $batchSize | ||
*/ | ||
public function __construct( | ||
AttributeDataProvider $attributeDataProvider, | ||
ConfigurableAttributes $configurableAttributes, | ||
TierPriceProcessor $tierPriceProcessor, | ||
PriceResourceModel $priceResourceModel, | ||
$batchSize = 500 | ||
) { | ||
$this->batchSize = $batchSize; | ||
$this->tierPriceProcessor = $tierPriceProcessor; | ||
$this->priceResourceModel = $priceResourceModel; | ||
$this->resourceAttributeModel = $attributeDataProvider; | ||
$this->configurableAttributes = $configurableAttributes; | ||
} | ||
|
||
/** | ||
* @param int $storeId | ||
* @param array $allChildren | ||
* @param array $configurableAttributeCodes | ||
* | ||
* @return array | ||
* @throws \Exception | ||
* @throws \Magento\Framework\Exception\LocalizedException | ||
*/ | ||
public function loadChildrenRawAttributesInBatches($storeId, array $allChildren, array $configurableAttributeCodes) | ||
{ | ||
$requiredAttributes = array_merge( | ||
$this->getRequiredChildrenAttributes(), | ||
$configurableAttributeCodes | ||
); | ||
|
||
$requiredAttribute = array_unique($requiredAttributes); | ||
|
||
foreach ($this->getChildrenInBatches($allChildren, $this->batchSize) as $batch) { | ||
$childIds = array_keys($batch); | ||
$priceData = $this->priceResourceModel->loadPriceData($storeId, $childIds); | ||
$allAttributesData = $this->resourceAttributeModel->loadAttributesData( | ||
$storeId, | ||
$childIds, | ||
$requiredAttribute | ||
); | ||
|
||
foreach ($priceData as $childId => $priceDataRow) { | ||
$allChildren[$childId]['final_price'] = (float)$priceDataRow['final_price']; | ||
$allChildren[$childId]['regular_price'] = (float)$priceDataRow['price']; | ||
} | ||
|
||
foreach ($allAttributesData as $childId => $attributes) { | ||
if ($this->tierPriceProcessor->syncTierPrices()) { | ||
/*we need some extra attributes to apply tier prices*/ | ||
$batch[$childId] = array_merge( | ||
$allChildren[$childId], | ||
$attributes | ||
); | ||
} else { | ||
$allChildren[$childId] = array_merge( | ||
$allChildren[$childId], | ||
$attributes | ||
); | ||
} | ||
} | ||
|
||
if ($this->tierPriceProcessor->syncTierPrices()) { | ||
$batch = $this->tierPriceProcessor->applyTierGroupPrices($batch, $storeId); | ||
$allChildren = array_replace_recursive($allChildren, $batch); | ||
} | ||
|
||
$batch = null; | ||
} | ||
|
||
return $allChildren; | ||
} | ||
|
||
/** | ||
* @return array | ||
*/ | ||
private function getRequiredChildrenAttributes(): array | ||
{ | ||
return $this->configurableAttributes->getChildrenRequiredAttributes(); | ||
} | ||
|
||
/** | ||
* @param array $documents | ||
* @param int $batchSize | ||
* | ||
* @return \Generator | ||
*/ | ||
private function getChildrenInBatches(array $documents, $batchSize) | ||
{ | ||
$i = 0; | ||
$batch = []; | ||
|
||
foreach ($documents as $documentName => $documentValue) { | ||
$batch[$documentName] = $documentValue; | ||
|
||
if (++$i == $batchSize) { | ||
yield $batch; | ||
$i = 0; | ||
$batch = []; | ||
} | ||
} | ||
|
||
if (count($batch) > 0) { | ||
yield $batch; | ||
} | ||
} | ||
} |
Oops, something went wrong.