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

com.tinypass.client.publisher.api.PublisherConversionCustomApi Maven / Gradle / Ivy

There is a newer version: 16.331.0
Show newest version
package com.tinypass.client.publisher.api;

import com.tinypass.client.common.*;
import com.tinypass.client.publisher.model.TermConversion;

import java.util.*;
import java.math.*;
import java.io.*;

public class PublisherConversionCustomApi {

	private String basePath = "https://api.piano.io/api/v3";
	private String token;
	private ApiInvoker apiInvoker = null;
	private Map headerParams = new LinkedHashMap();

	public PublisherConversionCustomApi(String basePath, String token) {
		this.basePath = basePath;
		this.token = token;
	}

	public PublisherConversionCustomApi(String basePath, String token, ApiInvoker invoker, Map headerParams) {
		this(basePath, token);
		this.apiInvoker = invoker;
		this.headerParams = headerParams;
	}

	public ApiInvoker getInvoker() {
        if(apiInvoker == null) apiInvoker = ApiInvoker.getInstance();
		return apiInvoker;
	}

	public void setApiToken(String token){
		this.token = token;
	}

	public void setBasePath(String basePath) {
		this.basePath = basePath;
	}

	public String getBasePath() {
		return basePath;
	}

	public String toQueryParam(Object arg) {
        if(arg == null)
            return null;
		if (arg instanceof Date) {
			Date date = (Date) arg;
			long epochTime = date.getTime() / 1000;
			return String.valueOf(epochTime);
		} else {
			return String.valueOf(arg);
		}

	}

    public void setQueryParam(Map> params, String paramName, Object value) {
        List currentValues = params.computeIfAbsent(paramName, k -> new ArrayList<>());
        if (value instanceof List) {
            List values = (List) value;
            values.forEach(o -> addQueryParam(currentValues, o));
        } else {
            addQueryParam(currentValues, value);
        }
    }

    private void addQueryParam(List currentValues, Object value) {
        String v = toQueryParam(value);
        if (v != null)
            currentValues.add(v);
    }


    /**
      * API Request for customCreate
      */
	public class customCreateRequest implements ApiRequest {

        Map headerParams;
        Map> queryParams = new HashMap<>();
        Map> formParams = new HashMap<>();
        Object body = null;

        public customCreateRequest(Map headerParams) {
            this.headerParams = headerParams;
        }

        public Map> getPreparedFormParams() {
            return Collections.unmodifiableMap(formParams);
        }


		public customCreateRequest aid(String aid) {
            setQueryParam(this.formParams, "aid", aid);
			return this;
		}
		public customCreateRequest termId(String termId) {
            setQueryParam(this.formParams, "term_id", termId);
			return this;
		}
		public customCreateRequest uid(String uid) {
            setQueryParam(this.formParams, "uid", uid);
			return this;
		}
		public customCreateRequest accessPeriod(Integer accessPeriod) {
            setQueryParam(this.formParams, "access_period", accessPeriod);
			return this;
		}
		public customCreateRequest unlimitedAccess(Boolean unlimitedAccess) {
            setQueryParam(this.formParams, "unlimited_access", unlimitedAccess);
			return this;
		}
		public customCreateRequest extendExisting(Boolean extendExisting) {
            setQueryParam(this.formParams, "extend_existing", extendExisting);
			return this;
		}
		public customCreateRequest trackingId(String trackingId) {
            setQueryParam(this.formParams, "tracking_id", trackingId);
			return this;
		}
		public customCreateRequest customParams(String customParams) {
            setQueryParam(this.formParams, "custom_params", customParams);
			return this;
		}
		public customCreateRequest browserId(String browserId) {
            setQueryParam(this.formParams, "browser_id", browserId);
			return this;
		}
		public customCreateRequest pageTitle(String pageTitle) {
            setQueryParam(this.formParams, "page_title", pageTitle);
			return this;
		}
		public customCreateRequest url(String url) {
            setQueryParam(this.formParams, "url", url);
			return this;
		}
		public customCreateRequest referer(String referer) {
            setQueryParam(this.formParams, "referer", referer);
			return this;
		}
		public customCreateRequest contentAuthor(String contentAuthor) {
            setQueryParam(this.formParams, "content_author", contentAuthor);
			return this;
		}
		public customCreateRequest contentCreated(String contentCreated) {
            setQueryParam(this.formParams, "content_created", contentCreated);
			return this;
		}
		public customCreateRequest contentSection(String contentSection) {
            setQueryParam(this.formParams, "content_section", contentSection);
			return this;
		}
		public customCreateRequest contentType(String contentType) {
            setQueryParam(this.formParams, "content_type", contentType);
			return this;
		}
		public customCreateRequest tags(List tags) {
            setQueryParam(this.formParams, "tags", tags);
			return this;
		}
		public customCreateRequest previousUserSegments(String previousUserSegments) {
            setQueryParam(this.formParams, "previous_user_segments", previousUserSegments);
			return this;
		}
		public customCreateRequest userState(String userState) {
            setQueryParam(this.formParams, "user_state", userState);
			return this;
		}
		public customCreateRequest cookieConsents(String cookieConsents) {
            setQueryParam(this.formParams, "cookie_consents", cookieConsents);
			return this;
		}





		public TermConversion  execute() throws ApiException{

			String path = "/publisher/conversion/custom/create".replaceAll("\\{format\\}","json");

			return getInvoker().invokeAPI(basePath, path, "POST", token,
                                                     queryParams, null,
                                                     headerParams,
                                                     formParams,
                                                     "",
                                                     TermConversion.class);
		}

	}


    /**
      * Helper method to create a new request.
      */
	public customCreateRequest customCreateRequest(){
		return new customCreateRequest(headerParams);
	}




}