jacquard-api 0.12.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: games.gamesgamesgamesgames.reviewContribution
//
// 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};
use crate::com_atproto::repo::strong_ref::StrongRef;

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct ReviewContribution<S: BosStr = DefaultStr> {
    pub contribution: StrongRef<S>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub reason: Option<S>,
    pub status: ReviewContributionStatus<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 ReviewContributionStatus<S: BosStr = DefaultStr> {
    Approved,
    Denied,
    NeedsRevision,
    Other(S),
}

impl<S: BosStr> ReviewContributionStatus<S> {
    pub fn as_str(&self) -> &str {
        match self {
            Self::Approved => "approved",
            Self::Denied => "denied",
            Self::NeedsRevision => "needsRevision",
            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() {
            "approved" => Self::Approved,
            "denied" => Self::Denied,
            "needsRevision" => Self::NeedsRevision,
            _ => Self::Other(s),
        }
    }
}

impl<S: BosStr> core::fmt::Display for ReviewContributionStatus<S> {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        write!(f, "{}", self.as_str())
    }
}

impl<S: BosStr> AsRef<str> for ReviewContributionStatus<S> {
    fn as_ref(&self) -> &str {
        self.as_str()
    }
}

impl<S: BosStr> Serialize for ReviewContributionStatus<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 ReviewContributionStatus<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 ReviewContributionStatus<S> {
    fn default() -> Self {
        Self::Other(Default::default())
    }
}

impl<S: BosStr> jacquard_common::IntoStatic for ReviewContributionStatus<S>
where
    S: BosStr + jacquard_common::IntoStatic,
    S::Output: BosStr,
{
    type Output = ReviewContributionStatus<S::Output>;
    fn into_static(self) -> Self::Output {
        match self {
            ReviewContributionStatus::Approved => ReviewContributionStatus::Approved,
            ReviewContributionStatus::Denied => ReviewContributionStatus::Denied,
            ReviewContributionStatus::NeedsRevision => {
                ReviewContributionStatus::NeedsRevision
            }
            ReviewContributionStatus::Other(v) => {
                ReviewContributionStatus::Other(v.into_static())
            }
        }
    }
}


#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct ReviewContributionOutput<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.reviewContribution` procedure.

Implements `jacquard_common::xrpc::XrpcResp`; successful bodies decode as `Self::Output<S>`, which is `ReviewContributionOutput<S>` for this endpoint.*/
pub struct ReviewContributionResponse;
impl jacquard_common::xrpc::XrpcResp for ReviewContributionResponse {
    const NSID: &'static str = "games.gamesgamesgamesgames.reviewContribution";
    const ENCODING: &'static str = "application/json";
    type Output<S: BosStr> = ReviewContributionOutput<S>;
    type Err = jacquard_common::xrpc::GenericError;
}

impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for ReviewContribution<S> {
    const NSID: &'static str = "games.gamesgamesgamesgames.reviewContribution";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Response = ReviewContributionResponse;
}

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

Path: `/xrpc/games.gamesgamesgamesgames.reviewContribution`. The request payload type is `ReviewContribution<S>`; send that request with `jacquard::Client` or use this marker through lower-level `XrpcEndpoint` APIs.*/
pub struct ReviewContributionRequest;
impl jacquard_common::xrpc::XrpcEndpoint for ReviewContributionRequest {
    const PATH: &'static str = "/xrpc/games.gamesgamesgamesgames.reviewContribution";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Request<S: BosStr> = ReviewContribution<S>;
    type Response = ReviewContributionResponse;
}

pub mod review_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 Contribution;
        type Status;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Contribution = Unset;
        type Status = Unset;
    }
    ///State transition - sets the `contribution` field to Set
    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 Status = St::Status;
    }
    ///State transition - sets the `status` field to Set
    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 Status = Set<members::status>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `contribution` field
        pub struct contribution(());
        ///Marker type for the `status` field
        pub struct status(());
    }
}

/// Builder for constructing an instance of this type.
pub struct ReviewContributionBuilder<
    St: review_contribution_state::State,
    S: BosStr = DefaultStr,
> {
    _state: PhantomData<fn() -> St>,
    _fields: (Option<StrongRef<S>>, Option<S>, Option<ReviewContributionStatus<S>>),
    _type: PhantomData<fn() -> S>,
}

impl ReviewContribution<DefaultStr> {
    /// Create a new builder for this type, using the default string type (DefaultStr = SmolStr) if needed
    pub fn new() -> ReviewContributionBuilder<
        review_contribution_state::Empty,
        DefaultStr,
    > {
        ReviewContributionBuilder::new()
    }
}

impl<S: BosStr> ReviewContribution<S> {
    /// Create a new builder for this type
    pub fn builder() -> ReviewContributionBuilder<review_contribution_state::Empty, S> {
        ReviewContributionBuilder::builder()
    }
}

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

impl<S: BosStr> ReviewContributionBuilder<review_contribution_state::Empty, S> {
    /// Create a new builder with all fields unset
    pub fn builder() -> Self {
        ReviewContributionBuilder {
            _state: PhantomData,
            _fields: (None, None, None),
            _type: PhantomData,
        }
    }
}

impl<St, S: BosStr> ReviewContributionBuilder<St, S>
where
    St: review_contribution_state::State,
    St::Contribution: review_contribution_state::IsUnset,
{
    /// Set the `contribution` field (required)
    pub fn contribution(
        mut self,
        value: impl Into<StrongRef<S>>,
    ) -> ReviewContributionBuilder<review_contribution_state::SetContribution<St>, S> {
        self._fields.0 = Option::Some(value.into());
        ReviewContributionBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<St: review_contribution_state::State, S: BosStr> ReviewContributionBuilder<St, S> {
    /// Set the `reason` field (optional)
    pub fn reason(mut self, value: impl Into<Option<S>>) -> Self {
        self._fields.1 = value.into();
        self
    }
    /// Set the `reason` field to an Option value (optional)
    pub fn maybe_reason(mut self, value: Option<S>) -> Self {
        self._fields.1 = value;
        self
    }
}

impl<St, S: BosStr> ReviewContributionBuilder<St, S>
where
    St: review_contribution_state::State,
    St::Status: review_contribution_state::IsUnset,
{
    /// Set the `status` field (required)
    pub fn status(
        mut self,
        value: impl Into<ReviewContributionStatus<S>>,
    ) -> ReviewContributionBuilder<review_contribution_state::SetStatus<St>, S> {
        self._fields.2 = Option::Some(value.into());
        ReviewContributionBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<St, S: BosStr> ReviewContributionBuilder<St, S>
where
    St: review_contribution_state::State,
    St::Contribution: review_contribution_state::IsSet,
    St::Status: review_contribution_state::IsSet,
{
    /// Build the final struct.
    pub fn build(self) -> ReviewContribution<S> {
        ReviewContribution {
            contribution: self._fields.0.unwrap(),
            reason: self._fields.1,
            status: self._fields.2.unwrap(),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data.
    pub fn build_with_data(
        self,
        extra_data: BTreeMap<SmolStr, Data<S>>,
    ) -> ReviewContribution<S> {
        ReviewContribution {
            contribution: self._fields.0.unwrap(),
            reason: self._fields.1,
            status: self._fields.2.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}