forked from spotify/github-java-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIssueClient.java
More file actions
140 lines (124 loc) · 4.47 KB
/
IssueClient.java
File metadata and controls
140 lines (124 loc) · 4.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/*-
* -\-\-
* github-api
* --
* Copyright (C) 2016 - 2020 Spotify AB
* --
* 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.spotify.github.v3.clients;
import static com.spotify.github.v3.clients.GitHubClient.IGNORE_RESPONSE_CONSUMER;
import static com.spotify.github.v3.clients.GitHubClient.LIST_COMMENT_TYPE_REFERENCE;
import com.google.common.collect.ImmutableMap;
import com.spotify.github.async.AsyncPage;
import com.spotify.github.v3.comment.Comment;
import com.spotify.github.v3.issues.Issue;
import java.lang.invoke.MethodHandles;
import java.util.Iterator;
import java.util.concurrent.CompletableFuture;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/** Issue API client */
public class IssueClient {
static final String COMMENTS_URI_NUMBER_TEMPLATE = "/repos/%s/%s/issues/%s/comments";
static final String COMMENTS_URI_TEMPLATE = "/repos/%s/%s/issues/comments";
static final String COMMENTS_URI_ID_TEMPLATE = "/repos/%s/%s/issues/comments/%s";
static final String ISSUES_URI_ID_TEMPLATE = "/repos/%s/%s/issues/%s";
private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
private final GitHubClient github;
private final String owner;
private final String repo;
IssueClient(final GitHubClient github, final String owner, final String repo) {
this.github = github;
this.owner = owner;
this.repo = repo;
}
static IssueClient create(final GitHubClient github, final String owner, final String repo) {
return new IssueClient(github, owner, repo);
}
/**
* List repository comments.
*
* @return comments
*/
public Iterator<AsyncPage<Comment>> listComments() {
return listComments(String.format(COMMENTS_URI_TEMPLATE, owner, repo));
}
/**
* List given issue number comments.
*
* @param number issue number
* @return comments
*/
public Iterator<AsyncPage<Comment>> listComments(final int number) {
return listComments(String.format(COMMENTS_URI_NUMBER_TEMPLATE, owner, repo, number));
}
/**
* Get a specific comment.
*
* @param id comment id
* @return a comment
*/
public CompletableFuture<Comment> getComment(final int id) {
final String path = String.format(COMMENTS_URI_ID_TEMPLATE, owner, repo, id);
log.info("Fetching issue comments from " + path);
return github.request(path, Comment.class);
}
/**
* Create a comment for a given issue number.
*
* @param number issue number
* @param body comment content
* @return the Comment that was just created
*/
public CompletableFuture<Comment> createComment(final int number, final String body) {
final String path = String.format(COMMENTS_URI_NUMBER_TEMPLATE, owner, repo, number);
final String requestBody = github.json().toJsonUnchecked(ImmutableMap.of("body", body));
return github.post(path, requestBody, Comment.class);
}
/**
* Edit a specific comment.
*
* @param id comment id
* @param body new comment content
*/
public CompletableFuture<Void> editComment(final int id, final String body) {
final String path = String.format(COMMENTS_URI_ID_TEMPLATE, owner, repo, id);
return github
.patch(path, github.json().toJsonUnchecked(ImmutableMap.of("body", body)))
.thenAccept(IGNORE_RESPONSE_CONSUMER);
}
/**
* Delete a comment.
*
* @param id comment id
*/
public CompletableFuture<Void> deleteComment(final int id) {
return github
.delete(String.format(COMMENTS_URI_ID_TEMPLATE, owner, repo, id))
.thenAccept(IGNORE_RESPONSE_CONSUMER);
}
private Iterator<AsyncPage<Comment>> listComments(final String path) {
return new GithubPageIterator<>(new GithubPage<>(github, path, LIST_COMMENT_TYPE_REFERENCE));
}
/***
* Get issue by id
*
* @param id
* @return the Issue for the given id if exists.
*/
public CompletableFuture<Issue> getIssue(final int id) {
return github.request(String.format(ISSUES_URI_ID_TEMPLATE, owner, repo, id), Issue.class);
}
}