-
Notifications
You must be signed in to change notification settings - Fork 142
/
Copy pathRepo.java
362 lines (332 loc) · 10.1 KB
/
Repo.java
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
/**
* Copyright (c) 2013-2018, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met: 1) Redistributions of source code must retain the above
* copyright notice, this list of conditions and the following
* disclaimer. 2) Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution. 3) Neither the name of the jcabi.com nor
* the names of its contributors may be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
* NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.jcabi.github;
import com.jcabi.aspects.Immutable;
import com.jcabi.aspects.Loggable;
import java.io.IOException;
import java.util.Set;
import javax.json.JsonObject;
import javax.json.JsonValue;
import lombok.EqualsAndHashCode;
import lombok.ToString;
/**
* Github repository.
* @author Yegor Bugayenko ([email protected])
* @version $Id$
* @since 0.1
* @checkstyle MultipleStringLiterals (500 lines)
*/
@Immutable
@SuppressWarnings({ "PMD.TooManyMethods", "PMD.ExcessivePublicCount" })
public interface Repo extends JsonReadable, JsonPatchable, Comparable<Repo> {
/**
* Get its owner.
* @return Github
*/
Github github();
/**
* Get its coordinates.
* @return Coordinates
*/
Coordinates coordinates();
/**
* Iterate issues.
* @return Issues
*/
Issues issues();
/**
* Iterate milestones.
* @return Milestones
* @since 0.7
*/
Milestones milestones();
/**
* Pull requests.
* @return Pulls
*/
Pulls pulls();
/**
* Hooks.
* @return Hooks
* @since 0.8
*/
Hooks hooks();
/**
* Get all issue events for the repository.
* @return Issue events
* @see <a href="http://developer.github.com/v3/issues/events/#list-events-for-a-repository">List Events for a Repository</a>
*/
IssueEvents issueEvents();
/**
* Get all labels of the repo.
* @return Labels
* @see <a href="http://developer.github.com/v3/issues/labels/">Labels API</a>
*/
Labels labels();
/**
* Get all available assignees to which issues may be assigned.
* @return Assignees
* @see <a href="http://developer.github.com/v3/issues/assignees/">Assignees API</a>
*/
Assignees assignees();
/**
* Get all releases of the repo.
* @return Releases
* @see <a href="http://developer.github.com/v3/repos/releases/">Releases API</a>
*/
Releases releases();
/**
* Get all deploy keys of the repo.
* @return DeployKeys
* @see <a href="http://developer.github.com/v3/repos/keys/">Deploy Keys API</a>
*/
DeployKeys keys();
/**
* Get all forks of the repo.
* @return Forks
* @see <a href="http://developer.github.com/v3/repos/forks/">Forks API</a>
*/
Forks forks();
/**
* Get repository's commits.
* @return Commits
* @see <a href="http://developer.github.com/v3/repos/commits/">Commits API</a>
*/
RepoCommits commits();
/**
* Get repository's branches.
* @return Branches
* @see <a href="https://developer.github.com/v3/repos/#list-branches">List Branches API</a>
*/
Branches branches();
/**
* Get all contents of the repo.
* @return Contents
* @see <a href="http://developer.github.com/v3/repos/contents/">Contents API</a>
*/
Contents contents();
/**
* Gel all collaborators.
* @return Collaborators
* @see <a href="http://developer.github.com/v3/repos/collaborators/">Collaborators API</a>
*/
Collaborators collaborators();
/**
* Get the Git API entry point.
* @return Collaborators
* @see <a href="http://developer.github.com/v3/git/">Git Data API</a>
*/
Git git();
/**
* Get Starring API.
* @return Stars
* @see <a href="https://developer.github.com/v3/activity/starring/">Starring API</a>
* @since 0.15
*/
Stars stars();
/**
* Get Notifications API.
* @return Stars
* @see <a href="https://developer.github.com/v3/activity/notifications/">Notifications API</a>
* @since 0.15
*/
Notifications notifications();
/**
* Get languages for the specified repository.
* @return Languages
* @throws IOException If there is any I/O problem
* @see <a href="https://developer.github.com/v3/repos/#list-languages">List languages</a>
* @since 0.15
*/
Iterable<Language> languages() throws IOException;
/**
* Get all invitees to this repository
* @return an iterable instance of all invitees to this repository in string form
* @throws IOException If there is any I/O problem
*/
public Iterable<String> invitees() throws IOException;
/**
* Smart Repo with extra features.
*/
@Immutable
@ToString
@Loggable(Loggable.DEBUG)
@EqualsAndHashCode(of = { "repo", "jsn" })
final class Smart implements Repo {
/**
* Encapsulated Repo.
*/
private final transient Repo repo;
/**
* SmartJson object for convenient JSON parsing.
*/
private final transient SmartJson jsn;
/**
* Public ctor.
* @param rep Repo
*/
public Smart(
final Repo rep
) {
this.repo = rep;
this.jsn = new SmartJson(rep);
}
/**
* Does this Repo actually exist in Github?
* @return True if it exists, false otherwise.
* @throws IOException If there is any I/O problem.
*/
public boolean exists() throws IOException {
return new Existence(this.repo).check();
}
/**
* Does it have a description.
* @return TRUE if description is present
* @throws IOException If there is any I/O problem
*/
public boolean hasDescription() throws IOException {
return this.jsn.hasNotNull("description");
}
/**
* Get its description.
* @return Description
* @throws IOException If there is any I/O problem
*/
public String description() throws IOException {
return this.jsn.text("description");
}
/**
* Is it private?.
* @return TRUE if it's private
* @throws IOException If there is any I/O problem
*/
public boolean isPrivate() throws IOException {
return Boolean.parseBoolean(
this.json()
.getOrDefault("private", JsonValue.FALSE)
.toString().replace("\"", "")
);
}
@Override
public Github github() {
return this.repo.github();
}
@Override
public Coordinates coordinates() {
return this.repo.coordinates();
}
@Override
public Issues issues() {
return this.repo.issues();
}
@Override
public Milestones milestones() {
return this.repo.milestones();
}
@Override
public Pulls pulls() {
return this.repo.pulls();
}
@Override
public Hooks hooks() {
return this.repo.hooks();
}
@Override
public IssueEvents issueEvents() {
return this.repo.issueEvents();
}
@Override
public Labels labels() {
return this.repo.labels();
}
@Override
public Assignees assignees() {
return this.repo.assignees();
}
@Override
public Releases releases() {
return this.repo.releases();
}
@Override
public DeployKeys keys() {
return this.repo.keys();
}
@Override
public Forks forks() {
return this.repo.forks();
}
@Override
public Contents contents() {
return this.repo.contents();
}
@Override
public Collaborators collaborators() {
return this.repo.collaborators();
}
@Override
public Git git() {
return this.repo.git();
}
@Override
public Stars stars() {
return this.repo.stars();
}
@Override
public Notifications notifications() {
return this.repo.notifications();
}
@Override
public Iterable<Language> languages() throws IOException {
return this.repo.languages();
}
@Override
public void patch(
final JsonObject json
) throws IOException {
this.repo.patch(json);
}
@Override
public RepoCommits commits() {
return this.repo.commits();
}
@Override
public Branches branches() {
return this.repo.branches();
}
@Override
public JsonObject json() throws IOException {
return this.repo.json();
}
@Override
public int compareTo(final Repo repos) {
return this.repo.compareTo(repos);
}
}
}