#[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, UriValue};
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::blue_rito::feed::bookmark;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Locale<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub comment: Option<S>,
pub lang: S,
pub 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",
rename = "blue.rito.feed.bookmark",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Bookmark<S: BosStr = DefaultStr> {
pub comments: Vec<bookmark::Locale<S>>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub ogp_description: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub ogp_image: Option<UriValue<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub ogp_title: Option<S>,
pub subject: UriValue<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub tags: Option<Vec<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 BookmarkGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Bookmark<S>,
}
impl<S: BosStr> Bookmark<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, BookmarkRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
impl<S: BosStr> LexiconSchema for Locale<S> {
fn nsid() -> &'static str {
"blue.rito.feed.bookmark"
}
fn def_name() -> &'static str {
"locale"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_blue_rito_feed_bookmark()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.comment {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 100000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("comment"),
max: 100000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.comment {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 10000usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("comment"),
max: 10000usize,
actual: count,
});
}
}
}
{
let value = &self.lang;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 6usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("lang"),
max: 6usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.title;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 500usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("title"),
max: 500usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.title;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 50usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("title"),
max: 50usize,
actual: count,
});
}
}
}
Ok(())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct BookmarkRecord;
impl XrpcResp for BookmarkRecord {
const NSID: &'static str = "blue.rito.feed.bookmark";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = BookmarkGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<BookmarkGetRecordOutput<S>> for Bookmark<S> {
fn from(output: BookmarkGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Bookmark<S> {
const NSID: &'static str = "blue.rito.feed.bookmark";
type Record = BookmarkRecord;
}
impl Collection for BookmarkRecord {
const NSID: &'static str = "blue.rito.feed.bookmark";
type Record = BookmarkRecord;
}
impl<S: BosStr> LexiconSchema for Bookmark<S> {
fn nsid() -> &'static str {
"blue.rito.feed.bookmark"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_blue_rito_feed_bookmark()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.comments;
#[allow(unused_comparisons)]
if value.len() < 1usize {
return Err(ConstraintError::MinLength {
path: ValidationPath::from_field("comments"),
min: 1usize,
actual: value.len(),
});
}
}
if let Some(ref value) = self.tags {
#[allow(unused_comparisons)]
if value.len() > 10usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("tags"),
max: 10usize,
actual: value.len(),
});
}
}
Ok(())
}
}
fn lexicon_doc_blue_rito_feed_bookmark() -> 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("blue.rito.feed.bookmark"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("locale"),
LexUserType::Object(LexObject {
required: Some(vec![
SmolStr::new_static("lang"),
SmolStr::new_static("title"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("comment"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"URI's comment. It can use GitHub Flavored Markdown.",
)),
max_length: Some(100000usize),
max_graphemes: Some(10000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("lang"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("Comments Language")),
max_length: Some(6usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("title"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("URI's title")),
max_length: Some(500usize),
max_graphemes: Some(50usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static("Records a bookmark.")),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("comments"),
SmolStr::new_static("subject"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("comments"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"Title and comment in different languages.",
),
),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("blue.rito.feed.bookmark#locale"),
..Default::default()
}),
min_length: Some(1usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("ogpDescription"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("OGP Description")),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("ogpImage"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("OGP Image Uri")),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("ogpTitle"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("OGP Title")),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("subject"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("tags"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"Tags describing the uri's description (max 10 tags, 25 charactors)",
),
),
items: LexArrayItem::String(LexString {
min_length: Some(1usize),
max_length: Some(250usize),
min_graphemes: Some(1usize),
max_graphemes: Some(25usize),
..Default::default()
}),
max_length: Some(10usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod bookmark_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 Comments;
type Subject;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Comments = Unset;
type Subject = Unset;
type CreatedAt = Unset;
}
pub struct SetComments<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetComments<St> {}
impl<St: State> State for SetComments<St> {
type Comments = Set<members::comments>;
type Subject = St::Subject;
type CreatedAt = St::CreatedAt;
}
pub struct SetSubject<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetSubject<St> {}
impl<St: State> State for SetSubject<St> {
type Comments = St::Comments;
type Subject = Set<members::subject>;
type CreatedAt = St::CreatedAt;
}
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 Comments = St::Comments;
type Subject = St::Subject;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct comments(());
pub struct subject(());
pub struct created_at(());
}
}
pub struct BookmarkBuilder<S: BosStr, St: bookmark_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Vec<bookmark::Locale<S>>>,
Option<Datetime>,
Option<S>,
Option<UriValue<S>>,
Option<S>,
Option<UriValue<S>>,
Option<Vec<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Bookmark<S> {
pub fn new() -> BookmarkBuilder<S, bookmark_state::Empty> {
BookmarkBuilder::new()
}
}
impl<S: BosStr> BookmarkBuilder<S, bookmark_state::Empty> {
pub fn new() -> Self {
BookmarkBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> BookmarkBuilder<S, St>
where
St: bookmark_state::State,
St::Comments: bookmark_state::IsUnset,
{
pub fn comments(
mut self,
value: impl Into<Vec<bookmark::Locale<S>>>,
) -> BookmarkBuilder<S, bookmark_state::SetComments<St>> {
self._fields.0 = Option::Some(value.into());
BookmarkBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> BookmarkBuilder<S, St>
where
St: bookmark_state::State,
St::CreatedAt: bookmark_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> BookmarkBuilder<S, bookmark_state::SetCreatedAt<St>> {
self._fields.1 = Option::Some(value.into());
BookmarkBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: bookmark_state::State> BookmarkBuilder<S, St> {
pub fn ogp_description(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_ogp_description(mut self, value: Option<S>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St: bookmark_state::State> BookmarkBuilder<S, St> {
pub fn ogp_image(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_ogp_image(mut self, value: Option<UriValue<S>>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St: bookmark_state::State> BookmarkBuilder<S, St> {
pub fn ogp_title(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_ogp_title(mut self, value: Option<S>) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St> BookmarkBuilder<S, St>
where
St: bookmark_state::State,
St::Subject: bookmark_state::IsUnset,
{
pub fn subject(
mut self,
value: impl Into<UriValue<S>>,
) -> BookmarkBuilder<S, bookmark_state::SetSubject<St>> {
self._fields.5 = Option::Some(value.into());
BookmarkBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: bookmark_state::State> BookmarkBuilder<S, St> {
pub fn tags(mut self, value: impl Into<Option<Vec<S>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_tags(mut self, value: Option<Vec<S>>) -> Self {
self._fields.6 = value;
self
}
}
impl<S: BosStr, St> BookmarkBuilder<S, St>
where
St: bookmark_state::State,
St::Comments: bookmark_state::IsSet,
St::Subject: bookmark_state::IsSet,
St::CreatedAt: bookmark_state::IsSet,
{
pub fn build(self) -> Bookmark<S> {
Bookmark {
comments: self._fields.0.unwrap(),
created_at: self._fields.1.unwrap(),
ogp_description: self._fields.2,
ogp_image: self._fields.3,
ogp_title: self._fields.4,
subject: self._fields.5.unwrap(),
tags: self._fields.6,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Bookmark<S> {
Bookmark {
comments: self._fields.0.unwrap(),
created_at: self._fields.1.unwrap(),
ogp_description: self._fields.2,
ogp_image: self._fields.3,
ogp_title: self._fields.4,
subject: self._fields.5.unwrap(),
tags: self._fields.6,
extra_data: Some(extra_data),
}
}
}