#[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::blob::BlobRef;
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::buzz_bookhive::BookProgress;
#[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 = "buzz.bookhive.book",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Book<S: BosStr = DefaultStr> {
pub authors: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub book_progress: Option<BookProgress<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub cover: Option<BlobRef<S>>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub finished_at: Option<Datetime>,
pub hive_id: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub review: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub stars: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub started_at: Option<Datetime>,
#[serde(skip_serializing_if = "Option::is_none")]
pub status: Option<BookStatus<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 BookStatus<S: BosStr = DefaultStr> {
Finished,
Reading,
WantToRead,
Abandoned,
Owned,
Other(S),
}
impl<S: BosStr> BookStatus<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Finished => "buzz.bookhive.defs#finished",
Self::Reading => "buzz.bookhive.defs#reading",
Self::WantToRead => "buzz.bookhive.defs#wantToRead",
Self::Abandoned => "buzz.bookhive.defs#abandoned",
Self::Owned => "buzz.bookhive.defs#owned",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"buzz.bookhive.defs#finished" => Self::Finished,
"buzz.bookhive.defs#reading" => Self::Reading,
"buzz.bookhive.defs#wantToRead" => Self::WantToRead,
"buzz.bookhive.defs#abandoned" => Self::Abandoned,
"buzz.bookhive.defs#owned" => Self::Owned,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for BookStatus<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for BookStatus<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for BookStatus<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 BookStatus<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 BookStatus<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for BookStatus<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = BookStatus<S::Output>;
fn into_static(self) -> Self::Output {
match self {
BookStatus::Finished => BookStatus::Finished,
BookStatus::Reading => BookStatus::Reading,
BookStatus::WantToRead => BookStatus::WantToRead,
BookStatus::Abandoned => BookStatus::Abandoned,
BookStatus::Owned => BookStatus::Owned,
BookStatus::Other(v) => BookStatus::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct BookGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Book<S>,
}
impl<S: BosStr> Book<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, BookRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct BookRecord;
impl XrpcResp for BookRecord {
const NSID: &'static str = "buzz.bookhive.book";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = BookGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<BookGetRecordOutput<S>> for Book<S> {
fn from(output: BookGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Book<S> {
const NSID: &'static str = "buzz.bookhive.book";
type Record = BookRecord;
}
impl Collection for BookRecord {
const NSID: &'static str = "buzz.bookhive.book";
type Record = BookRecord;
}
impl<S: BosStr> LexiconSchema for Book<S> {
fn nsid() -> &'static str {
"buzz.bookhive.book"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_buzz_bookhive_book()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.authors;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 2048usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("authors"),
max: 2048usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.authors;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) < 1usize {
return Err(ConstraintError::MinLength {
path: ValidationPath::from_field("authors"),
min: 1usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.cover {
{
let size = value.blob().size;
if size > 1000000usize {
return Err(ConstraintError::BlobTooLarge {
path: ValidationPath::from_field("cover"),
max: 1000000usize,
actual: size,
});
}
}
}
if let Some(ref value) = self.cover {
{
let mime = value.blob().mime_type.as_str();
let accepted: &[&str] = &["image/png", "image/jpeg"];
let matched = accepted.iter().any(|pattern| {
if *pattern == "*/*" {
true
} else if pattern.ends_with("/*") {
let prefix = &pattern[..pattern.len() - 2];
mime.starts_with(prefix) && mime.as_bytes().get(prefix.len()) == Some(&b'/')
} else {
mime == *pattern
}
});
if !matched {
return Err(ConstraintError::BlobMimeTypeNotAccepted {
path: ValidationPath::from_field("cover"),
accepted: vec!["image/png".to_string(), "image/jpeg".to_string()],
actual: mime.to_string(),
});
}
}
}
if let Some(ref value) = self.review {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 15000usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("review"),
max: 15000usize,
actual: count,
});
}
}
}
if let Some(ref value) = self.stars {
if *value > 10i64 {
return Err(ConstraintError::Maximum {
path: ValidationPath::from_field("stars"),
max: 10i64,
actual: *value,
});
}
}
if let Some(ref value) = self.stars {
if *value < 1i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("stars"),
min: 1i64,
actual: *value,
});
}
}
{
let value = &self.title;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 512usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("title"),
max: 512usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.title;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) < 1usize {
return Err(ConstraintError::MinLength {
path: ValidationPath::from_field("title"),
min: 1usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
pub mod book_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 CreatedAt;
type Title;
type HiveId;
type Authors;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type Title = Unset;
type HiveId = Unset;
type Authors = Unset;
}
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 CreatedAt = Set<members::created_at>;
type Title = St::Title;
type HiveId = St::HiveId;
type Authors = St::Authors;
}
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 CreatedAt = St::CreatedAt;
type Title = Set<members::title>;
type HiveId = St::HiveId;
type Authors = St::Authors;
}
pub struct SetHiveId<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetHiveId<St> {}
impl<St: State> State for SetHiveId<St> {
type CreatedAt = St::CreatedAt;
type Title = St::Title;
type HiveId = Set<members::hive_id>;
type Authors = St::Authors;
}
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 CreatedAt = St::CreatedAt;
type Title = St::Title;
type HiveId = St::HiveId;
type Authors = Set<members::authors>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct title(());
pub struct hive_id(());
pub struct authors(());
}
}
pub struct BookBuilder<S: BosStr, St: book_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<S>,
Option<BookProgress<S>>,
Option<BlobRef<S>>,
Option<Datetime>,
Option<Datetime>,
Option<S>,
Option<S>,
Option<i64>,
Option<Datetime>,
Option<BookStatus<S>>,
Option<S>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Book<S> {
pub fn new() -> BookBuilder<S, book_state::Empty> {
BookBuilder::new()
}
}
impl<S: BosStr> BookBuilder<S, book_state::Empty> {
pub fn new() -> Self {
BookBuilder {
_state: PhantomData,
_fields: (
None, None, None, None, None, None, None, None, None, None, None,
),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> BookBuilder<S, St>
where
St: book_state::State,
St::Authors: book_state::IsUnset,
{
pub fn authors(mut self, value: impl Into<S>) -> BookBuilder<S, book_state::SetAuthors<St>> {
self._fields.0 = Option::Some(value.into());
BookBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: book_state::State> BookBuilder<S, St> {
pub fn book_progress(mut self, value: impl Into<Option<BookProgress<S>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_book_progress(mut self, value: Option<BookProgress<S>>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St: book_state::State> BookBuilder<S, St> {
pub fn cover(mut self, value: impl Into<Option<BlobRef<S>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_cover(mut self, value: Option<BlobRef<S>>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St> BookBuilder<S, St>
where
St: book_state::State,
St::CreatedAt: book_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> BookBuilder<S, book_state::SetCreatedAt<St>> {
self._fields.3 = Option::Some(value.into());
BookBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: book_state::State> BookBuilder<S, St> {
pub fn finished_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_finished_at(mut self, value: Option<Datetime>) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St> BookBuilder<S, St>
where
St: book_state::State,
St::HiveId: book_state::IsUnset,
{
pub fn hive_id(mut self, value: impl Into<S>) -> BookBuilder<S, book_state::SetHiveId<St>> {
self._fields.5 = Option::Some(value.into());
BookBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: book_state::State> BookBuilder<S, St> {
pub fn review(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_review(mut self, value: Option<S>) -> Self {
self._fields.6 = value;
self
}
}
impl<S: BosStr, St: book_state::State> BookBuilder<S, St> {
pub fn stars(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_stars(mut self, value: Option<i64>) -> Self {
self._fields.7 = value;
self
}
}
impl<S: BosStr, St: book_state::State> BookBuilder<S, St> {
pub fn started_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_started_at(mut self, value: Option<Datetime>) -> Self {
self._fields.8 = value;
self
}
}
impl<S: BosStr, St: book_state::State> BookBuilder<S, St> {
pub fn status(mut self, value: impl Into<Option<BookStatus<S>>>) -> Self {
self._fields.9 = value.into();
self
}
pub fn maybe_status(mut self, value: Option<BookStatus<S>>) -> Self {
self._fields.9 = value;
self
}
}
impl<S: BosStr, St> BookBuilder<S, St>
where
St: book_state::State,
St::Title: book_state::IsUnset,
{
pub fn title(mut self, value: impl Into<S>) -> BookBuilder<S, book_state::SetTitle<St>> {
self._fields.10 = Option::Some(value.into());
BookBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> BookBuilder<S, St>
where
St: book_state::State,
St::CreatedAt: book_state::IsSet,
St::Title: book_state::IsSet,
St::HiveId: book_state::IsSet,
St::Authors: book_state::IsSet,
{
pub fn build(self) -> Book<S> {
Book {
authors: self._fields.0.unwrap(),
book_progress: self._fields.1,
cover: self._fields.2,
created_at: self._fields.3.unwrap(),
finished_at: self._fields.4,
hive_id: self._fields.5.unwrap(),
review: self._fields.6,
stars: self._fields.7,
started_at: self._fields.8,
status: self._fields.9,
title: self._fields.10.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Book<S> {
Book {
authors: self._fields.0.unwrap(),
book_progress: self._fields.1,
cover: self._fields.2,
created_at: self._fields.3.unwrap(),
finished_at: self._fields.4,
hive_id: self._fields.5.unwrap(),
review: self._fields.6,
stars: self._fields.7,
started_at: self._fields.8,
status: self._fields.9,
title: self._fields.10.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_buzz_bookhive_book() -> 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("buzz.bookhive.book"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static("A book in the user's library"),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("title"),
SmolStr::new_static("authors"),
SmolStr::new_static("hiveId"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("authors"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The authors of the book (tab separated)",
),
),
min_length: Some(1usize),
max_length: Some(2048usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("bookProgress"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static(
"buzz.bookhive.defs#bookProgress",
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("cover"),
LexObjectProperty::Blob(LexBlob { ..Default::default() }),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("finishedAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The date the user finished reading the book",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("hiveId"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The book's hive id, used to correlate user's books with the hive",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("review"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("The book's review")),
max_graphemes: Some(15000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("stars"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(1i64),
maximum: Some(10i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("startedAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The date the user started reading the book",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("status"),
LexObjectProperty::String(LexString {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("title"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The title of the book"),
),
min_length: Some(1usize),
max_length: Some(512usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}