GHPullRequestReview.java
/*
* The MIT License
*
* Copyright (c) 2017, CloudBees, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package org.kohsuke.github;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import java.io.IOException;
import java.net.URL;
import java.util.Date;
import javax.annotation.CheckForNull;
// TODO: Auto-generated Javadoc
/**
* Review to a pull request.
*
* @see GHPullRequest#listReviews() GHPullRequest#listReviews()
* @see GHPullRequestReviewBuilder
*/
@SuppressFBWarnings(value = { "UWF_UNWRITTEN_FIELD" }, justification = "JSON API")
public class GHPullRequestReview extends GHObject {
/**
* Create default GHPullRequestReview instance
*/
public GHPullRequestReview() {
}
/** The owner. */
GHPullRequest owner;
private String body;
private GHUser user;
private String commit_id;
private GHPullRequestReviewState state;
private String submitted_at;
private String html_url;
/**
* Wrap up.
*
* @param owner
* the owner
* @return the GH pull request review
*/
GHPullRequestReview wrapUp(GHPullRequest owner) {
this.owner = owner;
return this;
}
/**
* Gets the pull request to which this review is associated.
*
* @return the parent
*/
@SuppressFBWarnings(value = { "EI_EXPOSE_REP" }, justification = "Expected behavior")
public GHPullRequest getParent() {
return owner;
}
/**
* The comment itself.
*
* @return the body
*/
public String getBody() {
return body;
}
/**
* Gets the user who posted this review.
*
* @return the user
* @throws IOException
* the io exception
*/
public GHUser getUser() throws IOException {
if (user != null) {
return owner.root().getUser(user.getLogin());
}
return null;
}
/**
* Gets commit id.
*
* @return the commit id
*/
public String getCommitId() {
return commit_id;
}
/**
* Gets state.
*
* @return the state
*/
@CheckForNull
public GHPullRequestReviewState getState() {
return state;
}
/**
* Gets the html url.
*
* @return the html url
*/
public URL getHtmlUrl() {
return GitHubClient.parseURL(html_url);
}
/**
* Gets api route.
*
* @return the api route
*/
protected String getApiRoute() {
return owner.getApiRoute() + "/reviews/" + getId();
}
/**
* When was this resource created?.
*
* @return the submitted at
* @throws IOException
* the io exception
*/
public Date getSubmittedAt() throws IOException {
return GitHubClient.parseDate(submitted_at);
}
/**
* Since this method does not exist, we forward this value.
*
* @return the created at
* @throws IOException
* Signals that an I/O exception has occurred.
*/
@Override
public Date getCreatedAt() throws IOException {
return getSubmittedAt();
}
/**
* Updates the comment.
*
* @param body
* the body
* @param event
* the event
* @throws IOException
* the io exception
*/
public void submit(String body, GHPullRequestReviewEvent event) throws IOException {
owner.root()
.createRequest()
.method("POST")
.with("body", body)
.with("event", event.action())
.withUrlPath(getApiRoute() + "/events")
.fetchInto(this);
this.body = body;
this.state = event.toState();
}
/**
* Deletes this review.
*
* @throws IOException
* the io exception
*/
public void delete() throws IOException {
owner.root().createRequest().method("DELETE").withUrlPath(getApiRoute()).send();
}
/**
* Dismisses this review.
*
* @param message
* the message
* @throws IOException
* the io exception
*/
public void dismiss(String message) throws IOException {
owner.root()
.createRequest()
.method("PUT")
.with("message", message)
.withUrlPath(getApiRoute() + "/dismissals")
.send();
state = GHPullRequestReviewState.DISMISSED;
}
/**
* Obtains all the review comments associated with this pull request review.
*
* @return the paged iterable
* @throws IOException
* the io exception
*/
public PagedIterable<GHPullRequestReviewComment> listReviewComments() throws IOException {
return owner.root()
.createRequest()
.withUrlPath(getApiRoute() + "/comments")
.toIterable(GHPullRequestReviewComment[].class, item -> item.wrapUp(owner));
}
}