#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_common::types::string::{Did, Nsid};
use jacquard_derive::{IntoStatic, lexicon, open_union};
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetServiceAuth<'a> {
#[serde(borrow)]
pub aud: Did<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
pub exp: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub lxm: Option<Nsid<'a>>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetServiceAuthOutput<'a> {
#[serde(borrow)]
pub token: CowStr<'a>,
}
#[open_union]
#[derive(
Serialize,
Deserialize,
Debug,
Clone,
PartialEq,
Eq,
thiserror::Error,
miette::Diagnostic,
IntoStatic
)]
#[serde(tag = "error", content = "message")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum GetServiceAuthError<'a> {
#[serde(rename = "BadExpiration")]
BadExpiration(Option<CowStr<'a>>),
}
impl core::fmt::Display for GetServiceAuthError<'_> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::BadExpiration(msg) => {
write!(f, "BadExpiration")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::Unknown(err) => write!(f, "Unknown error: {:?}", err),
}
}
}
pub struct GetServiceAuthResponse;
impl jacquard_common::xrpc::XrpcResp for GetServiceAuthResponse {
const NSID: &'static str = "com.atproto.server.getServiceAuth";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetServiceAuthOutput<'de>;
type Err<'de> = GetServiceAuthError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetServiceAuth<'a> {
const NSID: &'static str = "com.atproto.server.getServiceAuth";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetServiceAuthResponse;
}
pub struct GetServiceAuthRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetServiceAuthRequest {
const PATH: &'static str = "/xrpc/com.atproto.server.getServiceAuth";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetServiceAuth<'de>;
type Response = GetServiceAuthResponse;
}
pub mod get_service_auth_state {
pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Aud;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Aud = Unset;
}
pub struct SetAud<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetAud<S> {}
impl<S: State> State for SetAud<S> {
type Aud = Set<members::aud>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct aud(());
}
}
pub struct GetServiceAuthBuilder<'a, S: get_service_auth_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Did<'a>>, Option<i64>, Option<Nsid<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetServiceAuth<'a> {
pub fn new() -> GetServiceAuthBuilder<'a, get_service_auth_state::Empty> {
GetServiceAuthBuilder::new()
}
}
impl<'a> GetServiceAuthBuilder<'a, get_service_auth_state::Empty> {
pub fn new() -> Self {
GetServiceAuthBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetServiceAuthBuilder<'a, S>
where
S: get_service_auth_state::State,
S::Aud: get_service_auth_state::IsUnset,
{
pub fn aud(
mut self,
value: impl Into<Did<'a>>,
) -> GetServiceAuthBuilder<'a, get_service_auth_state::SetAud<S>> {
self._fields.0 = Option::Some(value.into());
GetServiceAuthBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: get_service_auth_state::State> GetServiceAuthBuilder<'a, S> {
pub fn exp(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_exp(mut self, value: Option<i64>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: get_service_auth_state::State> GetServiceAuthBuilder<'a, S> {
pub fn lxm(mut self, value: impl Into<Option<Nsid<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_lxm(mut self, value: Option<Nsid<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> GetServiceAuthBuilder<'a, S>
where
S: get_service_auth_state::State,
S::Aud: get_service_auth_state::IsSet,
{
pub fn build(self) -> GetServiceAuth<'a> {
GetServiceAuth {
aud: self._fields.0.unwrap(),
exp: self._fields.1,
lxm: self._fields.2,
}
}
}