jacquard-api 0.10.2

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: com.atproto.server.getServiceAuth
//
// This file was automatically generated from Lexicon schemas.
// Any manual changes will be overwritten on the next regeneration.

#[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 {}
    }
    /// State trait tracking which required fields have been set
    pub trait State: sealed::Sealed {
        type Aud;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Aud = Unset;
    }
    ///State transition - sets the `aud` field to Set
    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>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `aud` field
        pub struct aud(());
    }
}

/// Builder for constructing an instance of this type
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> {
    /// Create a new builder for this type
    pub fn new() -> GetServiceAuthBuilder<'a, get_service_auth_state::Empty> {
        GetServiceAuthBuilder::new()
    }
}

impl<'a> GetServiceAuthBuilder<'a, get_service_auth_state::Empty> {
    /// Create a new builder with all fields unset
    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,
{
    /// Set the `aud` field (required)
    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> {
    /// Set the `exp` field (optional)
    pub fn exp(mut self, value: impl Into<Option<i64>>) -> Self {
        self.__unsafe_private_named.1 = value.into();
        self
    }
    /// Set the `exp` field to an Option value (optional)
    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> {
    /// Set the `lxm` field (optional)
    pub fn lxm(
        mut self,
        value: impl Into<Option<jacquard_common::types::string::Nsid<'a>>>,
    ) -> Self {
        self.__unsafe_private_named.2 = value.into();
        self
    }
    /// Set the `lxm` field to an Option value (optional)
    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,
{
    /// Build the final struct
    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> {
    /// Indicates that the requested expiration date is not a valid. May be in the past or may be reliant on the requested scopes.
    #[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),
        }
    }
}

/// Response type for
///com.atproto.server.getServiceAuth
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;
}

/// Endpoint type for
///com.atproto.server.getServiceAuth
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;
}