#[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::convo::DeletedMessageView;
use crate::chat_bsky::convo::MessageView;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetMessages<S: BosStr = DefaultStr> {
pub convo_id: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub cursor: Option<S>,
#[serde(default = "_default_limit")]
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetMessagesOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cursor: Option<S>,
pub messages: Vec<GetMessagesOutputMessagesItem<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum GetMessagesOutputMessagesItem<S: BosStr = DefaultStr> {
#[serde(rename = "chat.bsky.convo.defs#messageView")]
MessageView(Box<MessageView<S>>),
#[serde(rename = "chat.bsky.convo.defs#deletedMessageView")]
DeletedMessageView(Box<DeletedMessageView<S>>),
}
pub struct GetMessagesResponse;
impl jacquard_common::xrpc::XrpcResp for GetMessagesResponse {
const NSID: &'static str = "chat.bsky.convo.getMessages";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetMessagesOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetMessages<S> {
const NSID: &'static str = "chat.bsky.convo.getMessages";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetMessagesResponse;
}
pub struct GetMessagesRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetMessagesRequest {
const PATH: &'static str = "/xrpc/chat.bsky.convo.getMessages";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetMessages<S>;
type Response = GetMessagesResponse;
}
fn _default_limit() -> Option<i64> {
Some(50i64)
}
pub mod get_messages_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 GetMessagesBuilder<S: BosStr, St: get_messages_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>, Option<S>, Option<i64>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> GetMessages<S> {
pub fn new() -> GetMessagesBuilder<S, get_messages_state::Empty> {
GetMessagesBuilder::new()
}
}
impl<S: BosStr> GetMessagesBuilder<S, get_messages_state::Empty> {
pub fn new() -> Self {
GetMessagesBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetMessagesBuilder<S, St>
where
St: get_messages_state::State,
St::ConvoId: get_messages_state::IsUnset,
{
pub fn convo_id(
mut self,
value: impl Into<S>,
) -> GetMessagesBuilder<S, get_messages_state::SetConvoId<St>> {
self._fields.0 = Option::Some(value.into());
GetMessagesBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: get_messages_state::State> GetMessagesBuilder<S, St> {
pub fn cursor(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_cursor(mut self, value: Option<S>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St: get_messages_state::State> GetMessagesBuilder<S, St> {
pub fn limit(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_limit(mut self, value: Option<i64>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St> GetMessagesBuilder<S, St>
where
St: get_messages_state::State,
St::ConvoId: get_messages_state::IsSet,
{
pub fn build(self) -> GetMessages<S> {
GetMessages {
convo_id: self._fields.0.unwrap(),
cursor: self._fields.1,
limit: self._fields.2,
}
}
}