pub mod game;
pub mod stats;
#[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::string::{AtUri, Datetime, Did};
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
#[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",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct VerificationRef<S: BosStr = DefaultStr> {
pub created_at: Datetime,
pub key_ref: AtUri<S>,
pub record_ref: AtUri<S>,
pub signature: S,
pub subject: Did<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> LexiconSchema for VerificationRef<S> {
fn nsid() -> &'static str {
"blue.2048.verification.defs"
}
fn def_name() -> &'static str {
"verificationRef"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_blue_2048_verification_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod verification_ref_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 KeyRef;
type Signature;
type RecordRef;
type Subject;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type KeyRef = Unset;
type Signature = Unset;
type RecordRef = Unset;
type Subject = Unset;
type CreatedAt = Unset;
}
pub struct SetKeyRef<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetKeyRef<St> {}
impl<St: State> State for SetKeyRef<St> {
type KeyRef = Set<members::key_ref>;
type Signature = St::Signature;
type RecordRef = St::RecordRef;
type Subject = St::Subject;
type CreatedAt = St::CreatedAt;
}
pub struct SetSignature<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetSignature<St> {}
impl<St: State> State for SetSignature<St> {
type KeyRef = St::KeyRef;
type Signature = Set<members::signature>;
type RecordRef = St::RecordRef;
type Subject = St::Subject;
type CreatedAt = St::CreatedAt;
}
pub struct SetRecordRef<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRecordRef<St> {}
impl<St: State> State for SetRecordRef<St> {
type KeyRef = St::KeyRef;
type Signature = St::Signature;
type RecordRef = Set<members::record_ref>;
type Subject = St::Subject;
type CreatedAt = St::CreatedAt;
}
pub struct SetSubject<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetSubject<St> {}
impl<St: State> State for SetSubject<St> {
type KeyRef = St::KeyRef;
type Signature = St::Signature;
type RecordRef = St::RecordRef;
type Subject = Set<members::subject>;
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 KeyRef = St::KeyRef;
type Signature = St::Signature;
type RecordRef = St::RecordRef;
type Subject = St::Subject;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct key_ref(());
pub struct signature(());
pub struct record_ref(());
pub struct subject(());
pub struct created_at(());
}
}
pub struct VerificationRefBuilder<S: BosStr, St: verification_ref_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Datetime>,
Option<AtUri<S>>,
Option<AtUri<S>>,
Option<S>,
Option<Did<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> VerificationRef<S> {
pub fn new() -> VerificationRefBuilder<S, verification_ref_state::Empty> {
VerificationRefBuilder::new()
}
}
impl<S: BosStr> VerificationRefBuilder<S, verification_ref_state::Empty> {
pub fn new() -> Self {
VerificationRefBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> VerificationRefBuilder<S, St>
where
St: verification_ref_state::State,
St::CreatedAt: verification_ref_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> VerificationRefBuilder<S, verification_ref_state::SetCreatedAt<St>> {
self._fields.0 = Option::Some(value.into());
VerificationRefBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> VerificationRefBuilder<S, St>
where
St: verification_ref_state::State,
St::KeyRef: verification_ref_state::IsUnset,
{
pub fn key_ref(
mut self,
value: impl Into<AtUri<S>>,
) -> VerificationRefBuilder<S, verification_ref_state::SetKeyRef<St>> {
self._fields.1 = Option::Some(value.into());
VerificationRefBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> VerificationRefBuilder<S, St>
where
St: verification_ref_state::State,
St::RecordRef: verification_ref_state::IsUnset,
{
pub fn record_ref(
mut self,
value: impl Into<AtUri<S>>,
) -> VerificationRefBuilder<S, verification_ref_state::SetRecordRef<St>> {
self._fields.2 = Option::Some(value.into());
VerificationRefBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> VerificationRefBuilder<S, St>
where
St: verification_ref_state::State,
St::Signature: verification_ref_state::IsUnset,
{
pub fn signature(
mut self,
value: impl Into<S>,
) -> VerificationRefBuilder<S, verification_ref_state::SetSignature<St>> {
self._fields.3 = Option::Some(value.into());
VerificationRefBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> VerificationRefBuilder<S, St>
where
St: verification_ref_state::State,
St::Subject: verification_ref_state::IsUnset,
{
pub fn subject(
mut self,
value: impl Into<Did<S>>,
) -> VerificationRefBuilder<S, verification_ref_state::SetSubject<St>> {
self._fields.4 = Option::Some(value.into());
VerificationRefBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> VerificationRefBuilder<S, St>
where
St: verification_ref_state::State,
St::KeyRef: verification_ref_state::IsSet,
St::Signature: verification_ref_state::IsSet,
St::RecordRef: verification_ref_state::IsSet,
St::Subject: verification_ref_state::IsSet,
St::CreatedAt: verification_ref_state::IsSet,
{
pub fn build(self) -> VerificationRef<S> {
VerificationRef {
created_at: self._fields.0.unwrap(),
key_ref: self._fields.1.unwrap(),
record_ref: self._fields.2.unwrap(),
signature: self._fields.3.unwrap(),
subject: self._fields.4.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> VerificationRef<S> {
VerificationRef {
created_at: self._fields.0.unwrap(),
key_ref: self._fields.1.unwrap(),
record_ref: self._fields.2.unwrap(),
signature: self._fields.3.unwrap(),
subject: self._fields.4.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_blue_2048_verification_defs() -> 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("blue.2048.verification.defs"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("verificationRef"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static(
"Holds the signature for another record showing it has verified it to the best of it's ability and it should be trusted if the signatures match.",
),
),
required: Some(
vec![
SmolStr::new_static("keyRef"),
SmolStr::new_static("recordRef"),
SmolStr::new_static("subject"),
SmolStr::new_static("signature"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("keyRef"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The at://uri for the public did:key to verify the remote record. This also counts as the authority of the verification (example @2048.blue). As well as the type of verification by the collection name (blue.2048.key.game).",
),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("recordRef"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The at://uri for the record that is being verified.",
),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("signature"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The public verifiable signature of the record. Serialization of the records valued",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("subject"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"DID of the subject the verification applies to.",
),
),
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}