#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_common::types::value::Data;
use jacquard_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Authorize<'a> {
#[serde(borrow)]
pub authorize_options: Data<'a>,
#[serde(borrow)]
pub input: CowStr<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct AuthorizeOutput<'a> {
#[serde(borrow)]
pub url: 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;
}
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 Input;
type AuthorizeOptions;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Input = Unset;
type AuthorizeOptions = Unset;
}
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 Input = Set<members::input>;
type AuthorizeOptions = S::AuthorizeOptions;
}
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 Input = S::Input;
type AuthorizeOptions = Set<members::authorize_options>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct input(());
pub struct authorize_options(());
}
}
pub struct AuthorizeBuilder<'a, S: authorize_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Data<'a>>, Option<CowStr<'a>>),
_lifetime: 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 {
_state: PhantomData,
_fields: (None, None),
_lifetime: 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<Data<'a>>,
) -> AuthorizeBuilder<'a, authorize_state::SetAuthorizeOptions<S>> {
self._fields.0 = Option::Some(value.into());
AuthorizeBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: 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<CowStr<'a>>,
) -> AuthorizeBuilder<'a, authorize_state::SetInput<S>> {
self._fields.1 = Option::Some(value.into());
AuthorizeBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> AuthorizeBuilder<'a, S>
where
S: authorize_state::State,
S::Input: authorize_state::IsSet,
S::AuthorizeOptions: authorize_state::IsSet,
{
pub fn build(self) -> Authorize<'a> {
Authorize {
authorize_options: self._fields.0.unwrap(),
input: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<jacquard_common::deps::smol_str::SmolStr, Data<'a>>,
) -> Authorize<'a> {
Authorize {
authorize_options: self._fields.0.unwrap(),
input: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}