#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct GetServiceAuth<'a> {
#[serde(borrow)]
pub aud: jacquard_common::types::string::Did<'a>,
#[serde(skip_serializing_if = "std::option::Option::is_none")]
pub exp: std::option::Option<i64>,
#[serde(skip_serializing_if = "std::option::Option::is_none")]
#[serde(borrow)]
pub lxm: std::option::Option<jacquard_common::types::string::Nsid<'a>>,
}
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> {
_phantom_state: ::core::marker::PhantomData<fn() -> S>,
__unsafe_private_named: (
::core::option::Option<jacquard_common::types::string::Did<'a>>,
::core::option::Option<i64>,
::core::option::Option<jacquard_common::types::string::Nsid<'a>>,
),
_phantom: ::core::marker::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 {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: (None, None, None),
_phantom: ::core::marker::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<jacquard_common::types::string::Did<'a>>,
) -> GetServiceAuthBuilder<'a, get_service_auth_state::SetAud<S>> {
self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into());
GetServiceAuthBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S: get_service_auth_state::State> GetServiceAuthBuilder<'a, S> {
pub fn exp(mut self, value: impl Into<Option<i64>>) -> Self {
self.__unsafe_private_named.1 = value.into();
self
}
pub fn maybe_exp(mut self, value: Option<i64>) -> Self {
self.__unsafe_private_named.1 = value;
self
}
}
impl<'a, S: get_service_auth_state::State> GetServiceAuthBuilder<'a, S> {
pub fn lxm(
mut self,
value: impl Into<Option<jacquard_common::types::string::Nsid<'a>>>,
) -> Self {
self.__unsafe_private_named.2 = value.into();
self
}
pub fn maybe_lxm(
mut self,
value: Option<jacquard_common::types::string::Nsid<'a>>,
) -> Self {
self.__unsafe_private_named.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.__unsafe_private_named.0.unwrap(),
exp: self.__unsafe_private_named.1,
lxm: self.__unsafe_private_named.2,
}
}
}
#[jacquard_derive::lexicon]
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic,
Default
)]
#[serde(rename_all = "camelCase")]
pub struct GetServiceAuthOutput<'a> {
#[serde(borrow)]
pub token: jacquard_common::CowStr<'a>,
}
#[jacquard_derive::open_union]
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
thiserror::Error,
miette::Diagnostic,
jacquard_derive::IntoStatic
)]
#[serde(tag = "error", content = "message")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum GetServiceAuthError<'a> {
#[serde(rename = "BadExpiration")]
BadExpiration(std::option::Option<jacquard_common::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;
}