forked from prisma/prisma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInit.ts
575 lines (497 loc) · 18.1 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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
import { confirm, input, select } from '@inquirer/prompts'
import type { PrismaConfigInternal } from '@prisma/config'
import type { ConnectorType } from '@prisma/generator-helper'
import {
arg,
canConnectToDatabase,
checkUnsupportedDataProxy,
Command,
format,
getCommandWithExecutor,
HelpError,
isError,
link,
logger,
PRISMA_POSTGRES_PROTOCOL,
PRISMA_POSTGRES_PROVIDER,
protocolToConnectorType,
} from '@prisma/internals'
import dotenv from 'dotenv'
import fs from 'fs'
import { bold, dim, green, red, yellow } from 'kleur/colors'
import ora from 'ora'
import path from 'path'
import { match, P } from 'ts-pattern'
import { poll, printPpgInitOutput } from './platform/_'
import { credentialsFile } from './platform/_lib/credentials'
import { successMessage } from './platform/_lib/messages'
import { getPrismaPostgresRegionsOrThrow } from './platform/accelerate/regions'
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
case PRISMA_POSTGRES_PROVIDER:
return null
}
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:[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
--db Provisions a fully managed Prisma Postgres database on the Prisma Data Platform.
--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
`)
async parse(argv: string[], _config: PrismaConfigInternal): Promise<string | Error> {
const args = arg(argv, {
'--help': Boolean,
'-h': '--help',
'--url': String,
'--datasource-provider': String,
'--generator-provider': String,
'--preview-feature': [String],
'--output': String,
'--with-model': Boolean,
'--db': 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 { 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',
'prismapostgres',
'prisma+postgres',
].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']
const isPpgCommand = args['--db'] || datasourceProvider === PRISMA_POSTGRES_PROVIDER
let prismaPostgresDatabaseUrl: string | undefined
let workspaceId = ``
let projectId = ``
let environmentId = ``
const outputDir = process.cwd()
const prismaFolder = path.join(outputDir, 'prisma')
if (isPpgCommand) {
const PlatformCommands = await import(`./platform/_`)
const credentials = await credentialsFile.load()
if (isError(credentials)) throw credentials
if (!credentials) {
console.log('This will create a project for you on console.prisma.io and requires you to be authenticated.')
const authAnswer = await confirm({
message: 'Would you like to authenticate?',
})
if (!authAnswer) {
return 'Project creation aborted. You need to authenticate to use Prisma Postgres'
}
const authenticationResult = await PlatformCommands.loginOrSignup()
console.log(`Successfully authenticated as ${bold(authenticationResult.email)}.`)
}
console.log("Let's set up your Prisma Postgres database!")
const platformToken = await PlatformCommands.getTokenOrThrow(args)
const defaultWorkspace = await PlatformCommands.Workspace.getDefaultWorkspaceOrThrow({ token: platformToken })
const regions = await getPrismaPostgresRegionsOrThrow({ token: platformToken })
const ppgRegionSelection = await select({
message: 'Select your region:',
default: 'us-east-1',
choices: regions.map((region) => ({
name: `${region.id} - ${region.displayName}`,
value: region.id,
disabled: region.ppgStatus === 'unavailable',
})),
loop: true,
})
const projectDisplayNameAnswer = await input({
message: 'Enter a project name:',
default: 'My Prisma Project',
})
const spinner = ora(`Creating project ${bold(projectDisplayNameAnswer)} (this may take a few seconds)...`).start()
try {
const project = await PlatformCommands.Project.createProjectOrThrow({
token: platformToken,
displayName: projectDisplayNameAnswer,
workspaceId: defaultWorkspace.id,
allowRemoteDatabases: false,
ppgRegion: ppgRegionSelection,
})
spinner.text = `Waiting for your Prisma Postgres database to be ready...`
workspaceId = defaultWorkspace.id
projectId = project.id
environmentId = project.defaultEnvironment.id
await poll(
() =>
PlatformCommands.Environment.getEnvironmentOrThrow({
environmentId: project.defaultEnvironment.id,
token: platformToken,
}),
(environment: Awaited<ReturnType<typeof PlatformCommands.Environment.getEnvironmentOrThrow>>) =>
environment.ppg.status === 'healthy' && environment.accelerate.status.enabled,
5000, // Poll every 5 seconds
120000, // if it takes more than two minutes, bail with an error
)
const serviceToken = await PlatformCommands.ServiceToken.createOrThrow({
token: platformToken,
environmentId: project.defaultEnvironment.id,
displayName: `database-setup-prismaPostgres-api-key`,
})
prismaPostgresDatabaseUrl = `${PRISMA_POSTGRES_PROTOCOL}//accelerate.prisma-data.net/?api_key=${serviceToken.value}`
spinner.succeed(successMessage('Your Prisma Postgres database is ready ✅'))
} catch (error) {
spinner.fail(error instanceof Error ? error.message : 'Something went wrong')
throw error
}
}
if (
fs.existsSync(path.join(outputDir, 'schema.prisma')) ||
fs.existsSync(prismaFolder) ||
fs.existsSync(path.join(prismaFolder, 'schema.prisma'))
) {
if (isPpgCommand) {
return printPpgInitOutput({
databaseUrl: prismaPostgresDatabaseUrl!,
workspaceId,
projectId,
environmentId,
isExistingPrismaProject: true,
})
}
}
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)
}
/**
* 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 databaseUrl = prismaPostgresDatabaseUrl || url
const warnings: string[] = []
const envPath = path.join(outputDir, '.env')
if (!fs.existsSync(envPath)) {
fs.writeFileSync(envPath, defaultEnv(databaseUrl))
} 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(databaseUrl))
}
}
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.`,
)
steps.push(
`Tip: Explore how you can extend the ${green(
'ORM',
)} with scalable connection pooling, global caching, and real-time database events. Read: https://pris.ly/cli/beyond-orm`,
)
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 defaultOutput = `
✔ 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')}
`
return isPpgCommand
? printPpgInitOutput({ databaseUrl: prismaPostgresDatabaseUrl!, workspaceId, projectId, environmentId })
: defaultOutput
}
// help message
public help(error?: string): string | HelpError {
if (error) {
return new HelpError(`\n${bold(red(`!`))} ${error}\n${Init.help}`)
}
return Init.help
}
}