jacquard-api 0.11.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: app.protoimsg.chat.vote
//
// 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;

#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::types::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid, Datetime};
use jacquard_common::types::uri::{RecordUri, UriError};
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};
/// A vote on a poll. Lives in the voter's repo.

#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Vote<'a> {
    ///Timestamp of vote.
    pub created_at: Datetime,
    ///AT-URI of the poll being voted on.
    #[serde(borrow)]
    pub poll: AtUri<'a>,
    ///Indices of selected options (0-based).
    pub selected_options: Vec<i64>,
}

/// 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 VoteGetRecordOutput<'a> {
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub cid: Option<Cid<'a>>,
    #[serde(borrow)]
    pub uri: AtUri<'a>,
    #[serde(borrow)]
    pub value: Vote<'a>,
}

impl<'a> Vote<'a> {
    pub fn uri(
        uri: impl Into<CowStr<'a>>,
    ) -> Result<RecordUri<'a, VoteRecord>, UriError> {
        RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
    }
}

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

#[derive(Debug, Serialize, Deserialize)]
pub struct VoteRecord;
impl XrpcResp for VoteRecord {
    const NSID: &'static str = "app.protoimsg.chat.vote";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = VoteGetRecordOutput<'de>;
    type Err<'de> = RecordError<'de>;
}

impl From<VoteGetRecordOutput<'_>> for Vote<'_> {
    fn from(output: VoteGetRecordOutput<'_>) -> Self {
        use jacquard_common::IntoStatic;
        output.value.into_static()
    }
}

impl Collection for Vote<'_> {
    const NSID: &'static str = "app.protoimsg.chat.vote";
    type Record = VoteRecord;
}

impl Collection for VoteRecord {
    const NSID: &'static str = "app.protoimsg.chat.vote";
    type Record = VoteRecord;
}

impl<'a> LexiconSchema for Vote<'a> {
    fn nsid() -> &'static str {
        "app.protoimsg.chat.vote"
    }
    fn def_name() -> &'static str {
        "main"
    }
    fn lexicon_doc() -> LexiconDoc<'static> {
        lexicon_doc_app_protoimsg_chat_vote()
    }
    fn validate(&self) -> Result<(), ConstraintError> {
        {
            let value = &self.selected_options;
            #[allow(unused_comparisons)]
            if value.len() > 10usize {
                return Err(ConstraintError::MaxLength {
                    path: ValidationPath::from_field("selected_options"),
                    max: 10usize,
                    actual: value.len(),
                });
            }
        }
        Ok(())
    }
}

pub mod vote_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 SelectedOptions;
        type CreatedAt;
        type Poll;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type SelectedOptions = Unset;
        type CreatedAt = Unset;
        type Poll = Unset;
    }
    ///State transition - sets the `selected_options` field to Set
    pub struct SetSelectedOptions<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetSelectedOptions<S> {}
    impl<S: State> State for SetSelectedOptions<S> {
        type SelectedOptions = Set<members::selected_options>;
        type CreatedAt = S::CreatedAt;
        type Poll = S::Poll;
    }
    ///State transition - sets the `created_at` field to Set
    pub struct SetCreatedAt<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetCreatedAt<S> {}
    impl<S: State> State for SetCreatedAt<S> {
        type SelectedOptions = S::SelectedOptions;
        type CreatedAt = Set<members::created_at>;
        type Poll = S::Poll;
    }
    ///State transition - sets the `poll` field to Set
    pub struct SetPoll<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetPoll<S> {}
    impl<S: State> State for SetPoll<S> {
        type SelectedOptions = S::SelectedOptions;
        type CreatedAt = S::CreatedAt;
        type Poll = Set<members::poll>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `selected_options` field
        pub struct selected_options(());
        ///Marker type for the `created_at` field
        pub struct created_at(());
        ///Marker type for the `poll` field
        pub struct poll(());
    }
}

/// Builder for constructing an instance of this type
pub struct VoteBuilder<'a, S: vote_state::State> {
    _state: PhantomData<fn() -> S>,
    _fields: (Option<Datetime>, Option<AtUri<'a>>, Option<Vec<i64>>),
    _lifetime: PhantomData<&'a ()>,
}

impl<'a> Vote<'a> {
    /// Create a new builder for this type
    pub fn new() -> VoteBuilder<'a, vote_state::Empty> {
        VoteBuilder::new()
    }
}

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

impl<'a, S> VoteBuilder<'a, S>
where
    S: vote_state::State,
    S::CreatedAt: vote_state::IsUnset,
{
    /// Set the `createdAt` field (required)
    pub fn created_at(
        mut self,
        value: impl Into<Datetime>,
    ) -> VoteBuilder<'a, vote_state::SetCreatedAt<S>> {
        self._fields.0 = Option::Some(value.into());
        VoteBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> VoteBuilder<'a, S>
where
    S: vote_state::State,
    S::Poll: vote_state::IsUnset,
{
    /// Set the `poll` field (required)
    pub fn poll(
        mut self,
        value: impl Into<AtUri<'a>>,
    ) -> VoteBuilder<'a, vote_state::SetPoll<S>> {
        self._fields.1 = Option::Some(value.into());
        VoteBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> VoteBuilder<'a, S>
where
    S: vote_state::State,
    S::SelectedOptions: vote_state::IsUnset,
{
    /// Set the `selectedOptions` field (required)
    pub fn selected_options(
        mut self,
        value: impl Into<Vec<i64>>,
    ) -> VoteBuilder<'a, vote_state::SetSelectedOptions<S>> {
        self._fields.2 = Option::Some(value.into());
        VoteBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> VoteBuilder<'a, S>
where
    S: vote_state::State,
    S::SelectedOptions: vote_state::IsSet,
    S::CreatedAt: vote_state::IsSet,
    S::Poll: vote_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> Vote<'a> {
        Vote {
            created_at: self._fields.0.unwrap(),
            poll: self._fields.1.unwrap(),
            selected_options: 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,
            jacquard_common::types::value::Data<'a>,
        >,
    ) -> Vote<'a> {
        Vote {
            created_at: self._fields.0.unwrap(),
            poll: self._fields.1.unwrap(),
            selected_options: self._fields.2.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}

fn lexicon_doc_app_protoimsg_chat_vote() -> 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("app.protoimsg.chat.vote"),
        defs: {
            let mut map = BTreeMap::new();
            map.insert(
                SmolStr::new_static("main"),
                LexUserType::Record(LexRecord {
                    description: Some(
                        CowStr::new_static(
                            "A vote on a poll. Lives in the voter's repo.",
                        ),
                    ),
                    key: Some(CowStr::new_static("tid")),
                    record: LexRecordRecord::Object(LexObject {
                        required: Some(
                            vec![
                                SmolStr::new_static("poll"),
                                SmolStr::new_static("selectedOptions"),
                                SmolStr::new_static("createdAt")
                            ],
                        ),
                        properties: {
                            #[allow(unused_mut)]
                            let mut map = BTreeMap::new();
                            map.insert(
                                SmolStr::new_static("createdAt"),
                                LexObjectProperty::String(LexString {
                                    description: Some(CowStr::new_static("Timestamp of vote.")),
                                    format: Some(LexStringFormat::Datetime),
                                    ..Default::default()
                                }),
                            );
                            map.insert(
                                SmolStr::new_static("poll"),
                                LexObjectProperty::String(LexString {
                                    description: Some(
                                        CowStr::new_static("AT-URI of the poll being voted on."),
                                    ),
                                    format: Some(LexStringFormat::AtUri),
                                    ..Default::default()
                                }),
                            );
                            map.insert(
                                SmolStr::new_static("selectedOptions"),
                                LexObjectProperty::Array(LexArray {
                                    description: Some(
                                        CowStr::new_static("Indices of selected options (0-based)."),
                                    ),
                                    items: LexArrayItem::Integer(LexInteger {
                                        ..Default::default()
                                    }),
                                    max_length: Some(10usize),
                                    ..Default::default()
                                }),
                            );
                            map
                        },
                        ..Default::default()
                    }),
                    ..Default::default()
                }),
            );
            map
        },
        ..Default::default()
    }
}