-
Notifications
You must be signed in to change notification settings - Fork 27.1k
/
mkcert.ts
184 lines (147 loc) · 4.93 KB
/
mkcert.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
import fs from 'node:fs'
import path from 'node:path'
import { X509Certificate, createPrivateKey } from 'node:crypto'
import { getCacheDirectory } from './helpers/get-cache-directory'
import * as Log from '../build/output/log'
import { execSync } from 'node:child_process'
const { WritableStream } = require('node:stream/web') as {
WritableStream: typeof global.WritableStream
}
const MKCERT_VERSION = 'v1.4.4'
export interface SelfSignedCertificate {
key: string
cert: string
rootCA?: string
}
function getBinaryName() {
const platform = process.platform
const arch = process.arch === 'x64' ? 'amd64' : process.arch
if (platform === 'win32') {
return `mkcert-${MKCERT_VERSION}-windows-${arch}.exe`
}
if (platform === 'darwin') {
return `mkcert-${MKCERT_VERSION}-darwin-${arch}`
}
if (platform === 'linux') {
return `mkcert-${MKCERT_VERSION}-linux-${arch}`
}
throw new Error(`Unsupported platform: ${platform}`)
}
async function downloadBinary() {
try {
const binaryName = getBinaryName()
const cacheDirectory = getCacheDirectory('mkcert')
const binaryPath = path.join(cacheDirectory, binaryName)
if (fs.existsSync(binaryPath)) {
return binaryPath
}
const downloadUrl = `https://github.com/FiloSottile/mkcert/releases/download/${MKCERT_VERSION}/${binaryName}`
await fs.promises.mkdir(cacheDirectory, { recursive: true })
Log.info(`Downloading mkcert package...`)
const response = await fetch(downloadUrl)
if (!response.ok || !response.body) {
throw new Error(`request failed with status ${response.status}`)
}
Log.info(`Download response was successful, writing to disk`)
const binaryWriteStream = fs.createWriteStream(binaryPath)
await response.body.pipeTo(
new WritableStream({
write(chunk) {
return new Promise((resolve, reject) => {
binaryWriteStream.write(chunk, (error) => {
if (error) {
reject(error)
return
}
resolve()
})
})
},
close() {
return new Promise((resolve, reject) => {
binaryWriteStream.close((error) => {
if (error) {
reject(error)
return
}
resolve()
})
})
},
})
)
await fs.promises.chmod(binaryPath, 0o755)
return binaryPath
} catch (err) {
Log.error('Error downloading mkcert:', err)
}
}
export async function createSelfSignedCertificate(
host?: string,
certDir: string = 'certificates'
): Promise<SelfSignedCertificate | undefined> {
try {
const binaryPath = await downloadBinary()
if (!binaryPath) throw new Error('missing mkcert binary')
const resolvedCertDir = path.resolve(process.cwd(), `./${certDir}`)
await fs.promises.mkdir(resolvedCertDir, {
recursive: true,
})
const keyPath = path.resolve(resolvedCertDir, 'localhost-key.pem')
const certPath = path.resolve(resolvedCertDir, 'localhost.pem')
if (fs.existsSync(keyPath) && fs.existsSync(certPath)) {
const cert = new X509Certificate(fs.readFileSync(certPath))
const key = fs.readFileSync(keyPath)
if (
cert.checkHost(host ?? 'localhost') &&
cert.checkPrivateKey(createPrivateKey(key))
) {
Log.info('Using already generated self signed certificate')
const caLocation = execSync(`"${binaryPath}" -CAROOT`).toString().trim()
return {
key: keyPath,
cert: certPath,
rootCA: `${caLocation}/rootCA.pem`,
}
}
}
Log.info(
'Attempting to generate self signed certificate. This may prompt for your password'
)
const defaultHosts = ['localhost', '127.0.0.1', '::1']
const hosts =
host && !defaultHosts.includes(host)
? [...defaultHosts, host]
: defaultHosts
execSync(
`"${binaryPath}" -install -key-file "${keyPath}" -cert-file "${certPath}" ${hosts.join(
' '
)}`,
{ stdio: 'ignore' }
)
const caLocation = execSync(`"${binaryPath}" -CAROOT`).toString().trim()
if (!fs.existsSync(keyPath) || !fs.existsSync(certPath)) {
throw new Error('Certificate files not found')
}
Log.info(`CA Root certificate created in ${caLocation}`)
Log.info(`Certificates created in ${resolvedCertDir}`)
const gitignorePath = path.resolve(process.cwd(), './.gitignore')
if (fs.existsSync(gitignorePath)) {
const gitignore = await fs.promises.readFile(gitignorePath, 'utf8')
if (!gitignore.includes(certDir)) {
Log.info('Adding certificates to .gitignore')
await fs.promises.appendFile(gitignorePath, `\n${certDir}`)
}
}
return {
key: keyPath,
cert: certPath,
rootCA: `${caLocation}/rootCA.pem`,
}
} catch (err) {
Log.error(
'Failed to generate self-signed certificate. Falling back to http.',
err
)
}
}