#[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};
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 DeleteGate<'a> {
#[serde(borrow)]
pub gate_uri: AtUri<'a>,
#[serde(borrow)]
pub streamer: Did<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct DeleteGateOutput<'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 DeleteGateError<'a> {
#[serde(rename = "Unauthorized")]
Unauthorized(Option<CowStr<'a>>),
#[serde(rename = "Forbidden")]
Forbidden(Option<CowStr<'a>>),
#[serde(rename = "SessionNotFound")]
SessionNotFound(Option<CowStr<'a>>),
}
impl core::fmt::Display for DeleteGateError<'_> {
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),
}
}
}
pub struct DeleteGateResponse;
impl jacquard_common::xrpc::XrpcResp for DeleteGateResponse {
const NSID: &'static str = "place.stream.moderation.deleteGate";
const ENCODING: &'static str = "application/json";
type Output<'de> = DeleteGateOutput<'de>;
type Err<'de> = DeleteGateError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for DeleteGate<'a> {
const NSID: &'static str = "place.stream.moderation.deleteGate";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = DeleteGateResponse;
}
pub struct DeleteGateRequest;
impl jacquard_common::xrpc::XrpcEndpoint for DeleteGateRequest {
const PATH: &'static str = "/xrpc/place.stream.moderation.deleteGate";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<'de> = DeleteGate<'de>;
type Response = DeleteGateResponse;
}
pub mod delete_gate_state {
pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type GateUri;
type Streamer;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type GateUri = Unset;
type Streamer = Unset;
}
pub struct SetGateUri<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetGateUri<S> {}
impl<S: State> State for SetGateUri<S> {
type GateUri = Set<members::gate_uri>;
type Streamer = S::Streamer;
}
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 GateUri = S::GateUri;
type Streamer = Set<members::streamer>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct gate_uri(());
pub struct streamer(());
}
}
pub struct DeleteGateBuilder<'a, S: delete_gate_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<AtUri<'a>>, Option<Did<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> DeleteGate<'a> {
pub fn new() -> DeleteGateBuilder<'a, delete_gate_state::Empty> {
DeleteGateBuilder::new()
}
}
impl<'a> DeleteGateBuilder<'a, delete_gate_state::Empty> {
pub fn new() -> Self {
DeleteGateBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> DeleteGateBuilder<'a, S>
where
S: delete_gate_state::State,
S::GateUri: delete_gate_state::IsUnset,
{
pub fn gate_uri(
mut self,
value: impl Into<AtUri<'a>>,
) -> DeleteGateBuilder<'a, delete_gate_state::SetGateUri<S>> {
self._fields.0 = Option::Some(value.into());
DeleteGateBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> DeleteGateBuilder<'a, S>
where
S: delete_gate_state::State,
S::Streamer: delete_gate_state::IsUnset,
{
pub fn streamer(
mut self,
value: impl Into<Did<'a>>,
) -> DeleteGateBuilder<'a, delete_gate_state::SetStreamer<S>> {
self._fields.1 = Option::Some(value.into());
DeleteGateBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> DeleteGateBuilder<'a, S>
where
S: delete_gate_state::State,
S::GateUri: delete_gate_state::IsSet,
S::Streamer: delete_gate_state::IsSet,
{
pub fn build(self) -> DeleteGate<'a> {
DeleteGate {
gate_uri: self._fields.0.unwrap(),
streamer: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> DeleteGate<'a> {
DeleteGate {
gate_uri: self._fields.0.unwrap(),
streamer: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}