#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, 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, UriValue};
use jacquard_common::types::uri::{RecordUri, UriError};
use jacquard_common::types::value::Data;
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;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "org.hyperboards.displayProfile",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct DisplayProfile<S: BosStr = DefaultStr> {
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub display_name: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub hover_iframe_url: Option<UriValue<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub hover_image: Option<DisplayProfileHoverImage<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub image: Option<DisplayProfileImage<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub url: Option<UriValue<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub video: Option<DisplayProfileVideo<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum DisplayProfileHoverImage<S: BosStr = DefaultStr> {
#[serde(rename = "org.hypercerts.defs#uri")]
Uri(Box<Uri<S>>),
#[serde(rename = "org.hypercerts.defs#smallImage")]
SmallImage(Box<SmallImage<S>>),
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum DisplayProfileImage<S: BosStr = DefaultStr> {
#[serde(rename = "org.hypercerts.defs#uri")]
Uri(Box<Uri<S>>),
#[serde(rename = "org.hypercerts.defs#smallImage")]
SmallImage(Box<SmallImage<S>>),
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum DisplayProfileVideo<S: BosStr = DefaultStr> {
#[serde(rename = "org.hypercerts.defs#uri")]
Uri(Box<Uri<S>>),
#[serde(rename = "org.hypercerts.defs#smallVideo")]
SmallVideo(Box<SmallVideo<S>>),
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct DisplayProfileGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: DisplayProfile<S>,
}
impl<S: BosStr> DisplayProfile<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, DisplayProfileRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[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<S: BosStr> = DisplayProfileGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<DisplayProfileGetRecordOutput<S>> for DisplayProfile<S> {
fn from(output: DisplayProfileGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for DisplayProfile<S> {
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<S: BosStr> LexiconSchema for DisplayProfile<S> {
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<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCreatedAt<St> {}
impl<St: State> State for SetCreatedAt<St> {
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
}
}
pub struct DisplayProfileBuilder<S: BosStr, St: display_profile_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Datetime>,
Option<S>,
Option<UriValue<S>>,
Option<DisplayProfileHoverImage<S>>,
Option<DisplayProfileImage<S>>,
Option<UriValue<S>>,
Option<DisplayProfileVideo<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> DisplayProfile<S> {
pub fn new() -> DisplayProfileBuilder<S, display_profile_state::Empty> {
DisplayProfileBuilder::new()
}
}
impl<S: BosStr> DisplayProfileBuilder<S, display_profile_state::Empty> {
pub fn new() -> Self {
DisplayProfileBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> DisplayProfileBuilder<S, St>
where
St: display_profile_state::State,
St::CreatedAt: display_profile_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> DisplayProfileBuilder<S, display_profile_state::SetCreatedAt<St>> {
self._fields.0 = Option::Some(value.into());
DisplayProfileBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: display_profile_state::State> DisplayProfileBuilder<S, St> {
pub fn display_name(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_display_name(mut self, value: Option<S>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St: display_profile_state::State> DisplayProfileBuilder<S, St> {
pub fn hover_iframe_url(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_hover_iframe_url(mut self, value: Option<UriValue<S>>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St: display_profile_state::State> DisplayProfileBuilder<S, St> {
pub fn hover_image(
mut self,
value: impl Into<Option<DisplayProfileHoverImage<S>>>,
) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_hover_image(
mut self,
value: Option<DisplayProfileHoverImage<S>>,
) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St: display_profile_state::State> DisplayProfileBuilder<S, St> {
pub fn image(mut self, value: impl Into<Option<DisplayProfileImage<S>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_image(mut self, value: Option<DisplayProfileImage<S>>) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St: display_profile_state::State> DisplayProfileBuilder<S, St> {
pub fn url(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_url(mut self, value: Option<UriValue<S>>) -> Self {
self._fields.5 = value;
self
}
}
impl<S: BosStr, St: display_profile_state::State> DisplayProfileBuilder<S, St> {
pub fn video(mut self, value: impl Into<Option<DisplayProfileVideo<S>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_video(mut self, value: Option<DisplayProfileVideo<S>>) -> Self {
self._fields.6 = value;
self
}
}
impl<S: BosStr, St> DisplayProfileBuilder<S, St>
where
St: display_profile_state::State,
St::CreatedAt: display_profile_state::IsSet,
{
pub fn build(self) -> DisplayProfile<S> {
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<SmolStr, Data<S>>,
) -> DisplayProfile<S> {
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()
}
}