mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-30 05:11:13 +00:00
This patch enables having a top-level `sqlx-data.json` file within a workspace. It does this by using a full clean / check instead of `cargo rustc` which fails on a workspace. A `--merged` flag is introduced to switch to the workspace behavior Fixes #353. Signed-off-by: Joe Grund <jgrund@whamcloud.io>
71 lines
2.1 KiB
Rust
71 lines
2.1 KiB
Rust
use crate::opt::{Command, DatabaseCommand, MigrateCommand};
|
|
use anyhow::{anyhow, bail};
|
|
use dotenv::dotenv;
|
|
use std::env;
|
|
use std::path::Path;
|
|
|
|
mod database;
|
|
// mod migration;
|
|
// mod migrator;
|
|
mod migrate;
|
|
mod opt;
|
|
mod prepare;
|
|
|
|
pub use crate::opt::Opt;
|
|
|
|
pub async fn run(opt: Opt) -> anyhow::Result<()> {
|
|
if !Path::new("Cargo.toml").exists() {
|
|
bail!(
|
|
r#"Failed to read `Cargo.toml`.
|
|
hint: This command only works in the manifest directory of a Cargo package."#
|
|
);
|
|
}
|
|
|
|
dotenv().ok();
|
|
|
|
let database_url = match opt.database_url {
|
|
Some(db_url) => db_url,
|
|
None => env::var("DATABASE_URL")
|
|
.map_err(|_| anyhow!("The DATABASE_URL environment variable must be set"))?,
|
|
};
|
|
|
|
match opt.command {
|
|
Command::Migrate(migrate) => match migrate.command {
|
|
MigrateCommand::Add {
|
|
description,
|
|
reversible,
|
|
} => migrate::add(&migrate.source, &description, reversible).await?,
|
|
MigrateCommand::Run { dry_run } => {
|
|
migrate::run(&migrate.source, &database_url, dry_run).await?
|
|
}
|
|
MigrateCommand::Revert { dry_run } => {
|
|
migrate::revert(&migrate.source, &database_url, dry_run).await?
|
|
}
|
|
MigrateCommand::Info => migrate::info(&migrate.source, &database_url).await?,
|
|
},
|
|
|
|
Command::Database(database) => match database.command {
|
|
DatabaseCommand::Create => database::create(&database_url).await?,
|
|
DatabaseCommand::Drop { yes } => database::drop(&database_url, !yes).await?,
|
|
DatabaseCommand::Reset { yes, source } => {
|
|
database::reset(&source, &database_url, yes).await?
|
|
}
|
|
DatabaseCommand::Setup { source } => database::setup(&source, &database_url).await?,
|
|
},
|
|
|
|
Command::Prepare {
|
|
check: false,
|
|
merged,
|
|
args,
|
|
} => prepare::run(&database_url, merged, args)?,
|
|
|
|
Command::Prepare {
|
|
check: true,
|
|
merged,
|
|
args,
|
|
} => prepare::check(&database_url, merged, args)?,
|
|
};
|
|
|
|
Ok(())
|
|
}
|