blob: 40737838f78927a6fbd375d21a9e8baf3575dadd [file] [log] [blame]
/*
* Copyright 2017 The Mifos Initiative.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.mifos.deposit.service.internal.mapper;
import io.mifos.accounting.api.v1.domain.Account;
import io.mifos.core.lang.DateConverter;
import io.mifos.core.lang.ServiceException;
import io.mifos.deposit.api.v1.instance.domain.ProductInstance;
import io.mifos.deposit.service.internal.repository.ProductDefinitionEntity;
import io.mifos.deposit.service.internal.repository.ProductDefinitionRepository;
import io.mifos.deposit.service.internal.repository.ProductInstanceEntity;
import org.apache.commons.lang.StringUtils;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Optional;
import java.util.stream.Collectors;
public class ProductInstanceMapper {
private ProductInstanceMapper() {
super();
}
public static ProductInstanceEntity map(final ProductInstance productInstance,
final ProductDefinitionRepository productDefinitionRepository) {
final Optional<ProductDefinitionEntity> optionalProductDefinitionEntity = productDefinitionRepository.findByIdentifier(productInstance.getProductIdentifier());
if (optionalProductDefinitionEntity.isPresent()) {
final ProductInstanceEntity productInstanceEntity = new ProductInstanceEntity();
productInstanceEntity.setCustomerIdentifier(productInstance.getCustomerIdentifier());
productInstanceEntity.setAccountIdentifier(productInstance.getAccountIdentifier());
productInstanceEntity.setState(productInstance.getState());
productInstanceEntity.setProductDefinition(optionalProductDefinitionEntity.get());
if (productInstance.getBeneficiaries() != null) {
productInstanceEntity.setBeneficiaries(
productInstance.getBeneficiaries().stream().collect(Collectors.joining(",")));
}
if (productInstance.getOpenedOn() != null) {
final String editedOpenedDate;
if (!productInstance.getOpenedOn().endsWith("Z")) {
editedOpenedDate = productInstance.getOpenedOn() + "Z";
} else {
editedOpenedDate = productInstance.getOpenedOn();
}
productInstanceEntity.setOpenedOn(DateConverter.dateFromIsoString(editedOpenedDate));
}
if (productInstance.getLastTransactionDate() != null) {
productInstanceEntity.setLastTransactionDate(DateConverter.fromIsoString(productInstance.getLastTransactionDate()));
}
return productInstanceEntity;
} else {
throw ServiceException.notFound("Unable to assign product {0} to customer {1}, product not found.",
productInstance.getProductIdentifier(), productInstance.getCustomerIdentifier());
}
}
public static ProductInstance map(final ProductInstanceEntity productInstanceEntity, final Account account) {
final ProductInstance productInstance = new ProductInstance();
productInstance.setCustomerIdentifier(productInstanceEntity.getCustomerIdentifier());
productInstance.setAccountIdentifier(productInstanceEntity.getAccountIdentifier());
productInstance.setProductIdentifier(productInstanceEntity.getProductDefinition().getIdentifier());
productInstance.setState(productInstanceEntity.getState());
if (productInstanceEntity.getBeneficiaries() != null) {
productInstance.setBeneficiaries(new HashSet<>(
Arrays.asList(StringUtils.split(productInstanceEntity.getBeneficiaries(), ","))
));
}
if (productInstanceEntity.getOpenedOn() != null) {
final String editedOpenedDate = DateConverter.toIsoString(productInstanceEntity.getOpenedOn()).substring(0, 10);
productInstance.setOpenedOn(editedOpenedDate);
}
if (productInstanceEntity.getLastTransactionDate() != null) {
productInstance.setLastTransactionDate(DateConverter.toIsoString(productInstanceEntity.getLastTransactionDate()));
}
if (account != null && account.getBalance() != null) {
productInstance.setBalance(account.getBalance());
} else {
productInstance.setBalance(0.00D);
}
return productInstance;
}
}