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
|
use std::io::ErrorKind;
use crate::{Modloader, config::Cfg, List, modrinth::Version, get_modloader};
//TODO use prepared statements / change to rusqlite
//MODS
pub fn insert_mod(config: Cfg, id: String, name: String, versions: Vec<String>) -> Result<(), sqlite::Error> {
println!("Inserting into modlist");
let data = format!("{}/data.db", config.data);
let connection = sqlite::open(data).unwrap();
let sql = format!("INSERT INTO mods VALUES ('{}', '{}', '{}')", id, name, versions.join("|"));
connection.execute(sql)
}
pub fn insert_mod_in_list(config: Cfg, list: List, id: String, current_version: String, applicable_versions: Vec<Version>) -> Result<(), sqlite::Error> {
println!("Inserting into current list");
let data = format!("{}/data.db", config.data);
let connection = sqlite::open(data).unwrap();
let mut applicable_versions_vec = vec![];
for ver in applicable_versions {
applicable_versions_vec.push(ver.id);
}
let sql = format!("INSERT INTO {} VALUES ('{}', '{}', '{}')", list.id, id, current_version, applicable_versions_vec.join("|"));
connection.execute(sql)
}
pub fn remove_mod_from_list(config: Cfg, list: List, mod_id: String) -> Result<(), sqlite::Error> {
let data = format!("{}/data.db", config.data);
let connection = sqlite::open(data).unwrap();
let sql = format!("DELETE FROM {} WHERE mod_id = '{}'", list.id, mod_id);
dbg!(&sql);
connection.execute(sql)
}
pub fn get_mods(config: Cfg) -> Result<Vec<String>, Box<dyn std::error::Error>> {
let data = format!("{}/data.db", config.data);
let connection = sqlite::open(data).unwrap();
let sql = "SELECT id FROM mods";
let mut mods: Vec<String> = Vec::new();
//TODO catch sql errors better
connection.iterate(sql, |ids| {
if ids.is_empty() { return false; };
for &(_column, value) in ids.iter() {
mods.push(String::from(value.unwrap()));
}
true
}).unwrap();
match mods.is_empty() {
true => Err(Box::new(std::io::Error::new(ErrorKind::NotFound, "NO_MODS"))),
false => Ok(mods),
}
}
pub fn get_mods_from_list(config: Cfg, list: List) -> Result<Vec<String>, Box<dyn std::error::Error>> {
let data = format!("{}/data.db", config.data);
let connection = sqlite::open(data).unwrap();
let sql = format!("SELECT mod_id FROM {}", list.id);
let mut mods: Vec<String> = Vec::new();
//TODO catch sql errors better
connection.iterate(sql, |ids| {
if ids.is_empty() { return false; };
for &(_column, value) in ids.iter() {
mods.push(String::from(value.unwrap()));
}
true
}).unwrap();
match mods.is_empty() {
true => Err(Box::new(std::io::Error::new(ErrorKind::NotFound, "NO_MODS"))),
false => Ok(mods),
}
}
pub fn get_mod_id(config: Cfg, name: String) -> Result<String, Box<dyn std::error::Error>> {
let data = format!("{}/data.db", config.data);
let connection = sqlite::open(data).unwrap();
let sql = format!("SELECT id FROM mods WHERE name = '{}'", name);
dbg!(&sql);
let mut modification = String::new();
//TODO catch sql errors better
connection.iterate(sql, |id| {
if id.is_empty() { return false; };
for &(_column, value) in id.iter() {
dbg!(&(_column, value));
modification = String::from(value.unwrap());
}
true
}).unwrap();
dbg!(&modification);
if modification.is_empty() { return Err(Box::new(std::io::Error::new(ErrorKind::NotFound, "MOD_NOT_IN_DATABASE"))) };
Ok(modification)
}
#[derive(Debug, Clone)]
pub struct DBModlistVersions {
pub mod_id: String,
pub versions: String,
}
pub fn get_versions(config: Cfg, mods: Vec<String>) -> Result<Vec<DBModlistVersions>, Box<dyn std::error::Error>> {
let data = format!("{}/data.db", config.data);
let connection = sqlite::open(data).unwrap();
let mut wherestr = String::from("WHERE");
for (i, id) in mods.iter().enumerate() {
let mut or = " OR";
if i == mods.len() - 1 { or = "" }
println!("Pushing {}({}) | OR: '{}'", id, i, or);
wherestr = format!("{} id = '{}'{}", wherestr, id, or);
}
let sql = format!("SELECT id, versions FROM mods {}", wherestr);
dbg!(&sql);
let mut versionmaps: Vec<DBModlistVersions> = Vec::new();
//TODO catch sql errors better
let mut cursor = connection.prepare(sql).unwrap().into_cursor();
while let Some(Ok(row)) = cursor.next() {
println!("{}: {}", row.get::<String, _>(0), row.get::<String, _>(1));
versionmaps.push(DBModlistVersions { mod_id: row.get::<String, _>(0), versions: row.get::<String, _>(1) })
};
if versionmaps.is_empty() { return Err(Box::new(std::io::Error::new(ErrorKind::Other, "NO_MODS_ON_LIST"))); };
Ok(versionmaps)
}
pub fn get_list_version(config: Cfg, list: List, mod_id: String) -> Result<String, Box<dyn std::error::Error>> {
let data = format!("{}/data.db", config.data);
let connection = sqlite::open(data).unwrap();
let sql = format!("SELECT applicable_versions FROM {} WHERE mod_id = '{}'", list.id, mod_id);
//TODO catch sql errors better
let mut version: String = String::new();
connection.iterate(sql, |ver| {
if ver.is_empty() { return false; };
for &(_column, value) in ver.iter() {
version = String::from(value.unwrap());
}
true
}).unwrap();
if version.is_empty() { return Err(Box::new(std::io::Error::new(ErrorKind::Other, "NO_MODS_ON_LIST"))); };
Ok(version)
}
//LIST
pub fn insert_list(config: Cfg, id: String, mc_version: String, mod_loader: Modloader) -> Result<(), sqlite::Error> {
let data = format!("{}/data.db", config.data);
let connection = sqlite::open(data).unwrap();
let sql_list = format!("INSERT INTO lists VALUES ('{}', '{}', '{}')", id, mc_version, mod_loader.stringify());
let sql_table = format!("CREATE TABLE '{}' ( 'mod_id' TEXT, 'current_version' TEXT, 'applicable_versions' BLOB)", id);
let sql = format!("{};{};", sql_list, sql_table);
connection.execute(sql)
}
pub fn remove_list(config: Cfg, id: String) -> Result<(), sqlite::Error> {
let data = format!("{}/data.db", config.data);
let connection = sqlite::open(data).unwrap();
let sql_list = format!("DELETE FROM lists WHERE id = '{}'", id);
let sql_table = format!("DROP TABLE '{}'", id);
let sql = format!("{};{};", sql_list, sql_table);
connection.execute(sql)
}
pub fn get_lists(config: Cfg) -> Result<Vec<String>, Box<dyn std::error::Error>> {
let data = format!("{}/data.db", config.data);
let connection = sqlite::open(data).unwrap();
let sql = "SELECT id FROM lists";
let mut list: Vec<String> = Vec::new();
//TODO catch sql errors better
connection.iterate(sql, |ids| {
if ids.is_empty() { return false; };
for &(_column, value) in ids.iter() {
list.push(String::from(value.unwrap()));
}
true
}).unwrap();
match list.is_empty() {
true => Err(Box::new(std::io::Error::new(ErrorKind::NotFound, "NO_LISTS"))),
false => Ok(list),
}
}
pub fn get_list(config: Cfg, id: String) -> Result<List, Box<dyn std::error::Error>> {
let data = format!("{}/data.db", config.data);
let connection = sqlite::open(data).unwrap();
let sql = format!("SELECT mc_version, modloader FROM lists WHERE id = '{}'", id);
let mut list = vec![];
//TODO catch sql errors better
connection.iterate(sql, |ids| {
if ids.is_empty() { return false; };
for &(_column, value) in ids.iter() {
list.push(String::from(value.unwrap()));
}
true
}).unwrap();
if list.len() != 2 { return Err(Box::new(std::io::Error::new(ErrorKind::InvalidData, "LIST_MISSING_DATA"))) };
Ok(List { id, mc_version: String::from(&list[0]), modloader: get_modloader(String::from(&list[1]))? })
}
pub fn change_list_versions(config: Cfg, list: List, current_version: String, versions: Vec<String>, mod_id: String) -> Result<(), sqlite::Error> {
let data = format!("{}/data.db", config.data);
let connection = sqlite::open(data).unwrap();
let sql = format!("UPDATE {} SET current_version = '{}', applicable_versions = '{}' WHERE mod_id = '{}'", list.id, current_version, versions.join("|"), mod_id);
connection.execute(sql)
}
//config
pub fn change_list(config: Cfg, id: String) -> Result<(), sqlite::Error> {
let data = format!("{}/data.db", config.data);
let connection = sqlite::open(data).unwrap();
let sql = format!("UPDATE user_config SET value = '{}' WHERE id = 'current_list'", id);
connection.execute(sql)
}
pub fn get_current_list_id(config: Cfg) -> Result<String, Box<dyn std::error::Error>> {
let data = format!("{}/data.db", config.data);
let connection = sqlite::open(data).unwrap();
let sql = "SELECT id FROM lists";
let mut list: String = String::new();
//TODO catch sql errors better
connection.iterate(sql, |ids| {
if ids.is_empty() { return false; };
for &(_column, value) in ids.iter() {
list = String::from(value.unwrap());
}
true
}).unwrap();
if list.is_empty() {
get_lists(config)?;
panic!("current list field should never be empty if there are other lists");
};
Ok(list)
}
|