pub mod exif;
#[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, UriValue};
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::social_grain::AspectRatio;
use crate::social_grain::photo;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Photo<'a> {
#[serde(borrow)]
pub alt: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub aspect_ratio: Option<AspectRatio<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub created_at: Option<Datetime>,
#[serde(borrow)]
pub photo: BlobRef<'a>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct PhotoGetRecordOutput<'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: Photo<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ExifView<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cid: Option<Cid<'a>>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub date_time_original: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub exposure_time: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub f_number: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub flash: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub focal_length_in35mm_format: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub i_so: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub lens_make: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub lens_model: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub make: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub model: Option<CowStr<'a>>,
#[serde(borrow)]
pub photo: AtUri<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub uri: Option<AtUri<'a>>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct PhotoView<'a> {
#[serde(borrow)]
pub alt: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub aspect_ratio: Option<AspectRatio<'a>>,
#[serde(borrow)]
pub cid: Cid<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub exif: Option<photo::ExifView<'a>>,
#[serde(borrow)]
pub fullsize: UriValue<'a>,
#[serde(borrow)]
pub thumb: UriValue<'a>,
#[serde(borrow)]
pub uri: AtUri<'a>,
}
impl<'a> Photo<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, PhotoRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct PhotoRecord;
impl XrpcResp for PhotoRecord {
const NSID: &'static str = "social.grain.photo";
const ENCODING: &'static str = "application/json";
type Output<'de> = PhotoGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<PhotoGetRecordOutput<'_>> for Photo<'_> {
fn from(output: PhotoGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Photo<'_> {
const NSID: &'static str = "social.grain.photo";
type Record = PhotoRecord;
}
impl Collection for PhotoRecord {
const NSID: &'static str = "social.grain.photo";
type Record = PhotoRecord;
}
impl<'a> LexiconSchema for Photo<'a> {
fn nsid() -> &'static str {
"social.grain.photo"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_social_grain_photo()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.photo;
{
let size = value.blob().size;
if size > 1000000usize {
return Err(ConstraintError::BlobTooLarge {
path: ValidationPath::from_field("photo"),
max: 1000000usize,
actual: size,
});
}
}
}
{
let value = &self.photo;
{
let mime = value.blob().mime_type.as_str();
let accepted: &[&str] = &["image/*"];
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("photo"),
accepted: vec!["image/*".to_string()],
actual: mime.to_string(),
});
}
}
}
Ok(())
}
}
impl<'a> LexiconSchema for ExifView<'a> {
fn nsid() -> &'static str {
"social.grain.photo.defs"
}
fn def_name() -> &'static str {
"exifView"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_social_grain_photo_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<'a> LexiconSchema for PhotoView<'a> {
fn nsid() -> &'static str {
"social.grain.photo.defs"
}
fn def_name() -> &'static str {
"photoView"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_social_grain_photo_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod photo_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 Photo;
type Alt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Photo = Unset;
type Alt = Unset;
}
pub struct SetPhoto<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetPhoto<S> {}
impl<S: State> State for SetPhoto<S> {
type Photo = Set<members::photo>;
type Alt = S::Alt;
}
pub struct SetAlt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetAlt<S> {}
impl<S: State> State for SetAlt<S> {
type Photo = S::Photo;
type Alt = Set<members::alt>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct photo(());
pub struct alt(());
}
}
pub struct PhotoBuilder<'a, S: photo_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<CowStr<'a>>,
Option<AspectRatio<'a>>,
Option<Datetime>,
Option<BlobRef<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Photo<'a> {
pub fn new() -> PhotoBuilder<'a, photo_state::Empty> {
PhotoBuilder::new()
}
}
impl<'a> PhotoBuilder<'a, photo_state::Empty> {
pub fn new() -> Self {
PhotoBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> PhotoBuilder<'a, S>
where
S: photo_state::State,
S::Alt: photo_state::IsUnset,
{
pub fn alt(
mut self,
value: impl Into<CowStr<'a>>,
) -> PhotoBuilder<'a, photo_state::SetAlt<S>> {
self._fields.0 = Option::Some(value.into());
PhotoBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: photo_state::State> PhotoBuilder<'a, S> {
pub fn aspect_ratio(mut self, value: impl Into<Option<AspectRatio<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_aspect_ratio(mut self, value: Option<AspectRatio<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: photo_state::State> PhotoBuilder<'a, S> {
pub fn created_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_created_at(mut self, value: Option<Datetime>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> PhotoBuilder<'a, S>
where
S: photo_state::State,
S::Photo: photo_state::IsUnset,
{
pub fn photo(
mut self,
value: impl Into<BlobRef<'a>>,
) -> PhotoBuilder<'a, photo_state::SetPhoto<S>> {
self._fields.3 = Option::Some(value.into());
PhotoBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PhotoBuilder<'a, S>
where
S: photo_state::State,
S::Photo: photo_state::IsSet,
S::Alt: photo_state::IsSet,
{
pub fn build(self) -> Photo<'a> {
Photo {
alt: self._fields.0.unwrap(),
aspect_ratio: self._fields.1,
created_at: self._fields.2,
photo: self._fields.3.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>,
>,
) -> Photo<'a> {
Photo {
alt: self._fields.0.unwrap(),
aspect_ratio: self._fields.1,
created_at: self._fields.2,
photo: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_social_grain_photo() -> 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("social.grain.photo"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("photo"), SmolStr::new_static("alt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("alt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Alt text description of the image, for accessibility.",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("aspectRatio"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("social.grain.defs#aspectRatio"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("photo"),
LexObjectProperty::Blob(LexBlob { ..Default::default() }),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod exif_view_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 Photo;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Photo = Unset;
type CreatedAt = Unset;
}
pub struct SetPhoto<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetPhoto<S> {}
impl<S: State> State for SetPhoto<S> {
type Photo = Set<members::photo>;
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 Photo = S::Photo;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct photo(());
pub struct created_at(());
}
}
pub struct ExifViewBuilder<'a, S: exif_view_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Cid<'a>>,
Option<Datetime>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<i64>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<AtUri<'a>>,
Option<AtUri<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> ExifView<'a> {
pub fn new() -> ExifViewBuilder<'a, exif_view_state::Empty> {
ExifViewBuilder::new()
}
}
impl<'a> ExifViewBuilder<'a, exif_view_state::Empty> {
pub fn new() -> Self {
ExifViewBuilder {
_state: PhantomData,
_fields: (
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
),
_lifetime: PhantomData,
}
}
}
impl<'a, S: exif_view_state::State> ExifViewBuilder<'a, S> {
pub fn cid(mut self, value: impl Into<Option<Cid<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_cid(mut self, value: Option<Cid<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S> ExifViewBuilder<'a, S>
where
S: exif_view_state::State,
S::CreatedAt: exif_view_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ExifViewBuilder<'a, exif_view_state::SetCreatedAt<S>> {
self._fields.1 = Option::Some(value.into());
ExifViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: exif_view_state::State> ExifViewBuilder<'a, S> {
pub fn date_time_original(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_date_time_original(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S: exif_view_state::State> ExifViewBuilder<'a, S> {
pub fn exposure_time(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_exposure_time(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S: exif_view_state::State> ExifViewBuilder<'a, S> {
pub fn f_number(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_f_number(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.4 = value;
self
}
}
impl<'a, S: exif_view_state::State> ExifViewBuilder<'a, S> {
pub fn flash(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_flash(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.5 = value;
self
}
}
impl<'a, S: exif_view_state::State> ExifViewBuilder<'a, S> {
pub fn focal_length_in35mm_format(
mut self,
value: impl Into<Option<CowStr<'a>>>,
) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_focal_length_in35mm_format(
mut self,
value: Option<CowStr<'a>>,
) -> Self {
self._fields.6 = value;
self
}
}
impl<'a, S: exif_view_state::State> ExifViewBuilder<'a, S> {
pub fn i_so(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_i_so(mut self, value: Option<i64>) -> Self {
self._fields.7 = value;
self
}
}
impl<'a, S: exif_view_state::State> ExifViewBuilder<'a, S> {
pub fn lens_make(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_lens_make(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.8 = value;
self
}
}
impl<'a, S: exif_view_state::State> ExifViewBuilder<'a, S> {
pub fn lens_model(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.9 = value.into();
self
}
pub fn maybe_lens_model(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.9 = value;
self
}
}
impl<'a, S: exif_view_state::State> ExifViewBuilder<'a, S> {
pub fn make(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.10 = value.into();
self
}
pub fn maybe_make(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.10 = value;
self
}
}
impl<'a, S: exif_view_state::State> ExifViewBuilder<'a, S> {
pub fn model(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.11 = value.into();
self
}
pub fn maybe_model(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.11 = value;
self
}
}
impl<'a, S> ExifViewBuilder<'a, S>
where
S: exif_view_state::State,
S::Photo: exif_view_state::IsUnset,
{
pub fn photo(
mut self,
value: impl Into<AtUri<'a>>,
) -> ExifViewBuilder<'a, exif_view_state::SetPhoto<S>> {
self._fields.12 = Option::Some(value.into());
ExifViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: exif_view_state::State> ExifViewBuilder<'a, S> {
pub fn uri(mut self, value: impl Into<Option<AtUri<'a>>>) -> Self {
self._fields.13 = value.into();
self
}
pub fn maybe_uri(mut self, value: Option<AtUri<'a>>) -> Self {
self._fields.13 = value;
self
}
}
impl<'a, S> ExifViewBuilder<'a, S>
where
S: exif_view_state::State,
S::Photo: exif_view_state::IsSet,
S::CreatedAt: exif_view_state::IsSet,
{
pub fn build(self) -> ExifView<'a> {
ExifView {
cid: self._fields.0,
created_at: self._fields.1.unwrap(),
date_time_original: self._fields.2,
exposure_time: self._fields.3,
f_number: self._fields.4,
flash: self._fields.5,
focal_length_in35mm_format: self._fields.6,
i_so: self._fields.7,
lens_make: self._fields.8,
lens_model: self._fields.9,
make: self._fields.10,
model: self._fields.11,
photo: self._fields.12.unwrap(),
uri: self._fields.13,
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>,
>,
) -> ExifView<'a> {
ExifView {
cid: self._fields.0,
created_at: self._fields.1.unwrap(),
date_time_original: self._fields.2,
exposure_time: self._fields.3,
f_number: self._fields.4,
flash: self._fields.5,
focal_length_in35mm_format: self._fields.6,
i_so: self._fields.7,
lens_make: self._fields.8,
lens_model: self._fields.9,
make: self._fields.10,
model: self._fields.11,
photo: self._fields.12.unwrap(),
uri: self._fields.13,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_social_grain_photo_defs() -> 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("social.grain.photo.defs"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("exifView"),
LexUserType::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("photo"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("cid"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Cid),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("dateTimeOriginal"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map.insert(
SmolStr::new_static("exposureTime"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map.insert(
SmolStr::new_static("fNumber"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map.insert(
SmolStr::new_static("flash"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map.insert(
SmolStr::new_static("focalLengthIn35mmFormat"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map.insert(
SmolStr::new_static("iSO"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("lensMake"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map.insert(
SmolStr::new_static("lensModel"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map.insert(
SmolStr::new_static("make"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map.insert(
SmolStr::new_static("model"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map.insert(
SmolStr::new_static("photo"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("photoView"),
LexUserType::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("uri"), SmolStr::new_static("cid"),
SmolStr::new_static("thumb"),
SmolStr::new_static("fullsize"), SmolStr::new_static("alt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("alt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Alt text description of the image, for accessibility.",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("aspectRatio"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("social.grain.defs#aspectRatio"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("cid"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Cid),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("exif"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static(
"social.grain.photo.defs#exifView",
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("fullsize"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Fully-qualified URL where a large version of the image can be fetched. May or may not be the exact original blob. For example, CDN location provided by the App View.",
),
),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("thumb"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Fully-qualified URL where a thumbnail of the image can be fetched. For example, CDN location provided by the App View.",
),
),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod photo_view_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 Cid;
type Fullsize;
type Alt;
type Uri;
type Thumb;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Cid = Unset;
type Fullsize = Unset;
type Alt = Unset;
type Uri = Unset;
type Thumb = Unset;
}
pub struct SetCid<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCid<S> {}
impl<S: State> State for SetCid<S> {
type Cid = Set<members::cid>;
type Fullsize = S::Fullsize;
type Alt = S::Alt;
type Uri = S::Uri;
type Thumb = S::Thumb;
}
pub struct SetFullsize<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetFullsize<S> {}
impl<S: State> State for SetFullsize<S> {
type Cid = S::Cid;
type Fullsize = Set<members::fullsize>;
type Alt = S::Alt;
type Uri = S::Uri;
type Thumb = S::Thumb;
}
pub struct SetAlt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetAlt<S> {}
impl<S: State> State for SetAlt<S> {
type Cid = S::Cid;
type Fullsize = S::Fullsize;
type Alt = Set<members::alt>;
type Uri = S::Uri;
type Thumb = S::Thumb;
}
pub struct SetUri<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetUri<S> {}
impl<S: State> State for SetUri<S> {
type Cid = S::Cid;
type Fullsize = S::Fullsize;
type Alt = S::Alt;
type Uri = Set<members::uri>;
type Thumb = S::Thumb;
}
pub struct SetThumb<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetThumb<S> {}
impl<S: State> State for SetThumb<S> {
type Cid = S::Cid;
type Fullsize = S::Fullsize;
type Alt = S::Alt;
type Uri = S::Uri;
type Thumb = Set<members::thumb>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct cid(());
pub struct fullsize(());
pub struct alt(());
pub struct uri(());
pub struct thumb(());
}
}
pub struct PhotoViewBuilder<'a, S: photo_view_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<CowStr<'a>>,
Option<AspectRatio<'a>>,
Option<Cid<'a>>,
Option<photo::ExifView<'a>>,
Option<UriValue<'a>>,
Option<UriValue<'a>>,
Option<AtUri<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> PhotoView<'a> {
pub fn new() -> PhotoViewBuilder<'a, photo_view_state::Empty> {
PhotoViewBuilder::new()
}
}
impl<'a> PhotoViewBuilder<'a, photo_view_state::Empty> {
pub fn new() -> Self {
PhotoViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> PhotoViewBuilder<'a, S>
where
S: photo_view_state::State,
S::Alt: photo_view_state::IsUnset,
{
pub fn alt(
mut self,
value: impl Into<CowStr<'a>>,
) -> PhotoViewBuilder<'a, photo_view_state::SetAlt<S>> {
self._fields.0 = Option::Some(value.into());
PhotoViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: photo_view_state::State> PhotoViewBuilder<'a, S> {
pub fn aspect_ratio(mut self, value: impl Into<Option<AspectRatio<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_aspect_ratio(mut self, value: Option<AspectRatio<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S> PhotoViewBuilder<'a, S>
where
S: photo_view_state::State,
S::Cid: photo_view_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<Cid<'a>>,
) -> PhotoViewBuilder<'a, photo_view_state::SetCid<S>> {
self._fields.2 = Option::Some(value.into());
PhotoViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: photo_view_state::State> PhotoViewBuilder<'a, S> {
pub fn exif(mut self, value: impl Into<Option<photo::ExifView<'a>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_exif(mut self, value: Option<photo::ExifView<'a>>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S> PhotoViewBuilder<'a, S>
where
S: photo_view_state::State,
S::Fullsize: photo_view_state::IsUnset,
{
pub fn fullsize(
mut self,
value: impl Into<UriValue<'a>>,
) -> PhotoViewBuilder<'a, photo_view_state::SetFullsize<S>> {
self._fields.4 = Option::Some(value.into());
PhotoViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PhotoViewBuilder<'a, S>
where
S: photo_view_state::State,
S::Thumb: photo_view_state::IsUnset,
{
pub fn thumb(
mut self,
value: impl Into<UriValue<'a>>,
) -> PhotoViewBuilder<'a, photo_view_state::SetThumb<S>> {
self._fields.5 = Option::Some(value.into());
PhotoViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PhotoViewBuilder<'a, S>
where
S: photo_view_state::State,
S::Uri: photo_view_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<'a>>,
) -> PhotoViewBuilder<'a, photo_view_state::SetUri<S>> {
self._fields.6 = Option::Some(value.into());
PhotoViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PhotoViewBuilder<'a, S>
where
S: photo_view_state::State,
S::Cid: photo_view_state::IsSet,
S::Fullsize: photo_view_state::IsSet,
S::Alt: photo_view_state::IsSet,
S::Uri: photo_view_state::IsSet,
S::Thumb: photo_view_state::IsSet,
{
pub fn build(self) -> PhotoView<'a> {
PhotoView {
alt: self._fields.0.unwrap(),
aspect_ratio: self._fields.1,
cid: self._fields.2.unwrap(),
exif: self._fields.3,
fullsize: self._fields.4.unwrap(),
thumb: self._fields.5.unwrap(),
uri: self._fields.6.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>,
>,
) -> PhotoView<'a> {
PhotoView {
alt: self._fields.0.unwrap(),
aspect_ratio: self._fields.1,
cid: self._fields.2.unwrap(),
exif: self._fields.3,
fullsize: self._fields.4.unwrap(),
thumb: self._fields.5.unwrap(),
uri: self._fields.6.unwrap(),
extra_data: Some(extra_data),
}
}
}