#[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;
use crate::com_atproto::repo::strong_ref::StrongRef;
use crate::sh_weaver::actor::Author;
use crate::sh_weaver::notebook::ContentRating;
use crate::sh_weaver::notebook::ContentWarnings;
use crate::sh_weaver::notebook::Tags;
use crate::sh_weaver::notebook::Title;
#[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 = "sh.weaver.notebook.chapter",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Chapter<S: BosStr = DefaultStr> {
pub authors: Vec<Author<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub content_warnings: Option<ContentWarnings<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub created_at: Option<Datetime>,
pub entry_list: Vec<StrongRef<S>>,
pub notebook: StrongRef<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub rating: Option<ContentRating<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub tags: Option<Tags<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub title: Option<Title<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 ChapterGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Chapter<S>,
}
impl<S: BosStr> Chapter<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, ChapterRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ChapterRecord;
impl XrpcResp for ChapterRecord {
const NSID: &'static str = "sh.weaver.notebook.chapter";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ChapterGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<ChapterGetRecordOutput<S>> for Chapter<S> {
fn from(output: ChapterGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Chapter<S> {
const NSID: &'static str = "sh.weaver.notebook.chapter";
type Record = ChapterRecord;
}
impl Collection for ChapterRecord {
const NSID: &'static str = "sh.weaver.notebook.chapter";
type Record = ChapterRecord;
}
impl<S: BosStr> LexiconSchema for Chapter<S> {
fn nsid() -> &'static str {
"sh.weaver.notebook.chapter"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_sh_weaver_notebook_chapter()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod chapter_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 Authors;
type EntryList;
type Notebook;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Authors = Unset;
type EntryList = Unset;
type Notebook = Unset;
}
pub struct SetAuthors<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAuthors<St> {}
impl<St: State> State for SetAuthors<St> {
type Authors = Set<members::authors>;
type EntryList = St::EntryList;
type Notebook = St::Notebook;
}
pub struct SetEntryList<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetEntryList<St> {}
impl<St: State> State for SetEntryList<St> {
type Authors = St::Authors;
type EntryList = Set<members::entry_list>;
type Notebook = St::Notebook;
}
pub struct SetNotebook<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetNotebook<St> {}
impl<St: State> State for SetNotebook<St> {
type Authors = St::Authors;
type EntryList = St::EntryList;
type Notebook = Set<members::notebook>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct authors(());
pub struct entry_list(());
pub struct notebook(());
}
}
pub struct ChapterBuilder<S: BosStr, St: chapter_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Vec<Author<S>>>,
Option<ContentWarnings<S>>,
Option<Datetime>,
Option<Vec<StrongRef<S>>>,
Option<StrongRef<S>>,
Option<ContentRating<S>>,
Option<Tags<S>>,
Option<Title<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Chapter<S> {
pub fn new() -> ChapterBuilder<S, chapter_state::Empty> {
ChapterBuilder::new()
}
}
impl<S: BosStr> ChapterBuilder<S, chapter_state::Empty> {
pub fn new() -> Self {
ChapterBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ChapterBuilder<S, St>
where
St: chapter_state::State,
St::Authors: chapter_state::IsUnset,
{
pub fn authors(
mut self,
value: impl Into<Vec<Author<S>>>,
) -> ChapterBuilder<S, chapter_state::SetAuthors<St>> {
self._fields.0 = Option::Some(value.into());
ChapterBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: chapter_state::State> ChapterBuilder<S, St> {
pub fn content_warnings(mut self, value: impl Into<Option<ContentWarnings<S>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_content_warnings(mut self, value: Option<ContentWarnings<S>>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St: chapter_state::State> ChapterBuilder<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> ChapterBuilder<S, St>
where
St: chapter_state::State,
St::EntryList: chapter_state::IsUnset,
{
pub fn entry_list(
mut self,
value: impl Into<Vec<StrongRef<S>>>,
) -> ChapterBuilder<S, chapter_state::SetEntryList<St>> {
self._fields.3 = Option::Some(value.into());
ChapterBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ChapterBuilder<S, St>
where
St: chapter_state::State,
St::Notebook: chapter_state::IsUnset,
{
pub fn notebook(
mut self,
value: impl Into<StrongRef<S>>,
) -> ChapterBuilder<S, chapter_state::SetNotebook<St>> {
self._fields.4 = Option::Some(value.into());
ChapterBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: chapter_state::State> ChapterBuilder<S, St> {
pub fn rating(mut self, value: impl Into<Option<ContentRating<S>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_rating(mut self, value: Option<ContentRating<S>>) -> Self {
self._fields.5 = value;
self
}
}
impl<S: BosStr, St: chapter_state::State> ChapterBuilder<S, St> {
pub fn tags(mut self, value: impl Into<Option<Tags<S>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_tags(mut self, value: Option<Tags<S>>) -> Self {
self._fields.6 = value;
self
}
}
impl<S: BosStr, St: chapter_state::State> ChapterBuilder<S, St> {
pub fn title(mut self, value: impl Into<Option<Title<S>>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_title(mut self, value: Option<Title<S>>) -> Self {
self._fields.7 = value;
self
}
}
impl<S: BosStr, St> ChapterBuilder<S, St>
where
St: chapter_state::State,
St::Authors: chapter_state::IsSet,
St::EntryList: chapter_state::IsSet,
St::Notebook: chapter_state::IsSet,
{
pub fn build(self) -> Chapter<S> {
Chapter {
authors: self._fields.0.unwrap(),
content_warnings: self._fields.1,
created_at: self._fields.2,
entry_list: self._fields.3.unwrap(),
notebook: self._fields.4.unwrap(),
rating: self._fields.5,
tags: self._fields.6,
title: self._fields.7,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Chapter<S> {
Chapter {
authors: self._fields.0.unwrap(),
content_warnings: self._fields.1,
created_at: self._fields.2,
entry_list: self._fields.3.unwrap(),
notebook: self._fields.4.unwrap(),
rating: self._fields.5,
tags: self._fields.6,
title: self._fields.7,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_sh_weaver_notebook_chapter() -> 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("sh.weaver.notebook.chapter"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static("A grouping of entries in a notebook."),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("notebook"),
SmolStr::new_static("authors"),
SmolStr::new_static("entryList")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("authors"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("sh.weaver.actor.defs#author"),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("contentWarnings"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static(
"sh.weaver.notebook.defs#contentWarnings",
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Client-declared timestamp when this was originally created.",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("entryList"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("notebook"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("rating"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static(
"sh.weaver.notebook.defs#contentRating",
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("tags"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("sh.weaver.notebook.defs#tags"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("title"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("sh.weaver.notebook.defs#title"),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}