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
98 lines
2.7 KiB
Rust
98 lines
2.7 KiB
Rust
use crate::api::Result;
|
|
use chrono::{Duration, Utc};
|
|
use tauri::plugin::TauriPlugin;
|
|
use tauri::{Manager, Runtime, UserAttentionType};
|
|
use theseus::prelude::*;
|
|
|
|
pub fn init<R: Runtime>() -> TauriPlugin<R> {
|
|
tauri::plugin::Builder::<R>::new("auth")
|
|
.invoke_handler(tauri::generate_handler![
|
|
login,
|
|
remove_user,
|
|
get_default_user,
|
|
set_default_user,
|
|
get_users,
|
|
])
|
|
.build()
|
|
}
|
|
|
|
/// Authenticate a user with Hydra - part 1
|
|
/// This begins the authentication flow quasi-synchronously, returning a URL to visit (that the user will sign in at)
|
|
#[tauri::command]
|
|
pub async fn login<R: Runtime>(
|
|
app: tauri::AppHandle<R>,
|
|
) -> Result<Option<Credentials>> {
|
|
let flow = minecraft_auth::begin_login().await?;
|
|
|
|
let start = Utc::now();
|
|
|
|
if let Some(window) = app.get_webview_window("signin") {
|
|
window.close()?;
|
|
}
|
|
|
|
let window = tauri::WebviewWindowBuilder::new(
|
|
&app,
|
|
"signin",
|
|
tauri::WebviewUrl::External(flow.auth_request_uri.parse().map_err(
|
|
|_| {
|
|
theseus::ErrorKind::OtherError(
|
|
"Error parsing auth redirect URL".to_string(),
|
|
)
|
|
.as_error()
|
|
},
|
|
)?),
|
|
)
|
|
.title("Sign into Modrinth")
|
|
.always_on_top(true)
|
|
.center()
|
|
.build()?;
|
|
|
|
window.request_user_attention(Some(UserAttentionType::Critical))?;
|
|
|
|
while (Utc::now() - start) < Duration::minutes(10) {
|
|
if window.title().is_err() {
|
|
// user closed window, cancelling flow
|
|
return Ok(None);
|
|
}
|
|
|
|
if window
|
|
.url()?
|
|
.as_str()
|
|
.starts_with("https://login.live.com/oauth20_desktop.srf")
|
|
&& let Some((_, code)) =
|
|
window.url()?.query_pairs().find(|x| x.0 == "code")
|
|
{
|
|
window.close()?;
|
|
let val = minecraft_auth::finish_login(&code.clone(), flow).await?;
|
|
|
|
return Ok(Some(val));
|
|
}
|
|
|
|
tokio::time::sleep(std::time::Duration::from_millis(50)).await;
|
|
}
|
|
|
|
window.close()?;
|
|
Ok(None)
|
|
}
|
|
|
|
#[tauri::command]
|
|
pub async fn remove_user(user: uuid::Uuid) -> Result<()> {
|
|
Ok(minecraft_auth::remove_user(user).await?)
|
|
}
|
|
|
|
#[tauri::command]
|
|
pub async fn get_default_user() -> Result<Option<uuid::Uuid>> {
|
|
Ok(minecraft_auth::get_default_user().await?)
|
|
}
|
|
|
|
#[tauri::command]
|
|
pub async fn set_default_user(user: uuid::Uuid) -> Result<()> {
|
|
Ok(minecraft_auth::set_default_user(user).await?)
|
|
}
|
|
|
|
/// Get a copy of the list of all user credentials
|
|
#[tauri::command]
|
|
pub async fn get_users() -> Result<Vec<Credentials>> {
|
|
Ok(minecraft_auth::users().await?)
|
|
}
|