-
Notifications
You must be signed in to change notification settings - Fork 3.1k
/
Copy pathgh.js
74 lines (68 loc) · 1.67 KB
/
gh.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
const {posix, sep} = require('node:path')
const {execSync} = require('node:child_process')
if (!process.env.GITHUB_TOKEN) {
try {
// this allows people to run this locally
process.env.GITHUB_TOKEN = execSync('gh auth token', {encoding: 'utf8'}).trim()
} catch (err) {
throw new Error('GITHUB_TOKEN env var is required to build CLI docs')
}
}
let octokit
const owner = 'npm'
const repo = 'cli'
const opts = {owner, repo}
const getCurrentSha = async branch => {
if (!octokit) {
const {Octokit} = await import('@octokit/rest')
octokit = new Octokit({auth: process.env.GITHUB_TOKEN})
}
const {data} = await octokit.repos.getBranch({
...opts,
branch,
})
return data.commit.sha
}
const getFile = async ({sha, ref, path}) => {
if (!octokit) {
const {Octokit} = await import('@octokit/rest')
octokit = new Octokit({auth: process.env.GITHUB_TOKEN})
}
const {data} = await (sha
? octokit.git.getBlob({
...opts,
file_sha: sha,
})
: octokit.repos.getContent({
...opts,
ref,
path: path.split(sep).join(posix.sep),
}))
return Buffer.from(data.content, data.encoding)
}
const pathExists = async (ref, path) => {
if (!octokit) {
const {Octokit} = await import('@octokit/rest')
octokit = new Octokit({auth: process.env.GITHUB_TOKEN})
}
try {
await octokit.repos.getContent({
...opts,
ref,
path: path.split(sep).join(posix.sep),
})
return path
} catch (err) {
/* istanbul ignore next */
if (!err.status === 404) {
throw err
}
}
return null
}
module.exports = {
getFile,
pathExists,
getCurrentSha,
nwo: `${owner}/${repo}`,
}