#[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.contributionReview",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct ContributionReview<S: BosStr = DefaultStr> {
pub contribution: StrongRef<S>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub reason: Option<S>,
pub reviewed_by: Did<S>,
pub status: ContributionReviewStatus<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 ContributionReviewStatus<S: BosStr = DefaultStr> {
Approved,
Denied,
NeedsRevision,
Other(S),
}
impl<S: BosStr> ContributionReviewStatus<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Approved => "approved",
Self::Denied => "denied",
Self::NeedsRevision => "needsRevision",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"approved" => Self::Approved,
"denied" => Self::Denied,
"needsRevision" => Self::NeedsRevision,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for ContributionReviewStatus<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for ContributionReviewStatus<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for ContributionReviewStatus<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 ContributionReviewStatus<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 ContributionReviewStatus<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for ContributionReviewStatus<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = ContributionReviewStatus<S::Output>;
fn into_static(self) -> Self::Output {
match self {
ContributionReviewStatus::Approved => ContributionReviewStatus::Approved,
ContributionReviewStatus::Denied => ContributionReviewStatus::Denied,
ContributionReviewStatus::NeedsRevision => {
ContributionReviewStatus::NeedsRevision
}
ContributionReviewStatus::Other(v) => {
ContributionReviewStatus::Other(v.into_static())
}
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ContributionReviewGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: ContributionReview<S>,
}
impl<S: BosStr> ContributionReview<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, ContributionReviewRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ContributionReviewRecord;
impl XrpcResp for ContributionReviewRecord {
const NSID: &'static str = "games.gamesgamesgamesgames.contributionReview";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ContributionReviewGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<ContributionReviewGetRecordOutput<S>> for ContributionReview<S> {
fn from(output: ContributionReviewGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for ContributionReview<S> {
const NSID: &'static str = "games.gamesgamesgamesgames.contributionReview";
type Record = ContributionReviewRecord;
}
impl Collection for ContributionReviewRecord {
const NSID: &'static str = "games.gamesgamesgamesgames.contributionReview";
type Record = ContributionReviewRecord;
}
impl<S: BosStr> LexiconSchema for ContributionReview<S> {
fn nsid() -> &'static str {
"games.gamesgamesgamesgames.contributionReview"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_games_gamesgamesgamesgames_contributionReview()
}
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 contribution_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 Contribution;
type CreatedAt;
type ReviewedBy;
type Status;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Contribution = Unset;
type CreatedAt = Unset;
type ReviewedBy = Unset;
type Status = Unset;
}
pub struct SetContribution<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetContribution<St> {}
impl<St: State> State for SetContribution<St> {
type Contribution = Set<members::contribution>;
type CreatedAt = St::CreatedAt;
type ReviewedBy = St::ReviewedBy;
type Status = St::Status;
}
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 Contribution = St::Contribution;
type CreatedAt = Set<members::created_at>;
type ReviewedBy = St::ReviewedBy;
type Status = St::Status;
}
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 Contribution = St::Contribution;
type CreatedAt = St::CreatedAt;
type ReviewedBy = Set<members::reviewed_by>;
type Status = St::Status;
}
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 Contribution = St::Contribution;
type CreatedAt = St::CreatedAt;
type ReviewedBy = St::ReviewedBy;
type Status = Set<members::status>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct contribution(());
pub struct created_at(());
pub struct reviewed_by(());
pub struct status(());
}
}
pub struct ContributionReviewBuilder<
St: contribution_review_state::State,
S: BosStr = DefaultStr,
> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<StrongRef<S>>,
Option<Datetime>,
Option<S>,
Option<Did<S>>,
Option<ContributionReviewStatus<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl ContributionReview<DefaultStr> {
pub fn new() -> ContributionReviewBuilder<
contribution_review_state::Empty,
DefaultStr,
> {
ContributionReviewBuilder::new()
}
}
impl<S: BosStr> ContributionReview<S> {
pub fn builder() -> ContributionReviewBuilder<contribution_review_state::Empty, S> {
ContributionReviewBuilder::builder()
}
}
impl ContributionReviewBuilder<contribution_review_state::Empty, DefaultStr> {
pub fn new() -> Self {
ContributionReviewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> ContributionReviewBuilder<contribution_review_state::Empty, S> {
pub fn builder() -> Self {
ContributionReviewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> ContributionReviewBuilder<St, S>
where
St: contribution_review_state::State,
St::Contribution: contribution_review_state::IsUnset,
{
pub fn contribution(
mut self,
value: impl Into<StrongRef<S>>,
) -> ContributionReviewBuilder<contribution_review_state::SetContribution<St>, S> {
self._fields.0 = Option::Some(value.into());
ContributionReviewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> ContributionReviewBuilder<St, S>
where
St: contribution_review_state::State,
St::CreatedAt: contribution_review_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ContributionReviewBuilder<contribution_review_state::SetCreatedAt<St>, S> {
self._fields.1 = Option::Some(value.into());
ContributionReviewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: contribution_review_state::State, S: BosStr> ContributionReviewBuilder<St, S> {
pub fn reason(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_reason(mut self, value: Option<S>) -> Self {
self._fields.2 = value;
self
}
}
impl<St, S: BosStr> ContributionReviewBuilder<St, S>
where
St: contribution_review_state::State,
St::ReviewedBy: contribution_review_state::IsUnset,
{
pub fn reviewed_by(
mut self,
value: impl Into<Did<S>>,
) -> ContributionReviewBuilder<contribution_review_state::SetReviewedBy<St>, S> {
self._fields.3 = Option::Some(value.into());
ContributionReviewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> ContributionReviewBuilder<St, S>
where
St: contribution_review_state::State,
St::Status: contribution_review_state::IsUnset,
{
pub fn status(
mut self,
value: impl Into<ContributionReviewStatus<S>>,
) -> ContributionReviewBuilder<contribution_review_state::SetStatus<St>, S> {
self._fields.4 = Option::Some(value.into());
ContributionReviewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> ContributionReviewBuilder<St, S>
where
St: contribution_review_state::State,
St::Contribution: contribution_review_state::IsSet,
St::CreatedAt: contribution_review_state::IsSet,
St::ReviewedBy: contribution_review_state::IsSet,
St::Status: contribution_review_state::IsSet,
{
pub fn build(self) -> ContributionReview<S> {
ContributionReview {
contribution: self._fields.0.unwrap(),
created_at: self._fields.1.unwrap(),
reason: self._fields.2,
reviewed_by: self._fields.3.unwrap(),
status: self._fields.4.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> ContributionReview<S> {
ContributionReview {
contribution: self._fields.0.unwrap(),
created_at: self._fields.1.unwrap(),
reason: self._fields.2,
reviewed_by: self._fields.3.unwrap(),
status: self._fields.4.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_games_gamesgamesgamesgames_contributionReview() -> 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.contributionReview"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"A review of a community contribution by a moderator.",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("contribution"),
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("contribution"),
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()
}
}