28 lines
848 B
Rust
28 lines
848 B
Rust
|
use anyhow::Result;
|
||
|
use std::fs::File;
|
||
|
use std::io::Write;
|
||
|
use std::path::Path;
|
||
|
|
||
|
use crate::models::game_mod;
|
||
|
|
||
|
pub async fn dump_mod_data(pool: &sqlx::Pool<sqlx::Postgres>, dir: &str) -> Result<()> {
|
||
|
let page_size = 20;
|
||
|
let mut last_id = None;
|
||
|
loop {
|
||
|
let mods =
|
||
|
game_mod::batched_get_with_cells(&pool, page_size, last_id, "Skyrim.esm", 1).await?;
|
||
|
if mods.is_empty() {
|
||
|
break;
|
||
|
}
|
||
|
for mod_with_cells in mods {
|
||
|
let path = Path::new(&dir);
|
||
|
std::fs::create_dir_all(&path)?;
|
||
|
let path = path.join(format!("{}.json", mod_with_cells.nexus_mod_id));
|
||
|
let mut file = File::create(path)?;
|
||
|
write!(file, "{}", serde_json::to_string(&mod_with_cells)?)?;
|
||
|
last_id = Some(mod_with_cells.id);
|
||
|
}
|
||
|
}
|
||
|
return Ok(());
|
||
|
}
|