blob: 7ae2847d5c6bf4f15aad07f786e36039ab1921e8 [file] [log] [blame]
// Copyright (C) 2023 The Android Open Source Project
//
// 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.
package com.googlesource.gerrit.plugins.renameproject;
import com.google.common.base.Supplier;
import com.google.common.net.MediaType;
import com.google.gerrit.server.events.SupplierSerializer;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.inject.Inject;
import com.googlesource.gerrit.plugins.renameproject.HttpResponseHandler.HttpResult;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import org.apache.http.auth.AuthenticationException;
import org.apache.http.auth.UsernamePasswordCredentials;
import org.apache.http.client.methods.HttpEntityEnclosingRequestBase;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.auth.BasicScheme;
import org.apache.http.impl.client.CloseableHttpClient;
public class HttpSession {
private final CloseableHttpClient httpClient;
private final Configuration cfg;
private final Gson gson =
new GsonBuilder().registerTypeAdapter(Supplier.class, new SupplierSerializer()).create();
@Inject
HttpSession(CloseableHttpClient httpClient, Configuration cfg) {
this.httpClient = httpClient;
this.cfg = cfg;
}
public HttpResult post(String uri, Object content) throws IOException, AuthenticationException {
HttpPost post = new HttpPost(uri);
UsernamePasswordCredentials creds =
new UsernamePasswordCredentials(cfg.getUser(), cfg.getPassword());
post.addHeader(new BasicScheme().authenticate(creds, post, null));
setContent(post, content);
return httpClient.execute(post, new HttpResponseHandler());
}
private void setContent(HttpEntityEnclosingRequestBase request, Object content) {
if (content != null) {
request.addHeader("Content-Type", MediaType.JSON_UTF_8.toString());
request.setEntity(new StringEntity(jsonEncode(content), StandardCharsets.UTF_8));
}
}
private String jsonEncode(Object content) {
if (content instanceof String) {
return (String) content;
}
return gson.toJson(content);
}
}