de.adorsys.multibanking.hbci.job.RawSepaJob Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2018-2019 adorsys GmbH & Co KG
*
* 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 de.adorsys.multibanking.hbci.job;
import de.adorsys.multibanking.domain.request.TransactionRequest;
import de.adorsys.multibanking.domain.transaction.RawSepaPayment;
import de.adorsys.multibanking.hbci.HbciBpdCacheHolder;
import org.apache.commons.lang3.math.NumberUtils;
import org.kapott.hbci.GV.*;
import org.kapott.hbci.GV.parsers.ISEPAParser;
import org.kapott.hbci.GV.parsers.SEPAParserFactory;
import org.kapott.hbci.GV_Result.HBCIJobResult;
import org.kapott.hbci.sepa.SepaVersion;
import java.io.ByteArrayInputStream;
import java.math.BigDecimal;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Optional;
public class RawSepaJob extends AbstractPaymentJob {
public RawSepaJob(TransactionRequest transactionRequest, HbciBpdCacheHolder bpdCacheHolder) {
super(transactionRequest, bpdCacheHolder);
}
@Override
String getHbciJobName() {
return GVRawSEPA.getLowlevelName();
}
@Override
public String orderIdFromJobResult(HBCIJobResult jobResult) {
return Optional.ofNullable(jobResult.getResultData().get("orderid"))
.orElse(null);
}
@Override
GVRawSEPA createHbciJob() {
RawSepaPayment sepaPayment = transactionRequest.getTransaction();
String jobName;
switch (sepaPayment.getSepaTransactionType()) {
case SINGLE_PAYMENT:
jobName = GVUebSEPA.getLowlevelName();
break;
case FUTURE_SINGLE_PAYMENT:
jobName = GVTermUebSEPA.getLowlevelName();
break;
case INSTANT_PAYMENT:
jobName = GVInstantUebSEPA.getLowlevelName();
break;
case BULK_PAYMENT:
jobName = GVMultiUebSEPA.getLowlevelName();
break;
case FUTURE_BULK_PAYMENT:
jobName = GVTermMultiUebSEPA.getLowlevelName();
break;
case STANDING_ORDER:
jobName = GVDauerSEPANew.getLowlevelName();
break;
default:
throw new IllegalArgumentException("unsupported raw sepa transaction: " + sepaPayment.getSepaTransactionType());
}
return createRawSepaJob(sepaPayment, jobName);
}
private GVRawSEPA createRawSepaJob(RawSepaPayment sepaPayment, String jobName) {
GVRawSEPA rawSEPAJob = new GVRawSEPA(dialog.getPassport(), jobName, getSepaVersion(), sepaPayment.getRawRequestData());
rawSEPAJob.setParam("src", getHbciKonto());
String creditorIban = "";
BigDecimal amount = new BigDecimal(0);
String currency = "";
List