jacquard-api 0.11.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: place.stream.moderation.createGate
//
// 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::{Did, AtUri, Cid};
use jacquard_derive::{IntoStatic, lexicon, open_union};
use serde::{Serialize, Deserialize};

#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct CreateGate<'a> {
    ///The AT-URI of the chat message to hide.
    #[serde(borrow)]
    pub message_uri: AtUri<'a>,
    ///The DID of the streamer.
    #[serde(borrow)]
    pub streamer: Did<'a>,
}


#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct CreateGateOutput<'a> {
    ///The CID of the created gate record.
    #[serde(borrow)]
    pub cid: Cid<'a>,
    ///The AT-URI of the created gate record.
    #[serde(borrow)]
    pub uri: AtUri<'a>,
}


#[open_union]
#[derive(
    Serialize,
    Deserialize,
    Debug,
    Clone,
    PartialEq,
    Eq,
    thiserror::Error,
    miette::Diagnostic,
    IntoStatic
)]

#[serde(tag = "error", content = "message")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum CreateGateError<'a> {
    /// The request lacks valid authentication credentials.
    #[serde(rename = "Unauthorized")]
    Unauthorized(Option<CowStr<'a>>),
    /// The caller does not have permission to hide messages for this streamer.
    #[serde(rename = "Forbidden")]
    Forbidden(Option<CowStr<'a>>),
    /// The streamer's OAuth session could not be found or is invalid.
    #[serde(rename = "SessionNotFound")]
    SessionNotFound(Option<CowStr<'a>>),
}

impl core::fmt::Display for CreateGateError<'_> {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        match self {
            Self::Unauthorized(msg) => {
                write!(f, "Unauthorized")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::Forbidden(msg) => {
                write!(f, "Forbidden")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::SessionNotFound(msg) => {
                write!(f, "SessionNotFound")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::Unknown(err) => write!(f, "Unknown error: {:?}", err),
        }
    }
}

/// Response type for place.stream.moderation.createGate
pub struct CreateGateResponse;
impl jacquard_common::xrpc::XrpcResp for CreateGateResponse {
    const NSID: &'static str = "place.stream.moderation.createGate";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = CreateGateOutput<'de>;
    type Err<'de> = CreateGateError<'de>;
}

impl<'a> jacquard_common::xrpc::XrpcRequest for CreateGate<'a> {
    const NSID: &'static str = "place.stream.moderation.createGate";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Response = CreateGateResponse;
}

/// Endpoint type for place.stream.moderation.createGate
pub struct CreateGateRequest;
impl jacquard_common::xrpc::XrpcEndpoint for CreateGateRequest {
    const PATH: &'static str = "/xrpc/place.stream.moderation.createGate";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Request<'de> = CreateGate<'de>;
    type Response = CreateGateResponse;
}

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

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

impl<'a> CreateGate<'a> {
    /// Create a new builder for this type
    pub fn new() -> CreateGateBuilder<'a, create_gate_state::Empty> {
        CreateGateBuilder::new()
    }
}

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

impl<'a, S> CreateGateBuilder<'a, S>
where
    S: create_gate_state::State,
    S::MessageUri: create_gate_state::IsUnset,
{
    /// Set the `messageUri` field (required)
    pub fn message_uri(
        mut self,
        value: impl Into<AtUri<'a>>,
    ) -> CreateGateBuilder<'a, create_gate_state::SetMessageUri<S>> {
        self._fields.0 = Option::Some(value.into());
        CreateGateBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> CreateGateBuilder<'a, S>
where
    S: create_gate_state::State,
    S::Streamer: create_gate_state::IsUnset,
{
    /// Set the `streamer` field (required)
    pub fn streamer(
        mut self,
        value: impl Into<Did<'a>>,
    ) -> CreateGateBuilder<'a, create_gate_state::SetStreamer<S>> {
        self._fields.1 = Option::Some(value.into());
        CreateGateBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> CreateGateBuilder<'a, S>
where
    S: create_gate_state::State,
    S::Streamer: create_gate_state::IsSet,
    S::MessageUri: create_gate_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> CreateGate<'a> {
        CreateGate {
            message_uri: self._fields.0.unwrap(),
            streamer: 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>,
        >,
    ) -> CreateGate<'a> {
        CreateGate {
            message_uri: self._fields.0.unwrap(),
            streamer: self._fields.1.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}