/*
* Copyright 2013-2014 Urs Wolfer
*
* 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.urswolfer.gerrit.client.rest.http.changes;
import com.google.common.base.Strings;
import com.google.common.base.Supplier;
import com.google.common.base.Suppliers;
import com.google.gerrit.extensions.api.changes.FileApi;
import com.google.gerrit.extensions.common.DiffInfo;
import com.google.gerrit.extensions.restapi.BinaryResult;
import com.google.gerrit.extensions.restapi.RestApiException;
import com.google.gerrit.extensions.restapi.Url;
import com.google.gson.JsonElement;
import com.urswolfer.gerrit.client.rest.http.GerritRestClient;
import com.urswolfer.gerrit.client.rest.http.util.BinaryResultUtils;
import com.urswolfer.gerrit.client.rest.http.util.UrlUtils;
import org.apache.http.HttpResponse;
import java.io.IOException;
/**
* @author Thomas Forrer
*/
public class FileApiRestClient extends FileApi.NotImplemented {
private final GerritRestClient gerritRestClient;
private final RevisionApiRestClient revisionApiRestClient;
private final DiffInfoParser diffInfoParser;
private final String path;
private final Supplier<String> requestPath = Suppliers.memoize(new Supplier<String>() {
@Override
public String get() {
String encodedPath = Url.encode(path);
return revisionApiRestClient.getRequestPath() + "/files/" + encodedPath;
}
});
public FileApiRestClient(GerritRestClient gerritRestClient,
RevisionApiRestClient revisionApiRestClient,
DiffInfoParser diffInfoParser, String path) {
this.gerritRestClient = gerritRestClient;
this.revisionApiRestClient = revisionApiRestClient;
this.diffInfoParser = diffInfoParser;
this.path = path;
}
@Override
public BinaryResult content() throws RestApiException {
String request = getRequestPath() + "/content";
try {
HttpResponse response = gerritRestClient.request(request, null, GerritRestClient.HttpVerb.GET);
return BinaryResultUtils.createBinaryResult(response);
} catch (IOException e) {
throw new RestApiException("Failed to get file content.", e);
}
}
@Override
public DiffInfo diff() throws RestApiException {
return diffRequest().get();
}
@Override
public DiffInfo diff(String base) throws RestApiException {
return diffRequest().withBase(base).get();
}
@Override
public DiffRequest diffRequest() throws RestApiException {
return new DiffRequest() {
@Override
public DiffInfo get() throws RestApiException {
return FileApiRestClient.this.diff(this);
}
};
}
private DiffInfo diff(DiffRequest diffRequest) throws RestApiException {
String query = "";
if (!Strings.isNullOrEmpty(diffRequest.getBase())) {
query = UrlUtils.appendToUrlQuery(query, "base=" + diffRequest.getBase());
}
if (diffRequest.getContext() != null) {
query = UrlUtils.appendToUrlQuery(query, "context=" + diffRequest.getContext());
}
if (diffRequest.getIntraline() != null) {
query = UrlUtils.appendToUrlQuery(query, "intraline=" + diffRequest.getIntraline());
}
if (diffRequest.getWhitespace() != null) {
query = UrlUtils.appendToUrlQuery(query, "whitespace=" + diffRequest.getWhitespace());
}
String url = getRequestPath() + "/diff";
if (!Strings.isNullOrEmpty(query)) {
url += '?' + query;
}
JsonElement jsonElement = gerritRestClient.getRequest(url);
return diffInfoParser.parseDiffInfo(jsonElement);
}
protected String getRequestPath() {
return requestPath.get();
}
}