#[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::string::{Did, AtUri, Cid, Datetime};
use jacquard_common::types::value::Data;
use jacquard_derive::{IntoStatic, open_union};
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct CreatePin<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub expires_at: Option<Datetime>,
pub message_uri: AtUri<S>,
pub streamer: Did<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct CreatePinOutput<S: BosStr = DefaultStr> {
pub cid: Cid<S>,
pub uri: AtUri<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(
Serialize,
Deserialize,
Debug,
Clone,
PartialEq,
Eq,
thiserror::Error,
miette::Diagnostic
)]
#[serde(tag = "error", content = "message")]
pub enum CreatePinError {
#[serde(rename = "Unauthorized")]
Unauthorized(Option<SmolStr>),
#[serde(rename = "Forbidden")]
Forbidden(Option<SmolStr>),
#[serde(rename = "SessionNotFound")]
SessionNotFound(Option<SmolStr>),
#[serde(untagged)]
Other { error: SmolStr, message: Option<SmolStr> },
}
impl core::fmt::Display for CreatePinError {
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::Other { error, message } => {
write!(f, "{}", error)?;
if let Some(msg) = message {
write!(f, ": {}", msg)?;
}
Ok(())
}
}
}
}
pub struct CreatePinResponse;
impl jacquard_common::xrpc::XrpcResp for CreatePinResponse {
const NSID: &'static str = "place.stream.moderation.createPin";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = CreatePinOutput<S>;
type Err = CreatePinError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for CreatePin<S> {
const NSID: &'static str = "place.stream.moderation.createPin";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = CreatePinResponse;
}
pub struct CreatePinRequest;
impl jacquard_common::xrpc::XrpcEndpoint for CreatePinRequest {
const PATH: &'static str = "/xrpc/place.stream.moderation.createPin";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<S: BosStr> = CreatePin<S>;
type Response = CreatePinResponse;
}
pub mod create_pin_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 MessageUri;
type Streamer;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type MessageUri = Unset;
type Streamer = Unset;
}
pub struct SetMessageUri<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetMessageUri<St> {}
impl<St: State> State for SetMessageUri<St> {
type MessageUri = Set<members::message_uri>;
type Streamer = St::Streamer;
}
pub struct SetStreamer<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetStreamer<St> {}
impl<St: State> State for SetStreamer<St> {
type MessageUri = St::MessageUri;
type Streamer = Set<members::streamer>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct message_uri(());
pub struct streamer(());
}
}
pub struct CreatePinBuilder<St: create_pin_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Datetime>, Option<AtUri<S>>, Option<Did<S>>),
_type: PhantomData<fn() -> S>,
}
impl CreatePin<DefaultStr> {
pub fn new() -> CreatePinBuilder<create_pin_state::Empty, DefaultStr> {
CreatePinBuilder::new()
}
}
impl<S: BosStr> CreatePin<S> {
pub fn builder() -> CreatePinBuilder<create_pin_state::Empty, S> {
CreatePinBuilder::builder()
}
}
impl CreatePinBuilder<create_pin_state::Empty, DefaultStr> {
pub fn new() -> Self {
CreatePinBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> CreatePinBuilder<create_pin_state::Empty, S> {
pub fn builder() -> Self {
CreatePinBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<St: create_pin_state::State, S: BosStr> CreatePinBuilder<St, S> {
pub fn expires_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_expires_at(mut self, value: Option<Datetime>) -> Self {
self._fields.0 = value;
self
}
}
impl<St, S: BosStr> CreatePinBuilder<St, S>
where
St: create_pin_state::State,
St::MessageUri: create_pin_state::IsUnset,
{
pub fn message_uri(
mut self,
value: impl Into<AtUri<S>>,
) -> CreatePinBuilder<create_pin_state::SetMessageUri<St>, S> {
self._fields.1 = Option::Some(value.into());
CreatePinBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CreatePinBuilder<St, S>
where
St: create_pin_state::State,
St::Streamer: create_pin_state::IsUnset,
{
pub fn streamer(
mut self,
value: impl Into<Did<S>>,
) -> CreatePinBuilder<create_pin_state::SetStreamer<St>, S> {
self._fields.2 = Option::Some(value.into());
CreatePinBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CreatePinBuilder<St, S>
where
St: create_pin_state::State,
St::MessageUri: create_pin_state::IsSet,
St::Streamer: create_pin_state::IsSet,
{
pub fn build(self) -> CreatePin<S> {
CreatePin {
expires_at: self._fields.0,
message_uri: self._fields.1.unwrap(),
streamer: self._fields.2.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> CreatePin<S> {
CreatePin {
expires_at: self._fields.0,
message_uri: self._fields.1.unwrap(),
streamer: self._fields.2.unwrap(),
extra_data: Some(extra_data),
}
}
}