#[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};
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",
rename = "games.gamesgamesgamesgames.claim",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Claim<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub contact: Option<S>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub games: Option<Vec<AtUri<S>>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub message: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub org: Option<AtUri<S>>,
pub r#type: ClaimType<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum ClaimType<S: BosStr = DefaultStr> {
Game,
Org,
Other(S),
}
impl<S: BosStr> ClaimType<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Game => "game",
Self::Org => "org",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"game" => Self::Game,
"org" => Self::Org,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for ClaimType<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for ClaimType<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for ClaimType<S> {
fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
where
Ser: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, S: Deserialize<'de> + BosStr> Deserialize<'de> for ClaimType<S> {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = S::deserialize(deserializer)?;
Ok(Self::from_value(s))
}
}
impl<S: BosStr + Default> Default for ClaimType<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for ClaimType<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = ClaimType<S::Output>;
fn into_static(self) -> Self::Output {
match self {
ClaimType::Game => ClaimType::Game,
ClaimType::Org => ClaimType::Org,
ClaimType::Other(v) => ClaimType::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ClaimGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Claim<S>,
}
impl<S: BosStr> Claim<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, ClaimRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ClaimRecord;
impl XrpcResp for ClaimRecord {
const NSID: &'static str = "games.gamesgamesgamesgames.claim";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ClaimGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<ClaimGetRecordOutput<S>> for Claim<S> {
fn from(output: ClaimGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Claim<S> {
const NSID: &'static str = "games.gamesgamesgamesgames.claim";
type Record = ClaimRecord;
}
impl Collection for ClaimRecord {
const NSID: &'static str = "games.gamesgamesgamesgames.claim";
type Record = ClaimRecord;
}
impl<S: BosStr> LexiconSchema for Claim<S> {
fn nsid() -> &'static str {
"games.gamesgamesgamesgames.claim"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_games_gamesgamesgamesgames_claim()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.contact {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 500usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("contact"),
max: 500usize,
actual: count,
});
}
}
}
if let Some(ref value) = self.message {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 3000usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("message"),
max: 3000usize,
actual: count,
});
}
}
}
Ok(())
}
}
pub mod claim_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;
type Type;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type Type = 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>;
type Type = St::Type;
}
pub struct SetType<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetType<St> {}
impl<St: State> State for SetType<St> {
type CreatedAt = St::CreatedAt;
type Type = Set<members::r#type>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct r#type(());
}
}
pub struct ClaimBuilder<S: BosStr, St: claim_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<S>,
Option<Datetime>,
Option<Vec<AtUri<S>>>,
Option<S>,
Option<AtUri<S>>,
Option<ClaimType<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Claim<S> {
pub fn new() -> ClaimBuilder<S, claim_state::Empty> {
ClaimBuilder::new()
}
}
impl<S: BosStr> ClaimBuilder<S, claim_state::Empty> {
pub fn new() -> Self {
ClaimBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: claim_state::State> ClaimBuilder<S, St> {
pub fn contact(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_contact(mut self, value: Option<S>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St> ClaimBuilder<S, St>
where
St: claim_state::State,
St::CreatedAt: claim_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ClaimBuilder<S, claim_state::SetCreatedAt<St>> {
self._fields.1 = Option::Some(value.into());
ClaimBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: claim_state::State> ClaimBuilder<S, St> {
pub fn games(mut self, value: impl Into<Option<Vec<AtUri<S>>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_games(mut self, value: Option<Vec<AtUri<S>>>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St: claim_state::State> ClaimBuilder<S, St> {
pub fn message(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_message(mut self, value: Option<S>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St: claim_state::State> ClaimBuilder<S, St> {
pub fn org(mut self, value: impl Into<Option<AtUri<S>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_org(mut self, value: Option<AtUri<S>>) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St> ClaimBuilder<S, St>
where
St: claim_state::State,
St::Type: claim_state::IsUnset,
{
pub fn r#type(
mut self,
value: impl Into<ClaimType<S>>,
) -> ClaimBuilder<S, claim_state::SetType<St>> {
self._fields.5 = Option::Some(value.into());
ClaimBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ClaimBuilder<S, St>
where
St: claim_state::State,
St::CreatedAt: claim_state::IsSet,
St::Type: claim_state::IsSet,
{
pub fn build(self) -> Claim<S> {
Claim {
contact: self._fields.0,
created_at: self._fields.1.unwrap(),
games: self._fields.2,
message: self._fields.3,
org: self._fields.4,
r#type: self._fields.5.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Claim<S> {
Claim {
contact: self._fields.0,
created_at: self._fields.1.unwrap(),
games: self._fields.2,
message: self._fields.3,
org: self._fields.4,
r#type: self._fields.5.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_games_gamesgamesgamesgames_claim() -> 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("games.gamesgamesgamesgames.claim"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"A claim for ownership of game or organization records.",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("type"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("contact"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Contact information for the claimant (filtered from responses unless caller is admin)",
),
),
max_graphemes: Some(500usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("games"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("message"),
LexObjectProperty::String(LexString {
max_graphemes: Some(3000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("org"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("type"),
LexObjectProperty::String(LexString {
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}