jacquard-api 0.12.0-beta.2

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

#[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;
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
    rename_all = "camelCase",
    bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Authorize<S: BosStr = DefaultStr> {
    pub authorize_options: Data<S>,
    pub input: 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, IntoStatic, Default)]
#[serde(
    rename_all = "camelCase",
    bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct AuthorizeOutput<S: BosStr = DefaultStr> {
    pub url: S,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}

/// Response type for app.ocho.auth.authorize
pub struct AuthorizeResponse;
impl jacquard_common::xrpc::XrpcResp for AuthorizeResponse {
    const NSID: &'static str = "app.ocho.auth.authorize";
    const ENCODING: &'static str = "application/json";
    type Output<S: BosStr> = AuthorizeOutput<S>;
    type Err = jacquard_common::xrpc::GenericError;
}

impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for Authorize<S> {
    const NSID: &'static str = "app.ocho.auth.authorize";
    const METHOD: jacquard_common::xrpc::XrpcMethod =
        jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
    type Response = AuthorizeResponse;
}

/// Endpoint type for app.ocho.auth.authorize
pub struct AuthorizeRequest;
impl jacquard_common::xrpc::XrpcEndpoint for AuthorizeRequest {
    const PATH: &'static str = "/xrpc/app.ocho.auth.authorize";
    const METHOD: jacquard_common::xrpc::XrpcMethod =
        jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
    type Request<S: BosStr> = Authorize<S>;
    type Response = AuthorizeResponse;
}

pub mod authorize_state {

    pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
    #[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 Input;
        type AuthorizeOptions;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Input = Unset;
        type AuthorizeOptions = Unset;
    }
    ///State transition - sets the `input` field to Set
    pub struct SetInput<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetInput<St> {}
    impl<St: State> State for SetInput<St> {
        type Input = Set<members::input>;
        type AuthorizeOptions = St::AuthorizeOptions;
    }
    ///State transition - sets the `authorize_options` field to Set
    pub struct SetAuthorizeOptions<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetAuthorizeOptions<St> {}
    impl<St: State> State for SetAuthorizeOptions<St> {
        type Input = St::Input;
        type AuthorizeOptions = Set<members::authorize_options>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `input` field
        pub struct input(());
        ///Marker type for the `authorize_options` field
        pub struct authorize_options(());
    }
}

/// Builder for constructing an instance of this type.
pub struct AuthorizeBuilder<S: BosStr, St: authorize_state::State> {
    _state: PhantomData<fn() -> St>,
    _fields: (Option<Data<S>>, Option<S>),
    _type: PhantomData<fn() -> S>,
}

impl<S: BosStr> Authorize<S> {
    /// Create a new builder for this type.
    pub fn new() -> AuthorizeBuilder<S, authorize_state::Empty> {
        AuthorizeBuilder::new()
    }
}

impl<S: BosStr> AuthorizeBuilder<S, authorize_state::Empty> {
    /// Create a new builder with all fields unset.
    pub fn new() -> Self {
        AuthorizeBuilder {
            _state: PhantomData,
            _fields: (None, None),
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> AuthorizeBuilder<S, St>
where
    St: authorize_state::State,
    St::AuthorizeOptions: authorize_state::IsUnset,
{
    /// Set the `authorizeOptions` field (required)
    pub fn authorize_options(
        mut self,
        value: impl Into<Data<S>>,
    ) -> AuthorizeBuilder<S, authorize_state::SetAuthorizeOptions<St>> {
        self._fields.0 = Option::Some(value.into());
        AuthorizeBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> AuthorizeBuilder<S, St>
where
    St: authorize_state::State,
    St::Input: authorize_state::IsUnset,
{
    /// Set the `input` field (required)
    pub fn input(
        mut self,
        value: impl Into<S>,
    ) -> AuthorizeBuilder<S, authorize_state::SetInput<St>> {
        self._fields.1 = Option::Some(value.into());
        AuthorizeBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> AuthorizeBuilder<S, St>
where
    St: authorize_state::State,
    St::Input: authorize_state::IsSet,
    St::AuthorizeOptions: authorize_state::IsSet,
{
    /// Build the final struct.
    pub fn build(self) -> Authorize<S> {
        Authorize {
            authorize_options: self._fields.0.unwrap(),
            input: self._fields.1.unwrap(),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data.
    pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Authorize<S> {
        Authorize {
            authorize_options: self._fields.0.unwrap(),
            input: self._fields.1.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}