#[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::string::{Cid, Did, UriValue};
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 DecryptByCid<S: BosStr = DefaultStr> {
pub cid: Cid<S>,
pub password: S,
pub pds: UriValue<S>,
pub repo: Did<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 DecryptByCidOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub additional: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub message: Option<S>,
pub text: S,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct DecryptByCidResponse;
impl jacquard_common::xrpc::XrpcResp for DecryptByCidResponse {
const NSID: &'static str = "uk.skyblur.post.decryptByCid";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = DecryptByCidOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for DecryptByCid<S> {
const NSID: &'static str = "uk.skyblur.post.decryptByCid";
const METHOD: jacquard_common::xrpc::XrpcMethod =
jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
type Response = DecryptByCidResponse;
}
pub struct DecryptByCidRequest;
impl jacquard_common::xrpc::XrpcEndpoint for DecryptByCidRequest {
const PATH: &'static str = "/xrpc/uk.skyblur.post.decryptByCid";
const METHOD: jacquard_common::xrpc::XrpcMethod =
jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
type Request<S: BosStr> = DecryptByCid<S>;
type Response = DecryptByCidResponse;
}
pub mod decrypt_by_cid_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 Repo;
type Password;
type Cid;
type Pds;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Repo = Unset;
type Password = Unset;
type Cid = Unset;
type Pds = Unset;
}
pub struct SetRepo<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRepo<St> {}
impl<St: State> State for SetRepo<St> {
type Repo = Set<members::repo>;
type Password = St::Password;
type Cid = St::Cid;
type Pds = St::Pds;
}
pub struct SetPassword<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetPassword<St> {}
impl<St: State> State for SetPassword<St> {
type Repo = St::Repo;
type Password = Set<members::password>;
type Cid = St::Cid;
type Pds = St::Pds;
}
pub struct SetCid<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCid<St> {}
impl<St: State> State for SetCid<St> {
type Repo = St::Repo;
type Password = St::Password;
type Cid = Set<members::cid>;
type Pds = St::Pds;
}
pub struct SetPds<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetPds<St> {}
impl<St: State> State for SetPds<St> {
type Repo = St::Repo;
type Password = St::Password;
type Cid = St::Cid;
type Pds = Set<members::pds>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct repo(());
pub struct password(());
pub struct cid(());
pub struct pds(());
}
}
pub struct DecryptByCidBuilder<S: BosStr, St: decrypt_by_cid_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Cid<S>>,
Option<S>,
Option<UriValue<S>>,
Option<Did<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> DecryptByCid<S> {
pub fn new() -> DecryptByCidBuilder<S, decrypt_by_cid_state::Empty> {
DecryptByCidBuilder::new()
}
}
impl<S: BosStr> DecryptByCidBuilder<S, decrypt_by_cid_state::Empty> {
pub fn new() -> Self {
DecryptByCidBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> DecryptByCidBuilder<S, St>
where
St: decrypt_by_cid_state::State,
St::Cid: decrypt_by_cid_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<Cid<S>>,
) -> DecryptByCidBuilder<S, decrypt_by_cid_state::SetCid<St>> {
self._fields.0 = Option::Some(value.into());
DecryptByCidBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> DecryptByCidBuilder<S, St>
where
St: decrypt_by_cid_state::State,
St::Password: decrypt_by_cid_state::IsUnset,
{
pub fn password(
mut self,
value: impl Into<S>,
) -> DecryptByCidBuilder<S, decrypt_by_cid_state::SetPassword<St>> {
self._fields.1 = Option::Some(value.into());
DecryptByCidBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> DecryptByCidBuilder<S, St>
where
St: decrypt_by_cid_state::State,
St::Pds: decrypt_by_cid_state::IsUnset,
{
pub fn pds(
mut self,
value: impl Into<UriValue<S>>,
) -> DecryptByCidBuilder<S, decrypt_by_cid_state::SetPds<St>> {
self._fields.2 = Option::Some(value.into());
DecryptByCidBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> DecryptByCidBuilder<S, St>
where
St: decrypt_by_cid_state::State,
St::Repo: decrypt_by_cid_state::IsUnset,
{
pub fn repo(
mut self,
value: impl Into<Did<S>>,
) -> DecryptByCidBuilder<S, decrypt_by_cid_state::SetRepo<St>> {
self._fields.3 = Option::Some(value.into());
DecryptByCidBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> DecryptByCidBuilder<S, St>
where
St: decrypt_by_cid_state::State,
St::Repo: decrypt_by_cid_state::IsSet,
St::Password: decrypt_by_cid_state::IsSet,
St::Cid: decrypt_by_cid_state::IsSet,
St::Pds: decrypt_by_cid_state::IsSet,
{
pub fn build(self) -> DecryptByCid<S> {
DecryptByCid {
cid: self._fields.0.unwrap(),
password: self._fields.1.unwrap(),
pds: self._fields.2.unwrap(),
repo: self._fields.3.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> DecryptByCid<S> {
DecryptByCid {
cid: self._fields.0.unwrap(),
password: self._fields.1.unwrap(),
pds: self._fields.2.unwrap(),
repo: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}