com.urswolfer.gerrit.client.rest.http.changes.ChangesRestClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gerrit-rest-java-client Show documentation
Show all versions of gerrit-rest-java-client Show documentation
Java REST client for Gerrit Code Review API.
/*
* 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.gerrit.extensions.api.changes.ChangeApi;
import com.google.gerrit.extensions.api.changes.Changes;
import com.google.gerrit.extensions.client.ListChangesOption;
import com.google.gerrit.extensions.common.ChangeInfo;
import com.google.gerrit.extensions.restapi.RestApiException;
import com.google.gson.JsonElement;
import com.urswolfer.gerrit.client.rest.http.GerritRestClient;
import com.urswolfer.gerrit.client.rest.http.util.UrlUtils;
import java.util.List;
/**
* @author Urs Wolfer
*/
public class ChangesRestClient extends Changes.NotImplemented implements Changes {
private final GerritRestClient gerritRestClient;
private final ChangesParser changesParser;
private final CommentsParser commentsParser;
private final FileInfoParser fileInfoParser;
private final DiffInfoParser diffInfoParser;
private final SuggestedReviewerInfoParser suggestedReviewerInfoParser;
public ChangesRestClient(GerritRestClient gerritRestClient,
ChangesParser changesParser,
CommentsParser commentsParser,
FileInfoParser fileInfoParser,
DiffInfoParser diffInfoParser,
SuggestedReviewerInfoParser suggestedReviewerInfoParser) {
this.gerritRestClient = gerritRestClient;
this.changesParser = changesParser;
this.commentsParser = commentsParser;
this.fileInfoParser = fileInfoParser;
this.diffInfoParser = diffInfoParser;
this.suggestedReviewerInfoParser = suggestedReviewerInfoParser;
}
@Override
public QueryRequest query() {
return new QueryRequest() {
@Override
public List get() throws RestApiException {
return ChangesRestClient.this.get(this);
}
};
}
@Override
public QueryRequest query(String query) {
return query().withQuery(query);
}
private List get(QueryRequest queryRequest) throws RestApiException {
String query = "";
if (!Strings.isNullOrEmpty(queryRequest.getQuery())) {
query = UrlUtils.appendToUrlQuery(query, "q=" + queryRequest.getQuery());
}
if (queryRequest.getLimit() > 0) {
query = UrlUtils.appendToUrlQuery(query, "n=" + queryRequest.getLimit());
}
if (queryRequest.getStart() > 0) {
query = UrlUtils.appendToUrlQuery(query, "S=" + queryRequest.getStart());
}
// server version < 2.9, needed for change list paging
if (!Strings.isNullOrEmpty(queryRequest.getSortkey())) {
query = UrlUtils.appendToUrlQuery(query, "N=" + queryRequest.getSortkey());
}
for (ListChangesOption option : queryRequest.getOptions()) {
query = UrlUtils.appendToUrlQuery(query, "o=" + option);
}
String url = "/changes/";
if (!Strings.isNullOrEmpty(query)) {
url += '?' + query;
}
JsonElement jsonElement = gerritRestClient.getRequest(url);
return changesParser.parseChangeInfos(jsonElement);
}
@Override
public ChangeApi id(int id) throws RestApiException {
return id("" + id);
}
@Override
public ChangeApi id(String id) throws RestApiException {
return new ChangeApiRestClient(gerritRestClient, this, changesParser, commentsParser,
fileInfoParser, diffInfoParser, suggestedReviewerInfoParser, id);
}
@Override
public ChangeApi id(String project, String branch, String id) throws RestApiException {
return id(String.format("%s~%s~%s", project, branch, id));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy