#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_common::types::ident::AtIdentifier;
use jacquard_common::types::string::{Did, Language, UriValue};
use jacquard_derive::{IntoStatic, lexicon, open_union};
use serde::{Serialize, Deserialize};
use crate::app_bsky::unspecced::SkeletonSearchPost;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct SearchPostsSkeleton<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub author: Option<AtIdentifier<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cursor: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub domain: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub lang: Option<Language>,
#[serde(default = "_default_limit")]
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub mentions: Option<AtIdentifier<'a>>,
#[serde(borrow)]
pub q: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub since: Option<CowStr<'a>>,
#[serde(default = "_default_sort")]
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub sort: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub tag: Option<Vec<CowStr<'a>>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub until: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub url: Option<UriValue<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub viewer: Option<Did<'a>>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct SearchPostsSkeletonOutput<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cursor: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub hits_total: Option<i64>,
#[serde(borrow)]
pub posts: Vec<SkeletonSearchPost<'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 SearchPostsSkeletonError<'a> {
#[serde(rename = "BadQueryString")]
BadQueryString(Option<CowStr<'a>>),
}
impl core::fmt::Display for SearchPostsSkeletonError<'_> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::BadQueryString(msg) => {
write!(f, "BadQueryString")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::Unknown(err) => write!(f, "Unknown error: {:?}", err),
}
}
}
pub struct SearchPostsSkeletonResponse;
impl jacquard_common::xrpc::XrpcResp for SearchPostsSkeletonResponse {
const NSID: &'static str = "app.bsky.unspecced.searchPostsSkeleton";
const ENCODING: &'static str = "application/json";
type Output<'de> = SearchPostsSkeletonOutput<'de>;
type Err<'de> = SearchPostsSkeletonError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for SearchPostsSkeleton<'a> {
const NSID: &'static str = "app.bsky.unspecced.searchPostsSkeleton";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = SearchPostsSkeletonResponse;
}
pub struct SearchPostsSkeletonRequest;
impl jacquard_common::xrpc::XrpcEndpoint for SearchPostsSkeletonRequest {
const PATH: &'static str = "/xrpc/app.bsky.unspecced.searchPostsSkeleton";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = SearchPostsSkeleton<'de>;
type Response = SearchPostsSkeletonResponse;
}
fn _default_limit() -> Option<i64> {
Some(25i64)
}
fn _default_sort() -> Option<CowStr<'static>> {
Some(CowStr::from("latest"))
}
pub mod search_posts_skeleton_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 Q;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Q = Unset;
}
pub struct SetQ<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetQ<S> {}
impl<S: State> State for SetQ<S> {
type Q = Set<members::q>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct q(());
}
}
pub struct SearchPostsSkeletonBuilder<'a, S: search_posts_skeleton_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<AtIdentifier<'a>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<Language>,
Option<i64>,
Option<AtIdentifier<'a>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<Vec<CowStr<'a>>>,
Option<CowStr<'a>>,
Option<UriValue<'a>>,
Option<Did<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> SearchPostsSkeleton<'a> {
pub fn new() -> SearchPostsSkeletonBuilder<'a, search_posts_skeleton_state::Empty> {
SearchPostsSkeletonBuilder::new()
}
}
impl<'a> SearchPostsSkeletonBuilder<'a, search_posts_skeleton_state::Empty> {
pub fn new() -> Self {
SearchPostsSkeletonBuilder {
_state: PhantomData,
_fields: (
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
),
_lifetime: PhantomData,
}
}
}
impl<'a, S: search_posts_skeleton_state::State> SearchPostsSkeletonBuilder<'a, S> {
pub fn author(mut self, value: impl Into<Option<AtIdentifier<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_author(mut self, value: Option<AtIdentifier<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S: search_posts_skeleton_state::State> SearchPostsSkeletonBuilder<'a, S> {
pub fn cursor(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_cursor(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: search_posts_skeleton_state::State> SearchPostsSkeletonBuilder<'a, S> {
pub fn domain(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_domain(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S: search_posts_skeleton_state::State> SearchPostsSkeletonBuilder<'a, S> {
pub fn lang(mut self, value: impl Into<Option<Language>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_lang(mut self, value: Option<Language>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S: search_posts_skeleton_state::State> SearchPostsSkeletonBuilder<'a, S> {
pub fn limit(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_limit(mut self, value: Option<i64>) -> Self {
self._fields.4 = value;
self
}
}
impl<'a, S: search_posts_skeleton_state::State> SearchPostsSkeletonBuilder<'a, S> {
pub fn mentions(mut self, value: impl Into<Option<AtIdentifier<'a>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_mentions(mut self, value: Option<AtIdentifier<'a>>) -> Self {
self._fields.5 = value;
self
}
}
impl<'a, S> SearchPostsSkeletonBuilder<'a, S>
where
S: search_posts_skeleton_state::State,
S::Q: search_posts_skeleton_state::IsUnset,
{
pub fn q(
mut self,
value: impl Into<CowStr<'a>>,
) -> SearchPostsSkeletonBuilder<'a, search_posts_skeleton_state::SetQ<S>> {
self._fields.6 = Option::Some(value.into());
SearchPostsSkeletonBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: search_posts_skeleton_state::State> SearchPostsSkeletonBuilder<'a, S> {
pub fn since(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_since(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.7 = value;
self
}
}
impl<'a, S: search_posts_skeleton_state::State> SearchPostsSkeletonBuilder<'a, S> {
pub fn sort(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_sort(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.8 = value;
self
}
}
impl<'a, S: search_posts_skeleton_state::State> SearchPostsSkeletonBuilder<'a, S> {
pub fn tag(mut self, value: impl Into<Option<Vec<CowStr<'a>>>>) -> Self {
self._fields.9 = value.into();
self
}
pub fn maybe_tag(mut self, value: Option<Vec<CowStr<'a>>>) -> Self {
self._fields.9 = value;
self
}
}
impl<'a, S: search_posts_skeleton_state::State> SearchPostsSkeletonBuilder<'a, S> {
pub fn until(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.10 = value.into();
self
}
pub fn maybe_until(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.10 = value;
self
}
}
impl<'a, S: search_posts_skeleton_state::State> SearchPostsSkeletonBuilder<'a, S> {
pub fn url(mut self, value: impl Into<Option<UriValue<'a>>>) -> Self {
self._fields.11 = value.into();
self
}
pub fn maybe_url(mut self, value: Option<UriValue<'a>>) -> Self {
self._fields.11 = value;
self
}
}
impl<'a, S: search_posts_skeleton_state::State> SearchPostsSkeletonBuilder<'a, S> {
pub fn viewer(mut self, value: impl Into<Option<Did<'a>>>) -> Self {
self._fields.12 = value.into();
self
}
pub fn maybe_viewer(mut self, value: Option<Did<'a>>) -> Self {
self._fields.12 = value;
self
}
}
impl<'a, S> SearchPostsSkeletonBuilder<'a, S>
where
S: search_posts_skeleton_state::State,
S::Q: search_posts_skeleton_state::IsSet,
{
pub fn build(self) -> SearchPostsSkeleton<'a> {
SearchPostsSkeleton {
author: self._fields.0,
cursor: self._fields.1,
domain: self._fields.2,
lang: self._fields.3,
limit: self._fields.4,
mentions: self._fields.5,
q: self._fields.6.unwrap(),
since: self._fields.7,
sort: self._fields.8,
tag: self._fields.9,
until: self._fields.10,
url: self._fields.11,
viewer: self._fields.12,
}
}
}