jacquard-api 0.12.0-beta.2

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: games.gamesgamesgamesgames.graph.toggleLike
//
// 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::deps::smol_str::SmolStr;
use jacquard_common::types::string::AtUri;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, CowStr, DefaultStr, FromStaticStr};
use jacquard_derive::IntoStatic;
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
    rename_all = "camelCase",
    bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct ToggleLike<S: BosStr = DefaultStr> {
    ///AT URI of the game record to like/unlike.
    pub subject: AtUri<S>,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(
    rename_all = "camelCase",
    bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct ToggleLikeOutput<S: BosStr = DefaultStr> {
    ///Whether the game was liked or unliked.
    pub action: ToggleLikeOutputAction<S>,
    ///CID of the created like record. Present when action is 'liked'.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub cid: Option<S>,
    ///AT URI of the created like record. Present when action is 'liked'.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub uri: Option<AtUri<S>>,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}

/// Whether the game was liked or unliked.

#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum ToggleLikeOutputAction<S: BosStr = DefaultStr> {
    Liked,
    Unliked,
    Other(S),
}

impl<S: BosStr> ToggleLikeOutputAction<S> {
    pub fn as_str(&self) -> &str {
        match self {
            Self::Liked => "liked",
            Self::Unliked => "unliked",
            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() {
            "liked" => Self::Liked,
            "unliked" => Self::Unliked,
            _ => Self::Other(s),
        }
    }
}

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

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

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

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

/// Response type for games.gamesgamesgamesgames.graph.toggleLike
pub struct ToggleLikeResponse;
impl jacquard_common::xrpc::XrpcResp for ToggleLikeResponse {
    const NSID: &'static str = "games.gamesgamesgamesgames.graph.toggleLike";
    const ENCODING: &'static str = "application/json";
    type Output<S: BosStr> = ToggleLikeOutput<S>;
    type Err = jacquard_common::xrpc::GenericError;
}

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

/// Endpoint type for games.gamesgamesgamesgames.graph.toggleLike
pub struct ToggleLikeRequest;
impl jacquard_common::xrpc::XrpcEndpoint for ToggleLikeRequest {
    const PATH: &'static str = "/xrpc/games.gamesgamesgamesgames.graph.toggleLike";
    const METHOD: jacquard_common::xrpc::XrpcMethod =
        jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
    type Request<S: BosStr> = ToggleLike<S>;
    type Response = ToggleLikeResponse;
}

pub mod toggle_like_state {

    pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
    #[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 Subject;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Subject = Unset;
    }
    ///State transition - sets the `subject` field to Set
    pub struct SetSubject<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetSubject<St> {}
    impl<St: State> State for SetSubject<St> {
        type Subject = Set<members::subject>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `subject` field
        pub struct subject(());
    }
}

/// Builder for constructing an instance of this type.
pub struct ToggleLikeBuilder<S: BosStr, St: toggle_like_state::State> {
    _state: PhantomData<fn() -> St>,
    _fields: (Option<AtUri<S>>,),
    _type: PhantomData<fn() -> S>,
}

impl<S: BosStr> ToggleLike<S> {
    /// Create a new builder for this type.
    pub fn new() -> ToggleLikeBuilder<S, toggle_like_state::Empty> {
        ToggleLikeBuilder::new()
    }
}

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

impl<S: BosStr, St> ToggleLikeBuilder<S, St>
where
    St: toggle_like_state::State,
    St::Subject: toggle_like_state::IsUnset,
{
    /// Set the `subject` field (required)
    pub fn subject(
        mut self,
        value: impl Into<AtUri<S>>,
    ) -> ToggleLikeBuilder<S, toggle_like_state::SetSubject<St>> {
        self._fields.0 = Option::Some(value.into());
        ToggleLikeBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> ToggleLikeBuilder<S, St>
where
    St: toggle_like_state::State,
    St::Subject: toggle_like_state::IsSet,
{
    /// Build the final struct.
    pub fn build(self) -> ToggleLike<S> {
        ToggleLike {
            subject: self._fields.0.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>>) -> ToggleLike<S> {
        ToggleLike {
            subject: self._fields.0.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}