#[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;
#[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 = "io.kich.recipe.review",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Review<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub comment: Option<S>,
pub created_at: Datetime,
pub rating: i64,
pub subject: StrongRef<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub updated_at: Option<Datetime>,
#[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 ReviewGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Review<S>,
}
impl<S: BosStr> Review<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, ReviewRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ReviewRecord;
impl XrpcResp for ReviewRecord {
const NSID: &'static str = "io.kich.recipe.review";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ReviewGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<ReviewGetRecordOutput<S>> for Review<S> {
fn from(output: ReviewGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Review<S> {
const NSID: &'static str = "io.kich.recipe.review";
type Record = ReviewRecord;
}
impl Collection for ReviewRecord {
const NSID: &'static str = "io.kich.recipe.review";
type Record = ReviewRecord;
}
impl<S: BosStr> LexiconSchema for Review<S> {
fn nsid() -> &'static str {
"io.kich.recipe.review"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_io_kich_recipe_review()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.comment {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 10000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("comment"),
max: 10000usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.rating;
if *value > 5i64 {
return Err(ConstraintError::Maximum {
path: ValidationPath::from_field("rating"),
max: 5i64,
actual: *value,
});
}
}
{
let value = &self.rating;
if *value < 1i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("rating"),
min: 1i64,
actual: *value,
});
}
}
Ok(())
}
}
pub mod review_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 Subject;
type Rating;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Subject = Unset;
type Rating = Unset;
type CreatedAt = Unset;
}
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 Subject = Set<members::subject>;
type Rating = St::Rating;
type CreatedAt = St::CreatedAt;
}
pub struct SetRating<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRating<St> {}
impl<St: State> State for SetRating<St> {
type Subject = St::Subject;
type Rating = Set<members::rating>;
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 Subject = St::Subject;
type Rating = St::Rating;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct subject(());
pub struct rating(());
pub struct created_at(());
}
}
pub struct ReviewBuilder<S: BosStr, St: review_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<S>,
Option<Datetime>,
Option<i64>,
Option<StrongRef<S>>,
Option<Datetime>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Review<S> {
pub fn new() -> ReviewBuilder<S, review_state::Empty> {
ReviewBuilder::new()
}
}
impl<S: BosStr> ReviewBuilder<S, review_state::Empty> {
pub fn new() -> Self {
ReviewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: review_state::State> ReviewBuilder<S, St> {
pub fn comment(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_comment(mut self, value: Option<S>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St> ReviewBuilder<S, St>
where
St: review_state::State,
St::CreatedAt: review_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ReviewBuilder<S, review_state::SetCreatedAt<St>> {
self._fields.1 = Option::Some(value.into());
ReviewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ReviewBuilder<S, St>
where
St: review_state::State,
St::Rating: review_state::IsUnset,
{
pub fn rating(
mut self,
value: impl Into<i64>,
) -> ReviewBuilder<S, review_state::SetRating<St>> {
self._fields.2 = Option::Some(value.into());
ReviewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ReviewBuilder<S, St>
where
St: review_state::State,
St::Subject: review_state::IsUnset,
{
pub fn subject(
mut self,
value: impl Into<StrongRef<S>>,
) -> ReviewBuilder<S, review_state::SetSubject<St>> {
self._fields.3 = Option::Some(value.into());
ReviewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: review_state::State> ReviewBuilder<S, St> {
pub fn updated_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_updated_at(mut self, value: Option<Datetime>) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St> ReviewBuilder<S, St>
where
St: review_state::State,
St::Subject: review_state::IsSet,
St::Rating: review_state::IsSet,
St::CreatedAt: review_state::IsSet,
{
pub fn build(self) -> Review<S> {
Review {
comment: self._fields.0,
created_at: self._fields.1.unwrap(),
rating: self._fields.2.unwrap(),
subject: self._fields.3.unwrap(),
updated_at: self._fields.4,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Review<S> {
Review {
comment: self._fields.0,
created_at: self._fields.1.unwrap(),
rating: self._fields.2.unwrap(),
subject: self._fields.3.unwrap(),
updated_at: self._fields.4,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_io_kich_recipe_review() -> 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("io.kich.recipe.review"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"Record key is the recipe's rkey for one-review-per-user-per-recipe; pass recipeId as rkey",
),
),
key: Some(CowStr::new_static("any")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("subject"),
SmolStr::new_static("rating"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("comment"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Optional review comment in GitHub-flavored markdown",
),
),
max_length: Some(10000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("When this review was created"),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("rating"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(1i64),
maximum: Some(5i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("subject"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("updatedAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("When this review was last updated"),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}