#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_common::deps::bytes::Bytes;
#[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};
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};
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct SupporterProof<'a> {
#[serde(borrow)]
pub cid: Cid<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub key: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default, with = "jacquard_common::opt_serde_bytes_helper")]
pub signature: Option<Bytes>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct SupporterProofGetRecordOutput<'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: SupporterProof<'a>,
}
impl<'a> SupporterProof<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, SupporterProofRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct SupporterProofRecord;
impl XrpcResp for SupporterProofRecord {
const NSID: &'static str = "com.atprotofans.supporterProof";
const ENCODING: &'static str = "application/json";
type Output<'de> = SupporterProofGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<SupporterProofGetRecordOutput<'_>> for SupporterProof<'_> {
fn from(output: SupporterProofGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for SupporterProof<'_> {
const NSID: &'static str = "com.atprotofans.supporterProof";
type Record = SupporterProofRecord;
}
impl Collection for SupporterProofRecord {
const NSID: &'static str = "com.atprotofans.supporterProof";
type Record = SupporterProofRecord;
}
impl<'a> LexiconSchema for SupporterProof<'a> {
fn nsid() -> &'static str {
"com.atprotofans.supporterProof"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_com_atprotofans_supporterProof()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod supporter_proof_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;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Cid = 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>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct cid(());
}
}
pub struct SupporterProofBuilder<'a, S: supporter_proof_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Cid<'a>>, Option<CowStr<'a>>, Option<Bytes>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> SupporterProof<'a> {
pub fn new() -> SupporterProofBuilder<'a, supporter_proof_state::Empty> {
SupporterProofBuilder::new()
}
}
impl<'a> SupporterProofBuilder<'a, supporter_proof_state::Empty> {
pub fn new() -> Self {
SupporterProofBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> SupporterProofBuilder<'a, S>
where
S: supporter_proof_state::State,
S::Cid: supporter_proof_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<Cid<'a>>,
) -> SupporterProofBuilder<'a, supporter_proof_state::SetCid<S>> {
self._fields.0 = Option::Some(value.into());
SupporterProofBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: supporter_proof_state::State> SupporterProofBuilder<'a, S> {
pub fn key(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_key(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: supporter_proof_state::State> SupporterProofBuilder<'a, S> {
pub fn signature(mut self, value: impl Into<Option<Bytes>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_signature(mut self, value: Option<Bytes>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> SupporterProofBuilder<'a, S>
where
S: supporter_proof_state::State,
S::Cid: supporter_proof_state::IsSet,
{
pub fn build(self) -> SupporterProof<'a> {
SupporterProof {
cid: self._fields.0.unwrap(),
key: self._fields.1,
signature: self._fields.2,
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>,
>,
) -> SupporterProof<'a> {
SupporterProof {
cid: self._fields.0.unwrap(),
key: self._fields.1,
signature: self._fields.2,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_com_atprotofans_supporterProof() -> 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("com.atprotofans.supporterProof"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"Attestation proof for a supporter relationship. When inline, cid and signature are required. When remote, only cid is required.",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![SmolStr::new_static("cid")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("cid"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"CID of the proof record. Required for both inline and remote proofs.",
),
),
format: Some(LexStringFormat::Cid),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("key"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Signing key (for inline proofs)."),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("signature"),
LexObjectProperty::Bytes(LexBytes { ..Default::default() }),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}