#[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::value::Data;
use jacquard_derive::{IntoStatic, open_union};
use serde::{Serialize, Deserialize};
use crate::chat_bsky::group::JoinLinkView;
use crate::chat_bsky::group::JoinRule;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct CreateJoinLink<S: BosStr = DefaultStr> {
pub convo_id: S,
pub join_rule: JoinRule<S>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_create_join_link_require_approval")]
pub require_approval: Option<bool>,
#[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 CreateJoinLinkOutput<S: BosStr = DefaultStr> {
pub join_link: JoinLinkView<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 CreateJoinLinkError {
#[serde(rename = "EnabledJoinLinkAlreadyExists")]
EnabledJoinLinkAlreadyExists(Option<SmolStr>),
#[serde(rename = "InvalidConvo")]
InvalidConvo(Option<SmolStr>),
#[serde(rename = "InsufficientRole")]
InsufficientRole(Option<SmolStr>),
#[serde(untagged)]
Other { error: SmolStr, message: Option<SmolStr> },
}
impl core::fmt::Display for CreateJoinLinkError {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::EnabledJoinLinkAlreadyExists(msg) => {
write!(f, "EnabledJoinLinkAlreadyExists")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::InvalidConvo(msg) => {
write!(f, "InvalidConvo")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::InsufficientRole(msg) => {
write!(f, "InsufficientRole")?;
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 CreateJoinLinkResponse;
impl jacquard_common::xrpc::XrpcResp for CreateJoinLinkResponse {
const NSID: &'static str = "chat.bsky.group.createJoinLink";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = CreateJoinLinkOutput<S>;
type Err = CreateJoinLinkError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for CreateJoinLink<S> {
const NSID: &'static str = "chat.bsky.group.createJoinLink";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = CreateJoinLinkResponse;
}
pub struct CreateJoinLinkRequest;
impl jacquard_common::xrpc::XrpcEndpoint for CreateJoinLinkRequest {
const PATH: &'static str = "/xrpc/chat.bsky.group.createJoinLink";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<S: BosStr> = CreateJoinLink<S>;
type Response = CreateJoinLinkResponse;
}
fn _default_create_join_link_require_approval() -> Option<bool> {
Some(false)
}
pub mod create_join_link_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 ConvoId;
type JoinRule;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type ConvoId = Unset;
type JoinRule = Unset;
}
pub struct SetConvoId<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetConvoId<St> {}
impl<St: State> State for SetConvoId<St> {
type ConvoId = Set<members::convo_id>;
type JoinRule = St::JoinRule;
}
pub struct SetJoinRule<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetJoinRule<St> {}
impl<St: State> State for SetJoinRule<St> {
type ConvoId = St::ConvoId;
type JoinRule = Set<members::join_rule>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct convo_id(());
pub struct join_rule(());
}
}
pub struct CreateJoinLinkBuilder<
St: create_join_link_state::State,
S: BosStr = DefaultStr,
> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>, Option<JoinRule<S>>, Option<bool>),
_type: PhantomData<fn() -> S>,
}
impl CreateJoinLink<DefaultStr> {
pub fn new() -> CreateJoinLinkBuilder<create_join_link_state::Empty, DefaultStr> {
CreateJoinLinkBuilder::new()
}
}
impl<S: BosStr> CreateJoinLink<S> {
pub fn builder() -> CreateJoinLinkBuilder<create_join_link_state::Empty, S> {
CreateJoinLinkBuilder::builder()
}
}
impl CreateJoinLinkBuilder<create_join_link_state::Empty, DefaultStr> {
pub fn new() -> Self {
CreateJoinLinkBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> CreateJoinLinkBuilder<create_join_link_state::Empty, S> {
pub fn builder() -> Self {
CreateJoinLinkBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CreateJoinLinkBuilder<St, S>
where
St: create_join_link_state::State,
St::ConvoId: create_join_link_state::IsUnset,
{
pub fn convo_id(
mut self,
value: impl Into<S>,
) -> CreateJoinLinkBuilder<create_join_link_state::SetConvoId<St>, S> {
self._fields.0 = Option::Some(value.into());
CreateJoinLinkBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CreateJoinLinkBuilder<St, S>
where
St: create_join_link_state::State,
St::JoinRule: create_join_link_state::IsUnset,
{
pub fn join_rule(
mut self,
value: impl Into<JoinRule<S>>,
) -> CreateJoinLinkBuilder<create_join_link_state::SetJoinRule<St>, S> {
self._fields.1 = Option::Some(value.into());
CreateJoinLinkBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: create_join_link_state::State, S: BosStr> CreateJoinLinkBuilder<St, S> {
pub fn require_approval(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_require_approval(mut self, value: Option<bool>) -> Self {
self._fields.2 = value;
self
}
}
impl<St, S: BosStr> CreateJoinLinkBuilder<St, S>
where
St: create_join_link_state::State,
St::ConvoId: create_join_link_state::IsSet,
St::JoinRule: create_join_link_state::IsSet,
{
pub fn build(self) -> CreateJoinLink<S> {
CreateJoinLink {
convo_id: self._fields.0.unwrap(),
join_rule: self._fields.1.unwrap(),
require_approval: self._fields.2.or_else(|| Some(false)),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> CreateJoinLink<S> {
CreateJoinLink {
convo_id: self._fields.0.unwrap(),
join_rule: self._fields.1.unwrap(),
require_approval: self._fields.2.or_else(|| Some(false)),
extra_data: Some(extra_data),
}
}
}