forked from microsoft/vscode-pull-request-github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.ts
More file actions
225 lines (198 loc) · 6.38 KB
/
Copy pathutils.ts
File metadata and controls
225 lines (198 loc) · 6.38 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
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
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
'use strict';
import * as Octokit from '../common/octokit';
import { IAccount, PullRequest } from './interface';
import { Comment } from '../common/comment';
import { parseDiffHunk, DiffHunk } from '../common/diffHunk';
import { EventType, TimelineEvent } from '../common/timelineEvent';
import { ReviewComment } from './graphql';
export function convertRESTUserToAccount(user: Octokit.PullRequestsGetAllResponseItemUser): IAccount {
return {
login: user.login,
url: user.html_url,
avatarUrl: user.avatar_url
};
}
export function convertRESTHeadToIGitHubRef(head: Octokit.PullRequestsGetResponseHead) {
return {
label: head.label,
ref: head.ref,
sha: head.sha,
repo: { cloneUrl: head.repo.clone_url }
};
}
export function convertRESTPullRequestToRawPullRequest(pullRequest: Octokit.PullRequestsCreateResponse | Octokit.PullRequestsGetResponse | Octokit.PullRequestsGetAllResponseItem): PullRequest {
let {
number,
body,
title,
html_url,
user,
state,
assignee,
created_at,
updated_at,
head,
base,
labels,
node_id
} = pullRequest;
const item: PullRequest = {
number,
body,
title,
url: html_url,
user: convertRESTUserToAccount(user),
state,
merged: (pullRequest as Octokit.PullRequestsGetResponse).merged || false,
assignee: assignee ? convertRESTUserToAccount(assignee) : undefined,
createdAt: created_at,
updatedAt: updated_at,
head: convertRESTHeadToIGitHubRef(head),
base: convertRESTHeadToIGitHubRef(base),
mergeable: (pullRequest as Octokit.PullRequestsGetResponse).mergeable,
labels,
nodeId: node_id
};
return item;
}
export function parseCommentDiffHunk(comment: Comment): DiffHunk[] {
let diffHunks = [];
let diffHunkReader = parseDiffHunk(comment.diffHunk);
let diffHunkIter = diffHunkReader.next();
while (!diffHunkIter.done) {
let diffHunk = diffHunkIter.value;
diffHunks.push(diffHunk);
diffHunkIter = diffHunkReader.next();
}
return diffHunks;
}
export function convertIssuesCreateCommentResponseToComment(comment: Octokit.IssuesCreateCommentResponse | Octokit.IssuesEditCommentResponse): Comment {
return {
url: comment.url,
id: comment.id,
diffHunk: '',
diffHunks: [],
path: undefined,
position: undefined,
commitId: undefined,
originalPosition: undefined,
originalCommitId: undefined,
user: convertRESTUserToAccount(comment.user),
body: comment.body,
createdAt: comment.created_at,
htmlUrl: comment.html_url,
graphNodeId: comment.node_id
};
}
export function convertPullRequestsGetCommentsResponseItemToComment(comment: Octokit.PullRequestsGetCommentsResponseItem | Octokit.PullRequestsEditCommentResponse): Comment {
let ret: Comment = {
url: comment.url,
id: comment.id,
pullRequestReviewId: comment.pull_request_review_id,
diffHunk: comment.diff_hunk,
path: comment.path,
position: comment.position,
commitId: comment.commit_id,
originalPosition: comment.original_position,
originalCommitId: comment.original_commit_id,
user: convertRESTUserToAccount(comment.user),
body: comment.body,
createdAt: comment.created_at,
htmlUrl: comment.html_url,
inReplyToId: comment.in_reply_to_id,
graphNodeId: comment.node_id
};
let diffHunks = parseCommentDiffHunk(ret);
ret.diffHunks = diffHunks;
return ret;
}
export function convertGraphQLEventType(text: string) {
switch (text) {
case 'Commit':
return EventType.Committed;
case 'LabeledEvent':
return EventType.Labeled;
case 'MilestonedEvent':
return EventType.Milestoned;
case 'AssignedEvent':
return EventType.Assigned;
case 'IssueComment':
return EventType.Commented;
case 'PullRequestReview':
return EventType.Reviewed;
case 'MergedEvent':
return EventType.Merged;
default:
return EventType.Other;
}
}
export function parseGraphQLComment(comment: ReviewComment): Comment {
const c: Comment = {
id: comment.databaseId,
url: comment.url,
body: comment.body,
path: comment.path,
canEdit: comment.viewerCanDelete,
canDelete: comment.viewerCanDelete,
pullRequestReviewId: comment.pullRequestReview && comment.pullRequestReview.databaseId,
diffHunk: comment.diffHunk,
position: comment.position,
commitId: comment.commit.oid,
originalPosition: comment.originalPosition,
originalCommitId: comment.originalCommit && comment.originalCommit.oid,
user: comment.author,
createdAt: comment.createdAt,
htmlUrl: comment.url,
graphNodeId: comment.id,
isDraft: comment.state === 'PENDING',
inReplyToId: comment.replyTo && comment.replyTo.databaseId
};
const diffHunks = parseCommentDiffHunk(c);
c.diffHunks = diffHunks;
return c;
}
export function parseGraphQLTimelineEvents(events: any[]): TimelineEvent[] {
events.forEach(event => {
let type = convertGraphQLEventType(event.__typename);
event.event = type;
if (event.event === EventType.Commented) {
event.canEdit = event.viewerCanUpdate;
event.canDelete = event.viewerCanDelete;
event.user = event.author;
event.id = event.databaseId;
event.htmlUrl = event.url;
}
if (event.event === EventType.Reviewed) {
event.user = event.author;
event.canEdit = event.viewerCanUpdate;
event.canDelete = event.viewerCanDelete;
event.id = event.databaseId;
event.htmlUrl = event.url;
event.submittedAt = event.submittedAt;
}
if (event.event === EventType.Committed) {
event.sha = event.oid;
event.author = event.author.user || { login: event.committer.name, avatarUrl: event.committer.avatarUrl };
event.htmlUrl = event.url;
}
});
return events;
}
export function convertRESTTimelineEvents(events: any[]): TimelineEvent[] {
events.forEach(event => {
if (event.event === EventType.Commented) {
}
if (event.event === EventType.Reviewed) {
event.submittedAt = event.submitted_at;
event.htmlUrl = event.html_url;
}
if (event.event === EventType.Committed) {
event.htmlUrl = event.html_url;
}
});
return events;
}