2022-06-01 04:53:53 +00:00
|
|
|
use anyhow::Result;
|
2022-06-04 04:50:11 +00:00
|
|
|
use chrono::NaiveDateTime;
|
2022-06-01 04:53:53 +00:00
|
|
|
use std::fs::File;
|
|
|
|
use std::io::Write;
|
|
|
|
use std::path::Path;
|
|
|
|
|
|
|
|
use crate::models::file;
|
|
|
|
|
2022-06-04 04:50:11 +00:00
|
|
|
pub async fn dump_file_data(pool: &sqlx::Pool<sqlx::Postgres>, dir: &str, updated_after: Option<NaiveDateTime>) -> Result<()> {
|
2022-06-01 04:53:53 +00:00
|
|
|
let page_size = 20;
|
|
|
|
let mut last_id = None;
|
|
|
|
loop {
|
|
|
|
let files =
|
2022-06-04 04:50:11 +00:00
|
|
|
file::batched_get_with_cells(&pool, page_size, last_id, "Skyrim.esm", 1, updated_after).await?;
|
2022-06-01 04:53:53 +00:00
|
|
|
if files.is_empty() {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
for file_with_cells in files {
|
|
|
|
let path = Path::new(&dir);
|
|
|
|
std::fs::create_dir_all(&path)?;
|
|
|
|
let path = path.join(format!("{}.json", file_with_cells.nexus_file_id));
|
|
|
|
let mut file = File::create(path)?;
|
|
|
|
write!(file, "{}", serde_json::to_string(&file_with_cells)?)?;
|
|
|
|
last_id = Some(file_with_cells.id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Ok(());
|
|
|
|
}
|