#[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::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid, UriValue};
use jacquard_common::types::uri::{RecordUri, UriError};
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::app_greengale::blog::Theme;
use crate::app_greengale::blog::VoiceTheme;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", rename = "app.greengale.publication", tag = "$type")]
pub struct Publication<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub description: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_publication_enable_site_standard")]
pub enable_site_standard: Option<bool>,
#[serde(borrow)]
pub name: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub theme: Option<Theme<'a>>,
#[serde(borrow)]
pub url: UriValue<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub voice_theme: Option<VoiceTheme<'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>,
}
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 = "app.greengale.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 = "app.greengale.publication";
type Record = PublicationRecord;
}
impl Collection for PublicationRecord {
const NSID: &'static str = "app.greengale.publication";
type Record = PublicationRecord;
}
impl<'a> LexiconSchema for Publication<'a> {
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::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Name;
type Url;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Name = Unset;
type Url = 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>;
type Url = S::Url;
}
pub struct SetUrl<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetUrl<S> {}
impl<S: State> State for SetUrl<S> {
type Name = S::Name;
type Url = Set<members::url>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct name(());
pub struct url(());
}
}
pub struct PublicationBuilder<'a, S: publication_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<CowStr<'a>>,
Option<bool>,
Option<CowStr<'a>>,
Option<Theme<'a>>,
Option<UriValue<'a>>,
Option<VoiceTheme<'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 description(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S: publication_state::State> PublicationBuilder<'a, S> {
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<'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.2 = Option::Some(value.into());
PublicationBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: publication_state::State> PublicationBuilder<'a, S> {
pub fn theme(mut self, value: impl Into<Option<Theme<'a>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_theme(mut self, value: Option<Theme<'a>>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S> PublicationBuilder<'a, S>
where
S: publication_state::State,
S::Url: publication_state::IsUnset,
{
pub fn url(
mut self,
value: impl Into<UriValue<'a>>,
) -> PublicationBuilder<'a, publication_state::SetUrl<S>> {
self._fields.4 = Option::Some(value.into());
PublicationBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: publication_state::State> PublicationBuilder<'a, S> {
pub fn voice_theme(mut self, value: impl Into<Option<VoiceTheme<'a>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_voice_theme(mut self, value: Option<VoiceTheme<'a>>) -> Self {
self._fields.5 = value;
self
}
}
impl<'a, S> PublicationBuilder<'a, S>
where
S: publication_state::State,
S::Name: publication_state::IsSet,
S::Url: publication_state::IsSet,
{
pub fn build(self) -> Publication<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Publication<'a> {
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> {
#[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("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()
}
}