#[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::ident::AtIdentifier;
use jacquard_common::types::string::{AtUri, Cid, Datetime};
use jacquard_common::types::uri::{RecordUri, UriError};
use jacquard_common::xrpc::XrpcResp;
use jacquard_derive::{IntoStatic, lexicon, open_union};
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::pages::canvas::Canvas;
use crate::pub_leaflet::pages::linear_document::LinearDocument;
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(borrow)]
pub author: AtIdentifier<'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(borrow)]
pub pages: Vec<DocumentPagesItem<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub post_ref: Option<StrongRef<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub preferences: Option<Preferences<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub publication: Option<AtUri<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub published_at: Option<Datetime>,
#[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 theme: Option<Theme<'a>>,
#[serde(borrow)]
pub title: CowStr<'a>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum DocumentPagesItem<'a> {
#[serde(rename = "pub.leaflet.pages.linearDocument")]
LinearDocument(Box<LinearDocument<'a>>),
#[serde(rename = "pub.leaflet.pages.canvas")]
Canvas(Box<Canvas<'a>>),
}
#[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 = "pub.leaflet.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 = "pub.leaflet.document";
type Record = DocumentRecord;
}
impl Collection for DocumentRecord {
const NSID: &'static str = "pub.leaflet.document";
type Record = DocumentRecord;
}
impl<'a> LexiconSchema for Document<'a> {
fn nsid() -> &'static str {
"pub.leaflet.document"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_pub_leaflet_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/png", "image/jpeg", "image/webp"];
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/png".to_string(), "image/jpeg".to_string(),
"image/webp".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 Title;
type Author;
type Pages;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Title = Unset;
type Author = Unset;
type Pages = Unset;
}
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 Title = Set<members::title>;
type Author = S::Author;
type Pages = S::Pages;
}
pub struct SetAuthor<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetAuthor<S> {}
impl<S: State> State for SetAuthor<S> {
type Title = S::Title;
type Author = Set<members::author>;
type Pages = S::Pages;
}
pub struct SetPages<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetPages<S> {}
impl<S: State> State for SetPages<S> {
type Title = S::Title;
type Author = S::Author;
type Pages = Set<members::pages>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct title(());
pub struct author(());
pub struct pages(());
}
}
pub struct DocumentBuilder<'a, S: document_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<AtIdentifier<'a>>,
Option<BlobRef<'a>>,
Option<CowStr<'a>>,
Option<Vec<DocumentPagesItem<'a>>>,
Option<StrongRef<'a>>,
Option<Preferences<'a>>,
Option<AtUri<'a>>,
Option<Datetime>,
Option<Vec<CowStr<'a>>>,
Option<Theme<'a>>,
Option<CowStr<'a>>,
),
_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),
_lifetime: PhantomData,
}
}
}
impl<'a, S> DocumentBuilder<'a, S>
where
S: document_state::State,
S::Author: document_state::IsUnset,
{
pub fn author(
mut self,
value: impl Into<AtIdentifier<'a>>,
) -> DocumentBuilder<'a, document_state::SetAuthor<S>> {
self._fields.0 = Option::Some(value.into());
DocumentBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: document_state::State> DocumentBuilder<'a, S> {
pub fn cover_image(mut self, value: impl Into<Option<BlobRef<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_cover_image(mut self, value: Option<BlobRef<'a>>) -> Self {
self._fields.1 = 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.2 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> DocumentBuilder<'a, S>
where
S: document_state::State,
S::Pages: document_state::IsUnset,
{
pub fn pages(
mut self,
value: impl Into<Vec<DocumentPagesItem<'a>>>,
) -> DocumentBuilder<'a, document_state::SetPages<S>> {
self._fields.3 = Option::Some(value.into());
DocumentBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: document_state::State> DocumentBuilder<'a, S> {
pub fn post_ref(mut self, value: impl Into<Option<StrongRef<'a>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_post_ref(mut self, value: Option<StrongRef<'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: document_state::State> DocumentBuilder<'a, S> {
pub fn publication(mut self, value: impl Into<Option<AtUri<'a>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_publication(mut self, value: Option<AtUri<'a>>) -> Self {
self._fields.6 = value;
self
}
}
impl<'a, S: document_state::State> DocumentBuilder<'a, S> {
pub fn published_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_published_at(mut self, value: Option<Datetime>) -> Self {
self._fields.7 = value;
self
}
}
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 theme(mut self, value: impl Into<Option<Theme<'a>>>) -> Self {
self._fields.9 = value.into();
self
}
pub fn maybe_theme(mut self, value: Option<Theme<'a>>) -> Self {
self._fields.9 = 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.10 = Option::Some(value.into());
DocumentBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> DocumentBuilder<'a, S>
where
S: document_state::State,
S::Title: document_state::IsSet,
S::Author: document_state::IsSet,
S::Pages: document_state::IsSet,
{
pub fn build(self) -> Document<'a> {
Document {
author: self._fields.0.unwrap(),
cover_image: self._fields.1,
description: self._fields.2,
pages: self._fields.3.unwrap(),
post_ref: self._fields.4,
preferences: self._fields.5,
publication: self._fields.6,
published_at: self._fields.7,
tags: self._fields.8,
theme: self._fields.9,
title: self._fields.10.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>,
>,
) -> Document<'a> {
Document {
author: self._fields.0.unwrap(),
cover_image: self._fields.1,
description: self._fields.2,
pages: self._fields.3.unwrap(),
post_ref: self._fields.4,
preferences: self._fields.5,
publication: self._fields.6,
published_at: self._fields.7,
tags: self._fields.8,
theme: self._fields.9,
title: self._fields.10.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_pub_leaflet_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("pub.leaflet.document"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static("Record containing a document"),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("pages"), SmolStr::new_static("author"),
SmolStr::new_static("title")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("author"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtIdentifier),
..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("pages"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Union(LexRefUnion {
refs: vec![
CowStr::new_static("pub.leaflet.pages.linearDocument"),
CowStr::new_static("pub.leaflet.pages.canvas")
],
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("postRef"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("preferences"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static(
"pub.leaflet.publication#preferences",
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("publication"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("publishedAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("tags"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::String(LexString {
max_length: Some(50usize),
..Default::default()
}),
..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
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}