Class ExternalCatalogProvider<T1 extends ComprehensiveProduct,T2 extends Variant>
java.lang.Object
com.broadleafcommerce.dataexchange.service.provider.external.AbstractRestApiExternalProvider
com.broadleafcommerce.dataexchange.service.provider.external.ExternalCatalogProvider<T1,T2>
- All Implemented Interfaces:
CatalogProvider<T1,
T2>
public class ExternalCatalogProvider<T1 extends ComprehensiveProduct,T2 extends Variant>
extends AbstractRestApiExternalProvider
implements CatalogProvider<T1,T2>
- Author:
- Kelly Tisdell (ktisdell)
-
Field Summary
Fields inherited from class com.broadleafcommerce.dataexchange.service.provider.external.AbstractRestApiExternalProvider
CONTENT_CONTEXT_HEADER
-
Constructor Summary
ConstructorsConstructorDescriptionExternalCatalogProvider
(com.fasterxml.jackson.databind.ObjectMapper mapper, org.springframework.web.reactive.function.client.WebClient dataExchangeWebClient, com.broadleafcommerce.common.extension.TypeFactory typeFactory, ExternalCatalogProviderProperties properties) -
Method Summary
Modifier and TypeMethodDescriptionprotected cz.jirutka.rsql.parser.ast.Node
addExternalIdRsql
(cz.jirutka.rsql.parser.ast.Node node, Set<String> externalIds) protected cz.jirutka.rsql.parser.ast.Node
addProductIdsRsql
(cz.jirutka.rsql.parser.ast.Node node, Set<String> productIds) protected cz.jirutka.rsql.parser.ast.Node
addSkuRsql
(cz.jirutka.rsql.parser.ast.Node node, Set<String> skus) buildFindProductsRequestParams
(String rsqlQuery) createExistingProductRsqlQuery
(List<T1> products, BatchContext<?> batchContext) When we want to query for existing products, we normally do so by querying by contextId, externalId, or sku.createProduct
(T1 product, BatchContext<?> batchContext) createVariant
(T1 product, T2 variant, BatchContext<?> batchContext) void
deleteVariant
(String productId, String variantId, BatchContext<?> context) protected ProductList<T1>
getProductPathVars
(T1 product) getProductTranslationsPathVars
(T1 product, Locale locale) protected ExternalCatalogProviderProperties
protected String
protected Class<TranslationsPayload>
protected void
populateExistingProductIdentifiers
(List<T1> products, Set<String> productIds, Set<String> externalIds, Set<String> skus) readProductById
(String productId, BatchContext<?> batchContext) readProducts
(List<T1> requestedProducts, BatchContext<?> batchContext) Fetches a list of Products based on externalId, SKU, or URI.readProducts
(org.springframework.util.MultiValueMap<String, String> params, BatchContext<?> batchContext) readVariant
(String productId, String variantId, BatchContext<?> context) readVariantById
(String productId, String variantId, BatchContext<?> batchContext) readVariants
(List<T1> products, BatchContext<?> batchContext) readVariantsForProduct
(T1 product, BatchContext<?> batchContext) protected T1
saveProduct
(T1 product, org.springframework.web.reactive.function.client.WebClient.RequestBodySpec request) saveProductTranslations
(T1 product, Locale locale, List<Translation> translations, BatchContext<?> batchContext) Saves translations, specifically for a Product.saveVariantTranslations
(T1 product, T2 variant, Locale locale, List<Translation> translations, BatchContext<?> batchContext) updateProduct
(T1 product, BatchContext<?> batchContext) updateVariant
(T1 product, T2 variant, BatchContext<?> batchContext) Methods inherited from class com.broadleafcommerce.dataexchange.service.provider.external.AbstractRestApiExternalProvider
buildAndNode, buildAndNode, buildEqualsNode, buildInNode, buildInNode, buildOrNode, buildOrNode, deleteRequest, deleteRequest, emptyNode, filterEmptyNodes, filterEmptyNodes, getHeaders, getMapper, getMostDerivedType, getRequest, getRequest, getTypeFactory, getWebClient, isEmptyNodeOrNull, narrowedPageParams, patchRequest, patchRequest, postRequest, postRequest, putRequest, putRequest, setCorrelationIds
-
Constructor Details
-
ExternalCatalogProvider
public ExternalCatalogProvider(com.fasterxml.jackson.databind.ObjectMapper mapper, org.springframework.web.reactive.function.client.WebClient dataExchangeWebClient, com.broadleafcommerce.common.extension.TypeFactory typeFactory, ExternalCatalogProviderProperties properties)
-
-
Method Details
-
readProducts
Description copied from interface:CatalogProvider
Fetches a list of Products based on externalId, SKU, or URI. This is to find existing products for update.- Specified by:
readProducts
in interfaceCatalogProvider<T1 extends ComprehensiveProduct,
T2 extends Variant> - Returns:
-
readProducts
public ProductList<T1> readProducts(@Nullable org.springframework.util.MultiValueMap<String, String> params, BatchContext<?> batchContext) - Specified by:
readProducts
in interfaceCatalogProvider<T1 extends ComprehensiveProduct,
T2 extends Variant>
-
readProductById
- Specified by:
readProductById
in interfaceCatalogProvider<T1 extends ComprehensiveProduct,
T2 extends Variant>
-
readVariantById
- Specified by:
readVariantById
in interfaceCatalogProvider<T1 extends ComprehensiveProduct,
T2 extends Variant>
-
createProduct
- Specified by:
createProduct
in interfaceCatalogProvider<T1 extends ComprehensiveProduct,
T2 extends Variant>
-
updateProduct
- Specified by:
updateProduct
in interfaceCatalogProvider<T1 extends ComprehensiveProduct,
T2 extends Variant>
-
saveProductTranslations
public List<Translation> saveProductTranslations(T1 product, Locale locale, List<Translation> translations, BatchContext<?> batchContext) Description copied from interface:CatalogProvider
Saves translations, specifically for a Product.- Specified by:
saveProductTranslations
in interfaceCatalogProvider<T1 extends ComprehensiveProduct,
T2 extends Variant> - Parameters:
product
- the product for which to save translationslocale
- the locale for the translations - must be the same for alltranslations
- the list of translationsbatchContext
- the batch context including theContextInfo
- Returns:
- the list of translations
-
readVariants
- Specified by:
readVariants
in interfaceCatalogProvider<T1 extends ComprehensiveProduct,
T2 extends Variant>
-
readVariantsForProduct
- Specified by:
readVariantsForProduct
in interfaceCatalogProvider<T1 extends ComprehensiveProduct,
T2 extends Variant>
-
createVariant
- Specified by:
createVariant
in interfaceCatalogProvider<T1 extends ComprehensiveProduct,
T2 extends Variant>
-
updateVariant
- Specified by:
updateVariant
in interfaceCatalogProvider<T1 extends ComprehensiveProduct,
T2 extends Variant>
-
saveVariantTranslations
public List<Translation> saveVariantTranslations(T1 product, T2 variant, Locale locale, List<Translation> translations, BatchContext<?> batchContext) - Specified by:
saveVariantTranslations
in interfaceCatalogProvider<T1 extends ComprehensiveProduct,
T2 extends Variant>
-
readVariant
- Specified by:
readVariant
in interfaceCatalogProvider<T1 extends ComprehensiveProduct,
T2 extends Variant>
-
deleteVariant
- Specified by:
deleteVariant
in interfaceCatalogProvider<T1 extends ComprehensiveProduct,
T2 extends Variant>
-
saveProduct
-
getProductTranslationsPathVars
-
getProductPathVars
-
emptyProductList
-
createExistingProductRsqlQuery
protected Optional<String> createExistingProductRsqlQuery(List<T1> products, BatchContext<?> batchContext) When we want to query for existing products, we normally do so by querying by contextId, externalId, or sku. These are known, unique identifiers. In this case, we're trying to find products that may exist, but that may not be known by or referenced by their contextIds by the client. In this case, we useEntityExchangeObject.getId()
andComprehensiveProduct.getExternalId()
andComprehensiveProduct.getSku()
as unique references and query for existing products so that we have original product references, including their IDs.- Parameters:
products
- the product list for which we plan to execute create or update operationsbatchContext
- the batch context including theContextRequest
- Returns:
- an
Optional
value which may contain an RSQL string
-
addProductIdsRsql
-
addSkuRsql
-
addExternalIdRsql
-
populateExistingProductIdentifiers
-
buildFindProductsRequestParams
-
getProductType
-
getVariantType
-
getTranslationsPayloadType
-
getServiceClient
- Specified by:
getServiceClient
in classAbstractRestApiExternalProvider
- Returns:
- Returns the service client name to be used for the request.
-
getProperties
-