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

com.taxjar.Taxjar Maven / Gradle / Ivy

There is a newer version: 5.0.3
Show newest version
package com.taxjar;

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.taxjar.exception.TaxjarException;
import com.taxjar.model.categories.CategoryResponse;
import com.taxjar.model.customers.CustomerResponse;
import com.taxjar.model.customers.CustomersResponse;
import com.taxjar.model.nexus.RegionResponse;
import com.taxjar.model.rates.RateResponse;
import com.taxjar.model.summarized_rates.SummaryRateResponse;
import com.taxjar.model.taxes.TaxResponse;
import com.taxjar.model.transactions.OrderResponse;
import com.taxjar.model.transactions.OrdersResponse;
import com.taxjar.model.transactions.RefundResponse;
import com.taxjar.model.transactions.RefundsResponse;
import com.taxjar.model.validations.AddressResponse;
import com.taxjar.model.validations.ValidationResponse;
import com.taxjar.net.ApiCallback;
import com.taxjar.net.Endpoints;
import com.taxjar.net.Listener;
import com.taxjar.net.ApiRequest;

import okhttp3.Interceptor;
import okhttp3.OkHttpClient;
import okhttp3.Request;

import retrofit2.Call;
import retrofit2.Retrofit;
import retrofit2.converter.gson.GsonConverterFactory;

import java.io.IOException;
import java.util.Map;
import java.util.concurrent.TimeUnit;

public class Taxjar {
    public static final String DEFAULT_API_URL = "https://api.taxjar.com";
    public static final String SANDBOX_API_URL = "https://api.sandbox.taxjar.com";
    public static final String API_VERSION = "v2";
    public static final String VERSION = "2.0.0";
    protected static Endpoints apiService;
    protected static String apiUrl;
    protected static String apiToken;
    protected static long timeout = 30000;

    public Taxjar(final String apiToken) {
        this(apiToken, null);
    }

    public Taxjar(final String apiToken, Map params) {
        this.apiToken = apiToken;
        this.apiUrl = DEFAULT_API_URL;
        buildClient(params);
    }

    public void buildClient(Map params) {
        final String apiToken = this.apiToken;

        if (params != null) {
            for (Map.Entry param : params.entrySet()) {
                try {
                    getClass().getDeclaredField(param.getKey()).set(this, param.getValue());
                } catch (NoSuchFieldException | IllegalAccessException ex) {
                    // No-op
                }
            }
        }

        OkHttpClient client = new OkHttpClient.Builder().addInterceptor(new Interceptor() {
            @Override
            public okhttp3.Response intercept(Chain chain) throws IOException {
                Request newRequest = chain.request().newBuilder()
                        .addHeader("Authorization", "Bearer " + apiToken)
                        .addHeader("User-Agent", "TaxJarJava/" + VERSION)
                        .build();
                return chain.proceed(newRequest);
            }
        })
                .connectTimeout(this.timeout, TimeUnit.MILLISECONDS)
                .writeTimeout(this.timeout, TimeUnit.MILLISECONDS)
                .readTimeout(this.timeout, TimeUnit.MILLISECONDS)
                .build();

        Gson gson = new GsonBuilder()
                .setLenient()
                .create();

        Retrofit retrofit = new Retrofit.Builder()
                .baseUrl(this.apiUrl + "/" + API_VERSION + "/")
                .addConverterFactory(GsonConverterFactory.create(gson))
                .client(client)
                .build();

        apiService = retrofit.create(Endpoints.class);
    }

    public String getApiConfig(String key) {
        try {
            return getClass().getDeclaredField(key).get(this).toString();
        } catch (NoSuchFieldException | IllegalAccessException ex) {
            return "";
        }
    }

    public void setApiConfig(String key, Object value) {
        try {
            getClass().getDeclaredField(key).set(this, value);
            buildClient(null);
        } catch (NoSuchFieldException | IllegalAccessException ex) {
            // No-op
        }
    }

    public CategoryResponse categories() throws TaxjarException {
        Call call = apiService.getCategories();
        return new ApiRequest<>(call).execute();
    }

    public void categories(final Listener listener) {
        Call call = apiService.getCategories();
        call.enqueue(new ApiCallback<>(listener));
    }

    public RateResponse ratesForLocation(String zip) throws TaxjarException {
        Call call = apiService.getRate(zip);
        return new ApiRequest<>(call).execute();
    }

    public RateResponse ratesForLocation(String zip, Map params) throws TaxjarException {
        Call call = apiService.getRate(zip, params);
        return new ApiRequest<>(call).execute();
    }

    public void ratesForLocation(String zip, final Listener listener) throws TaxjarException {
        Call call = apiService.getRate(zip);
        call.enqueue(new ApiCallback<>(listener));
    }

    public void ratesForLocation(String zip, Map params, final Listener listener) throws TaxjarException {
        Call call = apiService.getRate(zip, params);
        call.enqueue(new ApiCallback<>(listener));
    }

    public TaxResponse taxForOrder(Map params) throws TaxjarException {
        Call call = apiService.getTax(params);
        return new ApiRequest<>(call).execute();
    }

    public void taxForOrder(Map params, final Listener listener) {
        Call call = apiService.getTax(params);
        call.enqueue(new ApiCallback<>(listener));
    }

    public OrdersResponse listOrders() throws TaxjarException {
        Call call = apiService.getOrders();
        return new ApiRequest<>(call).execute();
    }

    public OrdersResponse listOrders(Map params) throws TaxjarException {
        Call call = apiService.getOrders(params);
        return new ApiRequest<>(call).execute();
    }

    public void listOrders(final Listener listener) {
        Call call = apiService.getOrders();
        call.enqueue(new ApiCallback<>(listener));
    }

    public void listOrders(Map params, final Listener listener) {
        Call call = apiService.getOrders(params);
        call.enqueue(new ApiCallback<>(listener));
    }

    public OrderResponse showOrder(String transactionId) throws TaxjarException {
        Call call = apiService.getOrder(transactionId);
        return new ApiRequest<>(call).execute();
    }

    public void showOrder(String transactionId, final Listener listener) {
        Call call = apiService.getOrder(transactionId);
        call.enqueue(new ApiCallback<>(listener));
    }

    public OrderResponse createOrder(Map params) throws TaxjarException {
        Call call = apiService.createOrder(params);
        return new ApiRequest<>(call).execute();
    }

    public void createOrder(Map params, final Listener listener) {
        Call call = apiService.createOrder(params);
        call.enqueue(new ApiCallback<>(listener));
    }

    public OrderResponse updateOrder(String transactionId, Map params) throws TaxjarException {
        Call call = apiService.updateOrder(transactionId, params);
        return new ApiRequest<>(call).execute();
    }

    public void updateOrder(String transactionId, Map params, final Listener listener) {
        Call call = apiService.updateOrder(transactionId, params);
        call.enqueue(new ApiCallback<>(listener));
    }

    public OrderResponse deleteOrder(String transactionId) throws TaxjarException {
        Call call = apiService.deleteOrder(transactionId);
        return new ApiRequest<>(call).execute();
    }

    public void deleteOrder(String transactionId, final Listener listener) {
        Call call = apiService.deleteOrder(transactionId);
        call.enqueue(new ApiCallback<>(listener));
    }

    public RefundsResponse listRefunds() throws TaxjarException {
        Call call = apiService.getRefunds();
        return new ApiRequest<>(call).execute();
    }

    public RefundsResponse listRefunds(Map params) throws TaxjarException {
        Call call = apiService.getRefunds(params);
        return new ApiRequest<>(call).execute();
    }

    public void listRefunds(final Listener listener) {
        Call call = apiService.getRefunds();
        call.enqueue(new ApiCallback<>(listener));
    }

    public void listRefunds(Map params, final Listener listener) {
        Call call = apiService.getRefunds(params);
        call.enqueue(new ApiCallback<>(listener));
    }

    public RefundResponse showRefund(String transactionId) throws TaxjarException {
        Call call = apiService.getRefund(transactionId);
        return new ApiRequest<>(call).execute();
    }

    public void showRefund(String transactionId, final Listener listener) {
        Call call = apiService.getRefund(transactionId);
        call.enqueue(new ApiCallback<>(listener));
    }

    public RefundResponse createRefund(Map params) throws TaxjarException {
        Call call = apiService.createRefund(params);
        return new ApiRequest<>(call).execute();
    }

    public void createRefund(Map params, final Listener listener) {
        Call call = apiService.createRefund(params);
        call.enqueue(new ApiCallback<>(listener));
    }

    public RefundResponse createRefund(String transactionId, Map params) throws TaxjarException {
        Call call = apiService.updateRefund(transactionId, params);
        return new ApiRequest<>(call).execute();
    }

    public void createRefund(String transactionId, Map params, final Listener listener) {
        Call call = apiService.updateRefund(transactionId, params);
        call.enqueue(new ApiCallback<>(listener));
    }

    public RefundResponse updateRefund(String transactionId, Map params) throws TaxjarException {
        Call call = apiService.updateRefund(transactionId, params);
        return new ApiRequest<>(call).execute();
    }

    public void updateRefund(String transactionId, Map params, final Listener listener) {
        Call call = apiService.updateRefund(transactionId, params);
        call.enqueue(new ApiCallback<>(listener));
    }

    public RefundResponse deleteRefund(String transactionId) throws TaxjarException {
        Call call = apiService.deleteRefund(transactionId);
        return new ApiRequest<>(call).execute();
    }

    public void deleteRefund(String transactionId, final Listener listener) {
        Call call = apiService.deleteRefund(transactionId);
        call.enqueue(new ApiCallback<>(listener));
    }

    public CustomersResponse listCustomers() throws TaxjarException {
        Call call = apiService.getCustomers();
        return new ApiRequest<>(call).execute();
    }

    public CustomersResponse listCustomers(Map params) throws TaxjarException {
        Call call = apiService.getCustomers(params);
        return new ApiRequest<>(call).execute();
    }

    public void listCustomers(final Listener listener) {
        Call call = apiService.getCustomers();
        call.enqueue(new ApiCallback<>(listener));
    }

    public void listCustomers(Map params, final Listener listener) {
        Call call = apiService.getCustomers(params);
        call.enqueue(new ApiCallback<>(listener));
    }

    public CustomerResponse showCustomer(String customerId) throws TaxjarException {
        Call call = apiService.getCustomer(customerId);
        return new ApiRequest<>(call).execute();
    }

    public void showCustomer(String customerId, final Listener listener) {
        Call call = apiService.getCustomer(customerId);
        call.enqueue(new ApiCallback<>(listener));
    }

    public CustomerResponse createCustomer(Map params) throws TaxjarException {
        Call call = apiService.createCustomer(params);
        return new ApiRequest<>(call).execute();
    }

    public void createCustomer(Map params, final Listener listener) {
        Call call = apiService.createCustomer(params);
        call.enqueue(new ApiCallback<>(listener));
    }

    public CustomerResponse updateCustomer(String customerId, Map params) throws TaxjarException {
        Call call = apiService.updateCustomer(customerId, params);
        return new ApiRequest<>(call).execute();
    }

    public void updateCustomer(String customerId, Map params, final Listener listener) {
        Call call = apiService.updateCustomer(customerId, params);
        call.enqueue(new ApiCallback<>(listener));
    }

    public CustomerResponse deleteCustomer(String customerId) throws TaxjarException {
        Call call = apiService.deleteCustomer(customerId);
        return new ApiRequest<>(call).execute();
    }

    public void deleteCustomer(String customerId, final Listener listener) {
        Call call = apiService.deleteCustomer(customerId);
        call.enqueue(new ApiCallback<>(listener));
    }

    public RegionResponse nexusRegions() throws TaxjarException {
        Call call = apiService.getRegions();
        return new ApiRequest<>(call).execute();
    }

    public void nexusRegions(final Listener listener) {
        Call call = apiService.getRegions();
        call.enqueue(new ApiCallback<>(listener));
    }

    public AddressResponse validateAddress(Map params) throws TaxjarException {
        Call call = apiService.getAddresses(params);
        return new ApiRequest<>(call).execute();
    }

    public void validateAddress(Map params, final Listener listener) {
        Call call = apiService.getAddresses(params);
        call.enqueue(new ApiCallback<>(listener));
    }

    public ValidationResponse validateVat(Map params) throws TaxjarException {
        Call call = apiService.getValidation(params);
        return new ApiRequest<>(call).execute();
    }

    public void validateVat(Map params, final Listener listener) {
        Call call = apiService.getValidation(params);
        call.enqueue(new ApiCallback<>(listener));
    }

    public SummaryRateResponse summaryRates() throws TaxjarException {
        Call call = apiService.getSummaryRates();
        return new ApiRequest<>(call).execute();
    }

    public void summaryRates(final Listener listener) {
        Call call = apiService.getSummaryRates();
        call.enqueue(new ApiCallback<>(listener));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy