1
+ use merge:: Merge ;
1
2
use sea_orm_codegen:: {
2
3
DateTimeCrate as CodegenDateTimeCrate , EntityTransformer , EntityWriterContext , OutputFile ,
3
4
WithSerde ,
@@ -8,17 +9,6 @@ use url::Url;
8
9
9
10
use crate :: { parse_config, DateTimeCrate , GenerateSubCommandsEntity , GenerateSubcommands } ;
10
11
11
- fn merge_options < T : std:: fmt:: Debug > ( default : Option < T > , config : Option < T > , cli : Option < T > ) -> Option < T > {
12
- dbg ! ( & default , & config, & cli) ;
13
- if cli. is_some ( ) {
14
- cli
15
- } else if config. is_some ( ) {
16
- config
17
- } else {
18
- default
19
- }
20
- }
21
-
22
12
fn merge_cli_config_generate_entity (
23
13
mut command : GenerateSubCommandsEntity ,
24
14
) -> Result < GenerateSubCommandsEntity , Box < dyn Error > > {
@@ -45,32 +35,17 @@ fn merge_cli_config_generate_entity(
45
35
} ;
46
36
47
37
if let Some ( ref config_path) = command. config {
48
- let config_values = parse_config :: < GenerateSubCommandsEntity > ( config_path. to_string ( ) ) ?;
38
+ let mut config_values = parse_config :: < GenerateSubCommandsEntity > ( config_path. to_string ( ) ) ?;
49
39
if Option :: is_some ( & config_values. database_url ) {
50
40
return Err ( "Database Url is set in the config which is not recommended" . into ( ) ) ;
51
41
}
52
42
if Option :: is_some ( & config_values. max_connections ) {
53
43
return Err ( "Max Connections is set in the config which is not recommended" . into ( ) ) ;
54
44
}
55
-
56
- command. compact_format = merge_options ( default_values. compact_format , config_values. compact_format , command. compact_format ) ;
57
- command. expanded_format = merge_options ( default_values. expanded_format , config_values. expanded_format , command. expanded_format ) ;
58
- command. include_hidden_tables = merge_options ( default_values. include_hidden_tables , config_values. include_hidden_tables , command. include_hidden_tables ) ;
59
- command. tables = merge_options ( default_values. tables , config_values. tables , command. tables ) ;
60
- command. ignore_tables = merge_options ( default_values. ignore_tables , config_values. ignore_tables , command. ignore_tables ) ;
61
- command. max_connections = merge_options ( default_values. max_connections , config_values. max_connections , command. max_connections ) ;
62
- command. output_dir = merge_options ( default_values. output_dir , config_values. output_dir , command. output_dir ) ;
63
- command. database_schema = merge_options ( default_values. database_schema , config_values. database_schema , command. database_schema ) ;
64
- command. database_url = merge_options ( default_values. database_url , config_values. database_url , command. database_url ) ;
65
- command. with_serde = merge_options ( default_values. with_serde , config_values. with_serde , command. with_serde ) ;
66
- command. serde_skip_deserializing_primary_key = merge_options ( default_values. serde_skip_deserializing_primary_key , config_values. serde_skip_deserializing_primary_key , command. serde_skip_deserializing_primary_key ) ;
67
- command. serde_skip_hidden_column = merge_options ( default_values. serde_skip_hidden_column , config_values. serde_skip_hidden_column , command. serde_skip_hidden_column ) ;
68
- command. with_copy_enums = merge_options ( default_values. with_copy_enums , config_values. with_copy_enums , command. with_copy_enums ) ;
69
- command. date_time_crate = merge_options ( default_values. date_time_crate , config_values. date_time_crate , command. date_time_crate ) ;
70
- command. lib = merge_options ( default_values. lib , config_values. lib , command. lib ) ;
71
- command. model_extra_derives = merge_options ( default_values. model_extra_derives , config_values. model_extra_derives , command. model_extra_derives ) ;
72
- command. model_extra_attributes = merge_options ( default_values. model_extra_attributes , config_values. model_extra_attributes , command. model_extra_attributes ) ;
73
- command. seaography = merge_options ( default_values. seaography , config_values. seaography , command. seaography ) ;
45
+ config_values. merge ( default_values) ;
46
+ command. merge ( config_values) ;
47
+ } else {
48
+ command. merge ( default_values) ;
74
49
}
75
50
Ok ( command)
76
51
}
@@ -83,7 +58,6 @@ pub async fn run_generate_command(
83
58
GenerateSubcommands :: Entity ( command) => {
84
59
let command = merge_cli_config_generate_entity ( command) ?;
85
60
let (
86
- _,
87
61
expanded_format,
88
62
include_hidden_tables,
89
63
tables,
@@ -102,7 +76,6 @@ pub async fn run_generate_command(
102
76
model_extra_attributes,
103
77
seaography,
104
78
) = (
105
- command. compact_format . unwrap ( ) ,
106
79
command. expanded_format . unwrap ( ) ,
107
80
command. include_hidden_tables . unwrap ( ) ,
108
81
command. tables . unwrap ( ) ,
@@ -365,14 +338,22 @@ mod tests {
365
338
GenerateSubCommandsEntity {
366
339
compact_format: Some ( true ) ,
367
340
expanded_format: Some ( true ) ,
368
- config: Some ( PathBuf :: from( env!( "CARGO_MANIFEST_DIR" ) ) . join( "src/config/tests/parse.json" ) . into_os_string( ) . into_string( ) . unwrap( ) ) ,
341
+ config: Some (
342
+ PathBuf :: from( env!( "CARGO_MANIFEST_DIR" ) )
343
+ . join( "src/config/tests/parse.json" )
344
+ . into_os_string( )
345
+ . into_string( )
346
+ . unwrap( )
347
+ ) ,
369
348
include_hidden_tables: Some ( true ) ,
370
349
tables: Some ( vec![ "my_tables" . to_string( ) ] ) ,
371
350
ignore_tables: Some ( vec![ "seaql_migrations" . to_string( ) ] ) ,
372
351
max_connections: Some ( 1 ) ,
373
352
output_dir: Some ( "out" . to_string( ) ) ,
374
353
database_schema: Some ( "public" . to_string( ) ) ,
375
- database_url: Some ( "postgres://root:root@localhost:3306/database" . to_string( ) ) ,
354
+ database_url: Some (
355
+ "postgres://root:root@localhost:3306/database" . to_string( )
356
+ ) ,
376
357
with_serde: Some ( "none" . to_string( ) ) ,
377
358
serde_skip_deserializing_primary_key: Some ( false ) ,
378
359
serde_skip_hidden_column: Some ( false ) ,
@@ -408,7 +389,9 @@ mod tests {
408
389
409
390
match cli. command {
410
391
Commands :: Generate { command } => match command {
411
- GenerateSubcommands :: Entity ( command) => { let _ = merge_cli_config_generate_entity ( command) . unwrap ( ) ; } ,
392
+ GenerateSubcommands :: Entity ( command) => {
393
+ let _ = merge_cli_config_generate_entity ( command) . unwrap ( ) ;
394
+ }
412
395
} ,
413
396
_ => unreachable ! ( ) ,
414
397
}
@@ -433,7 +416,9 @@ mod tests {
433
416
] ) ;
434
417
match cli. command {
435
418
Commands :: Generate { command } => match command {
436
- GenerateSubcommands :: Entity ( command) => { let _ = merge_cli_config_generate_entity ( command) . unwrap ( ) ; } ,
419
+ GenerateSubcommands :: Entity ( command) => {
420
+ let _ = merge_cli_config_generate_entity ( command) . unwrap ( ) ;
421
+ }
437
422
} ,
438
423
_ => unreachable ! ( ) ,
439
424
}
0 commit comments