forked from didirus/AstralRinth
* Update Rust version * Update async-compression 0.4.25 -> 0.4.27 * Update async-tungstenite 0.29.1 -> 0.30.0 * Update bytemuck 1.23.0 -> 1.23.1 * Update clap 4.5.40 -> 4.5.43 * Update deadpool-redis 0.21.1 -> 0.22.0 and redis 0.31.0 -> 0.32.4 * Update enumset 1.1.6 -> 1.1.7 * Update hyper-util 0.1.14 -> 0.1.16 * Update indexmap 2.9.0 -> 2.10.0 * Update indicatif 0.17.11 -> 0.18.0 * Update jemalloc_pprof 0.7.0 -> 0.8.1 * Update lettre 0.11.17 -> 0.11.18 * Update meilisearch-sdk 0.28.0 -> 0.29.1 * Update notify 8.0.0 -> 8.2.0 and notify-debouncer-mini 0.6.0 -> 0.7.0 * Update quick-xml 0.37.5 -> 0.38.1 * Fix theseus lint * Update reqwest 0.12.20 -> 0.12.22 * Cargo fmt in theseus * Update rgb 0.8.50 -> 0.8.52 * Update sentry 0.41.0 -> 0.42.0 and sentry-actix 0.41.0 -> 0.42.0 * Update serde_json 1.0.140 -> 1.0.142 * Update serde_with 3.13.0 -> 3.14.0 * Update spdx 0.10.8 -> 0.10.9 * Update sysinfo 0.35.2 -> 0.36.1 * Update tauri suite * Fix build by updating mappings * Update tokio 1.45.1 -> 1.47.1 and tokio-util 0.7.15 -> 0.7.16 * Update tracing-actix-web 0.7.18 -> 0.7.19 * Update zip 4.2.0 -> 4.3.0 * Misc Cargo.lock updates * Update Dockerfiles
193 lines
5.7 KiB
Rust
193 lines
5.7 KiB
Rust
//! Authentication flow interface
|
|
use crate::event::emit::{emit_loading, init_loading};
|
|
use crate::state::JavaVersion;
|
|
use crate::util::fetch::{fetch_advanced, fetch_json};
|
|
use dashmap::DashMap;
|
|
use reqwest::Method;
|
|
use serde::Deserialize;
|
|
use std::path::PathBuf;
|
|
use sysinfo::{MemoryRefreshKind, RefreshKind};
|
|
|
|
use crate::util::io;
|
|
use crate::util::jre::extract_java_version;
|
|
use crate::{
|
|
LoadingBarType, State,
|
|
util::jre::{self},
|
|
};
|
|
|
|
pub async fn get_java_versions() -> crate::Result<DashMap<u32, JavaVersion>> {
|
|
let state = State::get().await?;
|
|
|
|
JavaVersion::get_all(&state.pool).await
|
|
}
|
|
|
|
pub async fn set_java_version(java_version: JavaVersion) -> crate::Result<()> {
|
|
let state = State::get().await?;
|
|
java_version.upsert(&state.pool).await?;
|
|
Ok(())
|
|
}
|
|
|
|
// Searches for jres on the system given a java version (ex: 1.8, 1.17, 1.18)
|
|
// Allow higher allows for versions higher than the given version to be returned ('at least')
|
|
pub async fn find_filtered_jres(
|
|
java_version: Option<u32>,
|
|
) -> crate::Result<Vec<JavaVersion>> {
|
|
let jres = jre::get_all_jre().await?;
|
|
|
|
// Filter out JREs that are not 1.17 or higher
|
|
Ok(if let Some(java_version) = java_version {
|
|
jres.into_iter()
|
|
.filter(|jre| {
|
|
let jre_version = extract_java_version(&jre.version);
|
|
if let Ok(jre_version) = jre_version {
|
|
jre_version == java_version
|
|
} else {
|
|
false
|
|
}
|
|
})
|
|
.collect()
|
|
} else {
|
|
jres
|
|
})
|
|
}
|
|
|
|
pub async fn auto_install_java(java_version: u32) -> crate::Result<PathBuf> {
|
|
let state = State::get().await?;
|
|
|
|
let loading_bar = init_loading(
|
|
LoadingBarType::JavaDownload {
|
|
version: java_version,
|
|
},
|
|
100.0,
|
|
"Downloading java version",
|
|
)
|
|
.await?;
|
|
|
|
#[derive(Deserialize)]
|
|
struct Package {
|
|
pub download_url: String,
|
|
pub name: PathBuf,
|
|
}
|
|
|
|
emit_loading(&loading_bar, 0.0, Some("Fetching java version"))?;
|
|
let packages = fetch_json::<Vec<Package>>(
|
|
Method::GET,
|
|
&format!(
|
|
"https://api.azul.com/metadata/v1/zulu/packages?arch={}&java_version={}&os={}&archive_type=zip&javafx_bundled=false&java_package_type=jre&page_size=1",
|
|
std::env::consts::ARCH, java_version, std::env::consts::OS
|
|
),
|
|
None,
|
|
None,
|
|
&state.fetch_semaphore,
|
|
&state.pool,
|
|
).await?;
|
|
emit_loading(&loading_bar, 10.0, Some("Downloading java version"))?;
|
|
|
|
if let Some(download) = packages.first() {
|
|
let file = fetch_advanced(
|
|
Method::GET,
|
|
&download.download_url,
|
|
None,
|
|
None,
|
|
None,
|
|
Some((&loading_bar, 80.0)),
|
|
&state.fetch_semaphore,
|
|
&state.pool,
|
|
)
|
|
.await?;
|
|
|
|
let path = state.directories.java_versions_dir();
|
|
|
|
let mut archive = zip::ZipArchive::new(std::io::Cursor::new(file))
|
|
.map_err(|_| {
|
|
crate::Error::from(crate::ErrorKind::InputError(
|
|
"Failed to read java zip".to_string(),
|
|
))
|
|
})?;
|
|
|
|
// removes the old installation of java
|
|
if let Some(file) = archive.file_names().next()
|
|
&& let Some(dir) = file.split('/').next()
|
|
{
|
|
let path = path.join(dir);
|
|
|
|
if path.exists() {
|
|
io::remove_dir_all(path).await?;
|
|
}
|
|
}
|
|
|
|
emit_loading(&loading_bar, 0.0, Some("Extracting java"))?;
|
|
archive.extract(&path).map_err(|_| {
|
|
crate::Error::from(crate::ErrorKind::InputError(
|
|
"Failed to extract java zip".to_string(),
|
|
))
|
|
})?;
|
|
emit_loading(&loading_bar, 10.0, Some("Done extracting java"))?;
|
|
let mut base_path = path.join(
|
|
download
|
|
.name
|
|
.file_stem()
|
|
.unwrap_or_default()
|
|
.to_string_lossy()
|
|
.to_string(),
|
|
);
|
|
|
|
#[cfg(target_os = "macos")]
|
|
{
|
|
base_path = base_path
|
|
.join(format!("zulu-{java_version}.jre"))
|
|
.join("Contents")
|
|
.join("Home")
|
|
.join("bin")
|
|
.join("java")
|
|
}
|
|
|
|
#[cfg(not(target_os = "macos"))]
|
|
{
|
|
base_path = base_path.join("bin").join(jre::JAVA_BIN)
|
|
}
|
|
|
|
Ok(base_path)
|
|
} else {
|
|
Err(crate::ErrorKind::LauncherError(format!(
|
|
"No Java Version found for Java version {}, OS {}, and Architecture {}",
|
|
java_version, std::env::consts::OS, std::env::consts::ARCH,
|
|
)).into())
|
|
}
|
|
}
|
|
|
|
// Validates JRE at a given at a given path
|
|
pub async fn check_jre(path: PathBuf) -> crate::Result<JavaVersion> {
|
|
jre::check_java_at_filepath(&path).await
|
|
}
|
|
|
|
// Test JRE at a given path
|
|
pub async fn test_jre(
|
|
path: PathBuf,
|
|
major_version: u32,
|
|
) -> crate::Result<bool> {
|
|
let jre = match jre::check_java_at_filepath(&path).await {
|
|
Ok(jre) => jre,
|
|
Err(e) => {
|
|
tracing::warn!("Invalid Java at {}: {e}", path.display());
|
|
return Ok(false);
|
|
}
|
|
};
|
|
let version = extract_java_version(&jre.version)?;
|
|
tracing::info!(
|
|
"Expected Java version {major_version}, and found {version} at {}",
|
|
path.display()
|
|
);
|
|
Ok(version == major_version)
|
|
}
|
|
|
|
// Gets maximum memory in KiB.
|
|
pub async fn get_max_memory() -> crate::Result<u64> {
|
|
Ok(sysinfo::System::new_with_specifics(
|
|
RefreshKind::nothing()
|
|
.with_memory(MemoryRefreshKind::nothing().with_ram()),
|
|
)
|
|
.total_memory()
|
|
/ 1024)
|
|
}
|