#[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::collection::{Collection, RecordError};
use jacquard_common::types::string::{Did, AtUri, Cid, Datetime};
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};
use crate::com_atproto::repo::strong_ref::StrongRef;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ClaimReview<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub approved_games: Option<Vec<AtUri<'a>>>,
#[serde(borrow)]
pub claim: StrongRef<'a>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub reason: Option<CowStr<'a>>,
#[serde(borrow)]
pub reviewed_by: Did<'a>,
#[serde(borrow)]
pub status: ClaimReviewStatus<'a>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum ClaimReviewStatus<'a> {
Approved,
Denied,
Other(CowStr<'a>),
}
impl<'a> ClaimReviewStatus<'a> {
pub fn as_str(&self) -> &str {
match self {
Self::Approved => "approved",
Self::Denied => "denied",
Self::Other(s) => s.as_ref(),
}
}
}
impl<'a> From<&'a str> for ClaimReviewStatus<'a> {
fn from(s: &'a str) -> Self {
match s {
"approved" => Self::Approved,
"denied" => Self::Denied,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> From<String> for ClaimReviewStatus<'a> {
fn from(s: String) -> Self {
match s.as_str() {
"approved" => Self::Approved,
"denied" => Self::Denied,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> core::fmt::Display for ClaimReviewStatus<'a> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<'a> AsRef<str> for ClaimReviewStatus<'a> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<'a> serde::Serialize for ClaimReviewStatus<'a> {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, 'a> serde::Deserialize<'de> for ClaimReviewStatus<'a>
where
'de: 'a,
{
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = <&'de str>::deserialize(deserializer)?;
Ok(Self::from(s))
}
}
impl<'a> Default for ClaimReviewStatus<'a> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl jacquard_common::IntoStatic for ClaimReviewStatus<'_> {
type Output = ClaimReviewStatus<'static>;
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<'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: ClaimReview<'a>,
}
impl<'a> ClaimReview<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, ClaimReviewRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[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<'de> = ClaimReviewGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<ClaimReviewGetRecordOutput<'_>> for ClaimReview<'_> {
fn from(output: ClaimReviewGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for ClaimReview<'_> {
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<'a> LexiconSchema for ClaimReview<'a> {
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 Claim;
type ReviewedBy;
type CreatedAt;
type Status;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Claim = Unset;
type ReviewedBy = Unset;
type CreatedAt = Unset;
type Status = Unset;
}
pub struct SetClaim<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetClaim<S> {}
impl<S: State> State for SetClaim<S> {
type Claim = Set<members::claim>;
type ReviewedBy = S::ReviewedBy;
type CreatedAt = S::CreatedAt;
type Status = S::Status;
}
pub struct SetReviewedBy<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetReviewedBy<S> {}
impl<S: State> State for SetReviewedBy<S> {
type Claim = S::Claim;
type ReviewedBy = Set<members::reviewed_by>;
type CreatedAt = S::CreatedAt;
type Status = S::Status;
}
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 Claim = S::Claim;
type ReviewedBy = S::ReviewedBy;
type CreatedAt = Set<members::created_at>;
type Status = S::Status;
}
pub struct SetStatus<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetStatus<S> {}
impl<S: State> State for SetStatus<S> {
type Claim = S::Claim;
type ReviewedBy = S::ReviewedBy;
type CreatedAt = S::CreatedAt;
type Status = Set<members::status>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct claim(());
pub struct reviewed_by(());
pub struct created_at(());
pub struct status(());
}
}
pub struct ClaimReviewBuilder<'a, S: claim_review_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Vec<AtUri<'a>>>,
Option<StrongRef<'a>>,
Option<Datetime>,
Option<CowStr<'a>>,
Option<Did<'a>>,
Option<ClaimReviewStatus<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> ClaimReview<'a> {
pub fn new() -> ClaimReviewBuilder<'a, claim_review_state::Empty> {
ClaimReviewBuilder::new()
}
}
impl<'a> ClaimReviewBuilder<'a, claim_review_state::Empty> {
pub fn new() -> Self {
ClaimReviewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: claim_review_state::State> ClaimReviewBuilder<'a, S> {
pub fn approved_games(mut self, value: impl Into<Option<Vec<AtUri<'a>>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_approved_games(mut self, value: Option<Vec<AtUri<'a>>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S> ClaimReviewBuilder<'a, S>
where
S: claim_review_state::State,
S::Claim: claim_review_state::IsUnset,
{
pub fn claim(
mut self,
value: impl Into<StrongRef<'a>>,
) -> ClaimReviewBuilder<'a, claim_review_state::SetClaim<S>> {
self._fields.1 = Option::Some(value.into());
ClaimReviewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ClaimReviewBuilder<'a, S>
where
S: claim_review_state::State,
S::CreatedAt: claim_review_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ClaimReviewBuilder<'a, claim_review_state::SetCreatedAt<S>> {
self._fields.2 = Option::Some(value.into());
ClaimReviewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: claim_review_state::State> ClaimReviewBuilder<'a, S> {
pub fn reason(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_reason(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S> ClaimReviewBuilder<'a, S>
where
S: claim_review_state::State,
S::ReviewedBy: claim_review_state::IsUnset,
{
pub fn reviewed_by(
mut self,
value: impl Into<Did<'a>>,
) -> ClaimReviewBuilder<'a, claim_review_state::SetReviewedBy<S>> {
self._fields.4 = Option::Some(value.into());
ClaimReviewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ClaimReviewBuilder<'a, S>
where
S: claim_review_state::State,
S::Status: claim_review_state::IsUnset,
{
pub fn status(
mut self,
value: impl Into<ClaimReviewStatus<'a>>,
) -> ClaimReviewBuilder<'a, claim_review_state::SetStatus<S>> {
self._fields.5 = Option::Some(value.into());
ClaimReviewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ClaimReviewBuilder<'a, S>
where
S: claim_review_state::State,
S::Claim: claim_review_state::IsSet,
S::ReviewedBy: claim_review_state::IsSet,
S::CreatedAt: claim_review_state::IsSet,
S::Status: claim_review_state::IsSet,
{
pub fn build(self) -> ClaimReview<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> ClaimReview<'a> {
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()
}
}