jacquard-api 0.12.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: games.gamesgamesgamesgames.createContribution
//
// This file was automatically generated from Lexicon schemas.
// Any manual changes will be overwritten on the next regeneration.

#[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> {
    ///A partial object with only changed fields.
    pub changes: Data<S>,
    pub contribution_type: CreateContributionContributionType<S>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub message: Option<S>,
    ///The entity being modified. Required for corrections and additions.
    #[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(),
        }
    }
    /// Construct from a string-like value, matching known values.
    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>>>,
}

/** Response marker for the `games.gamesgamesgamesgames.createContribution` procedure.

Implements `jacquard_common::xrpc::XrpcResp`; successful bodies decode as `Self::Output<S>`, which is `CreateContributionOutput<S>` for this endpoint.*/
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;
}

/** Endpoint marker for the `games.gamesgamesgamesgames.createContribution` procedure.

Path: `/xrpc/games.gamesgamesgamesgames.createContribution`. The request payload type is `CreateContribution<S>`; send that request with `jacquard::Client` or use this marker through lower-level `XrpcEndpoint` APIs.*/
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 {}
    }
    /// State trait tracking which required fields have been set
    pub trait State: sealed::Sealed {
        type Changes;
        type ContributionType;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Changes = Unset;
        type ContributionType = Unset;
    }
    ///State transition - sets the `changes` field to Set
    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;
    }
    ///State transition - sets the `contribution_type` field to Set
    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>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `changes` field
        pub struct changes(());
        ///Marker type for the `contribution_type` field
        pub struct contribution_type(());
    }
}

/// Builder for constructing an instance of this 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> {
    /// Create a new builder for this type, using the default string type (DefaultStr = SmolStr) if needed
    pub fn new() -> CreateContributionBuilder<
        create_contribution_state::Empty,
        DefaultStr,
    > {
        CreateContributionBuilder::new()
    }
}

impl<S: BosStr> CreateContribution<S> {
    /// Create a new builder for this type
    pub fn builder() -> CreateContributionBuilder<create_contribution_state::Empty, S> {
        CreateContributionBuilder::builder()
    }
}

impl CreateContributionBuilder<create_contribution_state::Empty, DefaultStr> {
    /// Create a new builder with all fields unset, using the default string type, if needed
    pub fn new() -> Self {
        CreateContributionBuilder {
            _state: PhantomData,
            _fields: (None, None, None, None),
            _type: PhantomData,
        }
    }
}

impl<S: BosStr> CreateContributionBuilder<create_contribution_state::Empty, S> {
    /// Create a new builder with all fields unset
    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,
{
    /// Set the `changes` field (required)
    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,
{
    /// Set the `contributionType` field (required)
    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> {
    /// Set the `message` field (optional)
    pub fn message(mut self, value: impl Into<Option<S>>) -> Self {
        self._fields.2 = value.into();
        self
    }
    /// Set the `message` field to an Option value (optional)
    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> {
    /// Set the `subject` field (optional)
    pub fn subject(mut self, value: impl Into<Option<AtUri<S>>>) -> Self {
        self._fields.3 = value.into();
        self
    }
    /// Set the `subject` field to an Option value (optional)
    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,
{
    /// Build the final struct.
    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(),
        }
    }
    /// Build the final struct with custom extra_data.
    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),
        }
    }
}