jacquard-api 0.12.0-beta.1

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

#[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::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid};
use jacquard_common::types::uri::{RecordUri, UriError};
use jacquard_common::types::value::Data;
use jacquard_common::xrpc::XrpcResp;
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};
/// Sign that you want to join a social listing experience of a specific song

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
    rename_all = "camelCase",
    rename = "ch.indiemusi.social.join",
    tag = "$type",
    bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Join<S: BosStr = DefaultStr> {
    ///Link to the song that the user wants to listen to together with others
    pub song: AtUri<S>,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}

/// Typed wrapper for GetRecord response with this collection's record type.

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct JoinGetRecordOutput<S: BosStr = DefaultStr> {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub cid: Option<Cid<S>>,
    pub uri: AtUri<S>,
    pub value: Join<S>,
}

impl<S: BosStr> Join<S> {
    pub fn uri(uri: S) -> Result<RecordUri<S, JoinRecord>, UriError> {
        RecordUri::try_from_uri(AtUri::new(uri)?)
    }
}

/// Marker type for deserializing records from this collection.

#[derive(Debug, Serialize, Deserialize)]
pub struct JoinRecord;
impl XrpcResp for JoinRecord {
    const NSID: &'static str = "ch.indiemusi.social.join";
    const ENCODING: &'static str = "application/json";
    type Output<S: BosStr> = JoinGetRecordOutput<S>;
    type Err = RecordError;
}

impl<S: BosStr> From<JoinGetRecordOutput<S>> for Join<S> {
    fn from(output: JoinGetRecordOutput<S>) -> Self {
        output.value
    }
}

impl<S: BosStr> Collection for Join<S> {
    const NSID: &'static str = "ch.indiemusi.social.join";
    type Record = JoinRecord;
}

impl Collection for JoinRecord {
    const NSID: &'static str = "ch.indiemusi.social.join";
    type Record = JoinRecord;
}

impl<S: BosStr> LexiconSchema for Join<S> {
    fn nsid() -> &'static str {
        "ch.indiemusi.social.join"
    }
    fn def_name() -> &'static str {
        "main"
    }
    fn lexicon_doc() -> LexiconDoc<'static> {
        lexicon_doc_ch_indiemusi_social_join()
    }
    fn validate(&self) -> Result<(), ConstraintError> {
        Ok(())
    }
}

pub mod join_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 Song;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Song = Unset;
    }
    ///State transition - sets the `song` field to Set
    pub struct SetSong<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetSong<St> {}
    impl<St: State> State for SetSong<St> {
        type Song = Set<members::song>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `song` field
        pub struct song(());
    }
}

/// Builder for constructing an instance of this type.
pub struct JoinBuilder<S: BosStr, St: join_state::State> {
    _state: PhantomData<fn() -> St>,
    _fields: (Option<AtUri<S>>,),
    _type: PhantomData<fn() -> S>,
}

impl<S: BosStr> Join<S> {
    /// Create a new builder for this type.
    pub fn new() -> JoinBuilder<S, join_state::Empty> {
        JoinBuilder::new()
    }
}

impl<S: BosStr> JoinBuilder<S, join_state::Empty> {
    /// Create a new builder with all fields unset.
    pub fn new() -> Self {
        JoinBuilder {
            _state: PhantomData,
            _fields: (None,),
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> JoinBuilder<S, St>
where
    St: join_state::State,
    St::Song: join_state::IsUnset,
{
    /// Set the `song` field (required)
    pub fn song(
        mut self,
        value: impl Into<AtUri<S>>,
    ) -> JoinBuilder<S, join_state::SetSong<St>> {
        self._fields.0 = Option::Some(value.into());
        JoinBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> JoinBuilder<S, St>
where
    St: join_state::State,
    St::Song: join_state::IsSet,
{
    /// Build the final struct.
    pub fn build(self) -> Join<S> {
        Join {
            song: self._fields.0.unwrap(),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data.
    pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Join<S> {
        Join {
            song: self._fields.0.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}

fn lexicon_doc_ch_indiemusi_social_join() -> 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("ch.indiemusi.social.join"),
        defs: {
            let mut map = BTreeMap::new();
            map.insert(
                SmolStr::new_static("main"),
                LexUserType::Record(LexRecord {
                    description: Some(
                        CowStr::new_static(
                            "Sign that you want to join a social listing experience of a specific song",
                        ),
                    ),
                    key: Some(CowStr::new_static("tid")),
                    record: LexRecordRecord::Object(LexObject {
                        required: Some(vec![SmolStr::new_static("song")]),
                        properties: {
                            #[allow(unused_mut)]
                            let mut map = BTreeMap::new();
                            map.insert(
                                SmolStr::new_static("song"),
                                LexObjectProperty::String(LexString {
                                    description: Some(
                                        CowStr::new_static(
                                            "Link to the song that the user wants to listen to together with others",
                                        ),
                                    ),
                                    format: Some(LexStringFormat::AtUri),
                                    ..Default::default()
                                }),
                            );
                            map
                        },
                        ..Default::default()
                    }),
                    ..Default::default()
                }),
            );
            map
        },
        ..Default::default()
    }
}