#[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::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::types::value::Data;
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;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "pub.leaflet.publication",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Publication<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub base_path: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub icon: Option<BlobRef<S>>,
pub name: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub preferences: Option<publication::Preferences<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub theme: Option<publication::Theme<S>>,
#[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 PublicationGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Publication<S>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct Preferences<S: BosStr = DefaultStr> {
#[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>,
#[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", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct Theme<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub accent_background: Option<ThemeAccentBackground<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub accent_text: Option<ThemeAccentText<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub background_color: Option<ThemeBackgroundColor<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub background_image: Option<BackgroundImage<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub body_font: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub heading_font: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub page_background: Option<ThemePageBackground<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub page_width: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub primary: Option<ThemePrimary<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_theme_show_page_background")]
pub show_page_background: Option<bool>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum ThemeAccentBackground<S: BosStr = DefaultStr> {
#[serde(rename = "pub.leaflet.theme.color#rgba")]
ColorRgba(Box<Rgba<S>>),
#[serde(rename = "pub.leaflet.theme.color#rgb")]
ColorRgb(Box<Rgb<S>>),
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum ThemeAccentText<S: BosStr = DefaultStr> {
#[serde(rename = "pub.leaflet.theme.color#rgba")]
ColorRgba(Box<Rgba<S>>),
#[serde(rename = "pub.leaflet.theme.color#rgb")]
ColorRgb(Box<Rgb<S>>),
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum ThemeBackgroundColor<S: BosStr = DefaultStr> {
#[serde(rename = "pub.leaflet.theme.color#rgba")]
ColorRgba(Box<Rgba<S>>),
#[serde(rename = "pub.leaflet.theme.color#rgb")]
ColorRgb(Box<Rgb<S>>),
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum ThemePageBackground<S: BosStr = DefaultStr> {
#[serde(rename = "pub.leaflet.theme.color#rgba")]
ColorRgba(Box<Rgba<S>>),
#[serde(rename = "pub.leaflet.theme.color#rgb")]
ColorRgb(Box<Rgb<S>>),
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum ThemePrimary<S: BosStr = DefaultStr> {
#[serde(rename = "pub.leaflet.theme.color#rgba")]
ColorRgba(Box<Rgba<S>>),
#[serde(rename = "pub.leaflet.theme.color#rgb")]
ColorRgb(Box<Rgb<S>>),
}
impl<S: BosStr> Publication<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, PublicationRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[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<S: BosStr> = PublicationGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<PublicationGetRecordOutput<S>> for Publication<S> {
fn from(output: PublicationGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Publication<S> {
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<S: BosStr> LexiconSchema for Publication<S> {
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<S: BosStr> LexiconSchema for Preferences<S> {
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<S: BosStr> LexiconSchema for Theme<S> {
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<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetName<St> {}
impl<St: State> State for SetName<St> {
type Name = Set<members::name>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct name(());
}
}
pub struct PublicationBuilder<S: BosStr, St: publication_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<S>,
Option<S>,
Option<BlobRef<S>>,
Option<S>,
Option<publication::Preferences<S>>,
Option<publication::Theme<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Publication<S> {
pub fn new() -> PublicationBuilder<S, publication_state::Empty> {
PublicationBuilder::new()
}
}
impl<S: BosStr> PublicationBuilder<S, publication_state::Empty> {
pub fn new() -> Self {
PublicationBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: publication_state::State> PublicationBuilder<S, St> {
pub fn base_path(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_base_path(mut self, value: Option<S>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St: publication_state::State> PublicationBuilder<S, St> {
pub fn description(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<S>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St: publication_state::State> PublicationBuilder<S, St> {
pub fn icon(mut self, value: impl Into<Option<BlobRef<S>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_icon(mut self, value: Option<BlobRef<S>>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St> PublicationBuilder<S, St>
where
St: publication_state::State,
St::Name: publication_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<S>,
) -> PublicationBuilder<S, publication_state::SetName<St>> {
self._fields.3 = Option::Some(value.into());
PublicationBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: publication_state::State> PublicationBuilder<S, St> {
pub fn preferences(
mut self,
value: impl Into<Option<publication::Preferences<S>>>,
) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_preferences(
mut self,
value: Option<publication::Preferences<S>>,
) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St: publication_state::State> PublicationBuilder<S, St> {
pub fn theme(mut self, value: impl Into<Option<publication::Theme<S>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_theme(mut self, value: Option<publication::Theme<S>>) -> Self {
self._fields.5 = value;
self
}
}
impl<S: BosStr, St> PublicationBuilder<S, St>
where
St: publication_state::State,
St::Name: publication_state::IsSet,
{
pub fn build(self) -> Publication<S> {
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<SmolStr, Data<S>>,
) -> Publication<S> {
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(),
}
}
}