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

com.tinypass.client.id.api.PublisherIdentitySetApi Maven / Gradle / Ivy

There is a newer version: 16.366.0
Show newest version
package com.tinypass.client.id.api;

import com.tinypass.client.common.*;
import com.tinypass.client.id.model.PublisherSetPasswordRequest;

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

public class PublisherIdentitySetApi {

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

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

	public PublisherIdentitySetApi(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 createPasswordByToken
      */
	public class createPasswordByTokenRequest implements ApiRequest {

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

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

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




		public createPasswordByTokenRequest authorization(String authorization) {
			this.headerParams.put("Authorization", toQueryParam(authorization));
			return this;
		}

        public createPasswordByTokenRequest body(PublisherSetPasswordRequest body) {
            this.body = body;
			return this;
		}
        public createPasswordByTokenRequest body(InputStream body) {
            this.body = body;
			return this;
		}
        public createPasswordByTokenRequest bodyString(String body) {
            this.body = body;
            return this;
        }


		public void  execute() throws ApiException{

			String path = "/publisher/identity/set/password".replaceAll("\\{format\\}","json");

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

	}


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




}