#[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::moderation::ConvoView;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetConvo<S: BosStr = DefaultStr> {
pub convo_id: S,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetConvoOutput<S: BosStr = DefaultStr> {
pub convo: ConvoView<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 GetConvoError {
#[serde(rename = "InvalidConvo")]
InvalidConvo(Option<SmolStr>),
#[serde(untagged)]
Other { error: SmolStr, message: Option<SmolStr> },
}
impl core::fmt::Display for GetConvoError {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::InvalidConvo(msg) => {
write!(f, "InvalidConvo")?;
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 GetConvoResponse;
impl jacquard_common::xrpc::XrpcResp for GetConvoResponse {
const NSID: &'static str = "chat.bsky.moderation.getConvo";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetConvoOutput<S>;
type Err = GetConvoError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetConvo<S> {
const NSID: &'static str = "chat.bsky.moderation.getConvo";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetConvoResponse;
}
pub struct GetConvoRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetConvoRequest {
const PATH: &'static str = "/xrpc/chat.bsky.moderation.getConvo";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetConvo<S>;
type Response = GetConvoResponse;
}
pub mod get_convo_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;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type ConvoId = 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>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct convo_id(());
}
}
pub struct GetConvoBuilder<St: get_convo_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>,),
_type: PhantomData<fn() -> S>,
}
impl GetConvo<DefaultStr> {
pub fn new() -> GetConvoBuilder<get_convo_state::Empty, DefaultStr> {
GetConvoBuilder::new()
}
}
impl<S: BosStr> GetConvo<S> {
pub fn builder() -> GetConvoBuilder<get_convo_state::Empty, S> {
GetConvoBuilder::builder()
}
}
impl GetConvoBuilder<get_convo_state::Empty, DefaultStr> {
pub fn new() -> Self {
GetConvoBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr> GetConvoBuilder<get_convo_state::Empty, S> {
pub fn builder() -> Self {
GetConvoBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> GetConvoBuilder<St, S>
where
St: get_convo_state::State,
St::ConvoId: get_convo_state::IsUnset,
{
pub fn convo_id(
mut self,
value: impl Into<S>,
) -> GetConvoBuilder<get_convo_state::SetConvoId<St>, S> {
self._fields.0 = Option::Some(value.into());
GetConvoBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> GetConvoBuilder<St, S>
where
St: get_convo_state::State,
St::ConvoId: get_convo_state::IsSet,
{
pub fn build(self) -> GetConvo<S> {
GetConvo {
convo_id: self._fields.0.unwrap(),
}
}
}