jacquard-api 0.11.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: fyi.questionable.answer
//
// 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, Language};
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};
use crate::com_atproto::repo::strong_ref::StrongRef;
use crate::fyi_questionable::richtext::content::Content;
/// A proposed answer to a question

#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Answer<'a> {
    #[serde(borrow)]
    pub content: Content<'a>,
    pub created_at: Datetime,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub languages: Option<Vec<Language>>,
    ///Indicates the question to which this is a proposed answer to
    #[serde(borrow)]
    pub question: StrongRef<'a>,
}

/// 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 AnswerGetRecordOutput<'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: Answer<'a>,
}

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

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

#[derive(Debug, Serialize, Deserialize)]
pub struct AnswerRecord;
impl XrpcResp for AnswerRecord {
    const NSID: &'static str = "fyi.questionable.answer";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = AnswerGetRecordOutput<'de>;
    type Err<'de> = RecordError<'de>;
}

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

impl Collection for Answer<'_> {
    const NSID: &'static str = "fyi.questionable.answer";
    type Record = AnswerRecord;
}

impl Collection for AnswerRecord {
    const NSID: &'static str = "fyi.questionable.answer";
    type Record = AnswerRecord;
}

impl<'a> LexiconSchema for Answer<'a> {
    fn nsid() -> &'static str {
        "fyi.questionable.answer"
    }
    fn def_name() -> &'static str {
        "main"
    }
    fn lexicon_doc() -> LexiconDoc<'static> {
        lexicon_doc_fyi_questionable_answer()
    }
    fn validate(&self) -> Result<(), ConstraintError> {
        if let Some(ref value) = self.languages {
            #[allow(unused_comparisons)]
            if value.len() > 3usize {
                return Err(ConstraintError::MaxLength {
                    path: ValidationPath::from_field("languages"),
                    max: 3usize,
                    actual: value.len(),
                });
            }
        }
        Ok(())
    }
}

pub mod answer_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 CreatedAt;
        type Question;
        type Content;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type CreatedAt = Unset;
        type Question = Unset;
        type Content = Unset;
    }
    ///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 CreatedAt = Set<members::created_at>;
        type Question = S::Question;
        type Content = S::Content;
    }
    ///State transition - sets the `question` field to Set
    pub struct SetQuestion<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetQuestion<S> {}
    impl<S: State> State for SetQuestion<S> {
        type CreatedAt = S::CreatedAt;
        type Question = Set<members::question>;
        type Content = S::Content;
    }
    ///State transition - sets the `content` field to Set
    pub struct SetContent<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetContent<S> {}
    impl<S: State> State for SetContent<S> {
        type CreatedAt = S::CreatedAt;
        type Question = S::Question;
        type Content = Set<members::content>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `created_at` field
        pub struct created_at(());
        ///Marker type for the `question` field
        pub struct question(());
        ///Marker type for the `content` field
        pub struct content(());
    }
}

/// Builder for constructing an instance of this type
pub struct AnswerBuilder<'a, S: answer_state::State> {
    _state: PhantomData<fn() -> S>,
    _fields: (
        Option<Content<'a>>,
        Option<Datetime>,
        Option<Vec<Language>>,
        Option<StrongRef<'a>>,
    ),
    _lifetime: PhantomData<&'a ()>,
}

impl<'a> Answer<'a> {
    /// Create a new builder for this type
    pub fn new() -> AnswerBuilder<'a, answer_state::Empty> {
        AnswerBuilder::new()
    }
}

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

impl<'a, S> AnswerBuilder<'a, S>
where
    S: answer_state::State,
    S::Content: answer_state::IsUnset,
{
    /// Set the `content` field (required)
    pub fn content(
        mut self,
        value: impl Into<Content<'a>>,
    ) -> AnswerBuilder<'a, answer_state::SetContent<S>> {
        self._fields.0 = Option::Some(value.into());
        AnswerBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

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

impl<'a, S: answer_state::State> AnswerBuilder<'a, S> {
    /// Set the `languages` field (optional)
    pub fn languages(mut self, value: impl Into<Option<Vec<Language>>>) -> Self {
        self._fields.2 = value.into();
        self
    }
    /// Set the `languages` field to an Option value (optional)
    pub fn maybe_languages(mut self, value: Option<Vec<Language>>) -> Self {
        self._fields.2 = value;
        self
    }
}

impl<'a, S> AnswerBuilder<'a, S>
where
    S: answer_state::State,
    S::Question: answer_state::IsUnset,
{
    /// Set the `question` field (required)
    pub fn question(
        mut self,
        value: impl Into<StrongRef<'a>>,
    ) -> AnswerBuilder<'a, answer_state::SetQuestion<S>> {
        self._fields.3 = Option::Some(value.into());
        AnswerBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> AnswerBuilder<'a, S>
where
    S: answer_state::State,
    S::CreatedAt: answer_state::IsSet,
    S::Question: answer_state::IsSet,
    S::Content: answer_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> Answer<'a> {
        Answer {
            content: self._fields.0.unwrap(),
            created_at: self._fields.1.unwrap(),
            languages: self._fields.2,
            question: self._fields.3.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>,
        >,
    ) -> Answer<'a> {
        Answer {
            content: self._fields.0.unwrap(),
            created_at: self._fields.1.unwrap(),
            languages: self._fields.2,
            question: self._fields.3.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}

fn lexicon_doc_fyi_questionable_answer() -> 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("fyi.questionable.answer"),
        defs: {
            let mut map = BTreeMap::new();
            map.insert(
                SmolStr::new_static("main"),
                LexUserType::Record(LexRecord {
                    description: Some(
                        CowStr::new_static("A proposed answer to a question"),
                    ),
                    key: Some(CowStr::new_static("tid")),
                    record: LexRecordRecord::Object(LexObject {
                        required: Some(
                            vec![
                                SmolStr::new_static("question"),
                                SmolStr::new_static("content"),
                                SmolStr::new_static("createdAt")
                            ],
                        ),
                        properties: {
                            #[allow(unused_mut)]
                            let mut map = BTreeMap::new();
                            map.insert(
                                SmolStr::new_static("content"),
                                LexObjectProperty::Ref(LexRef {
                                    r#ref: CowStr::new_static(
                                        "fyi.questionable.richtext.content",
                                    ),
                                    ..Default::default()
                                }),
                            );
                            map.insert(
                                SmolStr::new_static("createdAt"),
                                LexObjectProperty::String(LexString {
                                    format: Some(LexStringFormat::Datetime),
                                    ..Default::default()
                                }),
                            );
                            map.insert(
                                SmolStr::new_static("languages"),
                                LexObjectProperty::Array(LexArray {
                                    items: LexArrayItem::String(LexString {
                                        format: Some(LexStringFormat::Language),
                                        ..Default::default()
                                    }),
                                    max_length: Some(3usize),
                                    ..Default::default()
                                }),
                            );
                            map.insert(
                                SmolStr::new_static("question"),
                                LexObjectProperty::Ref(LexRef {
                                    r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
                                    ..Default::default()
                                }),
                            );
                            map
                        },
                        ..Default::default()
                    }),
                    ..Default::default()
                }),
            );
            map
        },
        ..Default::default()
    }
}