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

com.chargebee.internal.Request Maven / Gradle / Ivy

There is a newer version: 3.28.0
Show newest version
package com.chargebee.internal;

import com.chargebee.*;
import com.chargebee.internal.HttpUtil.Method;
import java.io.*;

public class Request extends RequestBase{

    private final HttpUtil.Method httpMeth;
    
    public Request(Method httpMeth, String uri) {
        this.uri = uri;
        this.httpMeth = httpMeth;
    }

    public U param(String paramName, Object value){
        params.add(paramName, value);
        return (U)this;
    }
        
    public final Result request() throws Exception {
        return request(Environment.defaultConfig());
    }

    public final Result request(Environment env) throws Exception {
        RequestWrap c = new RequestWrap(env, this) {

            @Override
            public Result call() throws Exception {
                return _request(env, request);
            }
        };
        return (Result) (env.reqInterceptor() != null ? env.reqInterceptor().handleRequest(c) : c.call());
    }

    private static Result _request(Environment env, Request req) throws IOException {
        if (env == null) {
            throw new RuntimeException("Environment cannot be null");
        }
        String url = new StringBuilder(env.apiBaseUrl()).append(req.uri).toString();
        switch (req.httpMeth) {
            case GET:
                return HttpUtil.get(url, req.params(), req.headers, env);
            case POST:
                return HttpUtil.post(url, req.params(), req.headers, env);
            default:
                throw new RuntimeException("Not handled type [" + req.httpMeth + "]");
        }
    }
    
    @Override
    public Params params() {
        return params;
    }
    
}