#[jacquard_derive::lexicon]
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct Painting<'a> {
#[serde(borrow)]
pub code: jacquard_common::CowStr<'a>,
#[serde(borrow)]
pub image_url: jacquard_common::types::string::UriValue<'a>,
#[serde(skip_serializing_if = "std::option::Option::is_none")]
#[serde(borrow)]
pub recording_url: std::option::Option<jacquard_common::types::string::UriValue<'a>>,
#[serde(borrow)]
pub r#ref: jacquard_common::CowStr<'a>,
#[serde(borrow)]
pub slug: jacquard_common::CowStr<'a>,
#[serde(skip_serializing_if = "std::option::Option::is_none")]
#[serde(borrow)]
pub thumbnail: std::option::Option<jacquard_common::types::blob::BlobRef<'a>>,
pub when: jacquard_common::types::string::Datetime,
}
pub mod painting_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 Ref;
type ImageUrl;
type Code;
type Slug;
type When;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Ref = Unset;
type ImageUrl = Unset;
type Code = Unset;
type Slug = Unset;
type When = Unset;
}
pub struct SetRef<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetRef<S> {}
impl<S: State> State for SetRef<S> {
type Ref = Set<members::r#ref>;
type ImageUrl = S::ImageUrl;
type Code = S::Code;
type Slug = S::Slug;
type When = S::When;
}
pub struct SetImageUrl<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetImageUrl<S> {}
impl<S: State> State for SetImageUrl<S> {
type Ref = S::Ref;
type ImageUrl = Set<members::image_url>;
type Code = S::Code;
type Slug = S::Slug;
type When = S::When;
}
pub struct SetCode<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCode<S> {}
impl<S: State> State for SetCode<S> {
type Ref = S::Ref;
type ImageUrl = S::ImageUrl;
type Code = Set<members::code>;
type Slug = S::Slug;
type When = S::When;
}
pub struct SetSlug<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetSlug<S> {}
impl<S: State> State for SetSlug<S> {
type Ref = S::Ref;
type ImageUrl = S::ImageUrl;
type Code = S::Code;
type Slug = Set<members::slug>;
type When = S::When;
}
pub struct SetWhen<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetWhen<S> {}
impl<S: State> State for SetWhen<S> {
type Ref = S::Ref;
type ImageUrl = S::ImageUrl;
type Code = S::Code;
type Slug = S::Slug;
type When = Set<members::when>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct r#ref(());
pub struct image_url(());
pub struct code(());
pub struct slug(());
pub struct when(());
}
}
pub struct PaintingBuilder<'a, S: painting_state::State> {
_phantom_state: ::core::marker::PhantomData<fn() -> S>,
__unsafe_private_named: (
::core::option::Option<jacquard_common::CowStr<'a>>,
::core::option::Option<jacquard_common::types::string::UriValue<'a>>,
::core::option::Option<jacquard_common::types::string::UriValue<'a>>,
::core::option::Option<jacquard_common::CowStr<'a>>,
::core::option::Option<jacquard_common::CowStr<'a>>,
::core::option::Option<jacquard_common::types::blob::BlobRef<'a>>,
::core::option::Option<jacquard_common::types::string::Datetime>,
),
_phantom: ::core::marker::PhantomData<&'a ()>,
}
impl<'a> Painting<'a> {
pub fn new() -> PaintingBuilder<'a, painting_state::Empty> {
PaintingBuilder::new()
}
}
impl<'a> PaintingBuilder<'a, painting_state::Empty> {
pub fn new() -> Self {
PaintingBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: (None, None, None, None, None, None, None),
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S> PaintingBuilder<'a, S>
where
S: painting_state::State,
S::Code: painting_state::IsUnset,
{
pub fn code(
mut self,
value: impl Into<jacquard_common::CowStr<'a>>,
) -> PaintingBuilder<'a, painting_state::SetCode<S>> {
self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into());
PaintingBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S> PaintingBuilder<'a, S>
where
S: painting_state::State,
S::ImageUrl: painting_state::IsUnset,
{
pub fn image_url(
mut self,
value: impl Into<jacquard_common::types::string::UriValue<'a>>,
) -> PaintingBuilder<'a, painting_state::SetImageUrl<S>> {
self.__unsafe_private_named.1 = ::core::option::Option::Some(value.into());
PaintingBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S: painting_state::State> PaintingBuilder<'a, S> {
pub fn recording_url(
mut self,
value: impl Into<Option<jacquard_common::types::string::UriValue<'a>>>,
) -> Self {
self.__unsafe_private_named.2 = value.into();
self
}
pub fn maybe_recording_url(
mut self,
value: Option<jacquard_common::types::string::UriValue<'a>>,
) -> Self {
self.__unsafe_private_named.2 = value;
self
}
}
impl<'a, S> PaintingBuilder<'a, S>
where
S: painting_state::State,
S::Ref: painting_state::IsUnset,
{
pub fn r#ref(
mut self,
value: impl Into<jacquard_common::CowStr<'a>>,
) -> PaintingBuilder<'a, painting_state::SetRef<S>> {
self.__unsafe_private_named.3 = ::core::option::Option::Some(value.into());
PaintingBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S> PaintingBuilder<'a, S>
where
S: painting_state::State,
S::Slug: painting_state::IsUnset,
{
pub fn slug(
mut self,
value: impl Into<jacquard_common::CowStr<'a>>,
) -> PaintingBuilder<'a, painting_state::SetSlug<S>> {
self.__unsafe_private_named.4 = ::core::option::Option::Some(value.into());
PaintingBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S: painting_state::State> PaintingBuilder<'a, S> {
pub fn thumbnail(
mut self,
value: impl Into<Option<jacquard_common::types::blob::BlobRef<'a>>>,
) -> Self {
self.__unsafe_private_named.5 = value.into();
self
}
pub fn maybe_thumbnail(
mut self,
value: Option<jacquard_common::types::blob::BlobRef<'a>>,
) -> Self {
self.__unsafe_private_named.5 = value;
self
}
}
impl<'a, S> PaintingBuilder<'a, S>
where
S: painting_state::State,
S::When: painting_state::IsUnset,
{
pub fn when(
mut self,
value: impl Into<jacquard_common::types::string::Datetime>,
) -> PaintingBuilder<'a, painting_state::SetWhen<S>> {
self.__unsafe_private_named.6 = ::core::option::Option::Some(value.into());
PaintingBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S> PaintingBuilder<'a, S>
where
S: painting_state::State,
S::Ref: painting_state::IsSet,
S::ImageUrl: painting_state::IsSet,
S::Code: painting_state::IsSet,
S::Slug: painting_state::IsSet,
S::When: painting_state::IsSet,
{
pub fn build(self) -> Painting<'a> {
Painting {
code: self.__unsafe_private_named.0.unwrap(),
image_url: self.__unsafe_private_named.1.unwrap(),
recording_url: self.__unsafe_private_named.2,
r#ref: self.__unsafe_private_named.3.unwrap(),
slug: self.__unsafe_private_named.4.unwrap(),
thumbnail: self.__unsafe_private_named.5,
when: self.__unsafe_private_named.6.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: std::collections::BTreeMap<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Painting<'a> {
Painting {
code: self.__unsafe_private_named.0.unwrap(),
image_url: self.__unsafe_private_named.1.unwrap(),
recording_url: self.__unsafe_private_named.2,
r#ref: self.__unsafe_private_named.3.unwrap(),
slug: self.__unsafe_private_named.4.unwrap(),
thumbnail: self.__unsafe_private_named.5,
when: self.__unsafe_private_named.6.unwrap(),
extra_data: Some(extra_data),
}
}
}
impl<'a> Painting<'a> {
pub fn uri(
uri: impl Into<jacquard_common::CowStr<'a>>,
) -> Result<
jacquard_common::types::uri::RecordUri<'a, PaintingRecord>,
jacquard_common::types::uri::UriError,
> {
jacquard_common::types::uri::RecordUri::try_from_uri(
jacquard_common::types::string::AtUri::new_cow(uri.into())?,
)
}
}
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct PaintingGetRecordOutput<'a> {
#[serde(skip_serializing_if = "std::option::Option::is_none")]
#[serde(borrow)]
pub cid: std::option::Option<jacquard_common::types::string::Cid<'a>>,
#[serde(borrow)]
pub uri: jacquard_common::types::string::AtUri<'a>,
#[serde(borrow)]
pub value: Painting<'a>,
}
impl From<PaintingGetRecordOutput<'_>> for Painting<'_> {
fn from(output: PaintingGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl jacquard_common::types::collection::Collection for Painting<'_> {
const NSID: &'static str = "computer.aesthetic.painting";
type Record = PaintingRecord;
}
#[derive(Debug, serde::Serialize, serde::Deserialize)]
pub struct PaintingRecord;
impl jacquard_common::xrpc::XrpcResp for PaintingRecord {
const NSID: &'static str = "computer.aesthetic.painting";
const ENCODING: &'static str = "application/json";
type Output<'de> = PaintingGetRecordOutput<'de>;
type Err<'de> = jacquard_common::types::collection::RecordError<'de>;
}
impl jacquard_common::types::collection::Collection for PaintingRecord {
const NSID: &'static str = "computer.aesthetic.painting";
type Record = PaintingRecord;
}
impl<'a> ::jacquard_lexicon::schema::LexiconSchema for Painting<'a> {
fn nsid() -> &'static str {
"computer.aesthetic.painting"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> ::jacquard_lexicon::lexicon::LexiconDoc<'static> {
lexicon_doc_computer_aesthetic_painting()
}
fn validate(
&self,
) -> ::core::result::Result<(), ::jacquard_lexicon::validation::ConstraintError> {
{
let value = &self.code;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 10usize {
return Err(::jacquard_lexicon::validation::ConstraintError::MaxLength {
path: ::jacquard_lexicon::validation::ValidationPath::from_field(
"code",
),
max: 10usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.image_url;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 512usize {
return Err(::jacquard_lexicon::validation::ConstraintError::MaxLength {
path: ::jacquard_lexicon::validation::ValidationPath::from_field(
"image_url",
),
max: 512usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.recording_url {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 512usize {
return Err(::jacquard_lexicon::validation::ConstraintError::MaxLength {
path: ::jacquard_lexicon::validation::ValidationPath::from_field(
"recording_url",
),
max: 512usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.r#ref;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 24usize {
return Err(::jacquard_lexicon::validation::ConstraintError::MaxLength {
path: ::jacquard_lexicon::validation::ValidationPath::from_field(
"ref",
),
max: 24usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.slug;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 128usize {
return Err(::jacquard_lexicon::validation::ConstraintError::MaxLength {
path: ::jacquard_lexicon::validation::ValidationPath::from_field(
"slug",
),
max: 128usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.thumbnail {
{
let size = value.blob().size;
if size > 1048576usize {
return Err(::jacquard_lexicon::validation::ConstraintError::BlobTooLarge {
path: ::jacquard_lexicon::validation::ValidationPath::from_field(
"thumbnail",
),
max: 1048576usize,
actual: size,
});
}
}
}
if let Some(ref value) = self.thumbnail {
{
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(::jacquard_lexicon::validation::ConstraintError::BlobMimeTypeNotAccepted {
path: ::jacquard_lexicon::validation::ValidationPath::from_field(
"thumbnail",
),
accepted: vec![
"image/png".to_string(), "image/jpeg".to_string()
],
actual: mime.to_string(),
});
}
}
}
Ok(())
}
}
fn lexicon_doc_computer_aesthetic_painting() -> ::jacquard_lexicon::lexicon::LexiconDoc<
'static,
> {
::jacquard_lexicon::lexicon::LexiconDoc {
lexicon: ::jacquard_lexicon::lexicon::Lexicon::Lexicon1,
id: ::jacquard_common::CowStr::new_static("computer.aesthetic.painting"),
revision: None,
description: None,
defs: {
let mut map = ::alloc::collections::BTreeMap::new();
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static("main"),
::jacquard_lexicon::lexicon::LexUserType::Record(::jacquard_lexicon::lexicon::LexRecord {
description: Some(
::jacquard_common::CowStr::new_static(
"A digital painting created on aesthetic.computer",
),
),
key: Some(::jacquard_common::CowStr::new_static("tid")),
record: ::jacquard_lexicon::lexicon::LexRecordRecord::Object(::jacquard_lexicon::lexicon::LexObject {
description: None,
required: Some(
vec![
::jacquard_common::deps::smol_str::SmolStr::new_static("slug"),
::jacquard_common::deps::smol_str::SmolStr::new_static("code"),
::jacquard_common::deps::smol_str::SmolStr::new_static("imageUrl"),
::jacquard_common::deps::smol_str::SmolStr::new_static("when"),
::jacquard_common::deps::smol_str::SmolStr::new_static("ref")
],
),
nullable: None,
properties: {
#[allow(unused_mut)]
let mut map = ::alloc::collections::BTreeMap::new();
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"code",
),
::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString {
description: Some(
::jacquard_common::CowStr::new_static(
"Short alphanumeric code for easy lookup (e.g., 'a3b')",
),
),
format: None,
default: None,
min_length: None,
max_length: Some(10usize),
min_graphemes: None,
max_graphemes: None,
r#enum: None,
r#const: None,
known_values: None,
}),
);
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"imageUrl",
),
::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString {
description: Some(
::jacquard_common::CowStr::new_static(
"URL to full resolution PNG",
),
),
format: Some(
::jacquard_lexicon::lexicon::LexStringFormat::Uri,
),
default: None,
min_length: None,
max_length: Some(512usize),
min_graphemes: None,
max_graphemes: None,
r#enum: None,
r#const: None,
known_values: None,
}),
);
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"recordingUrl",
),
::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString {
description: Some(
::jacquard_common::CowStr::new_static(
"URL to .zip recording file (if available)",
),
),
format: Some(
::jacquard_lexicon::lexicon::LexStringFormat::Uri,
),
default: None,
min_length: None,
max_length: Some(512usize),
min_graphemes: None,
max_graphemes: None,
r#enum: None,
r#const: None,
known_values: None,
}),
);
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"ref",
),
::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString {
description: Some(
::jacquard_common::CowStr::new_static(
"MongoDB ObjectId reference for bidirectional sync",
),
),
format: None,
default: None,
min_length: None,
max_length: Some(24usize),
min_graphemes: None,
max_graphemes: None,
r#enum: None,
r#const: None,
known_values: None,
}),
);
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"slug",
),
::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString {
description: Some(
::jacquard_common::CowStr::new_static(
"Timestamp slug (may include recording: imageSlug:recordingSlug)",
),
),
format: None,
default: None,
min_length: None,
max_length: Some(128usize),
min_graphemes: None,
max_graphemes: None,
r#enum: None,
r#const: None,
known_values: None,
}),
);
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"thumbnail",
),
::jacquard_lexicon::lexicon::LexObjectProperty::Blob(::jacquard_lexicon::lexicon::LexBlob {
description: None,
accept: None,
max_size: None,
}),
);
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"when",
),
::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString {
description: Some(
::jacquard_common::CowStr::new_static(
"Creation timestamp (ISO 8601)",
),
),
format: Some(
::jacquard_lexicon::lexicon::LexStringFormat::Datetime,
),
default: None,
min_length: None,
max_length: None,
min_graphemes: None,
max_graphemes: None,
r#enum: None,
r#const: None,
known_values: None,
}),
);
map
},
}),
}),
);
map
},
}
}