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
|
use indicatif::{ProgressBar, ProgressStyle};
use serde::{Deserialize, Serialize};
use std::fs::File;
use std::io::prelude::*;
use crate::{
config::Cfg,
db::{
lists_get, lists_get_all_ids, lists_insert, userlist_get_all_ids,
userlist_get_current_version, userlist_get_set_version,
},
error::{EType, MLErr, MLE},
mod_add, AddMod, IDSelector, List, Modloader, STYLE_OPERATION,
};
#[derive(Debug, Serialize, Deserialize)]
struct Export {
lists: Vec<ExportList>,
}
#[derive(Debug, Serialize, Deserialize)]
struct ExportVersion {
version: String,
set: bool,
}
impl ExportVersion {
fn from(config: &Cfg, list_id: &str, mod_id: &str) -> MLE<Self> {
Ok(Self {
version: userlist_get_current_version(config, list_id, mod_id)?,
set: userlist_get_set_version(config, list_id, mod_id)?,
})
}
}
#[derive(Debug, Serialize, Deserialize)]
struct ExportList {
id: String,
versions: Vec<ExportVersion>,
launcher: String,
mc_version: String,
download_folder: Option<String>,
}
impl ExportList {
pub fn from(config: &Cfg, list_id: &str, download: bool) -> MLE<Self> {
let list = lists_get(config, list_id)?;
let mut dl_folder = None;
if download {
dl_folder = Some(list.download_folder);
};
let mods = userlist_get_all_ids(config, list_id)?;
let mut versions = vec![];
for m in mods {
versions.push(ExportVersion::from(config, list_id, &m)?);
}
Ok(Self {
id: list.id,
versions,
launcher: list.modloader.to_string(),
mc_version: list.mc_version,
download_folder: dl_folder,
})
}
}
/// # Errors
pub fn export(config: &Cfg, list: Option<String>) -> MLE<()> {
let progress = ProgressBar::new_spinner();
progress.set_style(
ProgressStyle::with_template(STYLE_OPERATION)
.map_err(|_| MLErr::new(EType::LibIndicatif, "template error"))?,
);
let mut list_ids: Vec<String> = vec![];
if list.is_none() {
list_ids = lists_get_all_ids(config)?;
} else {
list_ids.push(
lists_get(
config,
&list.ok_or(MLErr::new(EType::Other, "nolist"))?,
)?
.id,
);
}
let mut lists: Vec<ExportList> = vec![];
for list_id in list_ids {
progress.set_message(format!("Export {list_id}"));
//TODO download option/ new download on import
lists.push(ExportList::from(config, &list_id, true)?);
}
let toml = toml::to_string(&Export { lists })?;
let filestr = dirs::home_dir()
.ok_or(MLErr::new(EType::Other, "no home"))?
.join("mlexport.toml")
.into_os_string()
.into_string()
.map_err(|_| MLErr::new(EType::IoError, "No String"))?;
progress.set_message("Create file");
let mut file = File::create(&filestr)?;
file.write_all(toml.as_bytes())?;
progress.finish_with_message(format!("Exported to {filestr}"));
Ok(())
}
/// # Errors
pub async fn import(
config: &Cfg,
file_str: &str,
direct_download: bool,
) -> MLE<()> {
let mut file = File::open(file_str)?;
let mut content = String::new();
file.read_to_string(&mut content)?;
let export: Export = toml::from_str(&content)?;
for exportlist in export.lists {
let list = List {
id: exportlist.id,
mc_version: exportlist.mc_version,
modloader: Modloader::from(&exportlist.launcher)?,
download_folder: exportlist
.download_folder
.ok_or(MLErr::new(EType::Other, "NO_DL"))?,
};
lists_insert(
config,
&list.id,
&list.mc_version,
&list.modloader,
&list.download_folder,
)?;
let mut ver_ids = vec![];
for id in exportlist.versions {
ver_ids.push(AddMod {
id: IDSelector::VersionID(id.version),
set_version: id.set,
});
}
mod_add(config, ver_ids, list, direct_download).await?;
}
Ok(())
}
|