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

com.jd.httpservice.agent.RequestPathTemplate Maven / Gradle / Ivy

There is a newer version: 2.1.4.RELEASE
Show newest version
package com.jd.httpservice.agent;

import java.net.URI;
import java.net.URISyntaxException;
import java.nio.charset.Charset;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;

import org.apache.http.NameValuePair;
import org.apache.http.client.utils.URIBuilder;

import com.jd.httpservice.NamedParamMap;

import utils.PathUtils;

class RequestPathTemplate {
//	private ServiceEndpoint serviceEndpoint;
	private String servicePath;
	private String actionPath;

	public RequestPathTemplate(String servicePath, String actionPath) {
//		this.serviceEndpoint = serviceEndpoint;
		this.servicePath = PathUtils.standardize(servicePath);
		this.actionPath = PathUtils.standardize(actionPath);
	}
	

	/**
	 * 更新请求路径;
	 * 
	 * @param pathVariableName
	 * @param value
	 */
	private static String updateActionPath(String actionPath, String pathVariableName, String value) {
		String pathVarName = String.format("{%s}", pathVariableName);
		actionPath = actionPath.replace(pathVarName, value);
		return actionPath;
	}

	/**
	 * 返回完整的请求URL;
	 * 
	 * @param pathParams
	 *            路径参数;
	 * @param queryParams
	 *            查询参数;
	 * @return
	 */
	public URI generateRequestURI(ServiceEndpoint serviceEndpoint, Map pathParams, NamedParamMap queryParams,
			Charset encodingCharset) {
		// 生成路径;
		String reallyActionPath = createActionPath(pathParams);
		String path = PathUtils.concatPaths(serviceEndpoint.getContextPath(), servicePath, reallyActionPath);
		path = PathUtils.absolute(path);

		// 生成查询字符串;
		URIBuilder uriBuilder = new URIBuilder();
		uriBuilder.setCharset(encodingCharset);
		if (serviceEndpoint.isSecure()) {
			uriBuilder.setScheme("https");
		}else{
			uriBuilder.setScheme("http");
		}
		
		uriBuilder.setHost(serviceEndpoint.getHost());
		uriBuilder.setPort(serviceEndpoint.getPort());
		uriBuilder.setPath(path.toString());
		List queryParameters = RequestUtils.createQueryParameters(queryParams);
		uriBuilder.setParameters(queryParameters);
		try {
			return uriBuilder.build();
		} catch (URISyntaxException e) {
			throw new IllegalArgumentException(e.getMessage(), e);
		}
	}

	private String createActionPath(Map pathParams) {
		String reallyActionPath = actionPath;
		if (pathParams != null) {
			for (Entry pathParam : pathParams.entrySet()) {
				reallyActionPath = updateActionPath(reallyActionPath, pathParam.getKey(), pathParam.getValue());
			}
		}
		return reallyActionPath;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy