jacquard-api 0.11.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: com.atproto.identity.defs
//
// This file was automatically generated from Lexicon schemas.
// Any manual changes will be overwritten on the next regeneration.

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;

#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::types::string::{Did, Handle};
use jacquard_common::types::value::Data;
use jacquard_derive::{IntoStatic, lexicon};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;

#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Serialize, Deserialize};

#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct IdentityInfo<'a> {
    #[serde(borrow)]
    pub did: Did<'a>,
    ///The complete DID document for the identity.
    #[serde(borrow)]
    pub did_doc: Data<'a>,
    ///The validated handle of the account; or 'handle.invalid' if the handle did not bi-directionally match the DID document.
    #[serde(borrow)]
    pub handle: Handle<'a>,
}

impl<'a> LexiconSchema for IdentityInfo<'a> {
    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::{Set, Unset, IsSet, IsUnset};
    #[allow(unused)]
    use ::core::marker::PhantomData;
    mod sealed {
        pub trait Sealed {}
    }
    /// State trait tracking which required fields have been set
    pub trait State: sealed::Sealed {
        type Handle;
        type DidDoc;
        type Did;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Handle = Unset;
        type DidDoc = Unset;
        type Did = Unset;
    }
    ///State transition - sets the `handle` field to Set
    pub struct SetHandle<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetHandle<S> {}
    impl<S: State> State for SetHandle<S> {
        type Handle = Set<members::handle>;
        type DidDoc = S::DidDoc;
        type Did = S::Did;
    }
    ///State transition - sets the `did_doc` field to Set
    pub struct SetDidDoc<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetDidDoc<S> {}
    impl<S: State> State for SetDidDoc<S> {
        type Handle = S::Handle;
        type DidDoc = Set<members::did_doc>;
        type Did = S::Did;
    }
    ///State transition - sets the `did` field to Set
    pub struct SetDid<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetDid<S> {}
    impl<S: State> State for SetDid<S> {
        type Handle = S::Handle;
        type DidDoc = S::DidDoc;
        type Did = Set<members::did>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `handle` field
        pub struct handle(());
        ///Marker type for the `did_doc` field
        pub struct did_doc(());
        ///Marker type for the `did` field
        pub struct did(());
    }
}

/// Builder for constructing an instance of this type
pub struct IdentityInfoBuilder<'a, S: identity_info_state::State> {
    _state: PhantomData<fn() -> S>,
    _fields: (Option<Did<'a>>, Option<Data<'a>>, Option<Handle<'a>>),
    _lifetime: PhantomData<&'a ()>,
}

impl<'a> IdentityInfo<'a> {
    /// Create a new builder for this type
    pub fn new() -> IdentityInfoBuilder<'a, identity_info_state::Empty> {
        IdentityInfoBuilder::new()
    }
}

impl<'a> IdentityInfoBuilder<'a, identity_info_state::Empty> {
    /// Create a new builder with all fields unset
    pub fn new() -> Self {
        IdentityInfoBuilder {
            _state: PhantomData,
            _fields: (None, None, None),
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> IdentityInfoBuilder<'a, S>
where
    S: identity_info_state::State,
    S::Did: identity_info_state::IsUnset,
{
    /// Set the `did` field (required)
    pub fn did(
        mut self,
        value: impl Into<Did<'a>>,
    ) -> IdentityInfoBuilder<'a, identity_info_state::SetDid<S>> {
        self._fields.0 = Option::Some(value.into());
        IdentityInfoBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> IdentityInfoBuilder<'a, S>
where
    S: identity_info_state::State,
    S::DidDoc: identity_info_state::IsUnset,
{
    /// Set the `didDoc` field (required)
    pub fn did_doc(
        mut self,
        value: impl Into<Data<'a>>,
    ) -> IdentityInfoBuilder<'a, identity_info_state::SetDidDoc<S>> {
        self._fields.1 = Option::Some(value.into());
        IdentityInfoBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> IdentityInfoBuilder<'a, S>
where
    S: identity_info_state::State,
    S::Handle: identity_info_state::IsUnset,
{
    /// Set the `handle` field (required)
    pub fn handle(
        mut self,
        value: impl Into<Handle<'a>>,
    ) -> IdentityInfoBuilder<'a, identity_info_state::SetHandle<S>> {
        self._fields.2 = Option::Some(value.into());
        IdentityInfoBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> IdentityInfoBuilder<'a, S>
where
    S: identity_info_state::State,
    S::Handle: identity_info_state::IsSet,
    S::DidDoc: identity_info_state::IsSet,
    S::Did: identity_info_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> IdentityInfo<'a> {
        IdentityInfo {
            did: self._fields.0.unwrap(),
            did_doc: self._fields.1.unwrap(),
            handle: self._fields.2.unwrap(),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data
    pub fn build_with_data(
        self,
        extra_data: BTreeMap<jacquard_common::deps::smol_str::SmolStr, Data<'a>>,
    ) -> IdentityInfo<'a> {
        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> {
    #[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("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()
    }
}