#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_common::types::string::UriValue;
use jacquard_derive::{IntoStatic, lexicon, open_union};
use serde::{Serialize, Deserialize};
use crate::place_stream::server::RewriteRule;
use crate::place_stream::server::Webhook;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct CreateWebhook<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_create_webhook_active")]
pub active: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub description: Option<CowStr<'a>>,
#[serde(borrow)]
pub events: Vec<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub mute_words: Option<Vec<CowStr<'a>>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub name: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub prefix: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub rewrite: Option<Vec<RewriteRule<'a>>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub suffix: Option<CowStr<'a>>,
#[serde(borrow)]
pub url: UriValue<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct CreateWebhookOutput<'a> {
#[serde(borrow)]
pub webhook: Webhook<'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 CreateWebhookError<'a> {
#[serde(rename = "InvalidUrl")]
InvalidUrl(Option<CowStr<'a>>),
#[serde(rename = "DuplicateWebhook")]
DuplicateWebhook(Option<CowStr<'a>>),
#[serde(rename = "TooManyWebhooks")]
TooManyWebhooks(Option<CowStr<'a>>),
}
impl core::fmt::Display for CreateWebhookError<'_> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::InvalidUrl(msg) => {
write!(f, "InvalidUrl")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::DuplicateWebhook(msg) => {
write!(f, "DuplicateWebhook")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::TooManyWebhooks(msg) => {
write!(f, "TooManyWebhooks")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::Unknown(err) => write!(f, "Unknown error: {:?}", err),
}
}
}
pub struct CreateWebhookResponse;
impl jacquard_common::xrpc::XrpcResp for CreateWebhookResponse {
const NSID: &'static str = "place.stream.server.createWebhook";
const ENCODING: &'static str = "application/json";
type Output<'de> = CreateWebhookOutput<'de>;
type Err<'de> = CreateWebhookError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for CreateWebhook<'a> {
const NSID: &'static str = "place.stream.server.createWebhook";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = CreateWebhookResponse;
}
pub struct CreateWebhookRequest;
impl jacquard_common::xrpc::XrpcEndpoint for CreateWebhookRequest {
const PATH: &'static str = "/xrpc/place.stream.server.createWebhook";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<'de> = CreateWebhook<'de>;
type Response = CreateWebhookResponse;
}
fn _default_create_webhook_active() -> Option<bool> {
Some(false)
}
pub mod create_webhook_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 Events;
type Url;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Events = Unset;
type Url = Unset;
}
pub struct SetEvents<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetEvents<S> {}
impl<S: State> State for SetEvents<S> {
type Events = Set<members::events>;
type Url = S::Url;
}
pub struct SetUrl<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetUrl<S> {}
impl<S: State> State for SetUrl<S> {
type Events = S::Events;
type Url = Set<members::url>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct events(());
pub struct url(());
}
}
pub struct CreateWebhookBuilder<'a, S: create_webhook_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<bool>,
Option<CowStr<'a>>,
Option<Vec<CowStr<'a>>>,
Option<Vec<CowStr<'a>>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<Vec<RewriteRule<'a>>>,
Option<CowStr<'a>>,
Option<UriValue<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> CreateWebhook<'a> {
pub fn new() -> CreateWebhookBuilder<'a, create_webhook_state::Empty> {
CreateWebhookBuilder::new()
}
}
impl<'a> CreateWebhookBuilder<'a, create_webhook_state::Empty> {
pub fn new() -> Self {
CreateWebhookBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: create_webhook_state::State> CreateWebhookBuilder<'a, S> {
pub fn active(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_active(mut self, value: Option<bool>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S: create_webhook_state::State> CreateWebhookBuilder<'a, S> {
pub fn description(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S> CreateWebhookBuilder<'a, S>
where
S: create_webhook_state::State,
S::Events: create_webhook_state::IsUnset,
{
pub fn events(
mut self,
value: impl Into<Vec<CowStr<'a>>>,
) -> CreateWebhookBuilder<'a, create_webhook_state::SetEvents<S>> {
self._fields.2 = Option::Some(value.into());
CreateWebhookBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: create_webhook_state::State> CreateWebhookBuilder<'a, S> {
pub fn mute_words(mut self, value: impl Into<Option<Vec<CowStr<'a>>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_mute_words(mut self, value: Option<Vec<CowStr<'a>>>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S: create_webhook_state::State> CreateWebhookBuilder<'a, S> {
pub fn name(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_name(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.4 = value;
self
}
}
impl<'a, S: create_webhook_state::State> CreateWebhookBuilder<'a, S> {
pub fn prefix(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_prefix(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.5 = value;
self
}
}
impl<'a, S: create_webhook_state::State> CreateWebhookBuilder<'a, S> {
pub fn rewrite(mut self, value: impl Into<Option<Vec<RewriteRule<'a>>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_rewrite(mut self, value: Option<Vec<RewriteRule<'a>>>) -> Self {
self._fields.6 = value;
self
}
}
impl<'a, S: create_webhook_state::State> CreateWebhookBuilder<'a, S> {
pub fn suffix(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_suffix(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.7 = value;
self
}
}
impl<'a, S> CreateWebhookBuilder<'a, S>
where
S: create_webhook_state::State,
S::Url: create_webhook_state::IsUnset,
{
pub fn url(
mut self,
value: impl Into<UriValue<'a>>,
) -> CreateWebhookBuilder<'a, create_webhook_state::SetUrl<S>> {
self._fields.8 = Option::Some(value.into());
CreateWebhookBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> CreateWebhookBuilder<'a, S>
where
S: create_webhook_state::State,
S::Events: create_webhook_state::IsSet,
S::Url: create_webhook_state::IsSet,
{
pub fn build(self) -> CreateWebhook<'a> {
CreateWebhook {
active: self._fields.0.or_else(|| Some(false)),
description: self._fields.1,
events: self._fields.2.unwrap(),
mute_words: self._fields.3,
name: self._fields.4,
prefix: self._fields.5,
rewrite: self._fields.6,
suffix: self._fields.7,
url: self._fields.8.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>,
>,
) -> CreateWebhook<'a> {
CreateWebhook {
active: self._fields.0.or_else(|| Some(false)),
description: self._fields.1,
events: self._fields.2.unwrap(),
mute_words: self._fields.3,
name: self._fields.4,
prefix: self._fields.5,
rewrite: self._fields.6,
suffix: self._fields.7,
url: self._fields.8.unwrap(),
extra_data: Some(extra_data),
}
}
}