forked from diesel-rs/diesel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.rs
More file actions
514 lines (445 loc) · 17 KB
/
Copy pathmain.rs
File metadata and controls
514 lines (445 loc) · 17 KB
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
// Built-in Lints
#![deny(missing_copy_implementations)]
// Clippy lints
#![allow(clippy::option_map_unwrap_or_else, clippy::option_map_unwrap_or)]
#![warn(
clippy::wrong_pub_self_convention,
clippy::mut_mut,
clippy::non_ascii_literal,
clippy::similar_names,
clippy::unicode_not_nfc,
clippy::if_not_else,
clippy::items_after_statements,
clippy::used_underscore_binding
)]
#![cfg_attr(test, allow(clippy::result_unwrap_used))]
extern crate chrono;
#[macro_use]
extern crate clap;
#[macro_use]
extern crate diesel;
extern crate dotenv;
extern crate migrations_internals;
#[macro_use]
extern crate serde;
extern crate tempfile;
extern crate toml;
#[cfg(feature = "url")]
extern crate url;
mod config;
#[cfg(feature = "barrel-migrations")]
extern crate barrel;
mod database_error;
#[macro_use]
mod database;
mod cli;
mod infer_schema_internals;
mod print_schema;
#[cfg(any(feature = "postgres", feature = "mysql"))]
mod query_helper;
use chrono::*;
use clap::{ArgMatches, Shell};
use migrations_internals::{self as migrations, MigrationConnection};
use std::any::Any;
use std::error::Error;
use std::fmt::Display;
use std::io::stdout;
use std::path::{Path, PathBuf};
use std::{env, fs};
use self::config::Config;
use self::database_error::{DatabaseError, DatabaseResult};
use migrations_internals::TIMESTAMP_FORMAT;
fn main() {
use self::dotenv::dotenv;
dotenv().ok();
let matches = cli::build_cli().get_matches();
match matches.subcommand() {
("migration", Some(matches)) => run_migration_command(matches).unwrap_or_else(handle_error),
("setup", Some(matches)) => run_setup_command(matches),
("database", Some(matches)) => run_database_command(matches).unwrap_or_else(handle_error),
("bash-completion", Some(matches)) => generate_bash_completion_command(matches),
("completions", Some(matches)) => generate_completions_command(matches),
("print-schema", Some(matches)) => run_infer_schema(matches).unwrap_or_else(handle_error),
_ => unreachable!("The cli parser should prevent reaching here"),
}
}
// https://github.com/rust-lang-nursery/rust-clippy/issues/2927#issuecomment-405705595
#[allow(clippy::similar_names)]
fn run_migration_command(matches: &ArgMatches) -> Result<(), Box<dyn Error>> {
match matches.subcommand() {
("run", Some(_)) => {
let database_url = database::database_url(matches);
let dir = migrations_dir(matches);
call_with_conn!(
database_url,
migrations::run_pending_migrations_in_directory(&dir, &mut stdout())
)?;
regenerate_schema_if_file_specified(matches)?;
}
("revert", Some(_)) => {
let database_url = database::database_url(matches);
let dir = migrations_dir(matches);
call_with_conn!(
database_url,
migrations::revert_latest_migration_in_directory(&dir)
)?;
regenerate_schema_if_file_specified(matches)?;
}
("redo", Some(_)) => {
let database_url = database::database_url(matches);
let dir = migrations_dir(matches);
call_with_conn!(database_url, redo_latest_migration(&dir));
regenerate_schema_if_file_specified(matches)?;
}
("list", Some(_)) => {
let database_url = database::database_url(matches);
let dir = migrations_dir(matches);
let mut migrations =
call_with_conn!(database_url, migrations::mark_migrations_in_directory(&dir))?;
migrations.sort_by_key(|&(ref m, _)| m.version().to_string());
println!("Migrations:");
for (migration, applied) in migrations {
let name = migration
.file_path()
.unwrap()
.file_name()
.unwrap()
.to_string_lossy();
let x = if applied { 'X' } else { ' ' };
println!(" [{}] {}", x, name);
}
}
("pending", Some(_)) => {
let database_url = database::database_url(matches);
let result = call_with_conn!(database_url, migrations::any_pending_migrations)?;
println!("{:?}", result);
}
("generate", Some(args)) => {
let migration_name = args.value_of("MIGRATION_NAME").unwrap();
let version = migration_version(args);
let versioned_name = format!("{}_{}", version, migration_name);
let migration_dir = migrations_dir(matches).join(versioned_name);
fs::create_dir(&migration_dir).unwrap();
match args.value_of("MIGRATION_FORMAT") {
#[cfg(feature = "barrel-migrations")]
Some("barrel") => ::barrel::integrations::diesel::generate_initial(&migration_dir),
Some("sql") => generate_sql_migration(&migration_dir),
Some(x) => return Err(format!("Unrecognized migration format `{}`", x).into()),
None => unreachable!("MIGRATION_FORMAT has a default value"),
}
}
_ => unreachable!("The cli parser should prevent reaching here"),
};
Ok(())
}
fn generate_sql_migration(path: &PathBuf) {
use std::io::Write;
let migration_dir_relative =
convert_absolute_path_to_relative(path, &env::current_dir().unwrap());
let up_path = path.join("up.sql");
println!(
"Creating {}",
migration_dir_relative.join("up.sql").display()
);
let mut up = fs::File::create(up_path).unwrap();
up.write_all(b"-- Your SQL goes here").unwrap();
let down_path = path.join("down.sql");
println!(
"Creating {}",
migration_dir_relative.join("down.sql").display()
);
let mut down = fs::File::create(down_path).unwrap();
down.write_all(b"-- This file should undo anything in `up.sql`")
.unwrap();
}
fn migration_version<'a>(matches: &'a ArgMatches) -> Box<dyn Display + 'a> {
matches
.value_of("MIGRATION_VERSION")
.map(|s| Box::new(s) as Box<dyn Display>)
.unwrap_or_else(|| Box::new(Utc::now().format(TIMESTAMP_FORMAT)))
}
fn migrations_dir_from_cli(matches: &ArgMatches) -> Option<PathBuf> {
matches
.value_of("MIGRATION_DIRECTORY")
.map(PathBuf::from)
.or_else(|| {
matches
.subcommand()
.1
.and_then(|s| migrations_dir_from_cli(s))
})
}
fn migrations_dir(matches: &ArgMatches) -> PathBuf {
migrations_dir_from_cli(matches)
.or_else(|| env::var("MIGRATION_DIRECTORY").map(PathBuf::from).ok())
.unwrap_or_else(|| migrations::find_migrations_directory().unwrap_or_else(handle_error))
}
fn run_setup_command(matches: &ArgMatches) {
let migrations_dir = create_migrations_dir(matches).unwrap_or_else(handle_error);
create_config_file(matches).unwrap_or_else(handle_error);
database::setup_database(matches, &migrations_dir).unwrap_or_else(handle_error);
}
fn create_migrations_dir(matches: &ArgMatches) -> DatabaseResult<PathBuf> {
let dir = matches
.value_of("MIGRATION_DIRECTORY")
.map(PathBuf::from)
.or_else(|| env::var("MIGRATION_DIRECTORY").map(PathBuf::from).ok())
.unwrap_or_else(|| {
find_project_root()
.unwrap_or_else(handle_error)
.join("migrations")
});
if !dir.exists() {
create_migrations_directory(&dir)?;
}
Ok(dir.to_owned())
}
fn create_config_file(matches: &ArgMatches) -> DatabaseResult<()> {
use std::io::Write;
let path = Config::file_path(matches);
if !path.exists() {
let mut file = fs::File::create(path)?;
file.write_all(include_bytes!("default_files/diesel.toml"))?;
}
Ok(())
}
fn run_database_command(matches: &ArgMatches) -> Result<(), Box<dyn Error>> {
match matches.subcommand() {
("setup", Some(args)) => {
let migrations_dir = migrations_dir(args);
database::setup_database(args, &migrations_dir)?;
}
("reset", Some(args)) => {
let migrations_dir = migrations_dir(args);
database::reset_database(args, &migrations_dir)?;
regenerate_schema_if_file_specified(matches)?;
}
("drop", Some(args)) => database::drop_database_command(args)?,
_ => unreachable!("The cli parser should prevent reaching here"),
};
Ok(())
}
fn generate_bash_completion_command(_: &ArgMatches) {
eprintln!(
"WARNING: `diesel bash-completion` is deprecated, use `diesel completions bash` instead"
);
cli::build_cli().gen_completions_to("diesel", Shell::Bash, &mut stdout());
}
fn generate_completions_command(matches: &ArgMatches) {
let shell = value_t!(matches, "SHELL", Shell).unwrap_or_else(|e| e.exit());
cli::build_cli().gen_completions_to("diesel", shell, &mut stdout());
}
/// Looks for a migrations directory in the current path and all parent paths,
/// and creates one in the same directory as the Cargo.toml if it can't find
/// one. It also sticks a .gitkeep in the directory so git will pick it up.
/// Returns a `DatabaseError::CargoTomlNotFound` if no Cargo.toml is found.
fn create_migrations_directory(path: &Path) -> DatabaseResult<PathBuf> {
println!("Creating migrations directory at: {}", path.display());
fs::create_dir(path)?;
fs::File::create(path.join(".gitkeep"))?;
Ok(path.to_owned())
}
fn find_project_root() -> DatabaseResult<PathBuf> {
search_for_cargo_toml_directory(&env::current_dir()?)
}
/// Searches for the directory that holds the project's Cargo.toml, and returns
/// the path if it found it, or returns a `DatabaseError::CargoTomlNotFound`.
fn search_for_cargo_toml_directory(path: &Path) -> DatabaseResult<PathBuf> {
let toml_path = path.join("Cargo.toml");
if toml_path.is_file() {
Ok(path.to_owned())
} else {
path.parent()
.map(search_for_cargo_toml_directory)
.unwrap_or(Err(DatabaseError::CargoTomlNotFound))
}
}
/// Reverts the most recent migration, and then runs it again, all in a
/// transaction. If either part fails, the transaction is not committed.
fn redo_latest_migration<Conn>(conn: &Conn, migrations_dir: &Path)
where
Conn: MigrationConnection + Any,
{
let migration_inner = || {
let reverted_version =
migrations::revert_latest_migration_in_directory(conn, migrations_dir)?;
migrations::run_migration_with_version(
conn,
migrations_dir,
&reverted_version,
&mut stdout(),
)
};
if should_redo_migration_in_transaction(conn) {
conn.transaction(migration_inner)
.unwrap_or_else(handle_error);
} else {
migration_inner().unwrap_or_else(handle_error);
}
}
#[cfg(feature = "mysql")]
fn should_redo_migration_in_transaction(t: &dyn Any) -> bool {
!t.is::<::diesel::mysql::MysqlConnection>()
}
#[cfg(not(feature = "mysql"))]
fn should_redo_migration_in_transaction(_t: &dyn Any) -> bool {
true
}
#[allow(clippy::needless_pass_by_value)]
fn handle_error<E: Display, T>(error: E) -> T {
eprintln!("{}", error);
::std::process::exit(1);
}
// Converts an absolute path to a relative path, with the restriction that the
// target path must be in the same directory or above the current path.
fn convert_absolute_path_to_relative(target_path: &Path, mut current_path: &Path) -> PathBuf {
let mut result = PathBuf::new();
while !target_path.starts_with(current_path) {
result.push("..");
match current_path.parent() {
Some(parent) => current_path = parent,
None => return target_path.into(),
}
}
result.join(target_path.strip_prefix(current_path).unwrap())
}
fn run_infer_schema(matches: &ArgMatches) -> Result<(), Box<dyn Error>> {
use infer_schema_internals::TableName;
use print_schema::*;
let database_url = database::database_url(matches);
let mut config = Config::read(matches)?.print_schema;
if let Some(schema_name) = matches.value_of("schema") {
config.schema = Some(String::from(schema_name))
}
let filter = matches
.values_of("table-name")
.unwrap_or_default()
.map(|table_name| {
if let Some(schema) = config.schema_name() {
TableName::new(table_name, schema)
} else {
table_name.parse().unwrap()
}
})
.collect();
if matches.is_present("whitelist") {
eprintln!("The `whitelist` option has been deprecated and renamed to `only-tables`.");
}
if matches.is_present("blacklist") {
eprintln!("The `blacklist` option has been deprecated and renamed to `except-tables`.");
}
if matches.is_present("only-tables") || matches.is_present("whitelist") {
config.filter = Filtering::OnlyTables(filter)
} else if matches.is_present("except-tables") || matches.is_present("blacklist") {
config.filter = Filtering::ExceptTables(filter)
}
if matches.is_present("with-docs") {
config.with_docs = true;
}
if let Some(path) = matches.value_of("patch-file") {
config.patch_file = Some(PathBuf::from(path));
}
if let Some(types) = matches.values_of("import-types") {
let types = types.map(String::from).collect();
config.import_types = Some(types);
}
run_print_schema(&database_url, &config, &mut stdout())?;
Ok(())
}
fn regenerate_schema_if_file_specified(matches: &ArgMatches) -> Result<(), Box<dyn Error>> {
use std::io::Read;
let config = Config::read(matches)?;
if let Some(ref path) = config.print_schema.file {
if let Some(parent) = path.parent() {
fs::create_dir_all(parent)?;
}
let database_url = database::database_url(matches);
if matches.is_present("LOCKED_SCHEMA") {
let mut buf = Vec::new();
print_schema::run_print_schema(&database_url, &config.print_schema, &mut buf)?;
let mut old_buf = Vec::new();
let mut file = fs::File::open(path)?;
file.read_to_end(&mut old_buf)?;
if buf != old_buf {
return Err(format!(
"Command would result in changes to {}. \
Rerun the command locally, and commit the changes.",
path.display()
)
.into());
}
} else {
let file = fs::File::create(path)?;
print_schema::output_schema(&database_url, &config.print_schema, file, path)?;
}
}
Ok(())
}
#[cfg(test)]
mod tests {
extern crate tempdir;
use database_error::DatabaseError;
use self::tempdir::TempDir;
use std::fs;
use std::path::PathBuf;
use super::convert_absolute_path_to_relative;
use super::search_for_cargo_toml_directory;
#[test]
fn toml_directory_find_cargo_toml() {
let dir = TempDir::new("diesel").unwrap();
let temp_path = dir.path().canonicalize().unwrap();
let toml_path = temp_path.join("Cargo.toml");
fs::File::create(&toml_path).unwrap();
assert_eq!(
Ok(temp_path.clone()),
search_for_cargo_toml_directory(&temp_path)
);
}
#[test]
fn cargo_toml_not_found_if_no_cargo_toml() {
let dir = TempDir::new("diesel").unwrap();
let temp_path = dir.path().canonicalize().unwrap();
assert_eq!(
Err(DatabaseError::CargoTomlNotFound),
search_for_cargo_toml_directory(&temp_path)
);
}
#[test]
fn convert_absolute_path_to_relative_works() {
assert_eq!(
PathBuf::from("migrations/12345_create_user"),
convert_absolute_path_to_relative(
&PathBuf::from("projects/foo/migrations/12345_create_user"),
&PathBuf::from("projects/foo")
)
);
assert_eq!(
PathBuf::from("../migrations/12345_create_user"),
convert_absolute_path_to_relative(
&PathBuf::from("projects/foo/migrations/12345_create_user"),
&PathBuf::from("projects/foo/src")
)
);
assert_eq!(
PathBuf::from("../../../migrations/12345_create_user"),
convert_absolute_path_to_relative(
&PathBuf::from("projects/foo/migrations/12345_create_user"),
&PathBuf::from("projects/foo/src/controllers/errors")
)
);
assert_eq!(
PathBuf::from("12345_create_user"),
convert_absolute_path_to_relative(
&PathBuf::from("projects/foo/migrations/12345_create_user"),
&PathBuf::from("projects/foo/migrations")
)
);
assert_eq!(
PathBuf::from("../12345_create_user"),
convert_absolute_path_to_relative(
&PathBuf::from("projects/foo/migrations/12345_create_user"),
&PathBuf::from("projects/foo/migrations/67890_create_post")
)
);
}
}