jacquard-api 0.12.0-beta.1

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: games.gamesgamesgamesgames.getProfile
//
// 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::value::Data;
use jacquard_derive::{IntoStatic, open_union};
use serde::{Serialize, Deserialize};
use crate::games_gamesgamesgamesgames::ActorProfileDetailView;
use crate::games_gamesgamesgamesgames::OrgProfileDetailView;

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetProfile<S: BosStr = DefaultStr> {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub handle: Option<S>,
}


#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetProfileOutput<S: BosStr = DefaultStr> {
    ///The resolved ATProto handle for display.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub handle: Option<S>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub profile: Option<GetProfileOutputProfile<S>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub profile_type: Option<GetProfileOutputProfileType<S>>,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}


#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum GetProfileOutputProfile<S: BosStr = DefaultStr> {
    #[serde(rename = "games.gamesgamesgamesgames.defs#actorProfileDetailView")]
    ActorProfileDetailView(Box<ActorProfileDetailView<S>>),
    #[serde(rename = "games.gamesgamesgamesgames.defs#orgProfileDetailView")]
    OrgProfileDetailView(Box<OrgProfileDetailView<S>>),
}


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

impl<S: BosStr> GetProfileOutputProfileType<S> {
    pub fn as_str(&self) -> &str {
        match self {
            Self::Actor => "actor",
            Self::Org => "org",
            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() {
            "actor" => Self::Actor,
            "org" => Self::Org,
            _ => Self::Other(s),
        }
    }
}

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

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

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

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

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

impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetProfile<S> {
    const NSID: &'static str = "games.gamesgamesgamesgames.getProfile";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Response = GetProfileResponse;
}

/// Endpoint type for games.gamesgamesgamesgames.getProfile
pub struct GetProfileRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetProfileRequest {
    const PATH: &'static str = "/xrpc/games.gamesgamesgamesgames.getProfile";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Request<S: BosStr> = GetProfile<S>;
    type Response = GetProfileResponse;
}

pub mod get_profile_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 {}
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {}
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {}
}

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

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

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

impl<S: BosStr, St: get_profile_state::State> GetProfileBuilder<S, St> {
    /// Set the `handle` field (optional)
    pub fn handle(mut self, value: impl Into<Option<S>>) -> Self {
        self._fields.0 = value.into();
        self
    }
    /// Set the `handle` field to an Option value (optional)
    pub fn maybe_handle(mut self, value: Option<S>) -> Self {
        self._fields.0 = value;
        self
    }
}

impl<S: BosStr, St> GetProfileBuilder<S, St>
where
    St: get_profile_state::State,
{
    /// Build the final struct.
    pub fn build(self) -> GetProfile<S> {
        GetProfile {
            handle: self._fields.0,
        }
    }
}