#[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, UriValue};
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;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", rename = "app.juttu.articleLink", tag = "$type")]
pub struct ArticleLink<'a> {
#[serde(borrow)]
pub article_id: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub article_url: Option<UriValue<'a>>,
#[serde(borrow)]
pub comments_thread: StrongRef<'a>,
pub created_at: Datetime,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ArticleLinkGetRecordOutput<'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: ArticleLink<'a>,
}
impl<'a> ArticleLink<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, ArticleLinkRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[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<'de> = ArticleLinkGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<ArticleLinkGetRecordOutput<'_>> for ArticleLink<'_> {
fn from(output: ArticleLinkGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for ArticleLink<'_> {
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<'a> LexiconSchema for ArticleLink<'a> {
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 ArticleId;
type CommentsThread;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type ArticleId = Unset;
type CommentsThread = Unset;
type CreatedAt = Unset;
}
pub struct SetArticleId<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetArticleId<S> {}
impl<S: State> State for SetArticleId<S> {
type ArticleId = Set<members::article_id>;
type CommentsThread = S::CommentsThread;
type CreatedAt = S::CreatedAt;
}
pub struct SetCommentsThread<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCommentsThread<S> {}
impl<S: State> State for SetCommentsThread<S> {
type ArticleId = S::ArticleId;
type CommentsThread = Set<members::comments_thread>;
type CreatedAt = S::CreatedAt;
}
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 ArticleId = S::ArticleId;
type CommentsThread = S::CommentsThread;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct article_id(());
pub struct comments_thread(());
pub struct created_at(());
}
}
pub struct ArticleLinkBuilder<'a, S: article_link_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<CowStr<'a>>,
Option<UriValue<'a>>,
Option<StrongRef<'a>>,
Option<Datetime>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> ArticleLink<'a> {
pub fn new() -> ArticleLinkBuilder<'a, article_link_state::Empty> {
ArticleLinkBuilder::new()
}
}
impl<'a> ArticleLinkBuilder<'a, article_link_state::Empty> {
pub fn new() -> Self {
ArticleLinkBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> ArticleLinkBuilder<'a, S>
where
S: article_link_state::State,
S::ArticleId: article_link_state::IsUnset,
{
pub fn article_id(
mut self,
value: impl Into<CowStr<'a>>,
) -> ArticleLinkBuilder<'a, article_link_state::SetArticleId<S>> {
self._fields.0 = Option::Some(value.into());
ArticleLinkBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: article_link_state::State> ArticleLinkBuilder<'a, S> {
pub fn article_url(mut self, value: impl Into<Option<UriValue<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_article_url(mut self, value: Option<UriValue<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S> ArticleLinkBuilder<'a, S>
where
S: article_link_state::State,
S::CommentsThread: article_link_state::IsUnset,
{
pub fn comments_thread(
mut self,
value: impl Into<StrongRef<'a>>,
) -> ArticleLinkBuilder<'a, article_link_state::SetCommentsThread<S>> {
self._fields.2 = Option::Some(value.into());
ArticleLinkBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ArticleLinkBuilder<'a, S>
where
S: article_link_state::State,
S::CreatedAt: article_link_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ArticleLinkBuilder<'a, article_link_state::SetCreatedAt<S>> {
self._fields.3 = Option::Some(value.into());
ArticleLinkBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ArticleLinkBuilder<'a, S>
where
S: article_link_state::State,
S::ArticleId: article_link_state::IsSet,
S::CommentsThread: article_link_state::IsSet,
S::CreatedAt: article_link_state::IsSet,
{
pub fn build(self) -> ArticleLink<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> ArticleLink<'a> {
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()
}
}