#[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::blob::BlobRef;
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;
use crate::pub_leaflet::content::Content;
use crate::pub_leaflet::publication::Preferences;
use crate::pub_leaflet::publication::Theme;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Document<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub bsky_post_ref: Option<StrongRef<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub content: Option<Content<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cover_image: Option<BlobRef<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub description: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub path: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub preferences: Option<Preferences<'a>>,
pub published_at: Datetime,
#[serde(borrow)]
pub site: UriValue<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub tags: Option<Vec<CowStr<'a>>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub text_content: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub theme: Option<Theme<'a>>,
#[serde(borrow)]
pub title: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
pub updated_at: Option<Datetime>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct DocumentGetRecordOutput<'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: Document<'a>,
}
impl<'a> Document<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, DocumentRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct DocumentRecord;
impl XrpcResp for DocumentRecord {
const NSID: &'static str = "site.standard.document";
const ENCODING: &'static str = "application/json";
type Output<'de> = DocumentGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<DocumentGetRecordOutput<'_>> for Document<'_> {
fn from(output: DocumentGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Document<'_> {
const NSID: &'static str = "site.standard.document";
type Record = DocumentRecord;
}
impl Collection for DocumentRecord {
const NSID: &'static str = "site.standard.document";
type Record = DocumentRecord;
}
impl<'a> LexiconSchema for Document<'a> {
fn nsid() -> &'static str {
"site.standard.document"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_site_standard_document()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.cover_image {
{
let size = value.blob().size;
if size > 1000000usize {
return Err(ConstraintError::BlobTooLarge {
path: ValidationPath::from_field("cover_image"),
max: 1000000usize,
actual: size,
});
}
}
}
if let Some(ref value) = self.cover_image {
{
let mime = value.blob().mime_type.as_str();
let accepted: &[&str] = &["image/*"];
let matched = accepted
.iter()
.any(|pattern| {
if *pattern == "*/*" {
true
} else if pattern.ends_with("/*") {
let prefix = &pattern[..pattern.len() - 2];
mime.starts_with(prefix)
&& mime.as_bytes().get(prefix.len()) == Some(&b'/')
} else {
mime == *pattern
}
});
if !matched {
return Err(ConstraintError::BlobMimeTypeNotAccepted {
path: ValidationPath::from_field("cover_image"),
accepted: vec!["image/*".to_string()],
actual: mime.to_string(),
});
}
}
}
if let Some(ref value) = self.description {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 30000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("description"),
max: 30000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.description {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 3000usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("description"),
max: 3000usize,
actual: count,
});
}
}
}
{
let value = &self.title;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 5000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("title"),
max: 5000usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.title;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 500usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("title"),
max: 500usize,
actual: count,
});
}
}
}
Ok(())
}
}
pub mod document_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 PublishedAt;
type Title;
type Site;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type PublishedAt = Unset;
type Title = Unset;
type Site = Unset;
}
pub struct SetPublishedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetPublishedAt<S> {}
impl<S: State> State for SetPublishedAt<S> {
type PublishedAt = Set<members::published_at>;
type Title = S::Title;
type Site = S::Site;
}
pub struct SetTitle<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetTitle<S> {}
impl<S: State> State for SetTitle<S> {
type PublishedAt = S::PublishedAt;
type Title = Set<members::title>;
type Site = S::Site;
}
pub struct SetSite<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetSite<S> {}
impl<S: State> State for SetSite<S> {
type PublishedAt = S::PublishedAt;
type Title = S::Title;
type Site = Set<members::site>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct published_at(());
pub struct title(());
pub struct site(());
}
}
pub struct DocumentBuilder<'a, S: document_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<StrongRef<'a>>,
Option<Content<'a>>,
Option<BlobRef<'a>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<Preferences<'a>>,
Option<Datetime>,
Option<UriValue<'a>>,
Option<Vec<CowStr<'a>>>,
Option<CowStr<'a>>,
Option<Theme<'a>>,
Option<CowStr<'a>>,
Option<Datetime>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Document<'a> {
pub fn new() -> DocumentBuilder<'a, document_state::Empty> {
DocumentBuilder::new()
}
}
impl<'a> DocumentBuilder<'a, document_state::Empty> {
pub fn new() -> Self {
DocumentBuilder {
_state: PhantomData,
_fields: (
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
),
_lifetime: PhantomData,
}
}
}
impl<'a, S: document_state::State> DocumentBuilder<'a, S> {
pub fn bsky_post_ref(mut self, value: impl Into<Option<StrongRef<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_bsky_post_ref(mut self, value: Option<StrongRef<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S: document_state::State> DocumentBuilder<'a, S> {
pub fn content(mut self, value: impl Into<Option<Content<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_content(mut self, value: Option<Content<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: document_state::State> DocumentBuilder<'a, S> {
pub fn cover_image(mut self, value: impl Into<Option<BlobRef<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_cover_image(mut self, value: Option<BlobRef<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S: document_state::State> DocumentBuilder<'a, S> {
pub fn description(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S: document_state::State> DocumentBuilder<'a, S> {
pub fn path(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_path(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.4 = value;
self
}
}
impl<'a, S: document_state::State> DocumentBuilder<'a, S> {
pub fn preferences(mut self, value: impl Into<Option<Preferences<'a>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_preferences(mut self, value: Option<Preferences<'a>>) -> Self {
self._fields.5 = value;
self
}
}
impl<'a, S> DocumentBuilder<'a, S>
where
S: document_state::State,
S::PublishedAt: document_state::IsUnset,
{
pub fn published_at(
mut self,
value: impl Into<Datetime>,
) -> DocumentBuilder<'a, document_state::SetPublishedAt<S>> {
self._fields.6 = Option::Some(value.into());
DocumentBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> DocumentBuilder<'a, S>
where
S: document_state::State,
S::Site: document_state::IsUnset,
{
pub fn site(
mut self,
value: impl Into<UriValue<'a>>,
) -> DocumentBuilder<'a, document_state::SetSite<S>> {
self._fields.7 = Option::Some(value.into());
DocumentBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: document_state::State> DocumentBuilder<'a, S> {
pub fn tags(mut self, value: impl Into<Option<Vec<CowStr<'a>>>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_tags(mut self, value: Option<Vec<CowStr<'a>>>) -> Self {
self._fields.8 = value;
self
}
}
impl<'a, S: document_state::State> DocumentBuilder<'a, S> {
pub fn text_content(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.9 = value.into();
self
}
pub fn maybe_text_content(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.9 = value;
self
}
}
impl<'a, S: document_state::State> DocumentBuilder<'a, S> {
pub fn theme(mut self, value: impl Into<Option<Theme<'a>>>) -> Self {
self._fields.10 = value.into();
self
}
pub fn maybe_theme(mut self, value: Option<Theme<'a>>) -> Self {
self._fields.10 = value;
self
}
}
impl<'a, S> DocumentBuilder<'a, S>
where
S: document_state::State,
S::Title: document_state::IsUnset,
{
pub fn title(
mut self,
value: impl Into<CowStr<'a>>,
) -> DocumentBuilder<'a, document_state::SetTitle<S>> {
self._fields.11 = Option::Some(value.into());
DocumentBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: document_state::State> DocumentBuilder<'a, S> {
pub fn updated_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.12 = value.into();
self
}
pub fn maybe_updated_at(mut self, value: Option<Datetime>) -> Self {
self._fields.12 = value;
self
}
}
impl<'a, S> DocumentBuilder<'a, S>
where
S: document_state::State,
S::PublishedAt: document_state::IsSet,
S::Title: document_state::IsSet,
S::Site: document_state::IsSet,
{
pub fn build(self) -> Document<'a> {
Document {
bsky_post_ref: self._fields.0,
content: self._fields.1,
cover_image: self._fields.2,
description: self._fields.3,
path: self._fields.4,
preferences: self._fields.5,
published_at: self._fields.6.unwrap(),
site: self._fields.7.unwrap(),
tags: self._fields.8,
text_content: self._fields.9,
theme: self._fields.10,
title: self._fields.11.unwrap(),
updated_at: self._fields.12,
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>,
>,
) -> Document<'a> {
Document {
bsky_post_ref: self._fields.0,
content: self._fields.1,
cover_image: self._fields.2,
description: self._fields.3,
path: self._fields.4,
preferences: self._fields.5,
published_at: self._fields.6.unwrap(),
site: self._fields.7.unwrap(),
tags: self._fields.8,
text_content: self._fields.9,
theme: self._fields.10,
title: self._fields.11.unwrap(),
updated_at: self._fields.12,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_site_standard_document() -> 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("site.standard.document"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("site"), SmolStr::new_static("title"),
SmolStr::new_static("publishedAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("bskyPostRef"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("content"),
LexObjectProperty::Union(LexRefUnion {
refs: vec![CowStr::new_static("pub.leaflet.content")],
closed: Some(false),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("coverImage"),
LexObjectProperty::Blob(LexBlob { ..Default::default() }),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
max_length: Some(30000usize),
max_graphemes: Some(3000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("path"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"combine with the publication url or the document site to construct a full url to the document",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("preferences"),
LexObjectProperty::Union(LexRefUnion {
refs: vec![
CowStr::new_static("pub.leaflet.publication#preferences")
],
closed: Some(false),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("publishedAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("site"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"URI to the site or publication this document belongs to. Supports both AT-URIs (at://did/collection/rkey) for publication references and HTTPS URLs (https://example.com) for standalone documents or external sites.",
),
),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("tags"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::String(LexString {
max_length: Some(100usize),
max_graphemes: Some(50usize),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("textContent"),
LexObjectProperty::String(LexString {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("theme"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("pub.leaflet.publication#theme"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("title"),
LexObjectProperty::String(LexString {
max_length: Some(5000usize),
max_graphemes: Some(500usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("updatedAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}