forked from prisma/prisma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInit.ts
454 lines (391 loc) · 13.5 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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
import type { ConnectorType } from '@prisma/generator-helper'
import {
arg,
canConnectToDatabase,
checkUnsupportedDataProxy,
Command,
drawBox,
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
withModel?: boolean
}) => {
const {
datasourceProvider = 'postgresql',
generatorProvider = defaultGeneratorProvider,
previewFeatures = defaultPreviewFeatures,
output = defaultOutput,
withModel = false,
} = props || {}
const aboutAccelerate = `\n// Looking for ways to speed up your queries, or scale easily with your serverless or edge functions?
// Try Prisma Accelerate: https://pris.ly/cli/accelerate-init\n`
const isProviderCompatibleWithAccelerate = datasourceProvider !== 'sqlite'
let schema = `// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
${isProviderCompatibleWithAccelerate ? aboutAccelerate : ''}
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")
}
`
// We add a model to the schema file if the user passed the --with-model flag
if (withModel) {
const defaultAttributes = `email String @unique
name String?`
switch (datasourceProvider) {
case 'mongodb':
schema += `
model User {
id String @id @default(auto()) @map("_id") @db.ObjectId
${defaultAttributes}
}
`
break
case 'cockroachdb':
schema += `
model User {
id BigInt @id @default(sequence())
${defaultAttributes}
}
`
break
default:
schema += `
model User {
id Int @id @default(autoincrement())
${defaultAttributes}
}
`
}
}
return schema
}
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 = (datasourceProvider: ConnectorType) => {
switch (datasourceProvider) {
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 = (
datasourceProvider: ConnectorType,
port = defaultPort(datasourceProvider),
schema = 'public',
) => {
switch (datasourceProvider) {
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:randompassword@cluster0.ab1cd.mongodb.net/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('Flags')}
--with-model Add example model to created schema file
${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
Set up a new Prisma project with an example model
${dim('$')} prisma init --with-model
`)
// 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,
'--with-model': Boolean,
})
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 { datasourceProvider, url } = await match(args)
.with(
{
'--datasource-provider': P.when((datasourceProvider): datasourceProvider is string =>
Boolean(datasourceProvider),
),
},
(input) => {
const datasourceProviderLowercase = input['--datasource-provider'].toLowerCase()
if (
!['postgresql', 'mysql', 'sqlserver', 'sqlite', 'mongodb', 'cockroachdb'].includes(
datasourceProviderLowercase,
)
) {
throw new Error(
`Provider "${args['--datasource-provider']}" is invalid or not supported. Try again with "postgresql", "mysql", "sqlite", "sqlserver", "mongodb" or "cockroachdb".`,
)
}
const datasourceProvider = datasourceProviderLowercase as ConnectorType
const url = defaultURL(datasourceProvider)
return Promise.resolve({
datasourceProvider,
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 datasourceProvider = protocolToConnectorType(`${url.split(':')[0]}:`)
return { datasourceProvider, url }
},
)
.otherwise(() => {
// Default to PostgreSQL
return Promise.resolve({
datasourceProvider: '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,
generatorProvider,
previewFeatures,
output,
withModel: args['--with-model'],
}),
)
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 (datasourceProvider === '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`,
)
}
const promoMessage = `Developing real-time features?
Prisma Pulse lets you respond instantly to database changes.
${link('https://pris.ly/cli/pulse')}`
const boxedPromoMessage = drawBox({
height: promoMessage.split('\n').length,
width: 0, // calculated automatically
str: promoMessage,
horizontalPadding: 2,
})
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')}
${boxedPromoMessage}
`
}
// help message
public help(error?: string): string | HelpError {
if (error) {
return new HelpError(`\n${bold(red(`!`))} ${error}\n${Init.help}`)
}
return Init.help
}
}