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
|
use crate::{error::{MLE, MLError, ErrorType}, Modloader, config::Cfg, db::lists_get, get_current_list, List, modrinth::{get_minecraft_version, MCVersionType}};
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Input {
pub command: Option<Cmd>,
pub mod_options: Option<ModOptions>,
pub mod_id: Option<String>,
pub mod_version: Option<String>,
pub set_version: bool,
pub all_lists: bool,
pub clean: bool,
pub direct_download: bool,
pub delete_old: bool,
pub list: Option<List>,
pub list_options: Option<ListOptions>,
pub list_id: Option<String>,
pub list_mcversion: Option<String>,
pub modloader: Option<Modloader>,
pub directory: Option<String>,
pub io_options: Option<IoOptions>,
pub file: Option<String>,
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum Cmd {
Mod,
List,
Update,
Download,
Io,
Version,
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ModOptions {
Add,
Remove
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ListOptions {
Add,
Remove,
Change,
Version,
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum IoOptions {
Export,
Import
}
impl Input {
fn from(config: Cfg, input: Vec<String>) -> MLE<Self> {
let input_string = input.join(" ");
let mut args: Vec<&str> = input_string.split(" -").collect();
args[0] = args[0].split_at(1).1;
let mut command: Option<Cmd> = None;
let mut mod_options: Option<ModOptions> = None;
let mut mod_id: Option<String> = None;
let mut mod_version: Option<String> = None;
let mut set_version = false;
let mut all_lists = false;
let mut clean = false;
let mut direct_download = true;
let mut delete_old = false;
let mut list: Option<List> = None;
let mut list_options: Option<ListOptions> = None;
let mut list_id: Option<String> = None;
let mut list_mcversion: Option<String> = None;
let mut modloader: Option<Modloader> = None;
let mut directory: Option<String> = None;
let mut io_options: Option<IoOptions> = None;
let mut file: Option<String> = None;
for arg in args {
let arg_split: Vec<&str> = arg.trim().split(" ").collect();
match arg_split[0] {
"v" | "version" => {
command = Some(Cmd::Version);
},
"d" | "download" => {
command = Some(Cmd::Download);
},
"u" | "update" => {
command = Some(Cmd::Update);
},
"ma" => {
command = Some(Cmd::Mod);
mod_options = Some(ModOptions::Add);
if arg_split.len() == 2 {
mod_id = Some(String::from(arg_split[1]));
} else {
return Err(MLError::new(ErrorType::ArgumentError, "Please specify a list mod slug or id"));
}
},
"mv" => {
command = Some(Cmd::Mod);
mod_options = Some(ModOptions::Add);
if arg_split.len() == 2 {
mod_version = Some(String::from(arg_split[1]));
} else {
return Err(MLError::new(ErrorType::ArgumentError, "Please specify a version id"));
};
},
"mr" => {
command = Some(Cmd::Mod);
mod_options = Some(ModOptions::Remove);
if arg_split.len() == 2 {
mod_id = Some(String::from(arg_split[1]));
} else {
return Err(MLError::new(ErrorType::ArgumentError, "Please specify a mod id"));
};
},
"set_version" => {
set_version = true;
},
"all_lists" => {
all_lists = true;
},
"clean" => {
clean = true;
},
"no_download" => {
direct_download = false;
},
"delete_old" => {
delete_old = true;
},
"l" => {
if arg_split.len() == 2 {
list = Some(lists_get(config.clone(), String::from(arg_split[1]))?);
} else {
return Err(MLError::new(ErrorType::ArgumentError, "Please specify a list via it's id"));
}
}
"la" => {
command = Some(Cmd::List);
list_options = Some(ListOptions::Add);
if arg_split.len() == 2 {
list_id = Some(String::from(arg_split[1]));
} else {
return Err(MLError::new(ErrorType::ArgumentError, "Please give the new list an id"));
}
},
"lr" => {
command = Some(Cmd::List);
list_options = Some(ListOptions::Remove);
},
"lc" => {
command = Some(Cmd::List);
list_options = Some(ListOptions::Change);
},
"lv" => {
command = Some(Cmd::List);
list_options = Some(ListOptions::Version);
if arg_split.len() == 2 {
list_mcversion = Some(String::from(arg_split[1]));
} else {
return Err(MLError::new(ErrorType::ArgumentError, "Please specify a minecraft version"));
}
},
"mcv" => {
if arg_split.len() == 2 {
list_mcversion = Some(String::from(arg_split[1]));
} else {
return Err(MLError::new(ErrorType::ArgumentError, "Please specify a minecraft version"));
}
},
"ml" => {
if arg_split.len() == 2 {
modloader = Some(Modloader::from(arg_split[1])?);
} else {
return Err(MLError::new(ErrorType::ArgumentError, "Please specify a modloader"));
}
},
"dir" => {
if arg_split.len() == 2 {
directory = Some(String::from(arg_split[1]));
} else {
return Err(MLError::new(ErrorType::ArgumentError, "Please specify a directory"));
}
},
"export" => {
command = Some(Cmd::Io);
io_options = Some(IoOptions::Export);
},
"import" => {
command = Some(Cmd::Io);
io_options = Some(IoOptions::Import);
},
"f" => {
file = Some(String::from(arg_split[1]));
},
_ => return Err(MLError::new(ErrorType::ArgumentError, format!("Unknown Argument ({})", arg_split[0]).as_str())),
}
}
Ok(Self {
command,
mod_options,
mod_id,
mod_version,
set_version,
all_lists,
clean,
direct_download,
delete_old,
list,
list_options,
list_id,
list_mcversion,
modloader,
directory,
io_options,
file
})
}
}
pub async fn get_input(config: Cfg, args: Vec<String>) -> MLE<Input> {
let input = Input::from(config.clone(), args)?;
if input.command.is_none() { return Err(MLError::new(ErrorType::ArgumentError, "No command specified")); };
match input.clone().command.unwrap() {
Cmd::Mod => check_mod(input, config),
Cmd::List => check_list(input, config).await,
_ => Ok(input),
}
}
fn check_mod(mut input: Input, config: Cfg) -> MLE<Input> {
if input.mod_options.is_none() {
return Err(MLError::new(ErrorType::ArgumentError, "No mod option"));
};
match input.clone().mod_options.unwrap() {
ModOptions::Add => {
if input.mod_id.is_none() && input.mod_version.is_none() { return Err(MLError::new(ErrorType::ArgumentError, "No mod id/slug or version id")); };
if input.list_id.is_none() { input.list = Some(get_current_list(config.clone())?); };
Ok(input)
},
ModOptions::Remove => {
if input.mod_id.is_none() { return Err(MLError::new(ErrorType::ArgumentError, "MODS_NO_MODID")); };
Ok(input)
},
}
}
async fn check_list(mut input: Input, config: Cfg) -> MLE<Input> {
if input.list_options.is_none() {
return Err(MLError::new(ErrorType::ArgumentError, "NO_LIST_ARGUMENT"));
};
match input.clone().list_options.unwrap() {
ListOptions::Add => {
if input.list_id.is_none() { return Err(MLError::new(ErrorType::ArgumentError, "no list id specified")); };
if input.list_mcversion.is_none() {
println!("No Minecraft Version specified, defaulting to latest release");
input.list_mcversion = Some(get_minecraft_version(config.apis.modrinth, MCVersionType::Release).await);
};
if input.directory.is_none() {
let id = input.clone().list_id.unwrap();
println!("No download directory specified, defaulting to ./downloads/{}", id);
input.directory = Some(format!("./downloads/{}", id))
};
if input.modloader.is_none() { return Err(MLError::new(ErrorType::ArgumentError, "no modloader specified")); };
Ok(input)
},
ListOptions::Remove => {
if input.list.is_none() { return Err(MLError::new(ErrorType::ArgumentError, "NO_LIST_SPECIFIED")); };
Ok(input)
},
ListOptions::Change => {
//TODO check if no change
if input.list.is_none() { return Err(MLError::new(ErrorType::ArgumentError, "NO_LIST_SPECIFIED")); };
Ok(input)
},
ListOptions::Version => {
if input.list.is_none() {
println!("No list specified, using default");
input.list = Some(get_current_list(config)?);
};
Ok(input)
}
}
}
#[test]
fn input_from() {
let config = Cfg::init("modlist.toml").unwrap();
assert_eq!(
Input::from(config.clone(), vec![String::from("-la test -lv 1.19.3")]).unwrap(),
Input {
command: Some(Cmd::List),
mod_options: None,
mod_id: None,
mod_version: None,
set_version: false,
all_lists: false,
clean: false,
direct_download: false,
delete_old: false,
list: None,
list_options: Some(ListOptions::Add),
list_id: Some(String::from("test")),
list_mcversion: Some(String::from("1.19.3")),
modloader: None,
directory: None,
io_options: None,
file: None
}
);
}
#[tokio::test]
async fn get_input_test() {
let config = Cfg::init("modlist.toml").unwrap();
assert_eq!(
get_input(config.clone(), vec![String::from("-ma test")]).await.unwrap(),
Input {
command: Some(Cmd::Mod),
mod_options: Some(ModOptions::Add),
mod_id: Some(String::from("test")),
mod_version: None,
set_version: false,
all_lists: false,
clean: false,
direct_download: false,
delete_old: false,
list: Some(lists_get(config.clone(), String::from("one")).unwrap()),
list_options: None,
list_id: None,
list_mcversion: None,
modloader: None,
directory: None,
io_options: None,
file: None
}
)
}
|