pub mod game;
pub mod player;
#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::types::string::Datetime;
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 Key<'a> {
pub created_at: Datetime,
#[serde(borrow)]
pub key: CowStr<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct SignatureRef<'a> {
#[serde(borrow)]
pub at_uri: CowStr<'a>,
pub created_at: Datetime,
#[serde(borrow)]
pub signature: CowStr<'a>,
}
impl<'a> LexiconSchema for Key<'a> {
fn nsid() -> &'static str {
"blue.2048.key.defs"
}
fn def_name() -> &'static str {
"key"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_blue_2048_key_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<'a> LexiconSchema for SignatureRef<'a> {
fn nsid() -> &'static str {
"blue.2048.key.defs"
}
fn def_name() -> &'static str {
"signatureRef"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_blue_2048_key_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod key_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;
type Key;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type Key = Unset;
}
pub struct SetCreatedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCreatedAt<S> {}
impl<S: State> State for SetCreatedAt<S> {
type CreatedAt = Set<members::created_at>;
type Key = S::Key;
}
pub struct SetKey<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetKey<S> {}
impl<S: State> State for SetKey<S> {
type CreatedAt = S::CreatedAt;
type Key = Set<members::key>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct key(());
}
}
pub struct KeyBuilder<'a, S: key_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Datetime>, Option<CowStr<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Key<'a> {
pub fn new() -> KeyBuilder<'a, key_state::Empty> {
KeyBuilder::new()
}
}
impl<'a> KeyBuilder<'a, key_state::Empty> {
pub fn new() -> Self {
KeyBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> KeyBuilder<'a, S>
where
S: key_state::State,
S::CreatedAt: key_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> KeyBuilder<'a, key_state::SetCreatedAt<S>> {
self._fields.0 = Option::Some(value.into());
KeyBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> KeyBuilder<'a, S>
where
S: key_state::State,
S::Key: key_state::IsUnset,
{
pub fn key(
mut self,
value: impl Into<CowStr<'a>>,
) -> KeyBuilder<'a, key_state::SetKey<S>> {
self._fields.1 = Option::Some(value.into());
KeyBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> KeyBuilder<'a, S>
where
S: key_state::State,
S::CreatedAt: key_state::IsSet,
S::Key: key_state::IsSet,
{
pub fn build(self) -> Key<'a> {
Key {
created_at: self._fields.0.unwrap(),
key: self._fields.1.unwrap(),
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>,
>,
) -> Key<'a> {
Key {
created_at: self._fields.0.unwrap(),
key: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_blue_2048_key_defs() -> 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("blue.2048.key.defs"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("key"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static(
"A record that holds a did:key used to verify records. Use the collection to know the type of verification. Example blue.2048.key.game is for blue.2048.game records",
),
),
required: Some(
vec![
SmolStr::new_static("key"), 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("key"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"A did:key used to verify records came from an at://2048 authority",
),
),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("signatureRef"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static(
"a signature for an at://2048 record meaning it has been verified by a service. Most likely @2048.blue",
),
),
required: Some(
vec![
SmolStr::new_static("atURI"),
SmolStr::new_static("signature"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("atURI"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The at://uri for the public did:key to verify this 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).",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..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 value minus the signature field",
),
),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod signature_ref_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 AtUri;
type Signature;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type AtUri = Unset;
type Signature = Unset;
type CreatedAt = Unset;
}
pub struct SetAtUri<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetAtUri<S> {}
impl<S: State> State for SetAtUri<S> {
type AtUri = Set<members::at_uri>;
type Signature = S::Signature;
type CreatedAt = S::CreatedAt;
}
pub struct SetSignature<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetSignature<S> {}
impl<S: State> State for SetSignature<S> {
type AtUri = S::AtUri;
type Signature = Set<members::signature>;
type CreatedAt = S::CreatedAt;
}
pub struct SetCreatedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCreatedAt<S> {}
impl<S: State> State for SetCreatedAt<S> {
type AtUri = S::AtUri;
type Signature = S::Signature;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct at_uri(());
pub struct signature(());
pub struct created_at(());
}
}
pub struct SignatureRefBuilder<'a, S: signature_ref_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<CowStr<'a>>, Option<Datetime>, Option<CowStr<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> SignatureRef<'a> {
pub fn new() -> SignatureRefBuilder<'a, signature_ref_state::Empty> {
SignatureRefBuilder::new()
}
}
impl<'a> SignatureRefBuilder<'a, signature_ref_state::Empty> {
pub fn new() -> Self {
SignatureRefBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> SignatureRefBuilder<'a, S>
where
S: signature_ref_state::State,
S::AtUri: signature_ref_state::IsUnset,
{
pub fn at_uri(
mut self,
value: impl Into<CowStr<'a>>,
) -> SignatureRefBuilder<'a, signature_ref_state::SetAtUri<S>> {
self._fields.0 = Option::Some(value.into());
SignatureRefBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> SignatureRefBuilder<'a, S>
where
S: signature_ref_state::State,
S::CreatedAt: signature_ref_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> SignatureRefBuilder<'a, signature_ref_state::SetCreatedAt<S>> {
self._fields.1 = Option::Some(value.into());
SignatureRefBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> SignatureRefBuilder<'a, S>
where
S: signature_ref_state::State,
S::Signature: signature_ref_state::IsUnset,
{
pub fn signature(
mut self,
value: impl Into<CowStr<'a>>,
) -> SignatureRefBuilder<'a, signature_ref_state::SetSignature<S>> {
self._fields.2 = Option::Some(value.into());
SignatureRefBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> SignatureRefBuilder<'a, S>
where
S: signature_ref_state::State,
S::AtUri: signature_ref_state::IsSet,
S::Signature: signature_ref_state::IsSet,
S::CreatedAt: signature_ref_state::IsSet,
{
pub fn build(self) -> SignatureRef<'a> {
SignatureRef {
at_uri: self._fields.0.unwrap(),
created_at: self._fields.1.unwrap(),
signature: self._fields.2.unwrap(),
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>,
>,
) -> SignatureRef<'a> {
SignatureRef {
at_uri: self._fields.0.unwrap(),
created_at: self._fields.1.unwrap(),
signature: self._fields.2.unwrap(),
extra_data: Some(extra_data),
}
}
}