#[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::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid, Datetime};
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::app_greengale::blog::BlobMetadata;
use crate::app_greengale::blog::Ogp;
use crate::app_greengale::blog::Theme;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "app.greengale.blog.entry",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Entry<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub blobs: Option<Vec<BlobMetadata<S>>>,
pub content: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub created_at: Option<Datetime>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_entry_latex")]
pub latex: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub ogp: Option<Ogp<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub subtitle: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub theme: Option<Theme<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub title: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_entry_visibility")]
pub visibility: Option<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 EntryGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Entry<S>,
}
impl<S: BosStr> Entry<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, EntryRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct EntryRecord;
impl XrpcResp for EntryRecord {
const NSID: &'static str = "app.greengale.blog.entry";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = EntryGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<EntryGetRecordOutput<S>> for Entry<S> {
fn from(output: EntryGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Entry<S> {
const NSID: &'static str = "app.greengale.blog.entry";
type Record = EntryRecord;
}
impl Collection for EntryRecord {
const NSID: &'static str = "app.greengale.blog.entry";
type Record = EntryRecord;
}
impl<S: BosStr> LexiconSchema for Entry<S> {
fn nsid() -> &'static str {
"app.greengale.blog.entry"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_greengale_blog_entry()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.content;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 100000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("content"),
max: 100000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.subtitle {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 1000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("subtitle"),
max: 1000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.title {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 1000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("title"),
max: 1000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.visibility {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 16usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("visibility"),
max: 16usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
fn _default_entry_latex() -> Option<bool> {
Some(false)
}
fn _default_entry_visibility<S: FromStaticStr>() -> ::core::option::Option<S> {
Some(S::from_static("public"))
}
pub mod entry_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 Content;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Content = Unset;
}
pub struct SetContent<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetContent<St> {}
impl<St: State> State for SetContent<St> {
type Content = Set<members::content>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct content(());
}
}
pub struct EntryBuilder<S: BosStr, St: entry_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Vec<BlobMetadata<S>>>,
Option<S>,
Option<Datetime>,
Option<bool>,
Option<Ogp<S>>,
Option<S>,
Option<Theme<S>>,
Option<S>,
Option<S>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Entry<S> {
pub fn new() -> EntryBuilder<S, entry_state::Empty> {
EntryBuilder::new()
}
}
impl<S: BosStr> EntryBuilder<S, entry_state::Empty> {
pub fn new() -> Self {
EntryBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: entry_state::State> EntryBuilder<S, St> {
pub fn blobs(mut self, value: impl Into<Option<Vec<BlobMetadata<S>>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_blobs(mut self, value: Option<Vec<BlobMetadata<S>>>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St> EntryBuilder<S, St>
where
St: entry_state::State,
St::Content: entry_state::IsUnset,
{
pub fn content(
mut self,
value: impl Into<S>,
) -> EntryBuilder<S, entry_state::SetContent<St>> {
self._fields.1 = Option::Some(value.into());
EntryBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: entry_state::State> EntryBuilder<S, St> {
pub fn created_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_created_at(mut self, value: Option<Datetime>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St: entry_state::State> EntryBuilder<S, St> {
pub fn latex(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_latex(mut self, value: Option<bool>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St: entry_state::State> EntryBuilder<S, St> {
pub fn ogp(mut self, value: impl Into<Option<Ogp<S>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_ogp(mut self, value: Option<Ogp<S>>) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St: entry_state::State> EntryBuilder<S, St> {
pub fn subtitle(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_subtitle(mut self, value: Option<S>) -> Self {
self._fields.5 = value;
self
}
}
impl<S: BosStr, St: entry_state::State> EntryBuilder<S, St> {
pub fn theme(mut self, value: impl Into<Option<Theme<S>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_theme(mut self, value: Option<Theme<S>>) -> Self {
self._fields.6 = value;
self
}
}
impl<S: BosStr, St: entry_state::State> EntryBuilder<S, St> {
pub fn title(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_title(mut self, value: Option<S>) -> Self {
self._fields.7 = value;
self
}
}
impl<S: BosStr, St: entry_state::State> EntryBuilder<S, St> {
pub fn visibility(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_visibility(mut self, value: Option<S>) -> Self {
self._fields.8 = value;
self
}
}
impl<S: BosStr, St> EntryBuilder<S, St>
where
St: entry_state::State,
St::Content: entry_state::IsSet,
{
pub fn build(self) -> Entry<S> {
Entry {
blobs: self._fields.0,
content: self._fields.1.unwrap(),
created_at: self._fields.2,
latex: self._fields.3.or_else(|| Some(false)),
ogp: self._fields.4,
subtitle: self._fields.5,
theme: self._fields.6,
title: self._fields.7,
visibility: self._fields.8.or_else(|| Some(S::from_static("public"))),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Entry<S> {
Entry {
blobs: self._fields.0,
content: self._fields.1.unwrap(),
created_at: self._fields.2,
latex: self._fields.3.or_else(|| Some(false)),
ogp: self._fields.4,
subtitle: self._fields.5,
theme: self._fields.6,
title: self._fields.7,
visibility: self._fields.8.or_else(|| Some(S::from_static("public"))),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_app_greengale_blog_entry() -> 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.blog.entry"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"A markdown blog post with extended theme and LaTeX support.",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![SmolStr::new_static("content")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("blobs"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static(
"app.greengale.blog.defs#blobMetadata",
),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("content"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Markdown content of the blog post"),
),
max_length: Some(100000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("latex"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("ogp"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("app.greengale.blog.defs#ogp"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("subtitle"),
LexObjectProperty::String(LexString {
max_length: Some(1000usize),
..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("title"),
LexObjectProperty::String(LexString {
max_length: Some(1000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("visibility"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Controls who can view this entry"),
),
max_length: Some(16usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}