#[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, Datetime};
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::sh_weaver::actor::Author;
use crate::sh_weaver::notebook::ContentRating;
use crate::sh_weaver::notebook::ContentWarnings;
use crate::sh_weaver::notebook::Path;
use crate::sh_weaver::notebook::Tags;
use crate::sh_weaver::notebook::Title;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", rename = "sh.weaver.notebook.entry", tag = "$type")]
pub struct Entry<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub authors: Option<Vec<Author<'a>>>,
#[serde(borrow)]
pub content: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub content_warnings: Option<ContentWarnings<'a>>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub embeds: Option<EntryEmbeds<'a>>,
#[serde(borrow)]
pub path: Path<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub rating: Option<ContentRating<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub tags: Option<Tags<'a>>,
#[serde(borrow)]
pub title: Title<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
pub updated_at: Option<Datetime>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct EntryEmbeds<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub externals: Option<crate::sh_weaver::embed::external::External<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub images: Option<crate::sh_weaver::embed::images::Images<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub records: Option<crate::sh_weaver::embed::records::Records<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub records_with_media: Option<
Vec<crate::sh_weaver::embed::record_with_media::RecordWithMedia<'a>>,
>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub videos: Option<crate::sh_weaver::embed::video::VideoRecord<'a>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct EntryGetRecordOutput<'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: Entry<'a>,
}
impl<'a> Entry<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, EntryRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct EntryRecord;
impl XrpcResp for EntryRecord {
const NSID: &'static str = "sh.weaver.notebook.entry";
const ENCODING: &'static str = "application/json";
type Output<'de> = EntryGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<EntryGetRecordOutput<'_>> for Entry<'_> {
fn from(output: EntryGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Entry<'_> {
const NSID: &'static str = "sh.weaver.notebook.entry";
type Record = EntryRecord;
}
impl Collection for EntryRecord {
const NSID: &'static str = "sh.weaver.notebook.entry";
type Record = EntryRecord;
}
impl<'a> LexiconSchema for Entry<'a> {
fn nsid() -> &'static str {
"sh.weaver.notebook.entry"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_sh_weaver_notebook_entry()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<'a> LexiconSchema for EntryEmbeds<'a> {
fn nsid() -> &'static str {
"sh.weaver.notebook.entry"
}
fn def_name() -> &'static str {
"EntryEmbeds"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_sh_weaver_notebook_entry()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
fn lexicon_doc_sh_weaver_notebook_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("sh.weaver.notebook.entry"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static("A notebook entry")),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("content"),
SmolStr::new_static("title"), SmolStr::new_static("path"),
SmolStr::new_static("createdAt")
],
),
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("content"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The content of the notebook entry. This should be some flavor of Markdown.",
),
),
..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("embeds"),
LexObjectProperty::Object(LexObject {
description: Some(
CowStr::new_static(
"The set of images and records, if any, embedded in the notebook entry.",
),
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("externals"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("sh.weaver.embed.external"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("images"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("sh.weaver.embed.images"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("records"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("sh.weaver.embed.records"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("recordsWithMedia"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static(
"sh.weaver.embed.recordWithMedia",
),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("videos"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("sh.weaver.embed.video"),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("path"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("sh.weaver.notebook.defs#path"),
..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.insert(
SmolStr::new_static("updatedAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Client-declared timestamp of last modification. Used for canonicality tiebreaking in multi-author scenarios.",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}
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 Title;
type CreatedAt;
type Content;
type Path;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Title = Unset;
type CreatedAt = Unset;
type Content = Unset;
type Path = Unset;
}
pub struct SetTitle<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetTitle<S> {}
impl<S: State> State for SetTitle<S> {
type Title = Set<members::title>;
type CreatedAt = S::CreatedAt;
type Content = S::Content;
type Path = S::Path;
}
pub struct SetCreatedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCreatedAt<S> {}
impl<S: State> State for SetCreatedAt<S> {
type Title = S::Title;
type CreatedAt = Set<members::created_at>;
type Content = S::Content;
type Path = S::Path;
}
pub struct SetContent<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetContent<S> {}
impl<S: State> State for SetContent<S> {
type Title = S::Title;
type CreatedAt = S::CreatedAt;
type Content = Set<members::content>;
type Path = S::Path;
}
pub struct SetPath<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetPath<S> {}
impl<S: State> State for SetPath<S> {
type Title = S::Title;
type CreatedAt = S::CreatedAt;
type Content = S::Content;
type Path = Set<members::path>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct title(());
pub struct created_at(());
pub struct content(());
pub struct path(());
}
}
pub struct EntryBuilder<'a, S: entry_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Vec<Author<'a>>>,
Option<CowStr<'a>>,
Option<ContentWarnings<'a>>,
Option<Datetime>,
Option<EntryEmbeds<'a>>,
Option<Path<'a>>,
Option<ContentRating<'a>>,
Option<Tags<'a>>,
Option<Title<'a>>,
Option<Datetime>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Entry<'a> {
pub fn new() -> EntryBuilder<'a, entry_state::Empty> {
EntryBuilder::new()
}
}
impl<'a> EntryBuilder<'a, entry_state::Empty> {
pub fn new() -> Self {
EntryBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: entry_state::State> EntryBuilder<'a, S> {
pub fn authors(mut self, value: impl Into<Option<Vec<Author<'a>>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_authors(mut self, value: Option<Vec<Author<'a>>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S> EntryBuilder<'a, S>
where
S: entry_state::State,
S::Content: entry_state::IsUnset,
{
pub fn content(
mut self,
value: impl Into<CowStr<'a>>,
) -> EntryBuilder<'a, entry_state::SetContent<S>> {
self._fields.1 = Option::Some(value.into());
EntryBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: entry_state::State> EntryBuilder<'a, S> {
pub fn content_warnings(
mut self,
value: impl Into<Option<ContentWarnings<'a>>>,
) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_content_warnings(mut self, value: Option<ContentWarnings<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> EntryBuilder<'a, S>
where
S: entry_state::State,
S::CreatedAt: entry_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> EntryBuilder<'a, entry_state::SetCreatedAt<S>> {
self._fields.3 = Option::Some(value.into());
EntryBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: entry_state::State> EntryBuilder<'a, S> {
pub fn embeds(mut self, value: impl Into<Option<EntryEmbeds<'a>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_embeds(mut self, value: Option<EntryEmbeds<'a>>) -> Self {
self._fields.4 = value;
self
}
}
impl<'a, S> EntryBuilder<'a, S>
where
S: entry_state::State,
S::Path: entry_state::IsUnset,
{
pub fn path(
mut self,
value: impl Into<Path<'a>>,
) -> EntryBuilder<'a, entry_state::SetPath<S>> {
self._fields.5 = Option::Some(value.into());
EntryBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: entry_state::State> EntryBuilder<'a, S> {
pub fn rating(mut self, value: impl Into<Option<ContentRating<'a>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_rating(mut self, value: Option<ContentRating<'a>>) -> Self {
self._fields.6 = value;
self
}
}
impl<'a, S: entry_state::State> EntryBuilder<'a, S> {
pub fn tags(mut self, value: impl Into<Option<Tags<'a>>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_tags(mut self, value: Option<Tags<'a>>) -> Self {
self._fields.7 = value;
self
}
}
impl<'a, S> EntryBuilder<'a, S>
where
S: entry_state::State,
S::Title: entry_state::IsUnset,
{
pub fn title(
mut self,
value: impl Into<Title<'a>>,
) -> EntryBuilder<'a, entry_state::SetTitle<S>> {
self._fields.8 = Option::Some(value.into());
EntryBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: entry_state::State> EntryBuilder<'a, S> {
pub fn updated_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.9 = value.into();
self
}
pub fn maybe_updated_at(mut self, value: Option<Datetime>) -> Self {
self._fields.9 = value;
self
}
}
impl<'a, S> EntryBuilder<'a, S>
where
S: entry_state::State,
S::Title: entry_state::IsSet,
S::CreatedAt: entry_state::IsSet,
S::Content: entry_state::IsSet,
S::Path: entry_state::IsSet,
{
pub fn build(self) -> Entry<'a> {
Entry {
authors: self._fields.0,
content: self._fields.1.unwrap(),
content_warnings: self._fields.2,
created_at: self._fields.3.unwrap(),
embeds: self._fields.4,
path: self._fields.5.unwrap(),
rating: self._fields.6,
tags: self._fields.7,
title: self._fields.8.unwrap(),
updated_at: self._fields.9,
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>,
>,
) -> Entry<'a> {
Entry {
authors: self._fields.0,
content: self._fields.1.unwrap(),
content_warnings: self._fields.2,
created_at: self._fields.3.unwrap(),
embeds: self._fields.4,
path: self._fields.5.unwrap(),
rating: self._fields.6,
tags: self._fields.7,
title: self._fields.8.unwrap(),
updated_at: self._fields.9,
extra_data: Some(extra_data),
}
}
}