All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.trolley.PaymentGateway Maven / Gradle / Ivy

The newest version!
package com.trolley;

import java.util.ArrayList;
import java.io.IOException;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
import java.util.List;
import com.trolley.Exceptions.InvalidFieldException;
import com.trolley.types.Payment;
import com.trolley.types.supporting.Meta;
import com.trolley.types.supporting.Payments;
import com.trolley.types.supporting.PaymentsIterator;

public class PaymentGateway
{
    Client client;
    
    public PaymentGateway(final Configuration config) {
        this.client = new Client(config);
    }
    
    public Payment find(final String paymentId, final String batchId) throws Exception {
        if (batchId == null || batchId.isEmpty()) {
            throw new InvalidFieldException("Batch id cannot be null or empty.");
        }
        if (paymentId == null || paymentId.isEmpty()) {
            throw new InvalidFieldException("Payment id cannot be null or empty.");
        }
        final String endPoint = "/v1/batches/" + batchId + "/payments/" + paymentId;
        final String response = this.client.get(endPoint);
        return this.paymentFactory(response);
    }
    
    public Payment create(final Payment payment, final String batchId) throws Exception {
        if (batchId == null || batchId.isEmpty()) {
            throw new InvalidFieldException("Batch id cannot be null or empty.");
        }
        if (payment == null) {
            throw new InvalidFieldException("payment request body cannot be null or empty.");
        }

        final String jsonPayment = new ObjectMapper()
                        .setDefaultPropertyInclusion(JsonInclude.Include.NON_DEFAULT)
                        .writeValueAsString((Object)payment);

        final String endPoint = "/v1/batches/" + batchId + "/payments";
        final String response = this.client.post(endPoint, jsonPayment);
        return this.paymentFactory(response);
    }
    
    public boolean update(final String paymentId, final Payment payment, final String batchId) throws Exception {
        if (batchId == null || batchId.isEmpty()) {
            throw new InvalidFieldException("Batch id cannot be null or empty.");
        }
        if (paymentId == null || paymentId.isEmpty()) {
            throw new InvalidFieldException("Payment id cannot be null or empty.");
        }
        if (payment == null) {
            throw new InvalidFieldException("payment request body cannot be null or empty.");
        }

        final String jsonPayment = new ObjectMapper()
                        .setDefaultPropertyInclusion(JsonInclude.Include.NON_DEFAULT)
                        .writeValueAsString((Object)payment);
        final String endPoint = "/v1/batches/" + batchId + "/payments/" + paymentId;
        this.client.patch(endPoint, jsonPayment);
        return true;
    }
    
    public boolean delete(final String paymentId, final String batchId) throws Exception {
        if (batchId == null || batchId.isEmpty()) {
            throw new InvalidFieldException("Batch id cannot be null or empty.");
        }
        if (paymentId == null || paymentId.isEmpty()) {
            throw new InvalidFieldException("Payment id cannot be null or empty.");
        }
        final String endPoint = "/v1/batches/" + batchId + "/payments/" + paymentId;
        this.client.delete(endPoint);
        return true;
    }

    /**
     * Search for payments within a batch.
     * This method returns an iterator which auto-paginate with 10 items per page.
     * If you want to paginate manually, please use the {@code search(batchId, page, pageSize, searchTerm)} method.
     * @param batchId The batch in which the payments need to be searched.
     * @param searchTerm the search keyword to be searched for
     * @return PaymentsIterator which auto paginates through all available payments 10 items per page
     * @throws Exception
     */
    public PaymentsIterator search(final String batchId, final String searchTerm) throws Exception {
        if (searchTerm == null) {
            throw new InvalidFieldException("searchTerm cannot be null. If you don't wish to provide a searchTerm, pass a blank String.");
        }
        int pageSize = 10;
        Payments p = search(batchId, 1, pageSize, searchTerm);
        return new PaymentsIterator(this, p, batchId, searchTerm);
    }
    
    /**
     * Search for Payments within a batch with manual pagination.
     * @param batchId The batch in which the payments need to be searched.
     * @param page which page number you want to access
     * @param pageSize number of items you want per page
     * @param searchTerm keyword to search for
     * @return {@code Payments} object, containing a {@code List} object and a {@code Meta} object to access pagination information
     * @throws Exception
     */
    public Payments search(final String batchId, final int page, final int pageSize, final String searchTerm) throws Exception {
        if (batchId == null || batchId.isEmpty()) {
            throw new InvalidFieldException("batchId cannot be null or empty.");
        }
        if (page < 0) {
            throw new InvalidFieldException("page cannot be less than 0");
        }
        if (pageSize < 0) {
            throw new InvalidFieldException("pageSize cannot be less than 0");
        }
        if (searchTerm == null) {
            throw new InvalidFieldException("searchTerm cannot be null. If you don't wish to provide a searchTerm, pass a blank String.");
        }
        final String endPoint = "/v1/batches/" + batchId + "/payments?search=" + searchTerm + "&page=" + page + "&pageSize=" + pageSize;
        final String response = this.client.get(endPoint);
        
        return this.paymentListFactory(response);
    }
    
    private Payment paymentFactory(final String data) throws IOException {
        final ObjectMapper mapper = new ObjectMapper();
        mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
        final JsonNode node = mapper.readTree(data);
        final Payment payment = (Payment)mapper.readValue(node.get("payment").traverse(), (Class)Payment.class);
        return payment;
    }
    
    private Payments paymentListFactory(final String data) throws IOException {
        final ObjectMapper mapper = new ObjectMapper();
        final JsonNode node = mapper.readTree(data);
        mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
        final List paymentsFromResponse = (List)mapper.readValue(node.get("payments").traverse(), (Class)Object.class);

        final Meta meta = (Meta)mapper.readValue(node.get("meta").traverse(), (Class)Meta.class);

        final List paymentObjs = new ArrayList();
        for (int i = 0; i < paymentsFromResponse.size(); ++i) {
            final Payment pojo = (Payment)mapper.convertValue((Object)paymentsFromResponse.get(i), (Class)Payment.class);
            paymentObjs.add(pojo);
        }

        Payments payments = new Payments(paymentObjs, meta);
        return payments;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy