This repository has been archived by the owner on Sep 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.js
298 lines (240 loc) · 8.93 KB
/
index.js
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
const html = require('html-parse-stringify')
function checkHTMLForTag (string, type) {
const ast = html.parse(string.replace(/\n$/g, ''))
return hasType(ast, type)
}
function hasType (objects, type) {
return objects.some(o => {
if (o.hasOwnProperty('name') && o.name === type) {
return true
} else if (o.hasOwnProperty('children')) {
return hasType(o.children, type)
} else {
return false
}
})
}
async function getBlobFromHeadCommit (context, filename) {
if (!context) throw new Error('You need a context!')
// get the tree at head commit
const tree = await context.github.gitdata.getTree(context.repo({
sha: context.payload.pull_request.head.sha,
recursive: 1
}))
context.log(`the root tree: ${JSON.stringify(tree, null, 2)}`)
const file = tree.data.tree.find(file => file.path === filename)
context.log(`the file: ${file}`)
context.log(`The file sha is ${file.sha}`)
const blob64 = await context.github.gitdata.getBlob(context.repo({
sha: file.sha
}))
return Buffer.from(blob64.data.content, 'base64').toString()
}
async function mergeHandler (context, yes, no) {
if (context.payload.pull_request.merged) {
return context.respond(yes)
} else {
await context.respond(no)
return false
}
}
module.exports = course => {
course.before(async context => {
await context.github.repos.updateBranchProtection(context.repo({
branch: 'main',
required_status_checks: null,
enforce_admins: true,
required_pull_request_reviews: {},
restrictions: null
}))
return context.newIssue({
title: 'Welcome to Intro to HTML!',
body: context.fromFile('01-welcome.md', context.repo())
})
})
course.on('turn-on-github-pages', async context => {
const issues = await context.github.issues.getForRepo(context.repo({
state: 'all'
}))
const welcomeIssue = issues.data.find(issue => issue.title === 'Welcome to Intro to HTML!')
course.log(`welcome issue? ${welcomeIssue}`)
if (welcomeIssue) {
return context.github.issues.createComment(context.repo({
number: welcomeIssue.number,
body: context.fromFile('00-openapr.md', context.repo())
}))
}
return false
})
course.on('open-a-pull-request', async context => {
course.log('Detected an open PR')
const issues = await context.github.issues.getForRepo(context.repo({
state: 'all'
}))
const welcomeIssue = issues.data.find(issue => issue.title === 'Welcome to Intro to HTML!')
course.log(`welcome issue? ${welcomeIssue.html_url}`)
if (welcomeIssue) {
await context.github.issues.edit(context.repo({
number: welcomeIssue.number,
state: 'closed'
}))
return context.respond(context.fromFile('02-html-structure.md', { welcomeLink: welcomeIssue.html_url }))
}
return false
})
course.on('build-the-html-document-structure', async context => {
const blob = await getBlobFromHeadCommit(context, 'index.html')
course.log(`The blob: ${blob}`)
if (checkHTMLForTag(blob, 'html') && checkHTMLForTag(blob, 'body')) {
return context.github.pullRequests.createReview(context.repo({
number: context.payload.number,
body: context.fromFile('03-title-tag.md'),
event: 'COMMENT'
}))
} else {
await context.github.pullRequests.createReview(context.repo({
number: context.payload.number,
body: context.fromFile('03e-add-html.md'),
event: 'REQUEST_CHANGES'
}))
return false
}
})
course.on('add-a-title-tag', async context => {
const blob = await getBlobFromHeadCommit(context, 'index.html')
if (checkHTMLForTag(blob, 'head') && checkHTMLForTag(blob, 'title')) {
return context.github.pullRequests.createReview(context.repo({
number: context.payload.number,
body: context.fromFile('04-merge-first-pr.md'),
event: 'APPROVE'
}))
} else {
await context.github.pullRequests.createReview(context.repo({
number: context.payload.number,
body: context.fromFile('03e-add-title.md'),
event: 'REQUEST_CHANGES'
}))
return false
}
})
course.on('merge-your-first-pull-request', async context => {
return mergeHandler(context, context.fromFile('05-h1-tag.md', context.repo()), 'no')
})
course.on('change-your-username-to-an-h1-tag', async context => {
if (context.payload.action !== 'opened' && context.payload.action !== 'synchronize') {
course.log('Didn\'t open or synch, exiting')
return false
}
course.log(`the user: ${JSON.stringify(context.repo())}`)
const blob = await getBlobFromHeadCommit(context, 'index.html')
if (checkHTMLForTag(blob, 'h1')) {
const user = await context.github.users.getForUser({username: context.repo().owner})
course.log(`user: ${JSON.stringify(user)}`)
return context.github.pullRequests.createReview(context.repo({
number: context.payload.number,
body: context.fromFile('06-add-image.md', {avatar: user.data.avatar_url}),
event: 'COMMENT'
}))
} else {
await context.github.pullRequests.createReview(context.repo({
number: context.payload.number,
body: context.fromFile('05e-troubleshoot-h1.md'),
event: 'REQUEST_CHANGES'
}))
}
return false
})
course.on('add-an-image', async context => {
const blob = await getBlobFromHeadCommit(context, 'index.html')
if (checkHTMLForTag(blob, 'img')) {
return context.github.pullRequests.createReview(context.repo({
number: context.payload.number,
body: context.fromFile('07-merge-second-pr.md'),
event: 'APPROVE'
}))
} else {
const user = await context.github.users.getForUser({username: context.repo().owner})
await context.github.pullRequests.createReview(context.repo({
number: context.payload.number,
body: context.fromFile('06e-image.md', {avatar: user.data.avatar_url}),
event: 'REQUEST_CHANGES'
}))
}
return false
})
course.on('merge-your-second-pull-request', async context => {
return mergeHandler(context, context.fromFile('08-create-list.md', context.repo()), 'no')
})
course.on('create-a-list', async context => {
if (context.payload.action !== 'opened' && context.payload.action !== 'synchronize') {
course.log('Didn\'t open or synch, exiting')
return false
}
const blob = await getBlobFromHeadCommit(context, 'index.html')
if (checkHTMLForTag(blob, 'ul') || checkHTMLForTag(blob, 'ol')) {
return context.github.pullRequests.createReview(context.repo({
number: context.payload.number,
body: context.fromFile('09-add-links.md', context.repo()),
event: 'COMMENT'
}))
} else {
await context.github.pullRequests.createReview(context.repo({
number: context.payload.number,
body: context.fromFile('08e-list.md'),
event: 'REQUEST_CHANGES'
}))
return false
}
})
course.on('add-links', async context => {
const blob = await getBlobFromHeadCommit(context, 'index.html')
if (checkHTMLForTag(blob, 'a')) {
return context.github.pullRequests.createReview(context.repo({
number: context.payload.number,
body: context.fromFile('10-merge-third-pr.md'),
event: 'APPROVE'
}))
} else {
await context.github.pullRequests.createReview(context.repo({
number: context.payload.number,
body: context.fromFile('09e-links.md'),
event: 'REQUEST_CHANGES'
}))
return false
}
})
course.on('merge-your-third-pull-request', async context => {
if (context.payload.pull_request.merged) {
const blob = await getBlobFromHeadCommit(context, 'index.html')
const newBlob = blob.replace(/<head>/, '<head><link rel="stylesheet" type="text/css" href="style.css">')
course.log(`New blob after replacement: ${newBlob}`)
// await context.github.repos.removeBranchProtection(context.repo({
// branch: 'main'
// }))
const rootTree = await context.github.gitdata.getTree(context.repo({
sha: context.payload.pull_request.head.sha
}))
const file = rootTree.data.tree.find(file => file.path === 'index.html')
course.log(`the file: ${JSON.stringify(file, null, 2)}`)
course.log(`The file sha is ${file.sha}`)
const encodedBlob = Buffer.from(newBlob).toString('base64')
await context.github.repos.removeBranchProtection(context.repo({
branch: 'main'
}))
await context.github.repos.merge(context.repo({
base: 'main',
head: 'add-style'
}))
await context.github.repos.updateFile(context.repo({
path: 'index.html',
message: 'add stylesheets',
content: encodedBlob,
sha: file.sha
}))
return context.respond(context.fromFile('11-link-css.md', context.repo()))
} else {
await context.respond('no')
}
return false
})
}