#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, 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::{Did, 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::{Serialize, Deserialize};
use crate::com_atproto::repo::strong_ref::StrongRef;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "games.gamesgamesgamesgames.claimReview",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct ClaimReview<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub approved_games: Option<Vec<AtUri<S>>>,
pub claim: StrongRef<S>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub reason: Option<S>,
pub reviewed_by: Did<S>,
pub status: ClaimReviewStatus<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 ClaimReviewStatus<S: BosStr = DefaultStr> {
Approved,
Denied,
Other(S),
}
impl<S: BosStr> ClaimReviewStatus<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Approved => "approved",
Self::Denied => "denied",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"approved" => Self::Approved,
"denied" => Self::Denied,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for ClaimReviewStatus<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for ClaimReviewStatus<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for ClaimReviewStatus<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 ClaimReviewStatus<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 ClaimReviewStatus<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for ClaimReviewStatus<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = ClaimReviewStatus<S::Output>;
fn into_static(self) -> Self::Output {
match self {
ClaimReviewStatus::Approved => ClaimReviewStatus::Approved,
ClaimReviewStatus::Denied => ClaimReviewStatus::Denied,
ClaimReviewStatus::Other(v) => ClaimReviewStatus::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ClaimReviewGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: ClaimReview<S>,
}
impl<S: BosStr> ClaimReview<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, ClaimReviewRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ClaimReviewRecord;
impl XrpcResp for ClaimReviewRecord {
const NSID: &'static str = "games.gamesgamesgamesgames.claimReview";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ClaimReviewGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<ClaimReviewGetRecordOutput<S>> for ClaimReview<S> {
fn from(output: ClaimReviewGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for ClaimReview<S> {
const NSID: &'static str = "games.gamesgamesgamesgames.claimReview";
type Record = ClaimReviewRecord;
}
impl Collection for ClaimReviewRecord {
const NSID: &'static str = "games.gamesgamesgamesgames.claimReview";
type Record = ClaimReviewRecord;
}
impl<S: BosStr> LexiconSchema for ClaimReview<S> {
fn nsid() -> &'static str {
"games.gamesgamesgamesgames.claimReview"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_games_gamesgamesgamesgames_claimReview()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.reason {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 3000usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("reason"),
max: 3000usize,
actual: count,
});
}
}
}
Ok(())
}
}
pub mod claim_review_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 Status;
type ReviewedBy;
type Claim;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Status = Unset;
type ReviewedBy = Unset;
type Claim = Unset;
type CreatedAt = Unset;
}
pub struct SetStatus<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetStatus<St> {}
impl<St: State> State for SetStatus<St> {
type Status = Set<members::status>;
type ReviewedBy = St::ReviewedBy;
type Claim = St::Claim;
type CreatedAt = St::CreatedAt;
}
pub struct SetReviewedBy<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetReviewedBy<St> {}
impl<St: State> State for SetReviewedBy<St> {
type Status = St::Status;
type ReviewedBy = Set<members::reviewed_by>;
type Claim = St::Claim;
type CreatedAt = St::CreatedAt;
}
pub struct SetClaim<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetClaim<St> {}
impl<St: State> State for SetClaim<St> {
type Status = St::Status;
type ReviewedBy = St::ReviewedBy;
type Claim = Set<members::claim>;
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 Status = St::Status;
type ReviewedBy = St::ReviewedBy;
type Claim = St::Claim;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct status(());
pub struct reviewed_by(());
pub struct claim(());
pub struct created_at(());
}
}
pub struct ClaimReviewBuilder<S: BosStr, St: claim_review_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Vec<AtUri<S>>>,
Option<StrongRef<S>>,
Option<Datetime>,
Option<S>,
Option<Did<S>>,
Option<ClaimReviewStatus<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> ClaimReview<S> {
pub fn new() -> ClaimReviewBuilder<S, claim_review_state::Empty> {
ClaimReviewBuilder::new()
}
}
impl<S: BosStr> ClaimReviewBuilder<S, claim_review_state::Empty> {
pub fn new() -> Self {
ClaimReviewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: claim_review_state::State> ClaimReviewBuilder<S, St> {
pub fn approved_games(mut self, value: impl Into<Option<Vec<AtUri<S>>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_approved_games(mut self, value: Option<Vec<AtUri<S>>>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St> ClaimReviewBuilder<S, St>
where
St: claim_review_state::State,
St::Claim: claim_review_state::IsUnset,
{
pub fn claim(
mut self,
value: impl Into<StrongRef<S>>,
) -> ClaimReviewBuilder<S, claim_review_state::SetClaim<St>> {
self._fields.1 = Option::Some(value.into());
ClaimReviewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ClaimReviewBuilder<S, St>
where
St: claim_review_state::State,
St::CreatedAt: claim_review_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ClaimReviewBuilder<S, claim_review_state::SetCreatedAt<St>> {
self._fields.2 = Option::Some(value.into());
ClaimReviewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: claim_review_state::State> ClaimReviewBuilder<S, St> {
pub fn reason(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_reason(mut self, value: Option<S>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St> ClaimReviewBuilder<S, St>
where
St: claim_review_state::State,
St::ReviewedBy: claim_review_state::IsUnset,
{
pub fn reviewed_by(
mut self,
value: impl Into<Did<S>>,
) -> ClaimReviewBuilder<S, claim_review_state::SetReviewedBy<St>> {
self._fields.4 = Option::Some(value.into());
ClaimReviewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ClaimReviewBuilder<S, St>
where
St: claim_review_state::State,
St::Status: claim_review_state::IsUnset,
{
pub fn status(
mut self,
value: impl Into<ClaimReviewStatus<S>>,
) -> ClaimReviewBuilder<S, claim_review_state::SetStatus<St>> {
self._fields.5 = Option::Some(value.into());
ClaimReviewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ClaimReviewBuilder<S, St>
where
St: claim_review_state::State,
St::Status: claim_review_state::IsSet,
St::ReviewedBy: claim_review_state::IsSet,
St::Claim: claim_review_state::IsSet,
St::CreatedAt: claim_review_state::IsSet,
{
pub fn build(self) -> ClaimReview<S> {
ClaimReview {
approved_games: self._fields.0,
claim: self._fields.1.unwrap(),
created_at: self._fields.2.unwrap(),
reason: self._fields.3,
reviewed_by: self._fields.4.unwrap(),
status: self._fields.5.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> ClaimReview<S> {
ClaimReview {
approved_games: self._fields.0,
claim: self._fields.1.unwrap(),
created_at: self._fields.2.unwrap(),
reason: self._fields.3,
reviewed_by: self._fields.4.unwrap(),
status: self._fields.5.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_games_gamesgamesgamesgames_claimReview() -> 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("games.gamesgamesgamesgames.claimReview"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"A review of 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("claim"), SmolStr::new_static("status"),
SmolStr::new_static("reviewedBy"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("approvedGames"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("claim"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("reason"),
LexObjectProperty::String(LexString {
max_graphemes: Some(3000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("reviewedBy"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("status"),
LexObjectProperty::String(LexString {
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}