pub mod get_recommended_did_credentials;
pub mod refresh_identity;
pub mod request_plc_operation_signature;
pub mod resolve_did;
pub mod resolve_handle;
pub mod resolve_identity;
pub mod sign_plc_operation;
pub mod submit_plc_operation;
pub mod update_handle;
#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{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::string::{Did, Handle};
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::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct IdentityInfo<S: BosStr = DefaultStr> {
pub did: Did<S>,
pub did_doc: Data<S>,
pub handle: Handle<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> LexiconSchema for IdentityInfo<S> {
fn nsid() -> &'static str {
"com.atproto.identity.defs"
}
fn def_name() -> &'static str {
"identityInfo"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_com_atproto_identity_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod identity_info_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 Handle;
type Did;
type DidDoc;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Handle = Unset;
type Did = Unset;
type DidDoc = Unset;
}
pub struct SetHandle<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetHandle<St> {}
impl<St: State> State for SetHandle<St> {
type Handle = Set<members::handle>;
type Did = St::Did;
type DidDoc = St::DidDoc;
}
pub struct SetDid<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetDid<St> {}
impl<St: State> State for SetDid<St> {
type Handle = St::Handle;
type Did = Set<members::did>;
type DidDoc = St::DidDoc;
}
pub struct SetDidDoc<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetDidDoc<St> {}
impl<St: State> State for SetDidDoc<St> {
type Handle = St::Handle;
type Did = St::Did;
type DidDoc = Set<members::did_doc>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct handle(());
pub struct did(());
pub struct did_doc(());
}
}
pub struct IdentityInfoBuilder<S: BosStr, St: identity_info_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Did<S>>, Option<Data<S>>, Option<Handle<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> IdentityInfo<S> {
pub fn new() -> IdentityInfoBuilder<S, identity_info_state::Empty> {
IdentityInfoBuilder::new()
}
}
impl<S: BosStr> IdentityInfoBuilder<S, identity_info_state::Empty> {
pub fn new() -> Self {
IdentityInfoBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> IdentityInfoBuilder<S, St>
where
St: identity_info_state::State,
St::Did: identity_info_state::IsUnset,
{
pub fn did(
mut self,
value: impl Into<Did<S>>,
) -> IdentityInfoBuilder<S, identity_info_state::SetDid<St>> {
self._fields.0 = Option::Some(value.into());
IdentityInfoBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> IdentityInfoBuilder<S, St>
where
St: identity_info_state::State,
St::DidDoc: identity_info_state::IsUnset,
{
pub fn did_doc(
mut self,
value: impl Into<Data<S>>,
) -> IdentityInfoBuilder<S, identity_info_state::SetDidDoc<St>> {
self._fields.1 = Option::Some(value.into());
IdentityInfoBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> IdentityInfoBuilder<S, St>
where
St: identity_info_state::State,
St::Handle: identity_info_state::IsUnset,
{
pub fn handle(
mut self,
value: impl Into<Handle<S>>,
) -> IdentityInfoBuilder<S, identity_info_state::SetHandle<St>> {
self._fields.2 = Option::Some(value.into());
IdentityInfoBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> IdentityInfoBuilder<S, St>
where
St: identity_info_state::State,
St::Handle: identity_info_state::IsSet,
St::Did: identity_info_state::IsSet,
St::DidDoc: identity_info_state::IsSet,
{
pub fn build(self) -> IdentityInfo<S> {
IdentityInfo {
did: self._fields.0.unwrap(),
did_doc: self._fields.1.unwrap(),
handle: self._fields.2.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> IdentityInfo<S> {
IdentityInfo {
did: self._fields.0.unwrap(),
did_doc: self._fields.1.unwrap(),
handle: self._fields.2.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_com_atproto_identity_defs() -> LexiconDoc<'static> {
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("com.atproto.identity.defs"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("identityInfo"),
LexUserType::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("did"), SmolStr::new_static("handle"),
SmolStr::new_static("didDoc")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("did"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("didDoc"),
LexObjectProperty::Unknown(LexUnknown {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("handle"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The validated handle of the account; or 'handle.invalid' if the handle did not bi-directionally match the DID document.",
),
),
format: Some(LexStringFormat::Handle),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}