#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{BosStr, CowStr, 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};
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;
use crate::org_hypercerts::SmallImage;
use crate::org_hypercerts::Uri;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "org.hypercerts.claim.contributorInformation",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct ContributorInformation<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 identifier: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub image: Option<ContributorInformationImage<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 ContributorInformationImage<S: BosStr = DefaultStr> {
#[serde(rename = "org.hypercerts.defs#uri")]
Uri(Box<Uri<S>>),
#[serde(rename = "org.hypercerts.defs#smallImage")]
SmallImage(Box<SmallImage<S>>),
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ContributorInformationGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: ContributorInformation<S>,
}
impl<S: BosStr> ContributorInformation<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, ContributorInformationRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ContributorInformationRecord;
impl XrpcResp for ContributorInformationRecord {
const NSID: &'static str = "org.hypercerts.claim.contributorInformation";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ContributorInformationGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<ContributorInformationGetRecordOutput<S>> for ContributorInformation<S> {
fn from(output: ContributorInformationGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for ContributorInformation<S> {
const NSID: &'static str = "org.hypercerts.claim.contributorInformation";
type Record = ContributorInformationRecord;
}
impl Collection for ContributorInformationRecord {
const NSID: &'static str = "org.hypercerts.claim.contributorInformation";
type Record = ContributorInformationRecord;
}
impl<S: BosStr> LexiconSchema for ContributorInformation<S> {
fn nsid() -> &'static str {
"org.hypercerts.claim.contributorInformation"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_org_hypercerts_claim_contributorInformation()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.display_name {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 100usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("display_name"),
max: 100usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.identifier {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 2048usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("identifier"),
max: 2048usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
pub mod contributor_information_state {
pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
#[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 ContributorInformationBuilder<S: BosStr, St: contributor_information_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Datetime>,
Option<S>,
Option<S>,
Option<ContributorInformationImage<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> ContributorInformation<S> {
pub fn new() -> ContributorInformationBuilder<S, contributor_information_state::Empty> {
ContributorInformationBuilder::new()
}
}
impl<S: BosStr> ContributorInformationBuilder<S, contributor_information_state::Empty> {
pub fn new() -> Self {
ContributorInformationBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ContributorInformationBuilder<S, St>
where
St: contributor_information_state::State,
St::CreatedAt: contributor_information_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ContributorInformationBuilder<S, contributor_information_state::SetCreatedAt<St>> {
self._fields.0 = Option::Some(value.into());
ContributorInformationBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: contributor_information_state::State> ContributorInformationBuilder<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: contributor_information_state::State> ContributorInformationBuilder<S, St> {
pub fn identifier(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_identifier(mut self, value: Option<S>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St: contributor_information_state::State> ContributorInformationBuilder<S, St> {
pub fn image(mut self, value: impl Into<Option<ContributorInformationImage<S>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_image(mut self, value: Option<ContributorInformationImage<S>>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St> ContributorInformationBuilder<S, St>
where
St: contributor_information_state::State,
St::CreatedAt: contributor_information_state::IsSet,
{
pub fn build(self) -> ContributorInformation<S> {
ContributorInformation {
created_at: self._fields.0.unwrap(),
display_name: self._fields.1,
identifier: self._fields.2,
image: self._fields.3,
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> ContributorInformation<S> {
ContributorInformation {
created_at: self._fields.0.unwrap(),
display_name: self._fields.1,
identifier: self._fields.2,
image: self._fields.3,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_org_hypercerts_claim_contributorInformation() -> LexiconDoc<'static> {
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("org.hypercerts.claim.contributorInformation"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"Contributor information including identifier, display name, and image.",
),
),
key: Some(CowStr::new_static("tid")),
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(
"Human-readable name for the contributor as it should appear in UI.",
),
),
max_length: Some(100usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("identifier"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"DID (did:plc:...) or URI to a social profile of the contributor.",
),
),
max_length: Some(2048usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("image"),
LexObjectProperty::Union(LexRefUnion {
description: Some(
CowStr::new_static(
"The contributor visual representation 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
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}