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
#![allow(clippy::print_literal)] // it is just wrong in this case

mod diagnose_migration_history;

use anyhow::Context;
use colored::Colorize;
use schema_connector::BoxFuture;
use schema_core::json_rpc::types::*;
use std::{fmt, fs::File, io::Read, str::FromStr, sync::Arc};
use structopt::*;

#[derive(Debug, StructOpt)]
#[structopt(version = env!("GIT_HASH"))]
enum Command {
    /// Introspect a database
    Introspect {
        /// URL of the database to introspect.
        #[structopt(long)]
        url: Option<String>,
        /// Path to the schema file to introspect for.
        #[structopt(long = "file-path")]
        file_path: Option<String>,
        /// How many layers of composite types we introspect before switching to Json.
        #[structopt(long)]
        composite_type_depth: Option<isize>,
    },
    /// Generate DMMF from a schema, or directly from a database URL.
    Dmmf(DmmfCommand),
    /// Push a prisma schema directly to the database.
    SchemaPush(SchemaPush),
    /// DiagnoseMigrationHistory wrapper
    DiagnoseMigrationHistory(DiagnoseMigrationHistory),
    /// Counterpart to the CLI migrate diff.
    MigrateDiff(MigrateDiff),
    /// Validate the given data model.
    ValidateDatamodel(ValidateDatamodel),
    /// Clear the data and DDL of the given database.
    ResetDatabase(ResetDatabase),
    /// Clear the data and DDL of the given database.
    CreateDatabase(CreateDatabase),
    /// Create a new migration to the given directory.
    CreateMigration(CreateMigration),
    /// Apply all unapplied migrations from the given directory.
    ApplyMigrations(ApplyMigrations),
}

#[derive(Debug, StructOpt)]
struct DmmfCommand {
    /// A database URL to introspect and generate DMMF for.
    #[structopt(long = "url")]
    url: Option<String>,
    /// Path of the prisma schema to generate DMMF for.
    #[structopt(long = "file-path")]
    file_path: Option<String>,
}

#[derive(Debug, StructOpt)]
struct SchemaPush {
    schema_path: String,
    #[structopt(long)]
    force: bool,
}

#[derive(StructOpt, Debug)]
struct DiagnoseMigrationHistory {
    schema_path: String,
    migrations_directory_path: String,
}

#[derive(Debug, Clone, Copy)]
enum DiffOutputType {
    Summary,
    Ddl,
}

impl Default for DiffOutputType {
    fn default() -> Self {
        Self::Summary
    }
}

impl FromStr for DiffOutputType {
    type Err = std::io::Error;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        match s {
            "summary" => Ok(Self::Summary),
            "ddl" => Ok(Self::Ddl),
            _ => {
                let kind = std::io::ErrorKind::InvalidInput;
                Err(std::io::Error::new(kind, format!("Invalid output type: `{s}`")))
            }
        }
    }
}

impl fmt::Display for DiffOutputType {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            DiffOutputType::Summary => write!(f, "summary"),
            DiffOutputType::Ddl => write!(f, "ddl"),
        }
    }
}

#[derive(StructOpt, Debug)]
#[allow(dead_code)]
struct MigrateDiff {
    #[structopt(long = "from-schema-datamodel")]
    from_schema_datamodel: Option<String>,
    #[structopt(long = "to-schema-datamodel")]
    to_schema_datamodel: Option<String>,

    #[structopt(long = "from-schema-datasource")]
    from_schema_datasource: Option<String>,
    #[structopt(long = "to-schema-datasource")]
    to_schema_datasource: Option<String>,

    #[structopt(long = "from-url")]
    from_url: Option<String>,
    #[structopt(long = "to-url")]
    to_url: Option<String>,

    #[structopt(long = "from-empty")]
    from_empty: bool,
    #[structopt(long = "to-empty")]
    to_empty: bool,

    /// Output SQL (default: false). Otherwise will produce a summary.
    #[structopt(long)]
    script: bool,
}

#[derive(StructOpt, Debug)]
struct ValidateDatamodel {
    /// Path to the prisma data model.
    schema_path: String,
}

#[derive(StructOpt, Debug)]
struct ResetDatabase {
    /// Path to the prisma data model.
    schema_path: String,
}

#[derive(StructOpt, Debug)]
struct CreateDatabase {
    /// Path to the prisma data model.
    schema_path: String,
}

#[derive(StructOpt, Debug)]
struct CreateMigration {
    /// The filesystem path of the migrations directory to use
    migrations_path: String,
    /// The current prisma schema to use as a target for the generated migration
    schema_path: String,
    /// The user-given name for the migration.
    name: String,
}

#[derive(StructOpt, Debug)]
struct ApplyMigrations {
    /// The location of the migrations directory.
    migrations_directory_path: String,
    /// The current prisma schema to use as a target for the generated migration
    schema_path: String,
}

impl From<ApplyMigrations> for ApplyMigrationsInput {
    fn from(am: ApplyMigrations) -> Self {
        Self {
            migrations_directory_path: am.migrations_directory_path,
        }
    }
}

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    init_logger();

    match Command::from_args() {
        Command::DiagnoseMigrationHistory(cmd) => cmd.execute().await?,
        Command::Dmmf(cmd) => generate_dmmf(&cmd).await?,
        Command::SchemaPush(cmd) => schema_push(&cmd).await?,
        Command::MigrateDiff(cmd) => migrate_diff(&cmd).await?,
        Command::Introspect {
            url,
            file_path,
            composite_type_depth,
        } => {
            if url.as_ref().xor(file_path.as_ref()).is_none() {
                anyhow::bail!(
                    "{}",
                    "Exactly one of --url or --file-path must be provided".bold().red()
                );
            }

            let schema = if let Some(file_path) = file_path {
                read_datamodel_from_file(&file_path)?
            } else if let Some(url) = url {
                minimal_schema_from_url(&url)?
            } else {
                unreachable!()
            };

            let api = schema_core::schema_api(Some(schema.clone()), None)?;

            let params = IntrospectParams {
                schema,
                force: false,
                composite_type_depth: composite_type_depth.unwrap_or(0),
                schemas: None,
            };

            let introspected = api.introspect(params).await.map_err(|err| anyhow::anyhow!("{err:?}"))?;

            println!("{}", &introspected.datamodel);
        }
        Command::ValidateDatamodel(cmd) => {
            use std::io::Read as _;

            let mut file = std::fs::File::open(cmd.schema_path).expect("error opening datamodel file");

            let mut datamodel = String::new();
            file.read_to_string(&mut datamodel).unwrap();

            if let Err(e) = psl::parse_schema(datamodel) {
                println!("{e}");
            };
        }
        Command::ResetDatabase(cmd) => {
            let schema = read_datamodel_from_file(&cmd.schema_path).context("Error reading the schema from file")?;
            let api = schema_core::schema_api(Some(schema), None)?;

            api.reset().await?;
        }
        Command::CreateDatabase(cmd) => {
            let schema = read_datamodel_from_file(&cmd.schema_path).context("Error reading the schema from file")?;
            let api = schema_core::schema_api(Some(schema.clone()), None)?;

            api.create_database(CreateDatabaseParams {
                datasource: DatasourceParam::SchemaString(SchemaContainer { schema }),
            })
            .await?;
        }
        Command::CreateMigration(cmd) => {
            let prisma_schema =
                read_datamodel_from_file(&cmd.schema_path).context("Error reading the schema from file")?;

            let api = schema_core::schema_api(Some(prisma_schema.clone()), None)?;

            let input = CreateMigrationInput {
                migrations_directory_path: cmd.migrations_path,
                prisma_schema,
                migration_name: cmd.name,
                draft: true,
            };

            api.create_migration(input).await?;
        }
        Command::ApplyMigrations(cmd) => {
            let prisma_schema =
                read_datamodel_from_file(&cmd.schema_path).context("Error reading the schema from file")?;

            let api = schema_core::schema_api(Some(prisma_schema), None)?;
            api.apply_migrations(cmd.into()).await?;
        }
    }

    Ok(())
}

fn read_datamodel_from_file(path: &str) -> std::io::Result<String> {
    use std::path::Path;

    eprintln!("{} {}", "reading the prisma schema from".bold(), path.yellow());

    let path = Path::new(path);
    let mut file = File::open(path)?;

    let mut out = String::new();
    file.read_to_string(&mut out)?;

    Ok(out)
}

fn minimal_schema_from_url(url: &str) -> anyhow::Result<String> {
    let provider = match url.split("://").next() {
        Some("file") => "sqlite",
        Some(s) if s.starts_with("postgres") => "postgresql",
        Some("mysql") => "mysql",
        Some("sqlserver") => "sqlserver",
        Some("mongodb" | "mongodb+srv") => "mongodb",
        _ => anyhow::bail!("Could not extract a provider from the URL"),
    };

    let schema = format!(
        r#"
            datasource db {{
              provider = "{provider}"
              url = "{url}"
            }}
        "#
    );

    Ok(schema)
}

async fn generate_dmmf(cmd: &DmmfCommand) -> anyhow::Result<()> {
    let schema_path: String = {
        if let Some(url) = cmd.url.as_ref() {
            let skeleton = minimal_schema_from_url(url)?;

            let api = schema_core::schema_api(Some(skeleton.clone()), None)?;

            let params = IntrospectParams {
                schema: skeleton,
                force: false,
                composite_type_depth: -1,
                schemas: None,
            };

            let introspected = api.introspect(params).await.map_err(|err| anyhow::anyhow!("{err:?}"))?;

            eprintln!("{}", "Schema was successfully introspected from database URL".green());

            let path = "/tmp/prisma-test-cli-introspected.prisma";
            std::fs::write(path, introspected.datamodel)?;
            path.to_owned()
        } else if let Some(file_path) = cmd.file_path.as_ref() {
            file_path.clone()
        } else {
            eprintln!(
                "{} {} {} {}",
                "Please provide one of".yellow(),
                "--url".bold(),
                "or".yellow(),
                "--file-path".bold()
            );
            std::process::exit(1)
        }
    };

    let prisma_schema = std::fs::read_to_string(schema_path).unwrap();
    let result = dmmf::dmmf_json_from_schema(&prisma_schema);
    println!("{result}");

    Ok(())
}

async fn schema_push(cmd: &SchemaPush) -> anyhow::Result<()> {
    let schema = read_datamodel_from_file(&cmd.schema_path).context("Error reading the schema from file")?;
    let api = schema_core::schema_api(Some(schema.clone()), None)?;

    let response = api
        .schema_push(SchemaPushInput {
            schema,
            force: cmd.force,
        })
        .await?;

    if !response.warnings.is_empty() {
        eprintln!("⚠️  {}", "Warnings".bright_yellow().bold());

        for warning in &response.warnings {
            eprintln!("- {}", warning.bright_yellow())
        }
    }

    if !response.unexecutable.is_empty() {
        eprintln!("☢️  {}", "Unexecutable steps".bright_red().bold());

        for unexecutable in &response.unexecutable {
            eprintln!("- {}", unexecutable.bright_red())
        }
    }

    if response.executed_steps > 0 {
        eprintln!(
            "{}  {}",
            "✔️".bold(),
            format!("Schema pushed to database. ({} steps)", response.executed_steps).green()
        );
    } else if response.unexecutable.is_empty() && response.warnings.is_empty() && response.executed_steps == 0 {
        eprintln!(
            "{}  {}",
            "✔️".bold(),
            "No changes to push. Prisma schema and database are in sync.".green()
        );
    } else {
        eprintln!(
            "{}  {}",
            "❌".bold(),
            "The schema was not pushed. Pass the --force flag to ignore warnings."
        );
        std::process::exit(1);
    }

    Ok(())
}

struct DiffHost;

impl schema_connector::ConnectorHost for DiffHost {
    fn print(&self, s: &str) -> BoxFuture<'_, schema_core::CoreResult<()>> {
        print!("{s}");
        Box::pin(std::future::ready(Ok(())))
    }
}

async fn migrate_diff(cmd: &MigrateDiff) -> anyhow::Result<()> {
    use schema_core::json_rpc::types::*;

    let api = schema_core::schema_api(None, Some(Arc::new(DiffHost)))?;
    let to = if let Some(to_schema_datamodel) = &cmd.to_schema_datamodel {
        DiffTarget::SchemaDatamodel(SchemaContainer {
            schema: to_schema_datamodel.clone(),
        })
    } else {
        todo!("can't handle {:?} yet", cmd)
    };
    let from = if let Some(url) = &cmd.from_url {
        DiffTarget::Url(UrlContainer { url: url.clone() })
    } else {
        todo!("can't handle {:?} yet", cmd)
    };

    let input = DiffParams {
        exit_code: None,
        from,
        script: cmd.script,
        shadow_database_url: None, // TODO
        to,
    };

    api.diff(input).await?;

    Ok(())
}

fn init_logger() {
    use tracing_error::ErrorLayer;
    use tracing_subscriber::prelude::*;

    use tracing_subscriber::{EnvFilter, FmtSubscriber};

    let subscriber = FmtSubscriber::builder()
        .with_env_filter(EnvFilter::from_default_env())
        .with_ansi(true)
        .with_writer(std::io::stderr)
        .finish()
        .with(ErrorLayer::default())
        .with(schema_core::TimingsLayer);

    tracing::subscriber::set_global_default(subscriber)
        .map_err(|err| eprintln!("Error initializing the global logger: {err}"))
        .ok();
}