-
-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathindex.ts
582 lines (550 loc) · 15.3 KB
/
index.ts
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
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
import { VssueAPI } from 'vssue';
import axios, { AxiosInstance, AxiosRequestConfig } from 'axios';
import { buildURL, concatURL, getCleanURL, parseQuery } from '@vssue/utils';
import {
normalizeUser,
normalizeIssue,
normalizeComment,
normalizeReactions,
mapReactionName,
} from './utils';
import {
ResponseAccessToken,
ResponseUser,
ResponseIssue,
ResponseComment,
ResponseReaction,
ResponseSearch,
} from './types';
/**
* Github REST API v3
*
* @see https://developer.github.com/v3/
* @see https://developer.github.com/apps/building-oauth-apps/
*/
export default class GithubV3 implements VssueAPI.Instance {
baseURL: string;
owner: string;
repo: string;
labels: Array<string>;
clientId: string;
clientSecret: string;
state: string;
proxy: string | ((url: string) => string);
$http: AxiosInstance;
constructor({
baseURL = 'https://github.com',
owner,
repo,
labels,
clientId,
clientSecret,
state,
proxy,
}: VssueAPI.Options) {
/* istanbul ignore if */
if (typeof clientSecret === 'undefined' || typeof proxy === 'undefined') {
throw new Error('clientSecret and proxy is required for GitHub V3');
}
this.baseURL = baseURL;
this.owner = owner;
this.repo = repo;
this.labels = labels;
this.clientId = clientId;
this.clientSecret = clientSecret;
this.state = state;
this.proxy = proxy;
this.$http = axios.create({
baseURL:
baseURL === 'https://github.com'
? 'https://api.github.com'
: concatURL(baseURL, 'api/v3'),
headers: {
Accept: 'application/vnd.github.v3+json',
},
});
this.$http.interceptors.response.use(
response => {
if (response.data && response.data.error) {
return Promise.reject(new Error(response.data.error_description));
}
return response;
},
error => {
// 403 rate limit exceeded in OPTIONS request will cause a Network Error
// here we always treat Network Error as 403 rate limit exceeded
// @see https://github.com/axios/axios/issues/838
/* istanbul ignore next */
if (
typeof error.response === 'undefined' &&
error.message === 'Network Error'
) {
error.response = {
status: 403,
};
}
return Promise.reject(error);
}
);
}
/**
* The platform api info
*/
get platform(): VssueAPI.Platform {
return {
name: 'GitHub',
link: this.baseURL,
version: 'v3',
meta: {
reactable: true,
sortable: false,
},
};
}
/**
* Redirect to the authorization page of platform.
*
* @see https://developer.github.com/apps/building-oauth-apps/authorizing-oauth-apps/#1-request-a-users-github-identity
*/
redirectAuth(): void {
window.location.href = buildURL(
concatURL(this.baseURL, 'login/oauth/authorize'),
{
client_id: this.clientId,
redirect_uri: window.location.href,
scope: 'public_repo',
state: this.state,
}
);
}
/**
* Handle authorization.
*
* @see https://developer.github.com/apps/building-oauth-apps/authorizing-oauth-apps/
*
* @remarks
* If the `code` and `state` exist in the query, and the `state` matches, remove them from query, and try to get the access token.
*/
async handleAuth(): Promise<VssueAPI.AccessToken> {
const query = parseQuery(window.location.search);
if (query.code) {
if (query.state !== this.state) {
return null;
}
const code = query.code;
delete query.code;
delete query.state;
const replaceURL =
buildURL(getCleanURL(window.location.href), query) +
window.location.hash;
window.history.replaceState(null, '', replaceURL);
const accessToken = await this.getAccessToken({ code });
return accessToken;
}
return null;
}
/**
* Get user access token via `code`
*
* @see https://developer.github.com/apps/building-oauth-apps/authorizing-oauth-apps/#2-users-are-redirected-back-to-your-site-by-github
*/
async getAccessToken({ code }: { code: string }): Promise<string> {
/**
* access_token api does not support cors
* @see https://github.com/isaacs/github/issues/330
*/
const originalURL = concatURL(this.baseURL, 'login/oauth/access_token');
const proxyURL =
typeof this.proxy === 'function' ? this.proxy(originalURL) : this.proxy;
const { data } = await this.$http.post<ResponseAccessToken>(
proxyURL,
{
client_id: this.clientId,
client_secret: this.clientSecret,
code,
/**
* useless but mentioned in docs
*/
// redirect_uri: window.location.href,
// state: this.state,
},
{
headers: {
Accept: 'application/json',
},
}
);
return data.access_token;
}
/**
* Get the logged-in user with access token.
*
* @see https://developer.github.com/v3/users/#get-the-authenticated-user
*/
async getUser({
accessToken,
}: {
accessToken: VssueAPI.AccessToken;
}): Promise<VssueAPI.User> {
const { data } = await this.$http.get<ResponseUser>('user', {
headers: { Authorization: `token ${accessToken}` },
});
return normalizeUser(data);
}
/**
* Get issue of this page according to the issue id or the issue title
*
* @see https://developer.github.com/v3/issues/#list-issues-for-a-repository
* @see https://developer.github.com/v3/issues/#get-a-single-issue
* @see https://developer.github.com/v3/#pagination
* @see https://developer.github.com/v3/search/#search-issues-and-pull-requests
*/
async getIssue({
accessToken,
issueId,
issueTitle,
}: {
accessToken: VssueAPI.AccessToken;
issueId?: string | number;
issueTitle?: string;
}): Promise<VssueAPI.Issue | null> {
const options: AxiosRequestConfig = {};
if (accessToken) {
options.headers = {
Authorization: `token ${accessToken}`,
};
}
if (issueId) {
try {
options.params = {
// to avoid caching
timestamp: Date.now(),
};
const { data } = await this.$http.get<ResponseIssue>(
`repos/${this.owner}/${this.repo}/issues/${issueId}`,
options
);
return normalizeIssue(data);
} catch (e) {
if (e.response && e.response.status === 404) {
return null;
} else {
throw e;
}
}
} else {
options.params = {
q: [
`"${issueTitle}"`,
`is:issue`,
`in:title`,
`repo:${this.owner}/${this.repo}`,
`is:public`,
...this.labels.map(label => `label:${label}`),
].join(' '),
// to avoid caching
timestamp: Date.now(),
};
const { data } = await this.$http.get<ResponseSearch<ResponseIssue>>(
`search/issues`,
options
);
const issue = data.items
.map(normalizeIssue)
.find(item => item.title === issueTitle);
return issue || null;
}
}
/**
* Create a new issue
*
* @see https://developer.github.com/v3/issues/#create-an-issue
*/
async postIssue({
accessToken,
title,
content,
}: {
accessToken: VssueAPI.AccessToken;
title: string;
content: string;
}): Promise<VssueAPI.Issue> {
const { data } = await this.$http.post<ResponseIssue>(
`repos/${this.owner}/${this.repo}/issues`,
{
title,
body: content,
labels: this.labels,
},
{
headers: { Authorization: `token ${accessToken}` },
}
);
return normalizeIssue(data);
}
/**
* Get comments of this page according to the issue id
*
* @see https://developer.github.com/v3/issues/comments/#list-comments-on-an-issue
* @see https://developer.github.com/v3/#pagination
*
* @remarks
* Github V3 does not support sort for issue comments now.
* Github V3 have to request the parent issue to get the count of comments.
*/
async getComments({
accessToken,
issueId,
query: { page = 1, perPage = 10 /*, sort = 'desc' */ } = {},
}: {
accessToken: VssueAPI.AccessToken;
issueId: string | number;
query?: Partial<VssueAPI.Query>;
}): Promise<VssueAPI.Comments> {
const issueOptions: AxiosRequestConfig = {
params: {
// to avoid caching
timestamp: Date.now(),
},
};
const commentsOptions: AxiosRequestConfig = {
params: {
// pagination
page: page,
per_page: perPage,
/**
* github v3 api does not support sort for issue comments
* have sent feedback to github support
*/
// 'sort': 'created',
// 'direction': sort,
// to avoid caching
timestamp: Date.now(),
},
headers: {
Accept: [
'application/vnd.github.v3.raw+json',
'application/vnd.github.v3.html+json',
'application/vnd.github.squirrel-girl-preview',
],
},
};
if (accessToken) {
issueOptions.headers = {
Authorization: `token ${accessToken}`,
};
commentsOptions.headers.Authorization = `token ${accessToken}`;
}
// github v3 have to get the total count of comments by requesting the issue
const [issueRes, commentsRes] = await Promise.all([
this.$http.get<ResponseIssue>(
`repos/${this.owner}/${this.repo}/issues/${issueId}`,
issueOptions
),
this.$http.get<ResponseComment[]>(
`repos/${this.owner}/${this.repo}/issues/${issueId}/comments`,
commentsOptions
),
]);
// it's annoying that have to get the page and per_page from the `Link` header
const linkHeader = commentsRes.headers.link || null;
/* istanbul ignore next */
const thisPage = /rel="next"/.test(linkHeader)
? Number(linkHeader.replace(/^.*[^_]page=(\d*).*rel="next".*$/, '$1')) - 1
: /rel="prev"/.test(linkHeader)
? Number(linkHeader.replace(/^.*[^_]page=(\d*).*rel="prev".*$/, '$1')) + 1
: 1;
/* istanbul ignore next */
const thisPerPage = linkHeader
? Number(linkHeader.replace(/^.*per_page=(\d*).*$/, '$1'))
: perPage;
return {
count: Number(issueRes.data.comments),
page: thisPage,
perPage: thisPerPage,
data: commentsRes.data.map(normalizeComment),
};
}
/**
* Create a new comment
*
* @see https://developer.github.com/v3/issues/comments/#create-a-comment
*/
async postComment({
accessToken,
issueId,
content,
}: {
accessToken: VssueAPI.AccessToken;
issueId: string | number;
content: string;
}): Promise<VssueAPI.Comment> {
const { data } = await this.$http.post<ResponseComment>(
`repos/${this.owner}/${this.repo}/issues/${issueId}/comments`,
{
body: content,
},
{
headers: {
Authorization: `token ${accessToken}`,
Accept: [
'application/vnd.github.v3.raw+json',
'application/vnd.github.v3.html+json',
'application/vnd.github.squirrel-girl-preview',
],
},
}
);
return normalizeComment(data);
}
/**
* Edit a comment
*
* @see https://developer.github.com/v3/issues/comments/#edit-a-comment
*/
async putComment({
accessToken,
commentId,
content,
}: {
accessToken: VssueAPI.AccessToken;
issueId: string | number;
commentId: string | number;
content: string;
}): Promise<VssueAPI.Comment> {
const { data } = await this.$http.patch<ResponseComment>(
`repos/${this.owner}/${this.repo}/issues/comments/${commentId}`,
{
body: content,
},
{
headers: {
Authorization: `token ${accessToken}`,
Accept: [
'application/vnd.github.v3.raw+json',
'application/vnd.github.v3.html+json',
'application/vnd.github.squirrel-girl-preview',
],
},
}
);
return normalizeComment(data);
}
/**
* Delete a comment
*
* @see https://developer.github.com/v3/issues/comments/#delete-a-comment
*/
async deleteComment({
accessToken,
commentId,
}: {
accessToken: VssueAPI.AccessToken;
issueId: string | number;
commentId: string | number;
}): Promise<boolean> {
const { status } = await this.$http.delete(
`repos/${this.owner}/${this.repo}/issues/comments/${commentId}`,
{
headers: { Authorization: `token ${accessToken}` },
}
);
return status === 204;
}
/**
* Get reactions of a comment
*
* @see https://developer.github.com/v3/issues/comments/#get-a-single-comment
* @see https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment
*
* @remarks
* The `List reactions for an issue comment` API also returns author of each reaction.
* As we only need the count, use the `Get a single comment` API is much simpler.
*/
async getCommentReactions({
accessToken,
commentId,
}: {
accessToken: VssueAPI.AccessToken;
issueId: string | number;
commentId: string | number;
}): Promise<VssueAPI.Reactions> {
const { data } = await this.$http.get<ResponseComment>(
`repos/${this.owner}/${this.repo}/issues/comments/${commentId}`,
{
params: {
// to avoid caching
timestamp: Date.now(),
},
headers: {
Authorization: `token ${accessToken}`,
Accept: 'application/vnd.github.squirrel-girl-preview',
},
}
);
return normalizeReactions(data.reactions);
}
/**
* Create a new reaction of a comment
*
* @see https://developer.github.com/v3/reactions/#create-reaction-for-an-issue-comment
*/
async postCommentReaction({
accessToken,
commentId,
reaction,
}: {
accessToken: VssueAPI.AccessToken;
issueId: string | number;
commentId: string | number;
reaction: keyof VssueAPI.Reactions;
}): Promise<boolean> {
const response = await this.$http.post<ResponseReaction>(
`repos/${this.owner}/${this.repo}/issues/comments/${commentId}/reactions`,
{
content: mapReactionName(reaction),
},
{
headers: {
Authorization: `token ${accessToken}`,
Accept: 'application/vnd.github.squirrel-girl-preview',
},
}
);
// 200 OK if the reaction is already token
if (response.status === 200) {
return this.deleteCommentReaction({
accessToken,
commentId,
reactionId: response.data.id,
});
}
// 201 CREATED
return response.status === 201;
}
/**
* Delete a reaction of a comment
*
* @see https://developer.github.com/v3/reactions/#delete-a-reaction
*/
async deleteCommentReaction({
accessToken,
commentId,
reactionId,
}: {
accessToken: VssueAPI.AccessToken;
commentId: string | number;
reactionId: string | number;
}): Promise<boolean> {
const response = await this.$http.delete(
`repos/${this.owner}/${this.repo}/issues/comments/${commentId}/reactions/${reactionId}`,
{
headers: {
Authorization: `token ${accessToken}`,
Accept: 'application/vnd.github.squirrel-girl-preview',
},
}
);
return response.status === 204;
}
}