use of com.mirakl.client.mmp.domain.shop.MiraklShops in project mirakl-hyperwallet-connector by paypal.
the class MiraklBusinessStakeholderDocumentsExtractServiceImpl method extractBusinessStakeholderDocuments.
/**
* {@inheritDoc}
*/
@Override
public List<KYCDocumentBusinessStakeHolderInfoModel> extractBusinessStakeholderDocuments(final Date delta) {
final MiraklGetShopsRequest miraklGetShopsRequest = miraklGetShopsRequestConverter.convert(delta);
log.info("Retrieving modified shops since [{}]", delta);
final MiraklShops shops = miraklOperatorClient.getShops(miraklGetShopsRequest);
// @formatter:off
log.info("Retrieved modified shops since [{}]: [{}]", delta, Stream.ofNullable(shops.getShops()).flatMap(Collection::stream).map(MiraklShop::getId).collect(Collectors.joining(LoggingConstantsUtil.LIST_LOGGING_SEPARATOR)));
// @formatter:on
// @formatter:off
final List<KYCDocumentBusinessStakeHolderInfoModel> kycBusinessStakeHolderInfoModelList = Stream.ofNullable(shops.getShops()).flatMap(Collection::stream).map(this::populateBusinessStakeholderForMiraklShop).flatMap(Collection::stream).collect(Collectors.toList());
// @formatter:on
// @formatter:off
final Map<String, List<KYCDocumentBusinessStakeHolderInfoModel>> shopsWithBusinessStakeholderVerificationRequired = kycBusinessStakeHolderInfoModelList.stream().filter(kycDocStk -> kycDocStk.isRequiresKYC() || kycDocStk.isRequiresLetterOfAuthorization()).collect(Collectors.groupingBy(KYCDocumentInfoModel::getClientUserId));
if (!CollectionUtils.isEmpty(shopsWithBusinessStakeholderVerificationRequired)) {
// @formatter:off
log.info("Shops with KYC business stakeholder verification required: [{}]", String.join(LoggingConstantsUtil.LIST_LOGGING_SEPARATOR, shopsWithBusinessStakeholderVerificationRequired.keySet()));
// @formatter:on
}
skipShopsWithNonBusinessStakeholderSelectedDocuments(shopsWithBusinessStakeholderVerificationRequired);
final List<KYCDocumentBusinessStakeHolderInfoModel> shopsWithBusinessSelectedVerificationDocuments = shopsWithBusinessStakeholderVerificationRequired.values().stream().filter(bstkList -> bstkList.stream().allMatch(KYCDocumentBusinessStakeHolderInfoModel::hasSelectedDocumentsControlFieldsInBusinessStakeholder)).flatMap(Collection::stream).collect(Collectors.toList());
// @formatter:off
return shopsWithBusinessSelectedVerificationDocuments.stream().filter(kycBusinessStakeHolderInfoModel -> !ObjectUtils.isEmpty(kycBusinessStakeHolderInfoModel.getUserToken())).map(miraklBusinessStakeholderDocumentDownloadExtractService::getBusinessStakeholderDocumentsSelectedBySeller).collect(Collectors.toList());
// @formatter:on
}
use of com.mirakl.client.mmp.domain.shop.MiraklShops in project mirakl-hyperwallet-connector by paypal.
the class MiraklBusinessStakeholderDocumentsExtractServiceImpl method extractMiraklShop.
private Optional<MiraklShop> extractMiraklShop(final String shopId) {
final MiraklGetShopsRequest miraklGetShopsRequest = new MiraklGetShopsRequest();
miraklGetShopsRequest.setShopIds(List.of(shopId));
log.info("Retrieving shopId [{}]", shopId);
final MiraklShops shops = miraklOperatorClient.getShops(miraklGetShopsRequest);
return Optional.ofNullable(shops).orElse(new MiraklShops()).getShops().stream().filter(shop -> shopId.equals(shop.getId())).findAny();
}
use of com.mirakl.client.mmp.domain.shop.MiraklShops in project mirakl-hyperwallet-connector by paypal.
the class MiraklSellerDocumentsExtractServiceImpl method extractMiraklShop.
protected Optional<MiraklShop> extractMiraklShop(final String shopId) {
final MiraklGetShopsRequest miraklGetShopsRequest = new MiraklGetShopsRequest();
miraklGetShopsRequest.setShopIds(List.of(shopId));
log.info("Retrieving shopId [{}]", shopId);
final MiraklShops shops = miraklOperatorClient.getShops(miraklGetShopsRequest);
return Optional.ofNullable(shops).orElse(new MiraklShops()).getShops().stream().filter(shop -> shopId.equals(shop.getId())).findAny();
}
use of com.mirakl.client.mmp.domain.shop.MiraklShops in project mirakl-hyperwallet-connector by paypal.
the class MiraklSellerDocumentsExtractServiceImpl method extractProofOfIdentityAndBusinessSellerDocuments.
/**
* {@inheritDoc}
*/
@Override
public List<KYCDocumentSellerInfoModel> extractProofOfIdentityAndBusinessSellerDocuments(final Date delta) {
final MiraklGetShopsRequest miraklGetShopsRequest = miraklGetShopsRequestConverter.convert(delta);
log.info("Retrieving modified shops for proof of identity/business sellers documents since [{}]", delta);
final MiraklShops shops = miraklOperatorClient.getShops(miraklGetShopsRequest);
// @formatter:off
log.info("Retrieved modified shops since [{}]: [{}]", delta, Stream.ofNullable(shops.getShops()).flatMap(Collection::stream).map(MiraklShop::getId).collect(Collectors.joining(LoggingConstantsUtil.LIST_LOGGING_SEPARATOR)));
// @formatter:on
// @formatter:off
final List<KYCDocumentSellerInfoModel> kycDocumentInfoList = Stream.ofNullable(shops.getShops()).flatMap(Collection::stream).map(miraklShopKYCDocumentInfoModelConverter::convert).collect(Collectors.toList());
// @formatter:on
// @formatter:off
final Map<Boolean, List<KYCDocumentSellerInfoModel>> documentGroups = kycDocumentInfoList.stream().collect(Collectors.groupingBy(KYCDocumentSellerInfoModel::isRequiresKYC));
// @formatter:on
final Collection<KYCDocumentSellerInfoModel> docsFromShopsWithVerificationRequired = CollectionUtils.emptyIfNull(documentGroups.get(true));
final Collection<KYCDocumentSellerInfoModel> docsFromShopsWithoutVerificationRequired = CollectionUtils.emptyIfNull(documentGroups.get(false));
if (!CollectionUtils.isEmpty(docsFromShopsWithVerificationRequired)) {
// @formatter:off
log.info("Shops with KYC seller verification required: [{}]", docsFromShopsWithVerificationRequired.stream().map(KYCDocumentSellerInfoModel::getClientUserId).collect(Collectors.joining(LoggingConstantsUtil.LIST_LOGGING_SEPARATOR)));
// @formatter:on
}
if (!CollectionUtils.isEmpty(docsFromShopsWithoutVerificationRequired)) {
// @formatter:off
log.info("Shops without KYC seller verification required: [{}]", docsFromShopsWithoutVerificationRequired.stream().map(KYCDocumentSellerInfoModel::getClientUserId).collect(Collectors.joining(LoggingConstantsUtil.LIST_LOGGING_SEPARATOR)));
// @formatter:on
}
skipShopsWithNonSelectedDocuments(docsFromShopsWithVerificationRequired);
// @formatter:off
final List<KYCDocumentSellerInfoModel> shopsWithSelectedVerificationDocuments = docsFromShopsWithVerificationRequired.stream().filter(KYCDocumentSellerInfoModel::hasSelectedDocumentControlFields).collect(Collectors.toList());
// @formatter:off
return shopsWithSelectedVerificationDocuments.stream().filter(kycDocumentInfoModel -> !ObjectUtils.isEmpty(kycDocumentInfoModel.getUserToken())).map(miraklSellerDocumentDownloadExtractService::getDocumentsSelectedBySeller).collect(Collectors.toList());
// @formatter:on
}
use of com.mirakl.client.mmp.domain.shop.MiraklShops in project mirakl-hyperwallet-connector by paypal.
the class AbstractAccountingDocumentsExtractServiceImpl method getAllShops.
protected List<MiraklShop> getAllShops(final Set<String> shopIds) {
if (shopIds.isEmpty()) {
return Collections.emptyList();
}
final MiraklGetShopsRequest request = createShopRequest(shopIds);
final MiraklShops miraklShops = miraklMarketplacePlatformOperatorApiClient.getShops(request);
return miraklShops.getShops();
}
Aggregations