summaryrefslogtreecommitdiff
path: root/src/commands/download.rs
diff options
context:
space:
mode:
authorFxQnLr <[email protected]>2022-12-07 17:45:16 +0100
committerFxQnLr <[email protected]>2022-12-07 17:45:16 +0100
commit758e608e6c331df2a5900de7f932f9b498573ed1 (patch)
tree4ec306b7b69613286f1d070a52c7b26d6280b111 /src/commands/download.rs
parent2ec20c50e7c02d82b248835988df040bd266b659 (diff)
downloadmodlist-758e608e6c331df2a5900de7f932f9b498573ed1.tar
modlist-758e608e6c331df2a5900de7f932f9b498573ed1.tar.gz
modlist-758e608e6c331df2a5900de7f932f9b498573ed1.zip
groundwork for downloads; cleanup
Diffstat (limited to 'src/commands/download.rs')
-rw-r--r--src/commands/download.rs31
1 files changed, 15 insertions, 16 deletions
diff --git a/src/commands/download.rs b/src/commands/download.rs
index b0efdc2..421f058 100644
--- a/src/commands/download.rs
+++ b/src/commands/download.rs
@@ -1,9 +1,22 @@
1use crate::{modrinth::Version, files::download_file}; 1use crate::{files::get_downloaded_versions, db::{userlist_get_all_applicable_versions_with_mods, userlist_get_all_current_versions_with_mods}};
2#[allow(unused_imports)] 2#[allow(unused_imports)]
3use crate::{List, get_current_list, config::Cfg, db::userlist_get_all_downloads, input::Input}; 3use crate::{List, get_current_list, config::Cfg, db::userlist_get_all_downloads, input::Input};
4 4
5pub async fn download(_config: Cfg, _input: Input) -> Result<(), Box<dyn std::error::Error>> { 5pub async fn download(config: Cfg, _input: Input) -> Result<(), Box<dyn std::error::Error>> {
6
7 let current_list = get_current_list(config.clone())?;
8
6 println!("NO IMPLEMENTATION FOR DOWNLOAD YET"); 9 println!("NO IMPLEMENTATION FOR DOWNLOAD YET");
10
11 let downloaded_versions = get_downloaded_versions(current_list.clone())?;
12 println!("DL: {:?}", downloaded_versions);
13
14 let current_version_ids = userlist_get_all_current_versions_with_mods(config.clone(), String::from(&current_list.id))?;
15 println!("CU: {:?}", current_version_ids);
16
17 let applicable_version_ids = userlist_get_all_applicable_versions_with_mods(config, current_list.id)?;
18 println!("AP: {:?}", applicable_version_ids);
19
7 /* 20 /*
8 let list = get_current_list(config.clone())?; 21 let list = get_current_list(config.clone())?;
9 22
@@ -34,18 +47,4 @@ async fn download_links(_config: Cfg, _input: Input, _current_list: List, _links
34 Ok(String::new()) 47 Ok(String::new())
35} 48}
36 49
37pub async fn download_versions(current_list: List, versions: Vec<Version>) -> Result<String, Box<dyn std::error::Error>> {
38
39 let dl_path = String::from(&current_list.download_folder);
40
41 for ver in versions {
42 let primary_file = ver.files.into_iter().find(|file| file.primary).unwrap();
43 let mut splitname: Vec<&str> = primary_file.filename.split('.').collect();
44 let extension = splitname.pop().ok_or("NO_FILE_EXTENSION")?;
45 let filename = format!("{}.mr{}.{}", splitname.join("."), ver.id, extension);
46 download_file(primary_file.url, current_list.clone().download_folder, filename).await?;
47 }
48
49 Ok(dl_path)
50}
51 50