forked from prisma/prisma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInit.ts
378 lines (327 loc) · 11.6 KB
/
Init.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
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
import type { ConnectorType } from '@prisma/generator-helper'
import {
arg,
canConnectToDatabase,
checkUnsupportedDataProxy,
Command,
format,
getCommandWithExecutor,
HelpError,
link,
logger,
protocolToConnectorType,
} from '@prisma/internals'
import dotenv from 'dotenv'
import fs from 'fs'
import { bold, dim, green, red, yellow } from 'kleur/colors'
import path from 'path'
import { match, P } from 'ts-pattern'
import { isError } from 'util'
import { printError } from './utils/prompt/utils/print'
export const defaultSchema = (props?: {
datasourceProvider?: ConnectorType
generatorProvider?: string
previewFeatures?: string[]
output?: string
}) => {
const {
datasourceProvider = 'postgresql',
generatorProvider = defaultGeneratorProvider,
previewFeatures = defaultPreviewFeatures,
output = defaultOutput,
} = props || {}
return `// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
generator client {
provider = "${generatorProvider}"
${
previewFeatures.length > 0
? ` previewFeatures = [${previewFeatures.map((feature) => `"${feature}"`).join(', ')}]\n`
: ''
}${output != defaultOutput ? ` output = "${output}"\n` : ''}}
datasource db {
provider = "${datasourceProvider}"
url = env("DATABASE_URL")
}
`
}
export const defaultEnv = (
url = 'postgresql://johndoe:randompassword@localhost:5432/mydb?schema=public',
comments = true,
) => {
let env = comments
? `# Environment variables declared in this file are automatically made available to Prisma.
# See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB.
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings\n\n`
: ''
env += `DATABASE_URL="${url}"`
return env
}
export const defaultPort = (provider: ConnectorType) => {
switch (provider) {
case 'mysql':
return 3306
case 'sqlserver':
return 1433
case 'mongodb':
return 27017
case 'postgresql':
return 5432
case 'cockroachdb':
return 26257
}
return undefined
}
export const defaultURL = (provider: ConnectorType, port = defaultPort(provider), schema = 'public') => {
switch (provider) {
case 'postgresql':
return `postgresql://johndoe:randompassword@localhost:${port}/mydb?schema=${schema}`
case 'cockroachdb':
return `postgresql://johndoe:randompassword@localhost:${port}/mydb?schema=${schema}`
case 'mysql':
return `mysql://johndoe:randompassword@localhost:${port}/mydb`
case 'sqlserver':
return `sqlserver://localhost:${port};database=mydb;user=SA;password=randompassword;`
case 'mongodb':
return `mongodb+srv://root:[email protected]/mydb?retryWrites=true&w=majority`
case 'sqlite':
return 'file:./dev.db'
default:
return undefined
}
}
export const defaultGitIgnore = () => {
return `node_modules
# Keep environment variables out of version control
.env
`
}
export const defaultGeneratorProvider = 'prisma-client-js'
export const defaultPreviewFeatures = []
export const defaultOutput = 'node_modules/.prisma/client'
export class Init implements Command {
static new(): Init {
return new Init()
}
private static help = format(`
Set up a new Prisma project
${bold('Usage')}
${dim('$')} prisma init [options]
${bold('Options')}
-h, --help Display this help message
--datasource-provider Define the datasource provider to use: postgresql, mysql, sqlite, sqlserver, mongodb or cockroachdb
--generator-provider Define the generator provider to use. Default: \`prisma-client-js\`
--preview-feature Define a preview feature to use.
--output Define Prisma Client generator output path to use.
--url Define a custom datasource url
${bold('Examples')}
Set up a new Prisma project with PostgreSQL (default)
${dim('$')} prisma init
Set up a new Prisma project and specify MySQL as the datasource provider to use
${dim('$')} prisma init --datasource-provider mysql
Set up a new Prisma project and specify \`prisma-client-go\` as the generator provider to use
${dim('$')} prisma init --generator-provider prisma-client-go
Set up a new Prisma project and specify \`x\` and \`y\` as the preview features to use
${dim('$')} prisma init --preview-feature x --preview-feature y
Set up a new Prisma project and specify \`./generated-client\` as the output path to use
${dim('$')} prisma init --output ./generated-client
Set up a new Prisma project and specify the url that will be used
${dim('$')} prisma init --url mysql://user:password@localhost:3306/mydb
`)
// eslint-disable-next-line @typescript-eslint/require-await
async parse(argv: string[]): Promise<any> {
const args = arg(argv, {
'--help': Boolean,
'-h': '--help',
'--url': String,
'--datasource-provider': String,
'--generator-provider': String,
'--preview-feature': [String],
'--output': String,
})
if (isError(args) || args['--help']) {
return this.help()
}
await checkUnsupportedDataProxy('init', args, false)
/**
* Validation
*/
const outputDirName = args._[0]
if (outputDirName) {
throw Error('The init command does not take any argument.')
}
const outputDir = process.cwd()
const prismaFolder = path.join(outputDir, 'prisma')
if (fs.existsSync(path.join(outputDir, 'schema.prisma'))) {
console.log(
printError(`File ${bold('schema.prisma')} already exists in your project.
Please try again in a project that is not yet using Prisma.
`),
)
process.exit(1)
}
if (fs.existsSync(prismaFolder)) {
console.log(
printError(`A folder called ${bold('prisma')} already exists in your project.
Please try again in a project that is not yet using Prisma.
`),
)
process.exit(1)
}
if (fs.existsSync(path.join(prismaFolder, 'schema.prisma'))) {
console.log(
printError(`File ${bold('prisma/schema.prisma')} already exists in your project.
Please try again in a project that is not yet using Prisma.
`),
)
process.exit(1)
}
const { provider, url } = await match(args)
.with(
{
'--datasource-provider': P.when((provider): provider is string => Boolean(provider)),
},
(input) => {
const providerLowercase = input['--datasource-provider'].toLowerCase()
if (!['postgresql', 'mysql', 'sqlserver', 'sqlite', 'mongodb', 'cockroachdb'].includes(providerLowercase)) {
throw new Error(
`Provider "${args['--datasource-provider']}" is invalid or not supported. Try again with "postgresql", "mysql", "sqlite", "sqlserver", "mongodb" or "cockroachdb".`,
)
}
const provider = providerLowercase as ConnectorType
const url = defaultURL(provider)
return Promise.resolve({
provider,
url,
})
},
)
.with(
{
'--url': P.when((url): url is string => Boolean(url)),
},
async (input) => {
const url = input['--url']
const canConnect = await canConnectToDatabase(url)
if (canConnect !== true) {
const { code, message } = canConnect
// P1003 means that the db doesn't exist but we can connect
if (code !== 'P1003') {
if (code) {
throw new Error(`${code}: ${message}`)
} else {
throw new Error(message)
}
}
}
const provider = protocolToConnectorType(`${url.split(':')[0]}:`)
return { provider, url }
},
)
.otherwise(() => {
// Default to PostgreSQL
return Promise.resolve({
provider: 'postgresql' as ConnectorType,
url: undefined,
})
})
const generatorProvider = args['--generator-provider']
const previewFeatures = args['--preview-feature']
const output = args['--output']
/**
* Validation successful? Let's create everything!
*/
if (!fs.existsSync(outputDir)) {
fs.mkdirSync(outputDir)
}
if (!fs.existsSync(prismaFolder)) {
fs.mkdirSync(prismaFolder)
}
fs.writeFileSync(
path.join(prismaFolder, 'schema.prisma'),
defaultSchema({
datasourceProvider: provider,
generatorProvider,
previewFeatures,
output,
}),
)
const warnings: string[] = []
const envPath = path.join(outputDir, '.env')
if (!fs.existsSync(envPath)) {
fs.writeFileSync(envPath, defaultEnv(url))
} else {
const envFile = fs.readFileSync(envPath, { encoding: 'utf8' })
const config = dotenv.parse(envFile) // will return an object
if (Object.keys(config).includes('DATABASE_URL')) {
warnings.push(
`${yellow('warn')} Prisma would have added DATABASE_URL but it already exists in ${bold(
path.relative(outputDir, envPath),
)}`,
)
} else {
fs.appendFileSync(envPath, `\n\n` + '# This was inserted by `prisma init`:\n' + defaultEnv(url))
}
}
const gitignorePath = path.join(outputDir, '.gitignore')
try {
fs.writeFileSync(gitignorePath, defaultGitIgnore(), { flag: 'wx' })
} catch (e) {
if ((e as NodeJS.ErrnoException).code === 'EEXIST') {
warnings.push(
`${yellow(
'warn',
)} You already have a .gitignore file. Don't forget to add \`.env\` in it to not commit any private information.`,
)
} else {
console.error('Failed to write .gitignore file, reason: ', e)
}
}
const steps: string[] = []
if (provider === 'mongodb') {
steps.push(`Define models in the schema.prisma file.`)
} else {
steps.push(
`Run ${green(getCommandWithExecutor('prisma db pull'))} to turn your database schema into a Prisma schema.`,
)
}
steps.push(
`Run ${green(
getCommandWithExecutor('prisma generate'),
)} to generate the Prisma Client. You can then start querying your database.`,
)
if (!url || args['--datasource-provider']) {
if (!args['--datasource-provider']) {
steps.unshift(
`Set the ${green('provider')} of the ${green('datasource')} block in ${green(
'schema.prisma',
)} to match your database: ${green('postgresql')}, ${green('mysql')}, ${green('sqlite')}, ${green(
'sqlserver',
)}, ${green('mongodb')} or ${green('cockroachdb')}.`,
)
}
steps.unshift(
`Set the ${green('DATABASE_URL')} in the ${green(
'.env',
)} file to point to your existing database. If your database has no tables yet, read https://pris.ly/d/getting-started`,
)
}
return `
✔ Your Prisma schema was created at ${green('prisma/schema.prisma')}
You can now open it in your favorite editor.
${warnings.length > 0 && logger.should.warn() ? `\n${warnings.join('\n')}\n` : ''}
Next steps:
${steps.map((s, i) => `${i + 1}. ${s}`).join('\n')}
More information in our documentation:
${link('https://pris.ly/d/getting-started')}
`
}
// help message
public help(error?: string): string | HelpError {
if (error) {
return new HelpError(`\n${bold(red(`!`))} ${error}\n${Init.help}`)
}
return Init.help
}
}