#[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, 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::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "diy.razorgirl.winter.wikiEntry",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct WikiEntry<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub aliases: Option<Vec<S>>,
pub content: S,
pub created_at: Datetime,
pub last_updated: Datetime,
pub slug: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub status: Option<WikiEntryStatus<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub summary: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub supersedes: Option<AtUri<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub tags: Option<Vec<S>>,
pub title: S,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum WikiEntryStatus<S: BosStr = DefaultStr> {
Draft,
Stable,
Deprecated,
Other(S),
}
impl<S: BosStr> WikiEntryStatus<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Draft => "draft",
Self::Stable => "stable",
Self::Deprecated => "deprecated",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"draft" => Self::Draft,
"stable" => Self::Stable,
"deprecated" => Self::Deprecated,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for WikiEntryStatus<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for WikiEntryStatus<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for WikiEntryStatus<S> {
fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
where
Ser: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, S: Deserialize<'de> + BosStr> Deserialize<'de> for WikiEntryStatus<S> {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = S::deserialize(deserializer)?;
Ok(Self::from_value(s))
}
}
impl<S: BosStr + Default> Default for WikiEntryStatus<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for WikiEntryStatus<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = WikiEntryStatus<S::Output>;
fn into_static(self) -> Self::Output {
match self {
WikiEntryStatus::Draft => WikiEntryStatus::Draft,
WikiEntryStatus::Stable => WikiEntryStatus::Stable,
WikiEntryStatus::Deprecated => WikiEntryStatus::Deprecated,
WikiEntryStatus::Other(v) => WikiEntryStatus::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct WikiEntryGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: WikiEntry<S>,
}
impl<S: BosStr> WikiEntry<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, WikiEntryRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct WikiEntryRecord;
impl XrpcResp for WikiEntryRecord {
const NSID: &'static str = "diy.razorgirl.winter.wikiEntry";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = WikiEntryGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<WikiEntryGetRecordOutput<S>> for WikiEntry<S> {
fn from(output: WikiEntryGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for WikiEntry<S> {
const NSID: &'static str = "diy.razorgirl.winter.wikiEntry";
type Record = WikiEntryRecord;
}
impl Collection for WikiEntryRecord {
const NSID: &'static str = "diy.razorgirl.winter.wikiEntry";
type Record = WikiEntryRecord;
}
impl<S: BosStr> LexiconSchema for WikiEntry<S> {
fn nsid() -> &'static str {
"diy.razorgirl.winter.wikiEntry"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_diy_razorgirl_winter_wikiEntry()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.aliases {
#[allow(unused_comparisons)]
if value.len() > 20usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("aliases"),
max: 20usize,
actual: value.len(),
});
}
}
{
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()),
});
}
}
{
let value = &self.slug;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 128usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("slug"),
max: 128usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.summary {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 512usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("summary"),
max: 512usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.tags {
#[allow(unused_comparisons)]
if value.len() > 20usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("tags"),
max: 20usize,
actual: value.len(),
});
}
}
{
let value = &self.title;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 256usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("title"),
max: 256usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
pub mod wiki_entry_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 Title;
type Content;
type CreatedAt;
type LastUpdated;
type Slug;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Title = Unset;
type Content = Unset;
type CreatedAt = Unset;
type LastUpdated = Unset;
type Slug = Unset;
}
pub struct SetTitle<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetTitle<St> {}
impl<St: State> State for SetTitle<St> {
type Title = Set<members::title>;
type Content = St::Content;
type CreatedAt = St::CreatedAt;
type LastUpdated = St::LastUpdated;
type Slug = St::Slug;
}
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 Title = St::Title;
type Content = Set<members::content>;
type CreatedAt = St::CreatedAt;
type LastUpdated = St::LastUpdated;
type Slug = St::Slug;
}
pub struct SetCreatedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCreatedAt<St> {}
impl<St: State> State for SetCreatedAt<St> {
type Title = St::Title;
type Content = St::Content;
type CreatedAt = Set<members::created_at>;
type LastUpdated = St::LastUpdated;
type Slug = St::Slug;
}
pub struct SetLastUpdated<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetLastUpdated<St> {}
impl<St: State> State for SetLastUpdated<St> {
type Title = St::Title;
type Content = St::Content;
type CreatedAt = St::CreatedAt;
type LastUpdated = Set<members::last_updated>;
type Slug = St::Slug;
}
pub struct SetSlug<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetSlug<St> {}
impl<St: State> State for SetSlug<St> {
type Title = St::Title;
type Content = St::Content;
type CreatedAt = St::CreatedAt;
type LastUpdated = St::LastUpdated;
type Slug = Set<members::slug>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct title(());
pub struct content(());
pub struct created_at(());
pub struct last_updated(());
pub struct slug(());
}
}
pub struct WikiEntryBuilder<S: BosStr, St: wiki_entry_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Vec<S>>,
Option<S>,
Option<Datetime>,
Option<Datetime>,
Option<S>,
Option<WikiEntryStatus<S>>,
Option<S>,
Option<AtUri<S>>,
Option<Vec<S>>,
Option<S>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> WikiEntry<S> {
pub fn new() -> WikiEntryBuilder<S, wiki_entry_state::Empty> {
WikiEntryBuilder::new()
}
}
impl<S: BosStr> WikiEntryBuilder<S, wiki_entry_state::Empty> {
pub fn new() -> Self {
WikiEntryBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: wiki_entry_state::State> WikiEntryBuilder<S, St> {
pub fn aliases(mut self, value: impl Into<Option<Vec<S>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_aliases(mut self, value: Option<Vec<S>>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St> WikiEntryBuilder<S, St>
where
St: wiki_entry_state::State,
St::Content: wiki_entry_state::IsUnset,
{
pub fn content(
mut self,
value: impl Into<S>,
) -> WikiEntryBuilder<S, wiki_entry_state::SetContent<St>> {
self._fields.1 = Option::Some(value.into());
WikiEntryBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> WikiEntryBuilder<S, St>
where
St: wiki_entry_state::State,
St::CreatedAt: wiki_entry_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> WikiEntryBuilder<S, wiki_entry_state::SetCreatedAt<St>> {
self._fields.2 = Option::Some(value.into());
WikiEntryBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> WikiEntryBuilder<S, St>
where
St: wiki_entry_state::State,
St::LastUpdated: wiki_entry_state::IsUnset,
{
pub fn last_updated(
mut self,
value: impl Into<Datetime>,
) -> WikiEntryBuilder<S, wiki_entry_state::SetLastUpdated<St>> {
self._fields.3 = Option::Some(value.into());
WikiEntryBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> WikiEntryBuilder<S, St>
where
St: wiki_entry_state::State,
St::Slug: wiki_entry_state::IsUnset,
{
pub fn slug(
mut self,
value: impl Into<S>,
) -> WikiEntryBuilder<S, wiki_entry_state::SetSlug<St>> {
self._fields.4 = Option::Some(value.into());
WikiEntryBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: wiki_entry_state::State> WikiEntryBuilder<S, St> {
pub fn status(mut self, value: impl Into<Option<WikiEntryStatus<S>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_status(mut self, value: Option<WikiEntryStatus<S>>) -> Self {
self._fields.5 = value;
self
}
}
impl<S: BosStr, St: wiki_entry_state::State> WikiEntryBuilder<S, St> {
pub fn summary(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_summary(mut self, value: Option<S>) -> Self {
self._fields.6 = value;
self
}
}
impl<S: BosStr, St: wiki_entry_state::State> WikiEntryBuilder<S, St> {
pub fn supersedes(mut self, value: impl Into<Option<AtUri<S>>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_supersedes(mut self, value: Option<AtUri<S>>) -> Self {
self._fields.7 = value;
self
}
}
impl<S: BosStr, St: wiki_entry_state::State> WikiEntryBuilder<S, St> {
pub fn tags(mut self, value: impl Into<Option<Vec<S>>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_tags(mut self, value: Option<Vec<S>>) -> Self {
self._fields.8 = value;
self
}
}
impl<S: BosStr, St> WikiEntryBuilder<S, St>
where
St: wiki_entry_state::State,
St::Title: wiki_entry_state::IsUnset,
{
pub fn title(
mut self,
value: impl Into<S>,
) -> WikiEntryBuilder<S, wiki_entry_state::SetTitle<St>> {
self._fields.9 = Option::Some(value.into());
WikiEntryBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> WikiEntryBuilder<S, St>
where
St: wiki_entry_state::State,
St::Title: wiki_entry_state::IsSet,
St::Content: wiki_entry_state::IsSet,
St::CreatedAt: wiki_entry_state::IsSet,
St::LastUpdated: wiki_entry_state::IsSet,
St::Slug: wiki_entry_state::IsSet,
{
pub fn build(self) -> WikiEntry<S> {
WikiEntry {
aliases: self._fields.0,
content: self._fields.1.unwrap(),
created_at: self._fields.2.unwrap(),
last_updated: self._fields.3.unwrap(),
slug: self._fields.4.unwrap(),
status: self._fields.5,
summary: self._fields.6,
supersedes: self._fields.7,
tags: self._fields.8,
title: self._fields.9.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> WikiEntry<S> {
WikiEntry {
aliases: self._fields.0,
content: self._fields.1.unwrap(),
created_at: self._fields.2.unwrap(),
last_updated: self._fields.3.unwrap(),
slug: self._fields.4.unwrap(),
status: self._fields.5,
summary: self._fields.6,
supersedes: self._fields.7,
tags: self._fields.8,
title: self._fields.9.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_diy_razorgirl_winter_wikiEntry() -> 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("diy.razorgirl.winter.wikiEntry"),
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("title"),
SmolStr::new_static("slug"),
SmolStr::new_static("content"),
SmolStr::new_static("createdAt"),
SmolStr::new_static("lastUpdated"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("aliases"),
LexObjectProperty::Array(LexArray {
description: Some(CowStr::new_static(
"Alternative names for [[alias]] resolution",
)),
items: LexArrayItem::String(LexString {
..Default::default()
}),
max_length: Some(20usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("content"),
LexObjectProperty::String(LexString {
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("lastUpdated"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("slug"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"URL-safe identifier for [[slug]] linking",
)),
max_length: Some(128usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("status"),
LexObjectProperty::String(LexString {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("summary"),
LexObjectProperty::String(LexString {
max_length: Some(512usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("supersedes"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("tags"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::String(LexString {
..Default::default()
}),
max_length: Some(20usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("title"),
LexObjectProperty::String(LexString {
max_length: Some(256usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}