#[jacquard_derive::lexicon]
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct Authorize<'a> {
#[serde(borrow)]
pub authorize_options: jacquard_common::types::value::Data<'a>,
#[serde(borrow)]
pub input: jacquard_common::CowStr<'a>,
}
pub mod authorize_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 AuthorizeOptions;
type Input;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type AuthorizeOptions = Unset;
type Input = Unset;
}
pub struct SetAuthorizeOptions<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetAuthorizeOptions<S> {}
impl<S: State> State for SetAuthorizeOptions<S> {
type AuthorizeOptions = Set<members::authorize_options>;
type Input = S::Input;
}
pub struct SetInput<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetInput<S> {}
impl<S: State> State for SetInput<S> {
type AuthorizeOptions = S::AuthorizeOptions;
type Input = Set<members::input>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct authorize_options(());
pub struct input(());
}
}
pub struct AuthorizeBuilder<'a, S: authorize_state::State> {
_phantom_state: ::core::marker::PhantomData<fn() -> S>,
__unsafe_private_named: (
::core::option::Option<jacquard_common::types::value::Data<'a>>,
::core::option::Option<jacquard_common::CowStr<'a>>,
),
_phantom: ::core::marker::PhantomData<&'a ()>,
}
impl<'a> Authorize<'a> {
pub fn new() -> AuthorizeBuilder<'a, authorize_state::Empty> {
AuthorizeBuilder::new()
}
}
impl<'a> AuthorizeBuilder<'a, authorize_state::Empty> {
pub fn new() -> Self {
AuthorizeBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: (None, None),
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S> AuthorizeBuilder<'a, S>
where
S: authorize_state::State,
S::AuthorizeOptions: authorize_state::IsUnset,
{
pub fn authorize_options(
mut self,
value: impl Into<jacquard_common::types::value::Data<'a>>,
) -> AuthorizeBuilder<'a, authorize_state::SetAuthorizeOptions<S>> {
self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into());
AuthorizeBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S> AuthorizeBuilder<'a, S>
where
S: authorize_state::State,
S::Input: authorize_state::IsUnset,
{
pub fn input(
mut self,
value: impl Into<jacquard_common::CowStr<'a>>,
) -> AuthorizeBuilder<'a, authorize_state::SetInput<S>> {
self.__unsafe_private_named.1 = ::core::option::Option::Some(value.into());
AuthorizeBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S> AuthorizeBuilder<'a, S>
where
S: authorize_state::State,
S::AuthorizeOptions: authorize_state::IsSet,
S::Input: authorize_state::IsSet,
{
pub fn build(self) -> Authorize<'a> {
Authorize {
authorize_options: self.__unsafe_private_named.0.unwrap(),
input: self.__unsafe_private_named.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: std::collections::BTreeMap<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Authorize<'a> {
Authorize {
authorize_options: self.__unsafe_private_named.0.unwrap(),
input: self.__unsafe_private_named.1.unwrap(),
extra_data: Some(extra_data),
}
}
}
#[jacquard_derive::lexicon]
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic,
Default
)]
#[serde(rename_all = "camelCase")]
pub struct AuthorizeOutput<'a> {
#[serde(borrow)]
pub url: jacquard_common::CowStr<'a>,
}
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<'de> = AuthorizeOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for Authorize<'a> {
const NSID: &'static str = "app.ocho.auth.authorize";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = AuthorizeResponse;
}
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<'de> = Authorize<'de>;
type Response = AuthorizeResponse;
}