Class ProductBatchItemHandlerHelper<T extends ComprehensiveProduct>
java.lang.Object
com.broadleafcommerce.dataexchange.service.product.ProductBatchItemHandlerHelper<T>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondetermineTagsToDelete
(List<ProductTag> existingTags, List<ProductTag> tagsToSave, Map<String, AdvancedTag> advancedTagMap, String parentCorrelationId) void
determineVariantOperations
(HandlerArgs<T, T> args) Determines the operations that need to be performed on the variants of a product.findAdvancedTagForProductTag
(ProductTag tag, Map<String, AdvancedTag> advancedTagMap) Find the advanced tag for the given product tag.getExistingVariants
(BatchContext<T> batchContext, T product) boolean
isSameTag
(ProductTag existingTag, ProductTag newTag, AdvancedTag existingTagsAdvancedTag) Returns true if the existing tag is the same as the new tag.protected boolean
isSameVariant
(Variant existing, Variant toSave) Returns true if the existing variant is the same as the new variant.mapToCorrelationId
(Collection<? extends ExchangeObject> exchangeObjects) protected boolean
needsVariantCalculation
(HandlerArgs<T, T> args, T product, List<Variant> variantsToSave, List<Variant> existingVariants) Determines if the variant create/update operations need to be calculated.
-
Constructor Details
-
ProductBatchItemHandlerHelper
public ProductBatchItemHandlerHelper()
-
-
Method Details
-
determineVariantOperations
Determines the operations that need to be performed on the variants of a product. This method will set the followingHandlerArgs.setProperty(String, Object)
properties:- VARIANTS_TO_CREATE - A set of correlation IDs of variants to create
- VARIANTS_TO_UPDATE - A set of correlation IDs of variants to update
- VARIANTS_TO_DELETE - A set of variants to delete. These are not known in the batch, so must be added to the list of children to be processed in the ProductBatchItemHandler.
- Parameters:
args
- the handler args
-
determineTagsToDelete
public List<ProductTag> determineTagsToDelete(List<ProductTag> existingTags, @Nullable List<ProductTag> tagsToSave, Map<String, AdvancedTag> advancedTagMap, String parentCorrelationId) -
isSameTag
public boolean isSameTag(ProductTag existingTag, ProductTag newTag, AdvancedTag existingTagsAdvancedTag) Returns true if the existing tag is the same as the new tag. This is determined by the tag ID or the advanced tag name if the tag ID is not present.- Parameters:
existingTag
- the existing tagnewTag
- the new tagexistingTagsAdvancedTag
- the advanced tag for the existing tag- Returns:
- true if the tags are the same, false otherwise
-
findAdvancedTagForProductTag
@Nullable public AdvancedTag findAdvancedTagForProductTag(ProductTag tag, Map<String, AdvancedTag> advancedTagMap) Find the advanced tag for the given product tag. Null will be returned if the advanced tag is not found.- Parameters:
tag
- the tag to find the advanced tag foradvancedTagMap
- the map of advanced tags- Returns:
- the advanced tag for the given product tag, or null if not found.
-
isSameVariant
Returns true if the existing variant is the same as the new variant. This is determined by comparing their variant ID, then the SKU, then the external ID, then the UPC, in that order.- Parameters:
existing
- the existing varianttoSave
- the new variant- Returns:
- true if the variants are the same, false otherwise
-
getExistingVariants
-
needsVariantCalculation
protected boolean needsVariantCalculation(HandlerArgs<T, T> args, T product, @Nullable List<Variant> variantsToSave, List<Variant> existingVariants) Determines if the variant create/update operations need to be calculated. This is essentially an early return for the easy cases:- There are no variants to handle
- The product is newly created, and all variants should be created/it has no variants
- There are no existing variants, so all variants should be created
- Parameters:
args
- the handler argsproduct
- the product received in the batchvariantsToSave
- the variants to saveexistingVariants
- the existing variants- Returns:
- true if the variant operations need to be calculated, false otherwise
-
mapToCorrelationId
-