#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, DefaultStr, FromStaticStr};
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::cid::CidLink;
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Serialize, Deserialize};
use crate::ooo_bsky::hidden::encrypted_blob_keys;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct Key<S: BosStr = DefaultStr> {
pub age_identity: S,
pub r#ref: CidLink<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)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct EncryptedBlobKeys<S: BosStr = DefaultStr> {
pub blob_keys: Vec<encrypted_blob_keys::Key<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> LexiconSchema for Key<S> {
fn nsid() -> &'static str {
"ooo.bsky.hidden.encryptedBlobKeys"
}
fn def_name() -> &'static str {
"key"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_ooo_bsky_hidden_encryptedBlobKeys()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<S: BosStr> LexiconSchema for EncryptedBlobKeys<S> {
fn nsid() -> &'static str {
"ooo.bsky.hidden.encryptedBlobKeys"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_ooo_bsky_hidden_encryptedBlobKeys()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod key_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 AgeIdentity;
type Ref;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type AgeIdentity = Unset;
type Ref = Unset;
}
pub struct SetAgeIdentity<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAgeIdentity<St> {}
impl<St: State> State for SetAgeIdentity<St> {
type AgeIdentity = Set<members::age_identity>;
type Ref = St::Ref;
}
pub struct SetRef<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRef<St> {}
impl<St: State> State for SetRef<St> {
type AgeIdentity = St::AgeIdentity;
type Ref = Set<members::r#ref>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct age_identity(());
pub struct r#ref(());
}
}
pub struct KeyBuilder<St: key_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>, Option<CidLink<S>>),
_type: PhantomData<fn() -> S>,
}
impl Key<DefaultStr> {
pub fn new() -> KeyBuilder<key_state::Empty, DefaultStr> {
KeyBuilder::new()
}
}
impl<S: BosStr> Key<S> {
pub fn builder() -> KeyBuilder<key_state::Empty, S> {
KeyBuilder::builder()
}
}
impl KeyBuilder<key_state::Empty, DefaultStr> {
pub fn new() -> Self {
KeyBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> KeyBuilder<key_state::Empty, S> {
pub fn builder() -> Self {
KeyBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> KeyBuilder<St, S>
where
St: key_state::State,
St::AgeIdentity: key_state::IsUnset,
{
pub fn age_identity(
mut self,
value: impl Into<S>,
) -> KeyBuilder<key_state::SetAgeIdentity<St>, S> {
self._fields.0 = Option::Some(value.into());
KeyBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> KeyBuilder<St, S>
where
St: key_state::State,
St::Ref: key_state::IsUnset,
{
pub fn r#ref(
mut self,
value: impl Into<CidLink<S>>,
) -> KeyBuilder<key_state::SetRef<St>, S> {
self._fields.1 = Option::Some(value.into());
KeyBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> KeyBuilder<St, S>
where
St: key_state::State,
St::AgeIdentity: key_state::IsSet,
St::Ref: key_state::IsSet,
{
pub fn build(self) -> Key<S> {
Key {
age_identity: self._fields.0.unwrap(),
r#ref: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Key<S> {
Key {
age_identity: self._fields.0.unwrap(),
r#ref: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_ooo_bsky_hidden_encryptedBlobKeys() -> LexiconDoc<'static> {
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
use alloc::collections::BTreeMap;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("ooo.bsky.hidden.encryptedBlobKeys"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("key"),
LexUserType::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("ref"),
SmolStr::new_static("ageIdentity")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("ageIdentity"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map.insert(
SmolStr::new_static("ref"),
LexObjectProperty::CidLink(LexCidLink {
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("main"),
LexUserType::Object(LexObject {
required: Some(vec![SmolStr::new_static("blobKeys")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("blobKeys"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("#key"),
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod encrypted_blob_keys_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 BlobKeys;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type BlobKeys = Unset;
}
pub struct SetBlobKeys<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetBlobKeys<St> {}
impl<St: State> State for SetBlobKeys<St> {
type BlobKeys = Set<members::blob_keys>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct blob_keys(());
}
}
pub struct EncryptedBlobKeysBuilder<
St: encrypted_blob_keys_state::State,
S: BosStr = DefaultStr,
> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Vec<encrypted_blob_keys::Key<S>>>,),
_type: PhantomData<fn() -> S>,
}
impl EncryptedBlobKeys<DefaultStr> {
pub fn new() -> EncryptedBlobKeysBuilder<
encrypted_blob_keys_state::Empty,
DefaultStr,
> {
EncryptedBlobKeysBuilder::new()
}
}
impl<S: BosStr> EncryptedBlobKeys<S> {
pub fn builder() -> EncryptedBlobKeysBuilder<encrypted_blob_keys_state::Empty, S> {
EncryptedBlobKeysBuilder::builder()
}
}
impl EncryptedBlobKeysBuilder<encrypted_blob_keys_state::Empty, DefaultStr> {
pub fn new() -> Self {
EncryptedBlobKeysBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr> EncryptedBlobKeysBuilder<encrypted_blob_keys_state::Empty, S> {
pub fn builder() -> Self {
EncryptedBlobKeysBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> EncryptedBlobKeysBuilder<St, S>
where
St: encrypted_blob_keys_state::State,
St::BlobKeys: encrypted_blob_keys_state::IsUnset,
{
pub fn blob_keys(
mut self,
value: impl Into<Vec<encrypted_blob_keys::Key<S>>>,
) -> EncryptedBlobKeysBuilder<encrypted_blob_keys_state::SetBlobKeys<St>, S> {
self._fields.0 = Option::Some(value.into());
EncryptedBlobKeysBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> EncryptedBlobKeysBuilder<St, S>
where
St: encrypted_blob_keys_state::State,
St::BlobKeys: encrypted_blob_keys_state::IsSet,
{
pub fn build(self) -> EncryptedBlobKeys<S> {
EncryptedBlobKeys {
blob_keys: self._fields.0.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> EncryptedBlobKeys<S> {
EncryptedBlobKeys {
blob_keys: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}