jacquard-api 0.11.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: uk.skyblur.post.getPost
//
// 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;
use jacquard_common::types::string::{AtUri, Datetime};
use jacquard_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};

#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetPost<'a> {
    ///If the specified uri is password-protected, please provide the password. If no password is specified, the non-protected content will be returned.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub password: Option<CowStr<'a>>,
    ///Skyblur post at-uri. It shoud be uk.skyblur.post collection.
    #[serde(borrow)]
    pub uri: AtUri<'a>,
}


#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetPostOutput<'a> {
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub additional: Option<CowStr<'a>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub created_at: Option<Datetime>,
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub encrypt_cid: Option<CowStr<'a>>,
    ///Error code for restricted content. e.g. AuthRequired, NotFollower, NotFollowing, NotMutual
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub error_code: Option<CowStr<'a>>,
    ///Description of the error code.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub error_description: Option<CowStr<'a>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub message: Option<CowStr<'a>>,
    #[serde(borrow)]
    pub text: CowStr<'a>,
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub visibility: Option<CowStr<'a>>,
}

/// Response type for uk.skyblur.post.getPost
pub struct GetPostResponse;
impl jacquard_common::xrpc::XrpcResp for GetPostResponse {
    const NSID: &'static str = "uk.skyblur.post.getPost";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = GetPostOutput<'de>;
    type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}

impl<'a> jacquard_common::xrpc::XrpcRequest for GetPost<'a> {
    const NSID: &'static str = "uk.skyblur.post.getPost";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Response = GetPostResponse;
}

/// Endpoint type for uk.skyblur.post.getPost
pub struct GetPostRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetPostRequest {
    const PATH: &'static str = "/xrpc/uk.skyblur.post.getPost";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Request<'de> = GetPost<'de>;
    type Response = GetPostResponse;
}

pub mod get_post_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 Uri;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Uri = Unset;
    }
    ///State transition - sets the `uri` field to Set
    pub struct SetUri<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetUri<S> {}
    impl<S: State> State for SetUri<S> {
        type Uri = Set<members::uri>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `uri` field
        pub struct uri(());
    }
}

/// Builder for constructing an instance of this type
pub struct GetPostBuilder<'a, S: get_post_state::State> {
    _state: PhantomData<fn() -> S>,
    _fields: (Option<CowStr<'a>>, Option<AtUri<'a>>),
    _lifetime: PhantomData<&'a ()>,
}

impl<'a> GetPost<'a> {
    /// Create a new builder for this type
    pub fn new() -> GetPostBuilder<'a, get_post_state::Empty> {
        GetPostBuilder::new()
    }
}

impl<'a> GetPostBuilder<'a, get_post_state::Empty> {
    /// Create a new builder with all fields unset
    pub fn new() -> Self {
        GetPostBuilder {
            _state: PhantomData,
            _fields: (None, None),
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S: get_post_state::State> GetPostBuilder<'a, S> {
    /// Set the `password` field (optional)
    pub fn password(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
        self._fields.0 = value.into();
        self
    }
    /// Set the `password` field to an Option value (optional)
    pub fn maybe_password(mut self, value: Option<CowStr<'a>>) -> Self {
        self._fields.0 = value;
        self
    }
}

impl<'a, S> GetPostBuilder<'a, S>
where
    S: get_post_state::State,
    S::Uri: get_post_state::IsUnset,
{
    /// Set the `uri` field (required)
    pub fn uri(
        mut self,
        value: impl Into<AtUri<'a>>,
    ) -> GetPostBuilder<'a, get_post_state::SetUri<S>> {
        self._fields.1 = Option::Some(value.into());
        GetPostBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> GetPostBuilder<'a, S>
where
    S: get_post_state::State,
    S::Uri: get_post_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> GetPost<'a> {
        GetPost {
            password: self._fields.0,
            uri: self._fields.1.unwrap(),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data
    pub fn build_with_data(
        self,
        extra_data: BTreeMap<
            jacquard_common::deps::smol_str::SmolStr,
            jacquard_common::types::value::Data<'a>,
        >,
    ) -> GetPost<'a> {
        GetPost {
            password: self._fields.0,
            uri: self._fields.1.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}