mirror of
https://github.com/jlengrand/github-api.git
synced 2026-04-04 08:21:23 +00:00
728 lines
26 KiB
HTML
728 lines
26 KiB
HTML
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>GHIssue.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">GitHub API for Java</a> > <a href="index.source.html" class="el_package">org.kohsuke.github</a> > <span class="el_source">GHIssue.java</span></div><h1>GHIssue.java</h1><pre class="source lang-java linenums">/*
|
|
* The MIT License
|
|
*
|
|
* Copyright (c) 2011, Eric Maupin, Kohsuke Kawaguchi
|
|
*
|
|
* 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 com.infradna.tool.bridge_method_injector.WithBridgeMethods;
|
|
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
|
import java.io.IOException;
|
|
import java.net.URL;
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.Collection;
|
|
import java.util.Collections;
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
import java.util.Locale;
|
|
import java.util.Objects;
|
|
|
|
import static org.kohsuke.github.Previews.SQUIRREL_GIRL;
|
|
|
|
/**
|
|
* Represents an issue on GitHub.
|
|
*
|
|
* @author Eric Maupin
|
|
* @author Kohsuke Kawaguchi
|
|
* @see GHRepository#getIssue(int) GHRepository#getIssue(int)
|
|
* @see GitHub#searchIssues() GitHub#searchIssues()
|
|
* @see GHIssueSearchBuilder
|
|
*/
|
|
<span class="fc" id="L53">public class GHIssue extends GHObject implements Reactable {</span>
|
|
private static final String ASSIGNEES = "assignees";
|
|
|
|
GitHub root;
|
|
GHRepository owner;
|
|
|
|
// API v3
|
|
protected GHUser assignee; // not sure what this field is now that 'assignees' exist
|
|
protected GHUser[] assignees;
|
|
protected String state;
|
|
protected int number;
|
|
protected String closed_at;
|
|
protected int comments;
|
|
@SkipFromToString
|
|
protected String body;
|
|
protected List<GHLabel> labels;
|
|
protected GHUser user;
|
|
protected String title, html_url;
|
|
protected GHIssue.PullRequest pull_request;
|
|
protected GHMilestone milestone;
|
|
protected GHUser closed_by;
|
|
protected boolean locked;
|
|
|
|
GHIssue wrap(GHRepository owner) {
|
|
<span class="fc" id="L77"> this.owner = owner;</span>
|
|
<span class="fc bfc" id="L78" title="All 2 branches covered."> if (milestone != null)</span>
|
|
<span class="fc" id="L79"> milestone.wrap(owner);</span>
|
|
<span class="fc" id="L80"> return wrap(owner.root);</span>
|
|
}
|
|
|
|
GHIssue wrap(GitHub root) {
|
|
<span class="fc" id="L84"> this.root = root;</span>
|
|
<span class="fc bfc" id="L85" title="All 2 branches covered."> if (assignee != null)</span>
|
|
<span class="fc" id="L86"> assignee.wrapUp(root);</span>
|
|
<span class="fc bfc" id="L87" title="All 2 branches covered."> if (assignees != null)</span>
|
|
<span class="fc" id="L88"> GHUser.wrap(assignees, root);</span>
|
|
<span class="pc bpc" id="L89" title="1 of 2 branches missed."> if (user != null)</span>
|
|
<span class="fc" id="L90"> user.wrapUp(root);</span>
|
|
<span class="fc bfc" id="L91" title="All 2 branches covered."> if (closed_by != null)</span>
|
|
<span class="fc" id="L92"> closed_by.wrapUp(root);</span>
|
|
<span class="fc" id="L93"> return this;</span>
|
|
}
|
|
|
|
/**
|
|
* Repository to which the issue belongs.
|
|
*
|
|
* @return the repository
|
|
*/
|
|
public GHRepository getRepository() {
|
|
<span class="fc" id="L102"> return owner;</span>
|
|
}
|
|
|
|
/**
|
|
* The description of this pull request.
|
|
*
|
|
* @return the body
|
|
*/
|
|
public String getBody() {
|
|
<span class="fc" id="L111"> return body;</span>
|
|
}
|
|
|
|
/**
|
|
* ID.
|
|
*
|
|
* @return the number
|
|
*/
|
|
public int getNumber() {
|
|
<span class="fc" id="L120"> return number;</span>
|
|
}
|
|
|
|
/**
|
|
* The HTML page of this issue, like https://github.com/jenkinsci/jenkins/issues/100
|
|
*/
|
|
public URL getHtmlUrl() {
|
|
<span class="nc" id="L127"> return GitHubClient.parseURL(html_url);</span>
|
|
}
|
|
|
|
/**
|
|
* Gets title.
|
|
*
|
|
* @return the title
|
|
*/
|
|
public String getTitle() {
|
|
<span class="fc" id="L136"> return title;</span>
|
|
}
|
|
|
|
/**
|
|
* Is locked boolean.
|
|
*
|
|
* @return the boolean
|
|
*/
|
|
public boolean isLocked() {
|
|
<span class="nc" id="L145"> return locked;</span>
|
|
}
|
|
|
|
/**
|
|
* Gets state.
|
|
*
|
|
* @return the state
|
|
*/
|
|
public GHIssueState getState() {
|
|
<span class="fc" id="L154"> return Enum.valueOf(GHIssueState.class, state.toUpperCase(Locale.ENGLISH));</span>
|
|
}
|
|
|
|
/**
|
|
* Gets labels.
|
|
*
|
|
* @return the labels
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public Collection<GHLabel> getLabels() throws IOException {
|
|
<span class="pc bpc" id="L165" title="1 of 2 branches missed."> if (labels == null) {</span>
|
|
<span class="nc" id="L166"> return Collections.emptyList();</span>
|
|
}
|
|
<span class="fc" id="L168"> return Collections.unmodifiableList(labels);</span>
|
|
}
|
|
|
|
/**
|
|
* Gets closed at.
|
|
*
|
|
* @return the closed at
|
|
*/
|
|
public Date getClosedAt() {
|
|
<span class="nc" id="L177"> return GitHubClient.parseDate(closed_at);</span>
|
|
}
|
|
|
|
/**
|
|
* Gets api url.
|
|
*
|
|
* @return API URL of this object.
|
|
* @deprecated use {@link #getUrl()}
|
|
*/
|
|
@Deprecated
|
|
public URL getApiURL() {
|
|
<span class="nc" id="L188"> return getUrl();</span>
|
|
}
|
|
|
|
/**
|
|
* Lock.
|
|
*
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public void lock() throws IOException {
|
|
<span class="nc" id="L198"> root.createRequest().method("PUT").withUrlPath(getApiRoute() + "/lock").send();</span>
|
|
<span class="nc" id="L199"> }</span>
|
|
|
|
/**
|
|
* Unlock.
|
|
*
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public void unlock() throws IOException {
|
|
<span class="nc" id="L208"> root.createRequest().method("PUT").withUrlPath(getApiRoute() + "/lock").send();</span>
|
|
<span class="nc" id="L209"> }</span>
|
|
|
|
/**
|
|
* Updates the issue by adding a comment.
|
|
*
|
|
* @param message
|
|
* the message
|
|
* @return Newly posted comment.
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
@WithBridgeMethods(void.class)
|
|
public GHIssueComment comment(String message) throws IOException {
|
|
<span class="fc" id="L222"> GHIssueComment r = root.createRequest()</span>
|
|
<span class="fc" id="L223"> .method("POST")</span>
|
|
<span class="fc" id="L224"> .with("body", message)</span>
|
|
<span class="fc" id="L225"> .withUrlPath(getIssuesApiRoute() + "/comments")</span>
|
|
<span class="fc" id="L226"> .fetch(GHIssueComment.class);</span>
|
|
<span class="fc" id="L227"> return r.wrapUp(this);</span>
|
|
}
|
|
|
|
private void edit(String key, Object value) throws IOException {
|
|
<span class="fc" id="L231"> root.createRequest().with(key, value).method("PATCH").withUrlPath(getApiRoute()).send();</span>
|
|
<span class="fc" id="L232"> }</span>
|
|
|
|
/**
|
|
* Identical to edit(), but allows null for the value.
|
|
*/
|
|
private void editNullable(String key, Object value) throws IOException {
|
|
<span class="fc" id="L238"> root.createRequest().withNullable(key, value).method("PATCH").withUrlPath(getApiRoute()).send();</span>
|
|
<span class="fc" id="L239"> }</span>
|
|
|
|
private void editIssue(String key, Object value) throws IOException {
|
|
<span class="fc" id="L242"> root.createRequest().with(key, value).method("PATCH").withUrlPath(getIssuesApiRoute()).send();</span>
|
|
<span class="fc" id="L243"> }</span>
|
|
|
|
/**
|
|
* Closes this issue.
|
|
*
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public void close() throws IOException {
|
|
<span class="fc" id="L252"> edit("state", "closed");</span>
|
|
<span class="fc" id="L253"> }</span>
|
|
|
|
/**
|
|
* Reopens this issue.
|
|
*
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public void reopen() throws IOException {
|
|
<span class="nc" id="L262"> edit("state", "open");</span>
|
|
<span class="nc" id="L263"> }</span>
|
|
|
|
/**
|
|
* Sets title.
|
|
*
|
|
* @param title
|
|
* the title
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public void setTitle(String title) throws IOException {
|
|
<span class="nc" id="L274"> edit("title", title);</span>
|
|
<span class="nc" id="L275"> }</span>
|
|
|
|
/**
|
|
* Sets body.
|
|
*
|
|
* @param body
|
|
* the body
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public void setBody(String body) throws IOException {
|
|
<span class="nc" id="L286"> edit("body", body);</span>
|
|
<span class="nc" id="L287"> }</span>
|
|
|
|
/**
|
|
* Sets the milestone for this issue.
|
|
*
|
|
* @param milestone
|
|
* The milestone to assign this issue to. Use null to remove the milestone for this issue.
|
|
* @throws IOException
|
|
* The io exception
|
|
*/
|
|
public void setMilestone(GHMilestone milestone) throws IOException {
|
|
<span class="fc bfc" id="L298" title="All 2 branches covered."> if (milestone == null) {</span>
|
|
<span class="fc" id="L299"> editNullable("milestone", null);</span>
|
|
} else {
|
|
<span class="fc" id="L301"> edit("milestone", milestone.getNumber());</span>
|
|
}
|
|
<span class="fc" id="L303"> }</span>
|
|
|
|
/**
|
|
* Assign to.
|
|
*
|
|
* @param user
|
|
* the user
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public void assignTo(GHUser user) throws IOException {
|
|
<span class="fc" id="L314"> setAssignees(user);</span>
|
|
<span class="fc" id="L315"> }</span>
|
|
|
|
/**
|
|
* Sets labels.
|
|
*
|
|
* @param labels
|
|
* the labels
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public void setLabels(String... labels) throws IOException {
|
|
<span class="fc" id="L326"> editIssue("labels", labels);</span>
|
|
<span class="fc" id="L327"> }</span>
|
|
|
|
/**
|
|
* Adds labels to the issue.
|
|
*
|
|
* @param names
|
|
* Names of the label
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public void addLabels(String... names) throws IOException {
|
|
<span class="fc" id="L338"> _addLabels(Arrays.asList(names));</span>
|
|
<span class="fc" id="L339"> }</span>
|
|
|
|
/**
|
|
* Add labels.
|
|
*
|
|
* @param labels
|
|
* the labels
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public void addLabels(GHLabel... labels) throws IOException {
|
|
<span class="nc" id="L350"> addLabels(Arrays.asList(labels));</span>
|
|
<span class="nc" id="L351"> }</span>
|
|
|
|
/**
|
|
* Add labels.
|
|
*
|
|
* @param labels
|
|
* the labels
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public void addLabels(Collection<GHLabel> labels) throws IOException {
|
|
<span class="nc" id="L362"> _addLabels(GHLabel.toNames(labels));</span>
|
|
<span class="nc" id="L363"> }</span>
|
|
|
|
private void _addLabels(Collection<String> names) throws IOException {
|
|
<span class="fc" id="L366"> List<String> newLabels = new ArrayList<String>();</span>
|
|
|
|
<span class="pc bpc" id="L368" title="1 of 2 branches missed."> for (GHLabel label : getLabels()) {</span>
|
|
<span class="nc" id="L369"> newLabels.add(label.getName());</span>
|
|
<span class="nc" id="L370"> }</span>
|
|
<span class="fc bfc" id="L371" title="All 2 branches covered."> for (String name : names) {</span>
|
|
<span class="pc bpc" id="L372" title="1 of 2 branches missed."> if (!newLabels.contains(name)) {</span>
|
|
<span class="fc" id="L373"> newLabels.add(name);</span>
|
|
}
|
|
<span class="fc" id="L375"> }</span>
|
|
<span class="fc" id="L376"> setLabels(newLabels.toArray(new String[0]));</span>
|
|
<span class="fc" id="L377"> }</span>
|
|
|
|
/**
|
|
* Remove a given label by name from this issue.
|
|
*
|
|
* @param names
|
|
* the names
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public void removeLabels(String... names) throws IOException {
|
|
<span class="nc" id="L388"> _removeLabels(Arrays.asList(names));</span>
|
|
<span class="nc" id="L389"> }</span>
|
|
|
|
/**
|
|
* Remove labels.
|
|
*
|
|
* @param labels
|
|
* the labels
|
|
* @throws IOException
|
|
* the io exception
|
|
* @see #removeLabels(String...) #removeLabels(String...)
|
|
*/
|
|
public void removeLabels(GHLabel... labels) throws IOException {
|
|
<span class="nc" id="L401"> removeLabels(Arrays.asList(labels));</span>
|
|
<span class="nc" id="L402"> }</span>
|
|
|
|
/**
|
|
* Remove labels.
|
|
*
|
|
* @param labels
|
|
* the labels
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public void removeLabels(Collection<GHLabel> labels) throws IOException {
|
|
<span class="nc" id="L413"> _removeLabels(GHLabel.toNames(labels));</span>
|
|
<span class="nc" id="L414"> }</span>
|
|
|
|
private void _removeLabels(Collection<String> names) throws IOException {
|
|
<span class="nc" id="L417"> List<String> newLabels = new ArrayList<String>();</span>
|
|
|
|
<span class="nc bnc" id="L419" title="All 2 branches missed."> for (GHLabel l : getLabels()) {</span>
|
|
<span class="nc bnc" id="L420" title="All 2 branches missed."> if (!names.contains(l.getName())) {</span>
|
|
<span class="nc" id="L421"> newLabels.add(l.getName());</span>
|
|
}
|
|
<span class="nc" id="L423"> }</span>
|
|
|
|
<span class="nc" id="L425"> setLabels(newLabels.toArray(new String[0]));</span>
|
|
<span class="nc" id="L426"> }</span>
|
|
|
|
/**
|
|
* Obtains all the comments associated with this issue.
|
|
*
|
|
* @return the comments
|
|
* @throws IOException
|
|
* the io exception
|
|
* @see #listComments() #listComments()
|
|
*/
|
|
public List<GHIssueComment> getComments() throws IOException {
|
|
<span class="fc" id="L437"> return listComments().toList();</span>
|
|
}
|
|
|
|
/**
|
|
* Obtains all the comments associated with this issue.
|
|
*
|
|
* @return the paged iterable
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public PagedIterable<GHIssueComment> listComments() throws IOException {
|
|
<span class="fc" id="L448"> return root.createRequest()</span>
|
|
<span class="fc" id="L449"> .withUrlPath(getIssuesApiRoute() + "/comments")</span>
|
|
<span class="fc" id="L450"> .toIterable(GHIssueComment[].class, item -> item.wrapUp(this));</span>
|
|
}
|
|
|
|
@Preview
|
|
@Deprecated
|
|
public GHReaction createReaction(ReactionContent content) throws IOException {
|
|
<span class="fc" id="L456"> return root.createRequest()</span>
|
|
<span class="fc" id="L457"> .method("POST")</span>
|
|
<span class="fc" id="L458"> .withPreview(SQUIRREL_GIRL)</span>
|
|
<span class="fc" id="L459"> .with("content", content.getContent())</span>
|
|
<span class="fc" id="L460"> .withUrlPath(getApiRoute() + "/reactions")</span>
|
|
<span class="fc" id="L461"> .fetch(GHReaction.class)</span>
|
|
<span class="fc" id="L462"> .wrap(root);</span>
|
|
}
|
|
|
|
@Preview
|
|
@Deprecated
|
|
public PagedIterable<GHReaction> listReactions() {
|
|
<span class="fc" id="L468"> return root.createRequest()</span>
|
|
<span class="fc" id="L469"> .withPreview(SQUIRREL_GIRL)</span>
|
|
<span class="fc" id="L470"> .withUrlPath(getApiRoute() + "/reactions")</span>
|
|
<span class="fc" id="L471"> .toIterable(GHReaction[].class, item -> item.wrap(root));</span>
|
|
}
|
|
|
|
/**
|
|
* Add assignees.
|
|
*
|
|
* @param assignees
|
|
* the assignees
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public void addAssignees(GHUser... assignees) throws IOException {
|
|
<span class="nc" id="L483"> addAssignees(Arrays.asList(assignees));</span>
|
|
<span class="nc" id="L484"> }</span>
|
|
|
|
/**
|
|
* Add assignees.
|
|
*
|
|
* @param assignees
|
|
* the assignees
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public void addAssignees(Collection<GHUser> assignees) throws IOException {
|
|
<span class="nc" id="L495"> root.createRequest()</span>
|
|
<span class="nc" id="L496"> .method("POST")</span>
|
|
<span class="nc" id="L497"> .with(ASSIGNEES, getLogins(assignees))</span>
|
|
<span class="nc" id="L498"> .withUrlPath(getIssuesApiRoute() + "/assignees")</span>
|
|
<span class="nc" id="L499"> .fetchInto(this);</span>
|
|
<span class="nc" id="L500"> }</span>
|
|
|
|
/**
|
|
* Sets assignees.
|
|
*
|
|
* @param assignees
|
|
* the assignees
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public void setAssignees(GHUser... assignees) throws IOException {
|
|
<span class="fc" id="L511"> setAssignees(Arrays.asList(assignees));</span>
|
|
<span class="fc" id="L512"> }</span>
|
|
|
|
/**
|
|
* Sets assignees.
|
|
*
|
|
* @param assignees
|
|
* the assignees
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public void setAssignees(Collection<GHUser> assignees) throws IOException {
|
|
<span class="fc" id="L523"> root.createRequest()</span>
|
|
<span class="fc" id="L524"> .method("PATCH")</span>
|
|
<span class="fc" id="L525"> .with(ASSIGNEES, getLogins(assignees))</span>
|
|
<span class="fc" id="L526"> .withUrlPath(getIssuesApiRoute())</span>
|
|
<span class="fc" id="L527"> .send();</span>
|
|
<span class="fc" id="L528"> }</span>
|
|
|
|
/**
|
|
* Remove assignees.
|
|
*
|
|
* @param assignees
|
|
* the assignees
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public void removeAssignees(GHUser... assignees) throws IOException {
|
|
<span class="nc" id="L539"> removeAssignees(Arrays.asList(assignees));</span>
|
|
<span class="nc" id="L540"> }</span>
|
|
|
|
/**
|
|
* Remove assignees.
|
|
*
|
|
* @param assignees
|
|
* the assignees
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public void removeAssignees(Collection<GHUser> assignees) throws IOException {
|
|
<span class="nc" id="L551"> root.createRequest()</span>
|
|
<span class="nc" id="L552"> .method("DELETE")</span>
|
|
<span class="nc" id="L553"> .with(ASSIGNEES, getLogins(assignees))</span>
|
|
<span class="nc" id="L554"> .inBody()</span>
|
|
<span class="nc" id="L555"> .withUrlPath(getIssuesApiRoute() + "/assignees")</span>
|
|
<span class="nc" id="L556"> .fetchInto(this);</span>
|
|
<span class="nc" id="L557"> }</span>
|
|
|
|
/**
|
|
* Gets api route.
|
|
*
|
|
* @return the api route
|
|
*/
|
|
protected String getApiRoute() {
|
|
<span class="fc" id="L565"> return getIssuesApiRoute();</span>
|
|
}
|
|
|
|
/**
|
|
* Gets issues api route.
|
|
*
|
|
* @return the issues api route
|
|
*/
|
|
protected String getIssuesApiRoute() {
|
|
<span class="fc bfc" id="L574" title="All 2 branches covered."> if (owner == null) {</span>
|
|
// Issues returned from search to do not have an owner. Attempt to use url.
|
|
<span class="fc" id="L576"> final URL url = Objects.requireNonNull(getUrl(), "Missing instance URL!");</span>
|
|
<span class="fc" id="L577"> return StringUtils.prependIfMissing(url.toString().replace(root.getApiUrl(), ""), "/");</span>
|
|
}
|
|
<span class="fc" id="L579"> return "/repos/" + owner.getOwnerName() + "/" + owner.getName() + "/issues/" + number;</span>
|
|
}
|
|
|
|
/**
|
|
* Gets assignee.
|
|
*
|
|
* @return the assignee
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public GHUser getAssignee() throws IOException {
|
|
<span class="fc" id="L590"> return root.intern(assignee);</span>
|
|
}
|
|
|
|
/**
|
|
* Gets assignees.
|
|
*
|
|
* @return the assignees
|
|
*/
|
|
public List<GHUser> getAssignees() {
|
|
<span class="nc" id="L599"> return Collections.unmodifiableList(Arrays.asList(assignees));</span>
|
|
}
|
|
|
|
/**
|
|
* User who submitted the issue.
|
|
*
|
|
* @return the user
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public GHUser getUser() throws IOException {
|
|
<span class="fc" id="L610"> return root.intern(user);</span>
|
|
}
|
|
|
|
/**
|
|
* Reports who has closed the issue.
|
|
*
|
|
* <p>
|
|
* Note that GitHub doesn't always seem to report this information even for an issue that's already closed. See
|
|
* https://github.com/kohsuke/github-api/issues/60.
|
|
*
|
|
* @return the closed by
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public GHUser getClosedBy() throws IOException {
|
|
<span class="nc bnc" id="L625" title="All 2 branches missed."> if (!"closed".equals(state))</span>
|
|
<span class="nc" id="L626"> return null;</span>
|
|
|
|
// TODO
|
|
/*
|
|
* if (closed_by==null) { closed_by = owner.getIssue(number).getClosed_by(); }
|
|
*/
|
|
<span class="nc" id="L632"> return root.intern(closed_by);</span>
|
|
}
|
|
|
|
/**
|
|
* Gets comments count.
|
|
*
|
|
* @return the comments count
|
|
*/
|
|
public int getCommentsCount() {
|
|
<span class="fc" id="L641"> return comments;</span>
|
|
}
|
|
|
|
/**
|
|
* Returns non-null if this issue is a shadow of a pull request.
|
|
*
|
|
* @return the pull request
|
|
*/
|
|
public PullRequest getPullRequest() {
|
|
<span class="nc" id="L650"> return pull_request;</span>
|
|
}
|
|
|
|
/**
|
|
* Is pull request boolean.
|
|
*
|
|
* @return the boolean
|
|
*/
|
|
public boolean isPullRequest() {
|
|
<span class="nc bnc" id="L659" title="All 2 branches missed."> return pull_request != null;</span>
|
|
}
|
|
|
|
/**
|
|
* Gets milestone.
|
|
*
|
|
* @return the milestone
|
|
*/
|
|
public GHMilestone getMilestone() {
|
|
<span class="fc" id="L668"> return milestone;</span>
|
|
}
|
|
|
|
/**
|
|
* The type PullRequest.
|
|
*/
|
|
@SuppressFBWarnings(value = { "UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD", "UWF_UNWRITTEN_FIELD" },
|
|
justification = "JSON API")
|
|
<span class="fc" id="L676"> public static class PullRequest {</span>
|
|
private String diff_url, patch_url, html_url;
|
|
|
|
/**
|
|
* Gets diff url.
|
|
*
|
|
* @return the diff url
|
|
*/
|
|
public URL getDiffUrl() {
|
|
<span class="nc" id="L685"> return GitHubClient.parseURL(diff_url);</span>
|
|
}
|
|
|
|
/**
|
|
* Gets patch url.
|
|
*
|
|
* @return the patch url
|
|
*/
|
|
public URL getPatchUrl() {
|
|
<span class="nc" id="L694"> return GitHubClient.parseURL(patch_url);</span>
|
|
}
|
|
|
|
/**
|
|
* Gets url.
|
|
*
|
|
* @return the url
|
|
*/
|
|
public URL getUrl() {
|
|
<span class="nc" id="L703"> return GitHubClient.parseURL(html_url);</span>
|
|
}
|
|
}
|
|
|
|
protected static List<String> getLogins(Collection<GHUser> users) {
|
|
<span class="fc" id="L708"> List<String> names = new ArrayList<String>(users.size());</span>
|
|
<span class="fc bfc" id="L709" title="All 2 branches covered."> for (GHUser a : users) {</span>
|
|
<span class="fc" id="L710"> names.add(a.getLogin());</span>
|
|
<span class="fc" id="L711"> }</span>
|
|
<span class="fc" id="L712"> return names;</span>
|
|
}
|
|
|
|
/**
|
|
* Lists events for this issue. See https://developer.github.com/v3/issues/events/
|
|
*
|
|
* @return the paged iterable
|
|
* @throws IOException
|
|
* the io exception
|
|
*/
|
|
public PagedIterable<GHIssueEvent> listEvents() throws IOException {
|
|
<span class="fc" id="L723"> return root.createRequest()</span>
|
|
<span class="fc" id="L724"> .withUrlPath(owner.getApiTailUrl(String.format("/issues/%s/events", number)))</span>
|
|
<span class="fc" id="L725"> .toIterable(GHIssueEvent[].class, item -> item.wrapUp(this));</span>
|
|
}
|
|
}
|
|
</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.5.201910111838</span></div></body></html> |