#[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::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, open_union};
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::org_hypercerts::SmallImage;
use crate::org_hypercerts::SmallVideo;
use crate::org_hypercerts::Uri;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct DisplayProfile<'a> {
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub display_name: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub hover_iframe_url: Option<UriValue<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub hover_image: Option<DisplayProfileHoverImage<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub image: Option<DisplayProfileImage<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub url: Option<UriValue<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub video: Option<DisplayProfileVideo<'a>>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum DisplayProfileHoverImage<'a> {
#[serde(rename = "org.hypercerts.defs#uri")]
Uri(Box<Uri<'a>>),
#[serde(rename = "org.hypercerts.defs#smallImage")]
SmallImage(Box<SmallImage<'a>>),
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum DisplayProfileImage<'a> {
#[serde(rename = "org.hypercerts.defs#uri")]
Uri(Box<Uri<'a>>),
#[serde(rename = "org.hypercerts.defs#smallImage")]
SmallImage(Box<SmallImage<'a>>),
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum DisplayProfileVideo<'a> {
#[serde(rename = "org.hypercerts.defs#uri")]
Uri(Box<Uri<'a>>),
#[serde(rename = "org.hypercerts.defs#smallVideo")]
SmallVideo(Box<SmallVideo<'a>>),
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct DisplayProfileGetRecordOutput<'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: DisplayProfile<'a>,
}
impl<'a> DisplayProfile<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, DisplayProfileRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct DisplayProfileRecord;
impl XrpcResp for DisplayProfileRecord {
const NSID: &'static str = "org.hyperboards.displayProfile";
const ENCODING: &'static str = "application/json";
type Output<'de> = DisplayProfileGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<DisplayProfileGetRecordOutput<'_>> for DisplayProfile<'_> {
fn from(output: DisplayProfileGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for DisplayProfile<'_> {
const NSID: &'static str = "org.hyperboards.displayProfile";
type Record = DisplayProfileRecord;
}
impl Collection for DisplayProfileRecord {
const NSID: &'static str = "org.hyperboards.displayProfile";
type Record = DisplayProfileRecord;
}
impl<'a> LexiconSchema for DisplayProfile<'a> {
fn nsid() -> &'static str {
"org.hyperboards.displayProfile"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_org_hyperboards_displayProfile()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.display_name {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 640usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("display_name"),
max: 640usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.display_name {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 64usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("display_name"),
max: 64usize,
actual: count,
});
}
}
}
if let Some(ref value) = self.hover_iframe_url {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 2048usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("hover_iframe_url"),
max: 2048usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.url {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 2048usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("url"),
max: 2048usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
pub mod display_profile_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 CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
}
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 CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
}
}
pub struct DisplayProfileBuilder<'a, S: display_profile_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Datetime>,
Option<CowStr<'a>>,
Option<UriValue<'a>>,
Option<DisplayProfileHoverImage<'a>>,
Option<DisplayProfileImage<'a>>,
Option<UriValue<'a>>,
Option<DisplayProfileVideo<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> DisplayProfile<'a> {
pub fn new() -> DisplayProfileBuilder<'a, display_profile_state::Empty> {
DisplayProfileBuilder::new()
}
}
impl<'a> DisplayProfileBuilder<'a, display_profile_state::Empty> {
pub fn new() -> Self {
DisplayProfileBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> DisplayProfileBuilder<'a, S>
where
S: display_profile_state::State,
S::CreatedAt: display_profile_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> DisplayProfileBuilder<'a, display_profile_state::SetCreatedAt<S>> {
self._fields.0 = Option::Some(value.into());
DisplayProfileBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: display_profile_state::State> DisplayProfileBuilder<'a, S> {
pub fn display_name(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_display_name(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: display_profile_state::State> DisplayProfileBuilder<'a, S> {
pub fn hover_iframe_url(mut self, value: impl Into<Option<UriValue<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_hover_iframe_url(mut self, value: Option<UriValue<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S: display_profile_state::State> DisplayProfileBuilder<'a, S> {
pub fn hover_image(
mut self,
value: impl Into<Option<DisplayProfileHoverImage<'a>>>,
) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_hover_image(
mut self,
value: Option<DisplayProfileHoverImage<'a>>,
) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S: display_profile_state::State> DisplayProfileBuilder<'a, S> {
pub fn image(mut self, value: impl Into<Option<DisplayProfileImage<'a>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_image(mut self, value: Option<DisplayProfileImage<'a>>) -> Self {
self._fields.4 = value;
self
}
}
impl<'a, S: display_profile_state::State> DisplayProfileBuilder<'a, S> {
pub fn url(mut self, value: impl Into<Option<UriValue<'a>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_url(mut self, value: Option<UriValue<'a>>) -> Self {
self._fields.5 = value;
self
}
}
impl<'a, S: display_profile_state::State> DisplayProfileBuilder<'a, S> {
pub fn video(mut self, value: impl Into<Option<DisplayProfileVideo<'a>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_video(mut self, value: Option<DisplayProfileVideo<'a>>) -> Self {
self._fields.6 = value;
self
}
}
impl<'a, S> DisplayProfileBuilder<'a, S>
where
S: display_profile_state::State,
S::CreatedAt: display_profile_state::IsSet,
{
pub fn build(self) -> DisplayProfile<'a> {
DisplayProfile {
created_at: self._fields.0.unwrap(),
display_name: self._fields.1,
hover_iframe_url: self._fields.2,
hover_image: self._fields.3,
image: self._fields.4,
url: self._fields.5,
video: self._fields.6,
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>,
>,
) -> DisplayProfile<'a> {
DisplayProfile {
created_at: self._fields.0.unwrap(),
display_name: self._fields.1,
hover_iframe_url: self._fields.2,
hover_image: self._fields.3,
image: self._fields.4,
url: self._fields.5,
video: self._fields.6,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_org_hyperboards_displayProfile() -> 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("org.hyperboards.displayProfile"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"User-declared visual presentation defaults for how a contributor appears on hyperboards. Stored in the contributor's own PDS and reusable across multiple boards.",
),
),
key: Some(CowStr::new_static("literal:self")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![SmolStr::new_static("createdAt")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Client-declared timestamp when this record was originally created.",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("displayName"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Display name override for this user on hyperboards.",
),
),
max_length: Some(640usize),
max_graphemes: Some(64usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("hoverIframeUrl"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Default hover iframe URL for this user across boards.",
),
),
format: Some(LexStringFormat::Uri),
max_length: Some(2048usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("hoverImage"),
LexObjectProperty::Union(LexRefUnion {
description: Some(
CowStr::new_static(
"Default hover image for this user across boards, as a URI or image blob.",
),
),
refs: vec![
CowStr::new_static("org.hypercerts.defs#uri"),
CowStr::new_static("org.hypercerts.defs#smallImage")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("image"),
LexObjectProperty::Union(LexRefUnion {
description: Some(
CowStr::new_static(
"Avatar or face image override for this user on hyperboards, as a URI or image blob.",
),
),
refs: vec![
CowStr::new_static("org.hypercerts.defs#uri"),
CowStr::new_static("org.hypercerts.defs#smallImage")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("url"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Default click-through link URL for this user across boards.",
),
),
format: Some(LexStringFormat::Uri),
max_length: Some(2048usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("video"),
LexObjectProperty::Union(LexRefUnion {
description: Some(
CowStr::new_static(
"Default video for this user across boards, as a URI (embed/direct link) or uploaded video blob.",
),
),
refs: vec![
CowStr::new_static("org.hypercerts.defs#uri"),
CowStr::new_static("org.hypercerts.defs#smallVideo")
],
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}