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

ca.uhn.fhir.okhttp.client.OkHttpRestfulRequest Maven / Gradle / Ivy

The newest version!
/*
 * #%L
 * HAPI FHIR OkHttp Client
 * %%
 * Copyright (C) 2014 - 2024 Smile CDR, Inc.
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */
package ca.uhn.fhir.okhttp.client;

import ca.uhn.fhir.rest.api.RequestTypeEnum;
import ca.uhn.fhir.rest.client.api.BaseHttpRequest;
import ca.uhn.fhir.rest.client.api.IHttpRequest;
import ca.uhn.fhir.rest.client.api.IHttpResponse;
import ca.uhn.fhir.util.StopWatch;
import okhttp3.Call;
import okhttp3.Call.Factory;
import okhttp3.Request;
import okhttp3.RequestBody;

import java.io.IOException;
import java.util.Collections;
import java.util.List;
import java.util.Map;

/**
 * Adapter for building an OkHttp-specific request.
 *
 * @author Matthew Clarke | [email protected] | Orion Health
 */
public class OkHttpRestfulRequest extends BaseHttpRequest implements IHttpRequest {

	private final Request.Builder myRequestBuilder;
	private Factory myClient;
	private String myUrl;
	private RequestTypeEnum myRequestTypeEnum;
	private RequestBody myRequestBody;

	public OkHttpRestfulRequest(
			Call.Factory theClient, String theUrl, RequestTypeEnum theRequestTypeEnum, RequestBody theRequestBody) {
		myClient = theClient;
		myUrl = theUrl;
		myRequestTypeEnum = theRequestTypeEnum;
		myRequestBody = theRequestBody;

		myRequestBuilder = new Request.Builder().url(theUrl);
	}

	public Request.Builder getRequest() {
		return myRequestBuilder;
	}

	@Override
	public void addHeader(String theName, String theValue) {
		myRequestBuilder.addHeader(theName, theValue);
	}

	@Override
	public IHttpResponse execute() throws IOException {
		StopWatch responseStopWatch = new StopWatch();
		myRequestBuilder.method(getHttpVerbName(), myRequestBody);
		Call call = myClient.newCall(myRequestBuilder.build());
		return new OkHttpRestfulResponse(call.execute(), responseStopWatch);
	}

	@Override
	public Map> getAllHeaders() {
		return Collections.unmodifiableMap(myRequestBuilder.build().headers().toMultimap());
	}

	@Override
	public String getRequestBodyFromStream() {
		// returning null to indicate this is not supported, as documented in IHttpRequest's contract
		return null;
	}

	@Override
	public String getUri() {
		return myUrl;
	}

	@Override
	public void setUri(String theUrl) {
		myUrl = theUrl;
	}

	@Override
	public String getHttpVerbName() {
		return myRequestTypeEnum.name();
	}

	@Override
	public void removeHeaders(String theHeaderName) {
		myRequestBuilder.removeHeader(theHeaderName);
	}

	@Override
	public String toString() {
		return getHttpVerbName() + " " + getUri();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy