#[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::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::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::buzz_bookhive::BookProgress;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Book<'a> {
#[serde(borrow)]
pub authors: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub book_progress: Option<BookProgress<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cover: Option<BlobRef<'a>>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub finished_at: Option<Datetime>,
#[serde(borrow)]
pub hive_id: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub review: Option<CowStr<'a>>,
#[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")]
#[serde(borrow)]
pub status: Option<BookStatus<'a>>,
#[serde(borrow)]
pub title: CowStr<'a>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum BookStatus<'a> {
Finished,
Reading,
WantToRead,
Abandoned,
Owned,
Other(CowStr<'a>),
}
impl<'a> BookStatus<'a> {
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(),
}
}
}
impl<'a> From<&'a str> for BookStatus<'a> {
fn from(s: &'a str) -> Self {
match s {
"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(CowStr::from(s)),
}
}
}
impl<'a> From<String> for BookStatus<'a> {
fn from(s: String) -> Self {
match s.as_str() {
"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(CowStr::from(s)),
}
}
}
impl<'a> core::fmt::Display for BookStatus<'a> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<'a> AsRef<str> for BookStatus<'a> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<'a> serde::Serialize for BookStatus<'a> {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, 'a> serde::Deserialize<'de> for BookStatus<'a>
where
'de: 'a,
{
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = <&'de str>::deserialize(deserializer)?;
Ok(Self::from(s))
}
}
impl<'a> Default for BookStatus<'a> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl jacquard_common::IntoStatic for BookStatus<'_> {
type Output = BookStatus<'static>;
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<'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: Book<'a>,
}
impl<'a> Book<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, BookRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[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<'de> = BookGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<BookGetRecordOutput<'_>> for Book<'_> {
fn from(output: BookGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Book<'_> {
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<'a> LexiconSchema for Book<'a> {
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::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Title;
type Authors;
type HiveId;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Title = Unset;
type Authors = Unset;
type HiveId = Unset;
type CreatedAt = 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 Authors = S::Authors;
type HiveId = S::HiveId;
type CreatedAt = S::CreatedAt;
}
pub struct SetAuthors<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetAuthors<S> {}
impl<S: State> State for SetAuthors<S> {
type Title = S::Title;
type Authors = Set<members::authors>;
type HiveId = S::HiveId;
type CreatedAt = S::CreatedAt;
}
pub struct SetHiveId<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetHiveId<S> {}
impl<S: State> State for SetHiveId<S> {
type Title = S::Title;
type Authors = S::Authors;
type HiveId = Set<members::hive_id>;
type CreatedAt = S::CreatedAt;
}
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 Authors = S::Authors;
type HiveId = S::HiveId;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct title(());
pub struct authors(());
pub struct hive_id(());
pub struct created_at(());
}
}
pub struct BookBuilder<'a, S: book_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<CowStr<'a>>,
Option<BookProgress<'a>>,
Option<BlobRef<'a>>,
Option<Datetime>,
Option<Datetime>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<i64>,
Option<Datetime>,
Option<BookStatus<'a>>,
Option<CowStr<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Book<'a> {
pub fn new() -> BookBuilder<'a, book_state::Empty> {
BookBuilder::new()
}
}
impl<'a> BookBuilder<'a, book_state::Empty> {
pub fn new() -> Self {
BookBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> BookBuilder<'a, S>
where
S: book_state::State,
S::Authors: book_state::IsUnset,
{
pub fn authors(
mut self,
value: impl Into<CowStr<'a>>,
) -> BookBuilder<'a, book_state::SetAuthors<S>> {
self._fields.0 = Option::Some(value.into());
BookBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: book_state::State> BookBuilder<'a, S> {
pub fn book_progress(mut self, value: impl Into<Option<BookProgress<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_book_progress(mut self, value: Option<BookProgress<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: book_state::State> BookBuilder<'a, S> {
pub fn cover(mut self, value: impl Into<Option<BlobRef<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_cover(mut self, value: Option<BlobRef<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> BookBuilder<'a, S>
where
S: book_state::State,
S::CreatedAt: book_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> BookBuilder<'a, book_state::SetCreatedAt<S>> {
self._fields.3 = Option::Some(value.into());
BookBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: book_state::State> BookBuilder<'a, S> {
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<'a, S> BookBuilder<'a, S>
where
S: book_state::State,
S::HiveId: book_state::IsUnset,
{
pub fn hive_id(
mut self,
value: impl Into<CowStr<'a>>,
) -> BookBuilder<'a, book_state::SetHiveId<S>> {
self._fields.5 = Option::Some(value.into());
BookBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: book_state::State> BookBuilder<'a, S> {
pub fn review(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_review(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.6 = value;
self
}
}
impl<'a, S: book_state::State> BookBuilder<'a, S> {
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<'a, S: book_state::State> BookBuilder<'a, S> {
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<'a, S: book_state::State> BookBuilder<'a, S> {
pub fn status(mut self, value: impl Into<Option<BookStatus<'a>>>) -> Self {
self._fields.9 = value.into();
self
}
pub fn maybe_status(mut self, value: Option<BookStatus<'a>>) -> Self {
self._fields.9 = value;
self
}
}
impl<'a, S> BookBuilder<'a, S>
where
S: book_state::State,
S::Title: book_state::IsUnset,
{
pub fn title(
mut self,
value: impl Into<CowStr<'a>>,
) -> BookBuilder<'a, book_state::SetTitle<S>> {
self._fields.10 = Option::Some(value.into());
BookBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> BookBuilder<'a, S>
where
S: book_state::State,
S::Title: book_state::IsSet,
S::Authors: book_state::IsSet,
S::HiveId: book_state::IsSet,
S::CreatedAt: book_state::IsSet,
{
pub fn build(self) -> Book<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Book<'a> {
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> {
#[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("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()
}
}