#[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;
#[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> {
pub article_id: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub article_url: Option<UriValue<S>>,
pub comments_thread: StrongRef<S>,
pub created_at: Datetime,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[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)?)
}
}
#[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 {}
}
pub trait State: sealed::Sealed {
type CreatedAt;
type CommentsThread;
type ArticleId;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type CommentsThread = Unset;
type ArticleId = Unset;
}
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;
}
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;
}
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>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct comments_thread(());
pub struct article_id(());
}
}
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> {
pub fn new() -> ArticleLinkBuilder<S, article_link_state::Empty> {
ArticleLinkBuilder::new()
}
}
impl<S: BosStr> ArticleLinkBuilder<S, article_link_state::Empty> {
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,
{
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> {
pub fn article_url(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
self._fields.1 = value.into();
self
}
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,
{
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,
{
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,
{
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(),
}
}
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()
}
}