You've already forked AstralRinth
forked from didirus/AstralRinth
* feat(theseus): Initial migration to Tauri v2 * feat(theseus): Added a way to zoom / scale UI * chore(theseus): Started cleaning up some plugins * fix(theseus): Github Actions * refactor(theseus): Reduced boilerplate & more work * feat(theseus): Allow multiple app instances to be open at once (#995) * fix(theseus): Lint & more * fix(theseus): App Release github action * fix(theseus): Open links in browser & macos builds * fix(theseus): Rebase fixes * fix(theseus): Updater & app release action * fix(theseus): Fixed definitions in `build.rs` * Fix MacOS deep linking, window decorations * fix(theseus): Closing & maximizing app * Fix macos build * add back release conf * acc fix build * make updater for release builds only * focus window on startup --------- Co-authored-by: Jai A <jaiagr+gpg@pm.me> Co-authored-by: Geometrically <18202329+Geometrically@users.noreply.github.com>
100 lines
2.7 KiB
Rust
100 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.redirect_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")
|
|
{
|
|
if 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?)
|
|
}
|