-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathprobot.ts
243 lines (207 loc) · 6.43 KB
/
probot.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
import { createNodeMiddleware, Probot, createProbot } from 'probot';
// Create a probot instance for the docs.page app
const probot = createProbot({
overrides: {
appId: process.env.GITHUB_APP_ID,
privateKey: JSON.parse(`"${process.env.GITHUB_APP_PRIVATE_KEY}"`),
},
});
// Queries a repository and extracts a file
const getFile = `
query GetDomains($owner: String!, $repo: String!, $file: String!) {
repository(owner: $owner, name: $repo) {
file: object(expression: $file) {
... on Blob {
text
}
}
}
}
`;
// Type for a getFile response - assumes the repository is available
type GetFileResponse = {
repository: {
file?: {
text: string;
};
};
};
const getPaths = `
query getPaths($owner: String!, $repo: String!, $number: Int!, cursor: String = "") {
repository(name: $repo, owner: $owner) {
pullRequest(number: $number) {
id
files(first: 2, after: $cursor) {
edges {
node {
path
}
cursor
}
}
}
}
}
`
function checkPathsResponse(paths: GetPathsResponse) {
const edges = paths.repository.pullRequest.files.edges
const docsChanged = edges.some(edge => edge.node.path.startsWith('docs/'))
const configChanged = edges.some(edge => ["docs.json", "docs.yaml"].includes(edge.node.path))
return docsChanged || configChanged;
}
function getLastFileCursor(getPathsResponse: GetPathsResponse) {
const edges = getPathsResponse.repository.pullRequest.files.edges
return edges[edges.length - 1].cursor
}
function checkCommentsResponse(comments: GetCommentsResponse) {
const edges = comments.repository.pullRequest.comments.edges
const hasCommented = edges.some(edge => edge.node.author.login === "docs-page")
return hasCommented;
}
function getLastCommentCursor(getCommentsResponse: GetCommentsResponse) {
const edges = getCommentsResponse.repository.pullRequest.comments.edges
return edges[edges.length - 1].cursor
}
type GetPathsResponse = {
repository: {
pullRequest: {
files: {
edges: {
node: {
path: string
}
cursor: string
}[]
}
}
}
}
const getFirstComments = `
query getComments($owner: String!, $repo: String!, $number: Int!) {
repository(name: $repo, owner: $owner) {
pullRequest(number: $number) {
comments(first: 100) {
edges {
node {
author {
login
}
}
cursor
}
totalCount
}
}
}
}
`
const getComments = `
query getComments($owner: String!, $repo: String!, $number: Int!, cursor: String!) {
repository(name: $repo, owner: $owner) {
pullRequest(number: $number) {
comments(first: 100, after: $cursor) {
edges {
node {
author {
login
}
}
cursor
}
}
}
}
}
`
type GetCommentsResponse = {
repository: {
pullRequest: {
comments: {
edges: {
node: {
author: {
login: string
}
}
cursor: string
}[],
totalCount?: number
}
}
}
}
const app = (app: Probot) => {
app.on(['pull_request.opened', 'pull_request.synchronize'], async context => {
app.log.info(context);
const { repository, pull_request } = context.payload;
const totalChangedFiles = pull_request.changed_files;
let totalFilesChecked = 0;
let shouldComment = false;
let cursor = '';
// check files in batches of 100 until we find a docs file or we've checked all files
while (totalFilesChecked < totalChangedFiles && !shouldComment) {
const getPathsResponse = await context
.octokit
.graphql<GetPathsResponse>(getPaths, {
owner: repository.owner.login,
repo: repository.name,
number: pull_request.number,
cursor
});
shouldComment = checkPathsResponse(getPathsResponse);
cursor = getLastFileCursor(getPathsResponse);
}
// check to see if we've commented before
// for some reason an empty cursor doesn't work for comments, so we have to obtain the first cursor manually.
const getFirstCommentsResponse = await context
.octokit
.graphql<GetCommentsResponse>(getFirstComments, {
owner: repository.owner.login,
repo: repository.name,
number: pull_request.number,
});
let totalComments = getFirstCommentsResponse.repository.pullRequest.comments.totalCount;
let totalCommentsChecked = getFirstCommentsResponse.repository.pullRequest.comments.edges.length;
let commentCursor = getLastCommentCursor(getFirstCommentsResponse);
let hasCommented = checkCommentsResponse(getFirstCommentsResponse);
while (totalCommentsChecked < totalComments! && !hasCommented) {
const getCommentsResponse = await context
.octokit
.graphql<GetCommentsResponse>(getComments, {
owner: repository.owner.login,
repo: repository.name,
number: pull_request.number,
cursor: commentCursor
});
hasCommented = checkCommentsResponse(getCommentsResponse);
commentCursor = getLastCommentCursor(getCommentsResponse);
}
shouldComment = shouldComment && !hasCommented;
if (!shouldComment) {
return;
}
// e.g. org/repo
const name = repository.full_name.toLowerCase();
// Fetch the domains file from the main repository
const response = await context.octokit.graphql<GetFileResponse>(getFile, {
owner: 'invertase',
repo: 'docs.page',
file: 'main:domains.json',
});
const file = response.repository.file?.text || '[]';
// Find and set a custom domain, if it exists
const domains = JSON.parse(file) as Array<[string, string]>;
const domain = domains.find(([, repository]) => repository === name)?.[0];
const url = domain
? `${domain}/~${pull_request.number}`
: `docs.page/${name}~${pull_request.number}`;
const comment = context.issue({
body: `To view this pull requests documentation preview, visit the following URL:\n\n[${url}](https://${url})\n\nDocumentation is deployed and generated using [docs.page](https://docs.page).`,
});
await context.octokit.issues.createComment(comment);
});
};
export default createNodeMiddleware(app, {
probot,
webhooksPath: '/webhooks/github',
});