You've already forked AstralRinth
forked from didirus/AstralRinth
Add method of storing launcher data, fix forge 1.17+, add launcher settings
This commit is contained in:
99
theseus/src/data/meta.rs
Normal file
99
theseus/src/data/meta.rs
Normal file
@@ -0,0 +1,99 @@
|
||||
use crate::data::DataError;
|
||||
use once_cell::sync;
|
||||
use serde::{Deserialize, Serialize};
|
||||
use tokio::sync::{RwLock, RwLockReadGuard};
|
||||
|
||||
const META_FILE: &str = "meta.json";
|
||||
const META_URL: &str = "https://meta.modrinth.com/gamedata";
|
||||
|
||||
static METADATA: sync::OnceCell<RwLock<Metadata>> = sync::OnceCell::new();
|
||||
|
||||
#[derive(Clone, Serialize, Deserialize, Debug)]
|
||||
pub struct Metadata {
|
||||
pub minecraft: daedalus::minecraft::VersionManifest,
|
||||
pub forge: daedalus::modded::Manifest,
|
||||
pub fabric: daedalus::modded::Manifest,
|
||||
}
|
||||
|
||||
impl Metadata {
|
||||
pub async fn init() -> Result<(), DataError> {
|
||||
let meta_path = crate::LAUNCHER_WORK_DIR.join(META_FILE);
|
||||
|
||||
if meta_path.exists() {
|
||||
let meta_data = std::fs::read_to_string(meta_path)
|
||||
.map(|x| serde_json::from_str::<Metadata>(&*x).ok())
|
||||
.ok()
|
||||
.flatten();
|
||||
|
||||
if let Some(metadata) = meta_data {
|
||||
METADATA.get_or_init(|| RwLock::new(metadata));
|
||||
}
|
||||
}
|
||||
|
||||
let future = async {
|
||||
for attempt in 0..=3 {
|
||||
let res = async {
|
||||
let new = Self::fetch().await?;
|
||||
|
||||
std::fs::write(
|
||||
crate::LAUNCHER_WORK_DIR.join(META_FILE),
|
||||
&*serde_json::to_string(&new)?,
|
||||
)?;
|
||||
|
||||
if let Some(metadata) = METADATA.get() {
|
||||
*metadata.write().await = new;
|
||||
} else {
|
||||
METADATA.get_or_init(|| RwLock::new(new));
|
||||
}
|
||||
|
||||
Ok::<(), DataError>(())
|
||||
}
|
||||
.await;
|
||||
|
||||
match res {
|
||||
Ok(_) => {
|
||||
break;
|
||||
}
|
||||
Err(_) if attempt <= 3 => continue,
|
||||
Err(err) => {
|
||||
log::warn!("Unable to fetch launcher metadata: {}", err)
|
||||
}
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
if METADATA.get().is_some() {
|
||||
tokio::task::spawn(future);
|
||||
} else {
|
||||
future.await;
|
||||
}
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
pub async fn fetch() -> Result<Self, DataError> {
|
||||
let (game, forge, fabric) = futures::future::join3(
|
||||
daedalus::minecraft::fetch_version_manifest(Some(&*format!(
|
||||
"{}/minecraft/v0/manifest.json",
|
||||
META_URL
|
||||
))),
|
||||
daedalus::modded::fetch_manifest(&*format!("{}/forge/v0/manifest.json", META_URL)),
|
||||
daedalus::modded::fetch_manifest(&*format!("{}/fabric/v0/manifest.json", META_URL)),
|
||||
)
|
||||
.await;
|
||||
|
||||
Ok(Self {
|
||||
minecraft: game?,
|
||||
forge: forge?,
|
||||
fabric: fabric?,
|
||||
})
|
||||
}
|
||||
|
||||
pub async fn get<'a>() -> Result<RwLockReadGuard<'a, Self>, DataError> {
|
||||
Ok(METADATA
|
||||
.get()
|
||||
.ok_or_else(|| DataError::InitializedError("metadata".to_string()))?
|
||||
.read()
|
||||
.await)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user