This repository was archived by the owner on Jul 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
239 lines (205 loc) ยท 7.21 KB
/
script.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
import {appAuth} from '@stoe/octoherd-script-common'
import defaultLabels from './labels.js'
import {readFileSync} from 'fs'
import {setTimeout} from 'timers/promises'
/**
* @param {import('@octoherd/cli').Octokit} octokit
* @param {import('@octoherd/cli').Repository} repository
* @param {object} options
* @param {boolean} [options.defaults=false]
* @param {string} [options.path=null]
* @param {boolean} [options.template=false]
* @param {int} [options.appId=0]
* @param {string} [options.privateKey='']
* @param {boolean} [options.dryRun=false]
*/
export async function script(
octokit,
repository,
{defaults = false, path = null, template = null, appId = 0, privateKey = '', dryRun = false},
) {
// fail fast
if (!defaults && !path && !template) {
throw new Error(`Either --defaults, --path or --template must be defined`)
}
const {
archived,
disabled,
fork,
name: repo,
owner: {login: owner},
full_name,
clone_url: url,
} = repository
// skip archived, disabled, and forked repos
if (archived || disabled || fork) return
try {
let ok = octokit
if (appId && privateKey) {
try {
ok = await appAuth(repository, appId, privateKey)
octokit.log.info(` ๐ค authenticated as app`)
} catch (error) {
octokit.log.info({error}, ` โ failed to authenticate as app`)
return
}
}
let wantLabels = []
// use local default labels from './labels.js'
if (defaults) {
wantLabels = defaultLabels
octokit.log.info({labels: wantLabels.map(l => l.name)}, ` ๐ค loaded default labels`)
}
// read labels from provided JSON
if (path) {
const buff = readFileSync(path, 'utf-8')
const str = buff.toString('utf-8')
wantLabels = JSON.parse(str)
octokit.log.info({path, labels: wantLabels.map(l => l.name)}, ` ๐ค loaded labels from file`)
}
// load labels from another repo
if (template) {
if (template === full_name) {
octokit.log.warn({template}, ` skipping self`)
return
}
try {
const [ownerSync, repoSync] = template.split('/')
// https://docs.github.com/en/rest/reference/issues#list-labels-for-a-repository
const {data} = await ok.request('GET /repos/{owner}/{repo}/labels', {
owner: ownerSync,
repo: repoSync,
})
wantLabels = data.map(({name, description, color}) => {
return {name, description, color}
})
octokit.log.info({template, labels: wantLabels.map(l => l.name)}, ` ๐ค loaded labels from repository`)
} catch (error) {
octokit.log.error(` ${error.message}`)
return
}
}
// current labels
// https://docs.github.com/en/rest/reference/issues#list-labels-for-a-repository
const {data} = await ok.request('GET /repos/{owner}/{repo}/labels', {
owner,
repo,
per_page: 100,
})
const currentLabels = data.map(({name, description, color}) => {
return {name, description, color}
})
// labels to delete
const deleteLabels = currentLabels.filter(have => {
return !wantLabels.find(want => {
return want.name === have.name
})
})
for (const {name, description, color} of deleteLabels) {
try {
octokit.log.info({name, description, color}, ` ๐ฎ deleting`)
if (!dryRun) await deleteLabel(ok, owner, repo, name)
} catch (error) {
octokit.log.error(` ${name}: ${error.message}`)
}
}
// labels to update
const updateLabels = wantLabels.filter(want => {
return currentLabels.find(have => want.name === have.name)
})
for (const {name, new_name, color, description} of updateLabels) {
try {
octokit.log.info({name, new_name, description, color}, ` ๐ updating`)
if (!dryRun) await updateLabel(ok, owner, repo, name, new_name, color, description)
} catch (error) {
octokit.log.error(` ${name}: ${error.message}`)
}
}
// labels to create
const createLabels = wantLabels.filter(want => {
return !currentLabels.find(have => JSON.stringify(want) === JSON.stringify(have)) && !updateLabels.includes(want)
})
for (const {name, color, description} of createLabels) {
try {
octokit.log.info({name, description, color}, ` ๐ creating`)
if (!dryRun) await createLabel(ok, owner, repo, name, color, description)
} catch (error) {
octokit.log.error(` ${name}: ${error.message}`)
}
}
octokit.log.info(` โ
${url}`)
return
} catch (error) {
octokit.log.error(` ${error.message}`)
}
}
/**
* Create a label on a GitHub repository
* @see https://docs.github.com/en/rest/reference/issues#create-a-label
*
* @param {import('@octoherd/cli').Octokit} octokit - authenticated Octokit instance
* @param {string} owner - owner of repository
* @param {string} repo - name of repository
* @param {string} name - name of label
* @param {string} color - color of label
* @param {string} description - description of label
*
* @returns {Promise<void>}
*/
async function createLabel(octokit, owner, repo, name, color, description) {
await octokit.request('POST /repos/{owner}/{repo}/labels', {
owner,
repo,
name,
color,
description,
})
// sleep 1.5 seconds
await setTimeout(1500)
}
/**
* Update a label on a GitHub repository
* @see https://docs.github.com/en/rest/reference/issues#update-a-label
*
* @param {import('@octoherd/cli').Octokit} octokit - authenticated Octokit instance
* @param {string} owner - owner of repository
* @param {string} repo - name of repository
* @param {string} name - name of label
* @param {string} new_name - new name of label
* @param {string} color - color of label
* @param {string} description - description of label
*
* @returns {Promise<void>}
*/
async function updateLabel(octokit, owner, repo, name, new_name, color, description) {
await octokit.request('PATCH /repos/{owner}/{repo}/labels/{name}', {
owner,
repo,
name,
new_name,
color,
description,
})
// sleep 1.5 seconds
await setTimeout(1500)
}
/**
* Delete a label on a GitHub repository
* @see https://docs.github.com/en/rest/reference/issues#delete-a-label
*
* @param {import('@octoherd/cli').Octokit} octokit - authenticated Octokit instance
* @param {string} owner - owner of repository
* @param {string} repo - name of repository
* @param {string} name - name of label
*
* @returns {Promise<void>}
*/
async function deleteLabel(octokit, owner, repo, name) {
await octokit.request('DELETE /repos/{owner}/{repo}/labels/{name}', {
owner,
repo,
name,
})
// sleep 1.5 seconds
await setTimeout(1500)
}