#[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>>>,
}
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;
}
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 {}
}
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<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;
}
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>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct input(());
pub struct authorize_options(());
}
}
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> {
pub fn new() -> AuthorizeBuilder<S, authorize_state::Empty> {
AuthorizeBuilder::new()
}
}
impl<S: BosStr> AuthorizeBuilder<S, authorize_state::Empty> {
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,
{
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,
{
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,
{
pub fn build(self) -> Authorize<S> {
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<SmolStr, Data<S>>) -> Authorize<S> {
Authorize {
authorize_options: self._fields.0.unwrap(),
input: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}