You've already forked AstralRinth
forked from didirus/AstralRinth
* basic framework. still has errors * added functionality for main endpoints + some structuring * formatting * unused code * mimicked CLI function with wait_for process * added basic auth bindings * made PR changes, added playground * cargo fmt * removed missed println * misc tests fixes * cargo fmt * added windows support * cargo fmt * all OS use dunce * restructured profile slightly; fixed mac bug * profile changes, new main.rs * fixed requested pr + canonicaliation bug * fixed regressed bug in ui * fixed regressed bugs * fixed git error * typo * ran prettier * clippy * playground clippy * ported profile loading fix * profile change for real, url println and clippy * PR changes * auth bindings + semisynch flow * fixed dropping task error * prettier, eslint, clippy * removed debugging modifications * removed unused function that eslinter missed :( * fixed settings not being released --------- Co-authored-by: Wyatt <wyatt@modrinth.com>
69 lines
2.1 KiB
Rust
69 lines
2.1 KiB
Rust
use serde::ser::SerializeStruct;
|
|
use serde::{Serialize, Serializer};
|
|
use thiserror::Error;
|
|
|
|
pub mod auth;
|
|
|
|
pub mod profile;
|
|
pub mod profile_create;
|
|
|
|
pub type Result<T> = std::result::Result<T, TheseusGuiError>;
|
|
|
|
// Main returnable Theseus GUI error
|
|
// Needs to be Serializable to be returned to the JavaScript side
|
|
#[derive(Error, Debug, Serialize)]
|
|
pub enum TheseusGuiError {
|
|
#[error(transparent)]
|
|
Serializable(TheseusSerializableError),
|
|
}
|
|
|
|
// Serializable error intermediary, so TheseusGuiError can be Serializable (eg: so that we can return theseus::Errors in Tauri directly)
|
|
#[derive(Error, Debug)]
|
|
pub enum TheseusSerializableError {
|
|
#[error("Theseus API error: {0}")]
|
|
Theseus(#[from] theseus::Error),
|
|
|
|
#[error("IO error: {0}")]
|
|
IO(#[from] std::io::Error),
|
|
}
|
|
|
|
// Generic implementation of From<T> for ErrorTypeA
|
|
impl<T> From<T> for TheseusGuiError
|
|
where
|
|
TheseusSerializableError: From<T>,
|
|
{
|
|
fn from(error: T) -> Self {
|
|
TheseusGuiError::Serializable(TheseusSerializableError::from(error))
|
|
}
|
|
}
|
|
|
|
// This is a very simple macro that implements a very basic Serializable for each variant of TheseusSerializableError,
|
|
// where the field is the string. (This allows easy extension to errors without many match arms)
|
|
macro_rules! impl_serialize {
|
|
($($variant:ident),* $(,)?) => {
|
|
impl Serialize for TheseusSerializableError {
|
|
fn serialize<S>(&self, serializer: S) -> std::result::Result<S::Ok, S::Error>
|
|
where
|
|
S: Serializer,
|
|
{
|
|
match self {
|
|
$(
|
|
TheseusSerializableError::$variant(message) => {
|
|
let mut state = serializer.serialize_struct(stringify!($variant), 2)?;
|
|
state.serialize_field("field_name", stringify!($variant))?;
|
|
state.serialize_field("message", &message.to_string())?;
|
|
state.end()
|
|
},
|
|
)*
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
// Use the macro to implement Serialize for TheseusSerializableError
|
|
impl_serialize! {
|
|
Theseus,
|
|
IO,
|
|
}
|