#[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};
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::pub_leaflet::theme::background_image::BackgroundImage;
use crate::pub_leaflet::theme::color::Rgb;
use crate::pub_leaflet::theme::color::Rgba;
use crate::pub_leaflet::publication;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Publication<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub base_path: Option<CowStr<'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 icon: Option<BlobRef<'a>>,
#[serde(borrow)]
pub name: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub preferences: Option<publication::Preferences<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub theme: Option<publication::Theme<'a>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct PublicationGetRecordOutput<'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: Publication<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Preferences<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_preferences_show_comments")]
pub show_comments: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_preferences_show_in_discover")]
pub show_in_discover: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_preferences_show_mentions")]
pub show_mentions: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_preferences_show_prev_next")]
pub show_prev_next: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_preferences_show_recommends")]
pub show_recommends: Option<bool>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Theme<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub accent_background: Option<ThemeAccentBackground<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub accent_text: Option<ThemeAccentText<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub background_color: Option<ThemeBackgroundColor<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub background_image: Option<BackgroundImage<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub body_font: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub heading_font: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub page_background: Option<ThemePageBackground<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub page_width: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub primary: Option<ThemePrimary<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_theme_show_page_background")]
pub show_page_background: Option<bool>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum ThemeAccentBackground<'a> {
#[serde(rename = "pub.leaflet.theme.color#rgba")]
ColorRgba(Box<Rgba<'a>>),
#[serde(rename = "pub.leaflet.theme.color#rgb")]
ColorRgb(Box<Rgb<'a>>),
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum ThemeAccentText<'a> {
#[serde(rename = "pub.leaflet.theme.color#rgba")]
ColorRgba(Box<Rgba<'a>>),
#[serde(rename = "pub.leaflet.theme.color#rgb")]
ColorRgb(Box<Rgb<'a>>),
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum ThemeBackgroundColor<'a> {
#[serde(rename = "pub.leaflet.theme.color#rgba")]
ColorRgba(Box<Rgba<'a>>),
#[serde(rename = "pub.leaflet.theme.color#rgb")]
ColorRgb(Box<Rgb<'a>>),
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum ThemePageBackground<'a> {
#[serde(rename = "pub.leaflet.theme.color#rgba")]
ColorRgba(Box<Rgba<'a>>),
#[serde(rename = "pub.leaflet.theme.color#rgb")]
ColorRgb(Box<Rgb<'a>>),
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum ThemePrimary<'a> {
#[serde(rename = "pub.leaflet.theme.color#rgba")]
ColorRgba(Box<Rgba<'a>>),
#[serde(rename = "pub.leaflet.theme.color#rgb")]
ColorRgb(Box<Rgb<'a>>),
}
impl<'a> Publication<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, PublicationRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct PublicationRecord;
impl XrpcResp for PublicationRecord {
const NSID: &'static str = "pub.leaflet.publication";
const ENCODING: &'static str = "application/json";
type Output<'de> = PublicationGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<PublicationGetRecordOutput<'_>> for Publication<'_> {
fn from(output: PublicationGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Publication<'_> {
const NSID: &'static str = "pub.leaflet.publication";
type Record = PublicationRecord;
}
impl Collection for PublicationRecord {
const NSID: &'static str = "pub.leaflet.publication";
type Record = PublicationRecord;
}
impl<'a> LexiconSchema for Publication<'a> {
fn nsid() -> &'static str {
"pub.leaflet.publication"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_pub_leaflet_publication()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.description {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 2000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("description"),
max: 2000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.icon {
{
let size = value.blob().size;
if size > 1000000usize {
return Err(ConstraintError::BlobTooLarge {
path: ValidationPath::from_field("icon"),
max: 1000000usize,
actual: size,
});
}
}
}
if let Some(ref value) = self.icon {
{
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("icon"),
accepted: vec!["image/*".to_string()],
actual: mime.to_string(),
});
}
}
}
{
let value = &self.name;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 2000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("name"),
max: 2000usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
impl<'a> LexiconSchema for Preferences<'a> {
fn nsid() -> &'static str {
"pub.leaflet.publication"
}
fn def_name() -> &'static str {
"preferences"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_pub_leaflet_publication()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<'a> LexiconSchema for Theme<'a> {
fn nsid() -> &'static str {
"pub.leaflet.publication"
}
fn def_name() -> &'static str {
"theme"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_pub_leaflet_publication()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.body_font {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 100usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("body_font"),
max: 100usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.heading_font {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 100usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("heading_font"),
max: 100usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.page_width {
if *value > 1600i64 {
return Err(ConstraintError::Maximum {
path: ValidationPath::from_field("page_width"),
max: 1600i64,
actual: *value,
});
}
}
if let Some(ref value) = self.page_width {
if *value < 0i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("page_width"),
min: 0i64,
actual: *value,
});
}
}
Ok(())
}
}
pub mod publication_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 Name;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Name = Unset;
}
pub struct SetName<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetName<S> {}
impl<S: State> State for SetName<S> {
type Name = Set<members::name>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct name(());
}
}
pub struct PublicationBuilder<'a, S: publication_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<BlobRef<'a>>,
Option<CowStr<'a>>,
Option<publication::Preferences<'a>>,
Option<publication::Theme<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Publication<'a> {
pub fn new() -> PublicationBuilder<'a, publication_state::Empty> {
PublicationBuilder::new()
}
}
impl<'a> PublicationBuilder<'a, publication_state::Empty> {
pub fn new() -> Self {
PublicationBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: publication_state::State> PublicationBuilder<'a, S> {
pub fn base_path(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_base_path(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S: publication_state::State> PublicationBuilder<'a, S> {
pub fn description(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: publication_state::State> PublicationBuilder<'a, S> {
pub fn icon(mut self, value: impl Into<Option<BlobRef<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_icon(mut self, value: Option<BlobRef<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> PublicationBuilder<'a, S>
where
S: publication_state::State,
S::Name: publication_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<CowStr<'a>>,
) -> PublicationBuilder<'a, publication_state::SetName<S>> {
self._fields.3 = Option::Some(value.into());
PublicationBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: publication_state::State> PublicationBuilder<'a, S> {
pub fn preferences(
mut self,
value: impl Into<Option<publication::Preferences<'a>>>,
) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_preferences(
mut self,
value: Option<publication::Preferences<'a>>,
) -> Self {
self._fields.4 = value;
self
}
}
impl<'a, S: publication_state::State> PublicationBuilder<'a, S> {
pub fn theme(mut self, value: impl Into<Option<publication::Theme<'a>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_theme(mut self, value: Option<publication::Theme<'a>>) -> Self {
self._fields.5 = value;
self
}
}
impl<'a, S> PublicationBuilder<'a, S>
where
S: publication_state::State,
S::Name: publication_state::IsSet,
{
pub fn build(self) -> Publication<'a> {
Publication {
base_path: self._fields.0,
description: self._fields.1,
icon: self._fields.2,
name: self._fields.3.unwrap(),
preferences: self._fields.4,
theme: self._fields.5,
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>,
>,
) -> Publication<'a> {
Publication {
base_path: self._fields.0,
description: self._fields.1,
icon: self._fields.2,
name: self._fields.3.unwrap(),
preferences: self._fields.4,
theme: self._fields.5,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_pub_leaflet_publication() -> 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.publication"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static("Record declaring a publication"),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![SmolStr::new_static("name")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("base_path"),
LexObjectProperty::String(LexString {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
max_length: Some(2000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("icon"),
LexObjectProperty::Blob(LexBlob { ..Default::default() }),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
max_length: Some(2000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("preferences"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#preferences"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("theme"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#theme"),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("preferences"),
LexUserType::Object(LexObject {
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("showComments"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("showInDiscover"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("showMentions"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("showPrevNext"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("showRecommends"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("theme"),
LexUserType::Object(LexObject {
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("accentBackground"),
LexObjectProperty::Union(LexRefUnion {
refs: vec![
CowStr::new_static("pub.leaflet.theme.color#rgba"),
CowStr::new_static("pub.leaflet.theme.color#rgb")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("accentText"),
LexObjectProperty::Union(LexRefUnion {
refs: vec![
CowStr::new_static("pub.leaflet.theme.color#rgba"),
CowStr::new_static("pub.leaflet.theme.color#rgb")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("backgroundColor"),
LexObjectProperty::Union(LexRefUnion {
refs: vec![
CowStr::new_static("pub.leaflet.theme.color#rgba"),
CowStr::new_static("pub.leaflet.theme.color#rgb")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("backgroundImage"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static(
"pub.leaflet.theme.backgroundImage",
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("bodyFont"),
LexObjectProperty::String(LexString {
max_length: Some(100usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("headingFont"),
LexObjectProperty::String(LexString {
max_length: Some(100usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("pageBackground"),
LexObjectProperty::Union(LexRefUnion {
refs: vec![
CowStr::new_static("pub.leaflet.theme.color#rgba"),
CowStr::new_static("pub.leaflet.theme.color#rgb")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("pageWidth"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(0i64),
maximum: Some(1600i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("primary"),
LexObjectProperty::Union(LexRefUnion {
refs: vec![
CowStr::new_static("pub.leaflet.theme.color#rgba"),
CowStr::new_static("pub.leaflet.theme.color#rgb")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("showPageBackground"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
fn _default_preferences_show_comments() -> Option<bool> {
Some(true)
}
fn _default_preferences_show_in_discover() -> Option<bool> {
Some(true)
}
fn _default_preferences_show_mentions() -> Option<bool> {
Some(true)
}
fn _default_preferences_show_prev_next() -> Option<bool> {
Some(true)
}
fn _default_preferences_show_recommends() -> Option<bool> {
Some(true)
}
impl Default for Preferences<'_> {
fn default() -> Self {
Self {
show_comments: Some(true),
show_in_discover: Some(true),
show_mentions: Some(true),
show_prev_next: Some(true),
show_recommends: Some(true),
extra_data: Default::default(),
}
}
}
fn _default_theme_show_page_background() -> Option<bool> {
Some(false)
}
impl Default for Theme<'_> {
fn default() -> Self {
Self {
accent_background: None,
accent_text: None,
background_color: None,
background_image: None,
body_font: None,
heading_font: None,
page_background: None,
page_width: None,
primary: None,
show_page_background: Some(false),
extra_data: Default::default(),
}
}
}