#[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};
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Recipe<'a> {
#[serde(borrow)]
pub content: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
pub cook_time: Option<i64>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub description: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub image: Option<BlobRef<'a>>,
#[serde(borrow)]
pub name: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
pub portions: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub prep_time: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub time: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub updated_at: Option<Datetime>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct RecipeGetRecordOutput<'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: Recipe<'a>,
}
impl<'a> Recipe<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, RecipeRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct RecipeRecord;
impl XrpcResp for RecipeRecord {
const NSID: &'static str = "eu.atchef.recipe";
const ENCODING: &'static str = "application/json";
type Output<'de> = RecipeGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<RecipeGetRecordOutput<'_>> for Recipe<'_> {
fn from(output: RecipeGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Recipe<'_> {
const NSID: &'static str = "eu.atchef.recipe";
type Record = RecipeRecord;
}
impl Collection for RecipeRecord {
const NSID: &'static str = "eu.atchef.recipe";
type Record = RecipeRecord;
}
impl<'a> LexiconSchema for Recipe<'a> {
fn nsid() -> &'static str {
"eu.atchef.recipe"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_eu_atchef_recipe()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.content;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 15000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("content"),
max: 15000usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.content;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 3000usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("content"),
max: 3000usize,
actual: count,
});
}
}
}
if let Some(ref value) = self.cook_time {
if *value < 0i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("cook_time"),
min: 0i64,
actual: *value,
});
}
}
if let Some(ref value) = self.description {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 500usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("description"),
max: 500usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.description {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 200usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("description"),
max: 200usize,
actual: count,
});
}
}
}
if let Some(ref value) = self.image {
{
let size = value.blob().size;
if size > 1000000usize {
return Err(ConstraintError::BlobTooLarge {
path: ValidationPath::from_field("image"),
max: 1000000usize,
actual: size,
});
}
}
}
if let Some(ref value) = self.image {
{
let mime = value.blob().mime_type.as_str();
let accepted: &[&str] = &["image/png", "image/jpeg", "image/webp"];
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("image"),
accepted: vec![
"image/png".to_string(), "image/jpeg".to_string(),
"image/webp".to_string()
],
actual: mime.to_string(),
});
}
}
}
{
let value = &self.name;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 640usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("name"),
max: 640usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.name;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 64usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("name"),
max: 64usize,
actual: count,
});
}
}
}
if let Some(ref value) = self.portions {
if *value < 1i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("portions"),
min: 1i64,
actual: *value,
});
}
}
if let Some(ref value) = self.prep_time {
if *value < 0i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("prep_time"),
min: 0i64,
actual: *value,
});
}
}
if let Some(ref value) = self.time {
if *value < 1i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("time"),
min: 1i64,
actual: *value,
});
}
}
Ok(())
}
}
pub mod recipe_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 Name;
type Content;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Name = Unset;
type Content = Unset;
type CreatedAt = Unset;
}
pub struct SetName<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetName<S> {}
impl<S: State> State for SetName<S> {
type Name = Set<members::name>;
type Content = S::Content;
type CreatedAt = S::CreatedAt;
}
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 Name = S::Name;
type Content = Set<members::content>;
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 Name = S::Name;
type Content = S::Content;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct name(());
pub struct content(());
pub struct created_at(());
}
}
pub struct RecipeBuilder<'a, S: recipe_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<CowStr<'a>>,
Option<i64>,
Option<Datetime>,
Option<CowStr<'a>>,
Option<BlobRef<'a>>,
Option<CowStr<'a>>,
Option<i64>,
Option<i64>,
Option<i64>,
Option<Datetime>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Recipe<'a> {
pub fn new() -> RecipeBuilder<'a, recipe_state::Empty> {
RecipeBuilder::new()
}
}
impl<'a> RecipeBuilder<'a, recipe_state::Empty> {
pub fn new() -> Self {
RecipeBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> RecipeBuilder<'a, S>
where
S: recipe_state::State,
S::Content: recipe_state::IsUnset,
{
pub fn content(
mut self,
value: impl Into<CowStr<'a>>,
) -> RecipeBuilder<'a, recipe_state::SetContent<S>> {
self._fields.0 = Option::Some(value.into());
RecipeBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: recipe_state::State> RecipeBuilder<'a, S> {
pub fn cook_time(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_cook_time(mut self, value: Option<i64>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S> RecipeBuilder<'a, S>
where
S: recipe_state::State,
S::CreatedAt: recipe_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> RecipeBuilder<'a, recipe_state::SetCreatedAt<S>> {
self._fields.2 = Option::Some(value.into());
RecipeBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: recipe_state::State> RecipeBuilder<'a, S> {
pub fn description(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S: recipe_state::State> RecipeBuilder<'a, S> {
pub fn image(mut self, value: impl Into<Option<BlobRef<'a>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_image(mut self, value: Option<BlobRef<'a>>) -> Self {
self._fields.4 = value;
self
}
}
impl<'a, S> RecipeBuilder<'a, S>
where
S: recipe_state::State,
S::Name: recipe_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<CowStr<'a>>,
) -> RecipeBuilder<'a, recipe_state::SetName<S>> {
self._fields.5 = Option::Some(value.into());
RecipeBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: recipe_state::State> RecipeBuilder<'a, S> {
pub fn portions(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_portions(mut self, value: Option<i64>) -> Self {
self._fields.6 = value;
self
}
}
impl<'a, S: recipe_state::State> RecipeBuilder<'a, S> {
pub fn prep_time(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_prep_time(mut self, value: Option<i64>) -> Self {
self._fields.7 = value;
self
}
}
impl<'a, S: recipe_state::State> RecipeBuilder<'a, S> {
pub fn time(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_time(mut self, value: Option<i64>) -> Self {
self._fields.8 = value;
self
}
}
impl<'a, S: recipe_state::State> RecipeBuilder<'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> RecipeBuilder<'a, S>
where
S: recipe_state::State,
S::Name: recipe_state::IsSet,
S::Content: recipe_state::IsSet,
S::CreatedAt: recipe_state::IsSet,
{
pub fn build(self) -> Recipe<'a> {
Recipe {
content: self._fields.0.unwrap(),
cook_time: self._fields.1,
created_at: self._fields.2.unwrap(),
description: self._fields.3,
image: self._fields.4,
name: self._fields.5.unwrap(),
portions: self._fields.6,
prep_time: self._fields.7,
time: self._fields.8,
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>,
>,
) -> Recipe<'a> {
Recipe {
content: self._fields.0.unwrap(),
cook_time: self._fields.1,
created_at: self._fields.2.unwrap(),
description: self._fields.3,
image: self._fields.4,
name: self._fields.5.unwrap(),
portions: self._fields.6,
prep_time: self._fields.7,
time: self._fields.8,
updated_at: self._fields.9,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_eu_atchef_recipe() -> 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("eu.atchef.recipe"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"A cooking recipe with ingredients, instructions, and metadata",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("name"), SmolStr::new_static("content"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("content"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Recipe content in Cooklang format"),
),
max_length: Some(15000usize),
max_graphemes: Some(3000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("cookTime"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(0i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("When the recipe was created"),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Brief recipe description or summary"),
),
max_length: Some(500usize),
max_graphemes: Some(200usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("image"),
LexObjectProperty::Blob(LexBlob { ..Default::default() }),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("Recipe title")),
max_length: Some(640usize),
max_graphemes: Some(64usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("portions"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(1i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("prepTime"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(0i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("time"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(1i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("updatedAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("When the recipe was last updated"),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}