#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{BosStr, CowStr, DefaultStr, FromStaticStr};
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::deps::smol_str::SmolStr;
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;
use crate::app_greengale::blog::Theme;
use crate::app_greengale::blog::VoiceTheme;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "app.greengale.publication",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Publication<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_publication_enable_site_standard")]
pub enable_site_standard: Option<bool>,
pub name: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub theme: Option<Theme<S>>,
pub url: UriValue<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub voice_theme: Option<VoiceTheme<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>,
}
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 = "app.greengale.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 = "app.greengale.publication";
type Record = PublicationRecord;
}
impl Collection for PublicationRecord {
const NSID: &'static str = "app.greengale.publication";
type Record = PublicationRecord;
}
impl<S: BosStr> LexiconSchema for Publication<S> {
fn nsid() -> &'static str {
"app.greengale.publication"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_greengale_publication()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.description {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 1000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("description"),
max: 1000usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.name;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 200usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("name"),
max: 200usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.url;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 2048usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("url"),
max: 2048usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
fn _default_publication_enable_site_standard() -> Option<bool> {
Some(false)
}
pub mod publication_state {
pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
#[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<S>,
Option<bool>,
Option<S>,
Option<Theme<S>>,
Option<UriValue<S>>,
Option<VoiceTheme<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 description(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<S>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St: publication_state::State> PublicationBuilder<S, St> {
pub fn enable_site_standard(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_enable_site_standard(mut self, value: Option<bool>) -> Self {
self._fields.1 = 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.2 = Option::Some(value.into());
PublicationBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: publication_state::State> PublicationBuilder<S, St> {
pub fn theme(mut self, value: impl Into<Option<Theme<S>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_theme(mut self, value: Option<Theme<S>>) -> Self {
self._fields.3 = 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.4 = Option::Some(value.into());
PublicationBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: publication_state::State> PublicationBuilder<S, St> {
pub fn voice_theme(mut self, value: impl Into<Option<VoiceTheme<S>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_voice_theme(mut self, value: Option<VoiceTheme<S>>) -> Self {
self._fields.5 = value;
self
}
}
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 {
description: self._fields.0,
enable_site_standard: self._fields.1.or_else(|| Some(false)),
name: self._fields.2.unwrap(),
theme: self._fields.3,
url: self._fields.4.unwrap(),
voice_theme: self._fields.5,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Publication<S> {
Publication {
description: self._fields.0,
enable_site_standard: self._fields.1.or_else(|| Some(false)),
name: self._fields.2.unwrap(),
theme: self._fields.3,
url: self._fields.4.unwrap(),
voice_theme: self._fields.5,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_app_greengale_publication() -> LexiconDoc<'static> {
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("app.greengale.publication"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static(
"A publication configuration with title, description, and default theme.",
)),
key: Some(CowStr::new_static("literal:self")),
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("description"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"Publication description",
)),
max_length: Some(1000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("enableSiteStandard"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("Publication/blog title")),
max_length: Some(200usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("theme"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("app.greengale.blog.defs#theme"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("url"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"Publication base URL (e.g., https://greengale.app)",
)),
format: Some(LexStringFormat::Uri),
max_length: Some(2048usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("voiceTheme"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("app.greengale.blog.defs#voiceTheme"),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}