org.killbill.billing.plugin.adyen.api.ExpiredPaymentPolicy.java Source code

Java tutorial

Introduction

Here is the source code for org.killbill.billing.plugin.adyen.api.ExpiredPaymentPolicy.java

Source

/*
 * Copyright 2014-2016 Groupon, Inc
 * Copyright 2014-2016 The Billing Project, LLC
 *
 * The Billing Project licenses this file to you 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 org.killbill.billing.plugin.adyen.api;

import java.util.List;

import org.joda.time.DateTime;
import org.killbill.billing.payment.api.TransactionType;
import org.killbill.billing.payment.plugin.api.PaymentPluginStatus;
import org.killbill.billing.payment.plugin.api.PaymentTransactionInfoPlugin;
import org.killbill.billing.plugin.adyen.client.AdyenConfigProperties;
import org.killbill.billing.plugin.adyen.client.model.PaymentServiceProviderResult;
import org.killbill.billing.plugin.adyen.dao.gen.tables.records.AdyenResponsesRecord;
import org.killbill.clock.Clock;

import com.google.common.collect.Iterables;

public class ExpiredPaymentPolicy {

    private final Clock clock;

    private final AdyenConfigProperties adyenProperties;

    public ExpiredPaymentPolicy(final Clock clock, final AdyenConfigProperties adyenProperties) {
        this.clock = clock;
        this.adyenProperties = adyenProperties;
    }

    public boolean isExpired(final List<PaymentTransactionInfoPlugin> paymentTransactions) {
        if (!containOnlyAuthsOrPurchases(paymentTransactions)) {
            return false;
        }

        final AdyenPaymentTransactionInfoPlugin transaction = (AdyenPaymentTransactionInfoPlugin) latestTransaction(
                paymentTransactions);
        if (transaction.getCreatedDate() == null) {
            return false;
        }

        if (transaction.getStatus() == PaymentPluginStatus.PENDING) {
            final DateTime expirationDate = expirationDate(transaction);
            return clock.getNow(expirationDate.getZone()).isAfter(expirationDate);
        }

        return false;
    }

    public PaymentTransactionInfoPlugin latestTransaction(
            final List<PaymentTransactionInfoPlugin> paymentTransactions) {
        return Iterables.getLast(paymentTransactions);
    }

    private boolean containOnlyAuthsOrPurchases(final List<PaymentTransactionInfoPlugin> transactions) {
        for (final PaymentTransactionInfoPlugin transaction : transactions) {
            if (transaction.getTransactionType() != TransactionType.AUTHORIZE
                    && transaction.getTransactionType() != TransactionType.PURCHASE) {
                return false;
            }
        }
        return true;
    }

    private DateTime expirationDate(final AdyenPaymentTransactionInfoPlugin transaction) {
        if (is3ds(transaction)) {
            return transaction.getCreatedDate().plus(adyenProperties.getPending3DsPaymentExpirationPeriod());
        }

        return transaction.getCreatedDate().plus(adyenProperties.getPendingPaymentExpirationPeriod());
    }

    private boolean is3ds(final AdyenPaymentTransactionInfoPlugin transaction) {
        if (!transaction.getAdyenResponseRecord().isPresent()) {
            return false;
        }

        final AdyenResponsesRecord adyenResponsesRecord = transaction.getAdyenResponseRecord().get();
        return PaymentServiceProviderResult.REDIRECT_SHOPPER.toString()
                .equals(adyenResponsesRecord.getResultCode());
    }
}