#[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> {
#[serde(borrow)]
pub message_uri: AtUri<'a>,
#[serde(borrow)]
pub streamer: Did<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct CreateGateOutput<'a> {
#[serde(borrow)]
pub cid: Cid<'a>,
#[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> {
#[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 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),
}
}
}
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;
}
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 {}
}
pub trait State: sealed::Sealed {
type Streamer;
type MessageUri;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Streamer = Unset;
type MessageUri = Unset;
}
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;
}
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>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct streamer(());
pub struct message_uri(());
}
}
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> {
pub fn new() -> CreateGateBuilder<'a, create_gate_state::Empty> {
CreateGateBuilder::new()
}
}
impl<'a> CreateGateBuilder<'a, create_gate_state::Empty> {
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,
{
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,
{
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,
{
pub fn build(self) -> CreateGate<'a> {
CreateGate {
message_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>,
>,
) -> CreateGate<'a> {
CreateGate {
message_uri: self._fields.0.unwrap(),
streamer: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}