#[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, UriValue};
use jacquard_common::types::uri::{RecordUri, UriError};
use jacquard_common::types::value::Data;
use jacquard_common::xrpc::XrpcResp;
use jacquard_derive::{IntoStatic, lexicon};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
use crate::com_atproto::repo::strong_ref::StrongRef;
#[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.hyperboards.contributor",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Contributor<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub circular_image: Option<bool>,
pub contributor_ref: StrongRef<S>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub hover_iframe_url: Option<UriValue<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub hover_image_url: Option<UriValue<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub url: Option<UriValue<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub video_url: Option<UriValue<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ContributorGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Contributor<S>,
}
impl<S: BosStr> Contributor<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, ContributorRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ContributorRecord;
impl XrpcResp for ContributorRecord {
const NSID: &'static str = "org.hyperboards.contributor";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ContributorGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<ContributorGetRecordOutput<S>> for Contributor<S> {
fn from(output: ContributorGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Contributor<S> {
const NSID: &'static str = "org.hyperboards.contributor";
type Record = ContributorRecord;
}
impl Collection for ContributorRecord {
const NSID: &'static str = "org.hyperboards.contributor";
type Record = ContributorRecord;
}
impl<S: BosStr> LexiconSchema for Contributor<S> {
fn nsid() -> &'static str {
"org.hyperboards.contributor"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_org_hyperboards_contributor()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod contributor_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 ContributorRef;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type ContributorRef = Unset;
type CreatedAt = Unset;
}
pub struct SetContributorRef<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetContributorRef<St> {}
impl<St: State> State for SetContributorRef<St> {
type ContributorRef = Set<members::contributor_ref>;
type CreatedAt = St::CreatedAt;
}
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 ContributorRef = St::ContributorRef;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct contributor_ref(());
pub struct created_at(());
}
}
pub struct ContributorBuilder<S: BosStr, St: contributor_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<bool>,
Option<StrongRef<S>>,
Option<Datetime>,
Option<UriValue<S>>,
Option<UriValue<S>>,
Option<UriValue<S>>,
Option<UriValue<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Contributor<S> {
pub fn new() -> ContributorBuilder<S, contributor_state::Empty> {
ContributorBuilder::new()
}
}
impl<S: BosStr> ContributorBuilder<S, contributor_state::Empty> {
pub fn new() -> Self {
ContributorBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: contributor_state::State> ContributorBuilder<S, St> {
pub fn circular_image(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_circular_image(mut self, value: Option<bool>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St> ContributorBuilder<S, St>
where
St: contributor_state::State,
St::ContributorRef: contributor_state::IsUnset,
{
pub fn contributor_ref(
mut self,
value: impl Into<StrongRef<S>>,
) -> ContributorBuilder<S, contributor_state::SetContributorRef<St>> {
self._fields.1 = Option::Some(value.into());
ContributorBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ContributorBuilder<S, St>
where
St: contributor_state::State,
St::CreatedAt: contributor_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ContributorBuilder<S, contributor_state::SetCreatedAt<St>> {
self._fields.2 = Option::Some(value.into());
ContributorBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: contributor_state::State> ContributorBuilder<S, St> {
pub fn hover_iframe_url(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_hover_iframe_url(mut self, value: Option<UriValue<S>>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St: contributor_state::State> ContributorBuilder<S, St> {
pub fn hover_image_url(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_hover_image_url(mut self, value: Option<UriValue<S>>) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St: contributor_state::State> ContributorBuilder<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: contributor_state::State> ContributorBuilder<S, St> {
pub fn video_url(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_video_url(mut self, value: Option<UriValue<S>>) -> Self {
self._fields.6 = value;
self
}
}
impl<S: BosStr, St> ContributorBuilder<S, St>
where
St: contributor_state::State,
St::ContributorRef: contributor_state::IsSet,
St::CreatedAt: contributor_state::IsSet,
{
pub fn build(self) -> Contributor<S> {
Contributor {
circular_image: self._fields.0,
contributor_ref: self._fields.1.unwrap(),
created_at: self._fields.2.unwrap(),
hover_iframe_url: self._fields.3,
hover_image_url: self._fields.4,
url: self._fields.5,
video_url: self._fields.6,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Contributor<S> {
Contributor {
circular_image: self._fields.0,
contributor_ref: self._fields.1.unwrap(),
created_at: self._fields.2.unwrap(),
hover_iframe_url: self._fields.3,
hover_image_url: self._fields.4,
url: self._fields.5,
video_url: self._fields.6,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_org_hyperboards_contributor() -> 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.hyperboards.contributor"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static(
"Per-contributor presentation defaults, reusable across boards.",
)),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![
SmolStr::new_static("contributorRef"),
SmolStr::new_static("createdAt"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("circularImage"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("contributorRef"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"Timestamp when the contributor record was created",
)),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("hoverIframeUrl"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("Iframe shown on hover")),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("hoverImageUrl"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"Image overlay shown on hover",
)),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("url"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"Link URL for this contributor",
)),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("videoUrl"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"Direct video or Instagram URL",
)),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}