#[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, UriValue};
use jacquard_common::types::uri::{RecordUri, UriError};
use jacquard_common::types::value::Data;
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::pub_leaflet::publication::Theme;
use crate::site_standard::theme::basic::Basic;
use crate::site_standard::publication;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "site.standard.publication",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Publication<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub basic_theme: Option<Basic<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<Theme<S>>,
pub url: UriValue<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>>>,
}
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 = "site.standard.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 = "site.standard.publication";
type Record = PublicationRecord;
}
impl Collection for PublicationRecord {
const NSID: &'static str = "site.standard.publication";
type Record = PublicationRecord;
}
impl<S: BosStr> LexiconSchema for Publication<S> {
fn nsid() -> &'static str {
"site.standard.publication"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_site_standard_publication()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.description {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 3000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("description"),
max: 3000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.description {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 300usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("description"),
max: 300usize,
actual: count,
});
}
}
}
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()) > 1280usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("name"),
max: 1280usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.name;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 128usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("name"),
max: 128usize,
actual: count,
});
}
}
}
Ok(())
}
}
impl<S: BosStr> LexiconSchema for Preferences<S> {
fn nsid() -> &'static str {
"site.standard.publication"
}
fn def_name() -> &'static str {
"preferences"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_site_standard_publication()
}
fn validate(&self) -> Result<(), ConstraintError> {
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 Url;
type Name;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Url = Unset;
type Name = Unset;
}
pub struct SetUrl<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetUrl<St> {}
impl<St: State> State for SetUrl<St> {
type Url = Set<members::url>;
type Name = St::Name;
}
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 Url = St::Url;
type Name = Set<members::name>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct url(());
pub struct name(());
}
}
pub struct PublicationBuilder<S: BosStr, St: publication_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Basic<S>>,
Option<S>,
Option<BlobRef<S>>,
Option<S>,
Option<publication::Preferences<S>>,
Option<Theme<S>>,
Option<UriValue<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, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: publication_state::State> PublicationBuilder<S, St> {
pub fn basic_theme(mut self, value: impl Into<Option<Basic<S>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_basic_theme(mut self, value: Option<Basic<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<Theme<S>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_theme(mut self, value: Option<Theme<S>>) -> Self {
self._fields.5 = value;
self
}
}
impl<S: BosStr, St> PublicationBuilder<S, St>
where
St: publication_state::State,
St::Url: publication_state::IsUnset,
{
pub fn url(
mut self,
value: impl Into<UriValue<S>>,
) -> PublicationBuilder<S, publication_state::SetUrl<St>> {
self._fields.6 = Option::Some(value.into());
PublicationBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PublicationBuilder<S, St>
where
St: publication_state::State,
St::Url: publication_state::IsSet,
St::Name: publication_state::IsSet,
{
pub fn build(self) -> Publication<S> {
Publication {
basic_theme: self._fields.0,
description: self._fields.1,
icon: self._fields.2,
name: self._fields.3.unwrap(),
preferences: self._fields.4,
theme: self._fields.5,
url: self._fields.6.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> Publication<S> {
Publication {
basic_theme: self._fields.0,
description: self._fields.1,
icon: self._fields.2,
name: self._fields.3.unwrap(),
preferences: self._fields.4,
theme: self._fields.5,
url: self._fields.6.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_site_standard_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("site.standard.publication"),
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("url"), SmolStr::new_static("name")],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("basicTheme"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("site.standard.theme.basic"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
max_length: Some(3000usize),
max_graphemes: Some(300usize),
..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(1280usize),
max_graphemes: Some(128usize),
..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::Union(LexRefUnion {
refs: vec![
CowStr::new_static("pub.leaflet.publication#theme")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("url"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Uri),
..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
},
..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(false)
}
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(false),
show_recommends: Some(true),
extra_data: Default::default(),
}
}
}