#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, DefaultStr, FromStaticStr};
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::AtUri;
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct CreateContribution<S: BosStr = DefaultStr> {
pub changes: Data<S>,
pub contribution_type: CreateContributionContributionType<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub message: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub subject: Option<AtUri<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 CreateContributionContributionType<S: BosStr = DefaultStr> {
Correction,
Addition,
NewGame,
Other(S),
}
impl<S: BosStr> CreateContributionContributionType<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Correction => "correction",
Self::Addition => "addition",
Self::NewGame => "newGame",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"correction" => Self::Correction,
"addition" => Self::Addition,
"newGame" => Self::NewGame,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for CreateContributionContributionType<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for CreateContributionContributionType<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for CreateContributionContributionType<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 CreateContributionContributionType<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 CreateContributionContributionType<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for CreateContributionContributionType<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = CreateContributionContributionType<S::Output>;
fn into_static(self) -> Self::Output {
match self {
CreateContributionContributionType::Correction => {
CreateContributionContributionType::Correction
}
CreateContributionContributionType::Addition => {
CreateContributionContributionType::Addition
}
CreateContributionContributionType::NewGame => {
CreateContributionContributionType::NewGame
}
CreateContributionContributionType::Other(v) => {
CreateContributionContributionType::Other(v.into_static())
}
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct CreateContributionOutput<S: BosStr = DefaultStr> {
pub uri: AtUri<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct CreateContributionResponse;
impl jacquard_common::xrpc::XrpcResp for CreateContributionResponse {
const NSID: &'static str = "games.gamesgamesgamesgames.createContribution";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = CreateContributionOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for CreateContribution<S> {
const NSID: &'static str = "games.gamesgamesgamesgames.createContribution";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = CreateContributionResponse;
}
pub struct CreateContributionRequest;
impl jacquard_common::xrpc::XrpcEndpoint for CreateContributionRequest {
const PATH: &'static str = "/xrpc/games.gamesgamesgamesgames.createContribution";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<S: BosStr> = CreateContribution<S>;
type Response = CreateContributionResponse;
}
pub mod create_contribution_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 Changes;
type ContributionType;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Changes = Unset;
type ContributionType = Unset;
}
pub struct SetChanges<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetChanges<St> {}
impl<St: State> State for SetChanges<St> {
type Changes = Set<members::changes>;
type ContributionType = St::ContributionType;
}
pub struct SetContributionType<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetContributionType<St> {}
impl<St: State> State for SetContributionType<St> {
type Changes = St::Changes;
type ContributionType = Set<members::contribution_type>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct changes(());
pub struct contribution_type(());
}
}
pub struct CreateContributionBuilder<
St: create_contribution_state::State,
S: BosStr = DefaultStr,
> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Data<S>>,
Option<CreateContributionContributionType<S>>,
Option<S>,
Option<AtUri<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl CreateContribution<DefaultStr> {
pub fn new() -> CreateContributionBuilder<
create_contribution_state::Empty,
DefaultStr,
> {
CreateContributionBuilder::new()
}
}
impl<S: BosStr> CreateContribution<S> {
pub fn builder() -> CreateContributionBuilder<create_contribution_state::Empty, S> {
CreateContributionBuilder::builder()
}
}
impl CreateContributionBuilder<create_contribution_state::Empty, DefaultStr> {
pub fn new() -> Self {
CreateContributionBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> CreateContributionBuilder<create_contribution_state::Empty, S> {
pub fn builder() -> Self {
CreateContributionBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CreateContributionBuilder<St, S>
where
St: create_contribution_state::State,
St::Changes: create_contribution_state::IsUnset,
{
pub fn changes(
mut self,
value: impl Into<Data<S>>,
) -> CreateContributionBuilder<create_contribution_state::SetChanges<St>, S> {
self._fields.0 = Option::Some(value.into());
CreateContributionBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CreateContributionBuilder<St, S>
where
St: create_contribution_state::State,
St::ContributionType: create_contribution_state::IsUnset,
{
pub fn contribution_type(
mut self,
value: impl Into<CreateContributionContributionType<S>>,
) -> CreateContributionBuilder<
create_contribution_state::SetContributionType<St>,
S,
> {
self._fields.1 = Option::Some(value.into());
CreateContributionBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: create_contribution_state::State, S: BosStr> CreateContributionBuilder<St, S> {
pub fn message(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_message(mut self, value: Option<S>) -> Self {
self._fields.2 = value;
self
}
}
impl<St: create_contribution_state::State, S: BosStr> CreateContributionBuilder<St, S> {
pub fn subject(mut self, value: impl Into<Option<AtUri<S>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_subject(mut self, value: Option<AtUri<S>>) -> Self {
self._fields.3 = value;
self
}
}
impl<St, S: BosStr> CreateContributionBuilder<St, S>
where
St: create_contribution_state::State,
St::Changes: create_contribution_state::IsSet,
St::ContributionType: create_contribution_state::IsSet,
{
pub fn build(self) -> CreateContribution<S> {
CreateContribution {
changes: self._fields.0.unwrap(),
contribution_type: self._fields.1.unwrap(),
message: self._fields.2,
subject: self._fields.3,
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> CreateContribution<S> {
CreateContribution {
changes: self._fields.0.unwrap(),
contribution_type: self._fields.1.unwrap(),
message: self._fields.2,
subject: self._fields.3,
extra_data: Some(extra_data),
}
}
}