#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, CowStr, DefaultStr, FromStaticStr};
use jacquard_derive::{IntoStatic, open_union};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct ConfirmEmail<S: BosStr = DefaultStr> {
pub email: S,
pub token: S,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(
Serialize, Deserialize, Debug, Clone, PartialEq, Eq, thiserror::Error, miette::Diagnostic,
)]
#[serde(tag = "error", content = "message")]
pub enum ConfirmEmailError {
#[serde(rename = "AccountNotFound")]
AccountNotFound(Option<SmolStr>),
#[serde(rename = "ExpiredToken")]
ExpiredToken(Option<SmolStr>),
#[serde(rename = "InvalidToken")]
InvalidToken(Option<SmolStr>),
#[serde(rename = "InvalidEmail")]
InvalidEmail(Option<SmolStr>),
#[serde(untagged)]
Other {
error: SmolStr,
message: Option<SmolStr>,
},
}
impl core::fmt::Display for ConfirmEmailError {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::AccountNotFound(msg) => {
write!(f, "AccountNotFound")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::ExpiredToken(msg) => {
write!(f, "ExpiredToken")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::InvalidToken(msg) => {
write!(f, "InvalidToken")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::InvalidEmail(msg) => {
write!(f, "InvalidEmail")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::Other { error, message } => {
write!(f, "{}", error)?;
if let Some(msg) = message {
write!(f, ": {}", msg)?;
}
Ok(())
}
}
}
}
pub struct ConfirmEmailResponse;
impl jacquard_common::xrpc::XrpcResp for ConfirmEmailResponse {
const NSID: &'static str = "com.atproto.server.confirmEmail";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ();
type Err = ConfirmEmailError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for ConfirmEmail<S> {
const NSID: &'static str = "com.atproto.server.confirmEmail";
const METHOD: jacquard_common::xrpc::XrpcMethod =
jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
type Response = ConfirmEmailResponse;
}
pub struct ConfirmEmailRequest;
impl jacquard_common::xrpc::XrpcEndpoint for ConfirmEmailRequest {
const PATH: &'static str = "/xrpc/com.atproto.server.confirmEmail";
const METHOD: jacquard_common::xrpc::XrpcMethod =
jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
type Request<S: BosStr> = ConfirmEmail<S>;
type Response = ConfirmEmailResponse;
}