jacquard-api 0.12.0-beta.1

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: app.juttu.articleLink
//
// 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, Datetime, UriValue};
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};
use crate::com_atproto::repo::strong_ref::StrongRef;
/// Maps a unique article ID to its Bluesky comments thread, preserving original creation time.

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
    rename_all = "camelCase",
    rename = "app.juttu.articleLink",
    tag = "$type",
    bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct ArticleLink<S: BosStr = DefaultStr> {
    ///The site-specific unique identifier for the article (e.g., slug).
    pub article_id: S,
    ///The URL of the article.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub article_url: Option<UriValue<S>>,
    ///A strong reference to the root post (e.g., app.bsky.feed.post) of the comments thread.
    pub comments_thread: StrongRef<S>,
    ///The original publication timestamp of the article.
    pub created_at: Datetime,
    #[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 ArticleLinkGetRecordOutput<S: BosStr = DefaultStr> {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub cid: Option<Cid<S>>,
    pub uri: AtUri<S>,
    pub value: ArticleLink<S>,
}

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

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

#[derive(Debug, Serialize, Deserialize)]
pub struct ArticleLinkRecord;
impl XrpcResp for ArticleLinkRecord {
    const NSID: &'static str = "app.juttu.articleLink";
    const ENCODING: &'static str = "application/json";
    type Output<S: BosStr> = ArticleLinkGetRecordOutput<S>;
    type Err = RecordError;
}

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

impl<S: BosStr> Collection for ArticleLink<S> {
    const NSID: &'static str = "app.juttu.articleLink";
    type Record = ArticleLinkRecord;
}

impl Collection for ArticleLinkRecord {
    const NSID: &'static str = "app.juttu.articleLink";
    type Record = ArticleLinkRecord;
}

impl<S: BosStr> LexiconSchema for ArticleLink<S> {
    fn nsid() -> &'static str {
        "app.juttu.articleLink"
    }
    fn def_name() -> &'static str {
        "main"
    }
    fn lexicon_doc() -> LexiconDoc<'static> {
        lexicon_doc_app_juttu_articleLink()
    }
    fn validate(&self) -> Result<(), ConstraintError> {
        {
            let value = &self.article_id;
            #[allow(unused_comparisons)]
            if <str>::len(value.as_ref()) > 300usize {
                return Err(ConstraintError::MaxLength {
                    path: ValidationPath::from_field("article_id"),
                    max: 300usize,
                    actual: <str>::len(value.as_ref()),
                });
            }
        }
        Ok(())
    }
}

pub mod article_link_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 CommentsThread;
        type ArticleId;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type CreatedAt = Unset;
        type CommentsThread = Unset;
        type ArticleId = Unset;
    }
    ///State transition - sets the `created_at` field to Set
    pub struct SetCreatedAt<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetCreatedAt<St> {}
    impl<St: State> State for SetCreatedAt<St> {
        type CreatedAt = Set<members::created_at>;
        type CommentsThread = St::CommentsThread;
        type ArticleId = St::ArticleId;
    }
    ///State transition - sets the `comments_thread` field to Set
    pub struct SetCommentsThread<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetCommentsThread<St> {}
    impl<St: State> State for SetCommentsThread<St> {
        type CreatedAt = St::CreatedAt;
        type CommentsThread = Set<members::comments_thread>;
        type ArticleId = St::ArticleId;
    }
    ///State transition - sets the `article_id` field to Set
    pub struct SetArticleId<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetArticleId<St> {}
    impl<St: State> State for SetArticleId<St> {
        type CreatedAt = St::CreatedAt;
        type CommentsThread = St::CommentsThread;
        type ArticleId = Set<members::article_id>;
    }
    /// 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 `comments_thread` field
        pub struct comments_thread(());
        ///Marker type for the `article_id` field
        pub struct article_id(());
    }
}

/// Builder for constructing an instance of this type.
pub struct ArticleLinkBuilder<S: BosStr, St: article_link_state::State> {
    _state: PhantomData<fn() -> St>,
    _fields: (Option<S>, Option<UriValue<S>>, Option<StrongRef<S>>, Option<Datetime>),
    _type: PhantomData<fn() -> S>,
}

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

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

impl<S: BosStr, St> ArticleLinkBuilder<S, St>
where
    St: article_link_state::State,
    St::ArticleId: article_link_state::IsUnset,
{
    /// Set the `articleId` field (required)
    pub fn article_id(
        mut self,
        value: impl Into<S>,
    ) -> ArticleLinkBuilder<S, article_link_state::SetArticleId<St>> {
        self._fields.0 = Option::Some(value.into());
        ArticleLinkBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St: article_link_state::State> ArticleLinkBuilder<S, St> {
    /// Set the `articleUrl` field (optional)
    pub fn article_url(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
        self._fields.1 = value.into();
        self
    }
    /// Set the `articleUrl` field to an Option value (optional)
    pub fn maybe_article_url(mut self, value: Option<UriValue<S>>) -> Self {
        self._fields.1 = value;
        self
    }
}

impl<S: BosStr, St> ArticleLinkBuilder<S, St>
where
    St: article_link_state::State,
    St::CommentsThread: article_link_state::IsUnset,
{
    /// Set the `commentsThread` field (required)
    pub fn comments_thread(
        mut self,
        value: impl Into<StrongRef<S>>,
    ) -> ArticleLinkBuilder<S, article_link_state::SetCommentsThread<St>> {
        self._fields.2 = Option::Some(value.into());
        ArticleLinkBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> ArticleLinkBuilder<S, St>
where
    St: article_link_state::State,
    St::CreatedAt: article_link_state::IsUnset,
{
    /// Set the `createdAt` field (required)
    pub fn created_at(
        mut self,
        value: impl Into<Datetime>,
    ) -> ArticleLinkBuilder<S, article_link_state::SetCreatedAt<St>> {
        self._fields.3 = Option::Some(value.into());
        ArticleLinkBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> ArticleLinkBuilder<S, St>
where
    St: article_link_state::State,
    St::CreatedAt: article_link_state::IsSet,
    St::CommentsThread: article_link_state::IsSet,
    St::ArticleId: article_link_state::IsSet,
{
    /// Build the final struct.
    pub fn build(self) -> ArticleLink<S> {
        ArticleLink {
            article_id: self._fields.0.unwrap(),
            article_url: self._fields.1,
            comments_thread: self._fields.2.unwrap(),
            created_at: 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<SmolStr, Data<S>>,
    ) -> ArticleLink<S> {
        ArticleLink {
            article_id: self._fields.0.unwrap(),
            article_url: self._fields.1,
            comments_thread: self._fields.2.unwrap(),
            created_at: self._fields.3.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}

fn lexicon_doc_app_juttu_articleLink() -> 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.juttu.articleLink"),
        defs: {
            let mut map = BTreeMap::new();
            map.insert(
                SmolStr::new_static("main"),
                LexUserType::Record(LexRecord {
                    description: Some(
                        CowStr::new_static(
                            "Maps a unique article ID to its Bluesky comments thread, preserving original creation time.",
                        ),
                    ),
                    key: Some(CowStr::new_static("any")),
                    record: LexRecordRecord::Object(LexObject {
                        required: Some(
                            vec![
                                SmolStr::new_static("articleId"),
                                SmolStr::new_static("commentsThread"),
                                SmolStr::new_static("createdAt")
                            ],
                        ),
                        properties: {
                            #[allow(unused_mut)]
                            let mut map = BTreeMap::new();
                            map.insert(
                                SmolStr::new_static("articleId"),
                                LexObjectProperty::String(LexString {
                                    description: Some(
                                        CowStr::new_static(
                                            "The site-specific unique identifier for the article (e.g., slug).",
                                        ),
                                    ),
                                    max_length: Some(300usize),
                                    ..Default::default()
                                }),
                            );
                            map.insert(
                                SmolStr::new_static("articleUrl"),
                                LexObjectProperty::String(LexString {
                                    description: Some(
                                        CowStr::new_static("The URL of the article."),
                                    ),
                                    format: Some(LexStringFormat::Uri),
                                    ..Default::default()
                                }),
                            );
                            map.insert(
                                SmolStr::new_static("commentsThread"),
                                LexObjectProperty::Ref(LexRef {
                                    r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
                                    ..Default::default()
                                }),
                            );
                            map.insert(
                                SmolStr::new_static("createdAt"),
                                LexObjectProperty::String(LexString {
                                    description: Some(
                                        CowStr::new_static(
                                            "The original publication timestamp of the article.",
                                        ),
                                    ),
                                    format: Some(LexStringFormat::Datetime),
                                    ..Default::default()
                                }),
                            );
                            map
                        },
                        ..Default::default()
                    }),
                    ..Default::default()
                }),
            );
            map
        },
        ..Default::default()
    }
}