forked from diesel-rs/diesel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli.rs
More file actions
224 lines (213 loc) · 8.65 KB
/
Copy pathcli.rs
File metadata and controls
224 lines (213 loc) · 8.65 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
use clap::{App, AppSettings, Arg, Shell, SubCommand};
pub fn build_cli() -> App<'static, 'static> {
let database_arg = Arg::with_name("DATABASE_URL")
.long("database-url")
.help(
"Specifies the database URL to connect to. Falls back to \
the DATABASE_URL environment variable if unspecified.",
)
.global(true)
.takes_value(true);
let migration_subcommand = SubCommand::with_name("migration")
.about(
"A group of commands for generating, running, and reverting \
migrations.",
)
.setting(AppSettings::VersionlessSubcommands)
.arg(migration_dir_arg())
.subcommand(SubCommand::with_name("run").about("Runs all pending migrations"))
.subcommand(SubCommand::with_name("revert").about("Reverts the latest run migration"))
.subcommand(SubCommand::with_name("redo").about(
"Reverts and re-runs the latest migration. Useful \
for testing that a migration can in fact be reverted.",
))
.subcommand(
SubCommand::with_name("list")
.about("Lists all available migrations, marking those that have been applied."),
)
.subcommand(
SubCommand::with_name("pending")
.about("Returns true if there are any pending migrations."),
)
.subcommand(
SubCommand::with_name("generate")
.about(
"Generate a new migration with the given name, and \
the current timestamp as the version",
)
.arg(
Arg::with_name("MIGRATION_NAME")
.help("The name of the migration to create")
.required(true),
)
.arg(
Arg::with_name("MIGRATION_VERSION")
.long("version")
.help(
"The version number to use when generating the migration. \
Defaults to the current timestamp, which should suffice \
for most use cases.",
)
.takes_value(true),
)
.arg(
Arg::with_name("MIGRATION_FORMAT")
.long("format")
.possible_values(&["sql", "barrel"])
.default_value("sql")
.takes_value(true)
.help("The format of the migration to be generated."),
),
)
.setting(AppSettings::SubcommandRequiredElseHelp);
let setup_subcommand = SubCommand::with_name("setup")
.arg(migration_dir_arg())
.about(
"Creates the migrations directory, creates the database \
specified in your DATABASE_URL, and runs existing migrations.",
);
let database_subcommand = SubCommand::with_name("database")
.alias("db")
.arg(migration_dir_arg())
.about("A group of commands for setting up and resetting your database.")
.setting(AppSettings::VersionlessSubcommands)
.subcommand(SubCommand::with_name("setup").about(
"Creates the database specified in your DATABASE_URL, \
and then runs any existing migrations.",
))
.subcommand(SubCommand::with_name("reset").about(
"Resets your database by dropping the database specified \
in your DATABASE_URL and then running `diesel database setup`.",
))
.subcommand(
SubCommand::with_name("drop")
.about("Drops the database specified in your DATABASE_URL.")
.setting(AppSettings::Hidden),
)
.setting(AppSettings::SubcommandRequiredElseHelp);
let generate_bash_completion_subcommand = SubCommand::with_name("bash-completion")
.about("DEPRECATED: Generate bash completion script for the diesel command.");
let generate_completions_subcommand = SubCommand::with_name("completions")
.about("Generate shell completion scripts for the diesel command.")
.arg(
Arg::with_name("SHELL")
.index(1)
.required(true)
.possible_values(&Shell::variants()),
);
let infer_schema_subcommand = SubCommand::with_name("print-schema")
.setting(AppSettings::VersionlessSubcommands)
.about("Print table definitions for database schema.")
.arg(
Arg::with_name("schema")
.long("schema")
.short("s")
.takes_value(true)
.help("The name of the schema."),
)
.arg(
Arg::with_name("table-name")
.index(1)
.takes_value(true)
.multiple(true)
.help("Table names to filter (default only-tables if not empty)"),
)
.arg(
Arg::with_name("only-tables")
.short("o")
.long("only-tables")
.help("Only include tables from table-name")
.conflicts_with("except-tables")
.conflicts_with("blacklist"),
)
.arg(
Arg::with_name("whitelist")
.short("w")
.long("whitelist")
.hidden(true)
.conflicts_with("blacklist")
.conflicts_with("except-tables"),
)
.arg(
Arg::with_name("except-tables")
.short("e")
.long("except-tables")
.help("Exclude tables from table-name")
.conflicts_with("only-tables")
.conflicts_with("whitelist"),
)
.arg(
Arg::with_name("blacklist")
.short("b")
.long("blacklist")
.hidden(true)
.conflicts_with("whitelist")
.conflicts_with("only-tables"),
)
.arg(
Arg::with_name("with-docs")
.long("with-docs")
.help("Render documentation comments for tables and columns"),
)
.arg(
Arg::with_name("patch-file")
.long("patch-file")
.takes_value(true)
.help("A unified diff file to be applied to the final schema"),
)
.arg(
Arg::with_name("import-types")
.long("import-types")
.takes_value(true)
.multiple(true)
.number_of_values(1)
.help("A list of types to import for every table, separated by commas"),
);
let config_arg = Arg::with_name("CONFIG_FILE")
.long("config-file")
.help(
"The location of the configuration file to use. Falls back to the \
`DIESEL_CONFIG_FILE` environment variable if unspecified. Defaults \
to `diesel.toml` in your project root. See \
diesel.rs/guides/configuring-diesel-cli for documentation on this file.",
)
.global(true)
.takes_value(true);
let locked_schema_arg = Arg::with_name("LOCKED_SCHEMA")
.long("locked-schema")
.help("Require that the schema file is up to date")
.long_help(
"When `print_schema.file` is specified in your config file, this \
flag will cause Diesel CLI to error if any command would result in \
changes to that file. It is recommended that you use this flag when \
running migrations in CI or production.",
)
.global(true);
App::new("diesel")
.version(env!("CARGO_PKG_VERSION"))
.setting(AppSettings::VersionlessSubcommands)
.after_help(
"You can also run `diesel SUBCOMMAND -h` to get more information about that subcommand.",
)
.arg(database_arg)
.arg(config_arg)
.arg(locked_schema_arg)
.subcommand(migration_subcommand)
.subcommand(setup_subcommand)
.subcommand(database_subcommand)
.subcommand(generate_bash_completion_subcommand)
.subcommand(generate_completions_subcommand)
.subcommand(infer_schema_subcommand)
.setting(AppSettings::SubcommandRequiredElseHelp)
}
fn migration_dir_arg<'a, 'b>() -> Arg<'a, 'b> {
Arg::with_name("MIGRATION_DIRECTORY")
.long("migration-dir")
.help(
"The location of your migration directory. By default this \
will look for a directory called `migrations` in the \
current directory and its parents.",
)
.takes_value(true)
.global(true)
}