#[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::ident::AtIdentifier;
use jacquard_common::types::string::Did;
use jacquard_common::types::value::Data;
use jacquard_derive::{IntoStatic, open_union};
use serde::{Serialize, Deserialize};
use crate::app_bsky::graph::NotFoundActor;
use crate::app_bsky::graph::Relationship;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetRelationships<S: BosStr = DefaultStr> {
pub actor: AtIdentifier<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub others: Option<Vec<AtIdentifier<S>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetRelationshipsOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub actor: Option<Did<S>>,
pub relationships: Vec<GetRelationshipsOutputRelationshipsItem<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 GetRelationshipsOutputRelationshipsItem<S: BosStr = DefaultStr> {
#[serde(rename = "app.bsky.graph.defs#relationship")]
Relationship(Box<Relationship<S>>),
#[serde(rename = "app.bsky.graph.defs#notFoundActor")]
NotFoundActor(Box<NotFoundActor<S>>),
}
#[derive(
Serialize,
Deserialize,
Debug,
Clone,
PartialEq,
Eq,
thiserror::Error,
miette::Diagnostic
)]
#[serde(tag = "error", content = "message")]
pub enum GetRelationshipsError {
#[serde(rename = "ActorNotFound")]
ActorNotFound(Option<SmolStr>),
#[serde(untagged)]
Other { error: SmolStr, message: Option<SmolStr> },
}
impl core::fmt::Display for GetRelationshipsError {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::ActorNotFound(msg) => {
write!(f, "ActorNotFound")?;
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 GetRelationshipsResponse;
impl jacquard_common::xrpc::XrpcResp for GetRelationshipsResponse {
const NSID: &'static str = "app.bsky.graph.getRelationships";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetRelationshipsOutput<S>;
type Err = GetRelationshipsError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetRelationships<S> {
const NSID: &'static str = "app.bsky.graph.getRelationships";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetRelationshipsResponse;
}
pub struct GetRelationshipsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetRelationshipsRequest {
const PATH: &'static str = "/xrpc/app.bsky.graph.getRelationships";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetRelationships<S>;
type Response = GetRelationshipsResponse;
}
pub mod get_relationships_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 Actor;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Actor = Unset;
}
pub struct SetActor<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetActor<St> {}
impl<St: State> State for SetActor<St> {
type Actor = Set<members::actor>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct actor(());
}
}
pub struct GetRelationshipsBuilder<S: BosStr, St: get_relationships_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<AtIdentifier<S>>, Option<Vec<AtIdentifier<S>>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> GetRelationships<S> {
pub fn new() -> GetRelationshipsBuilder<S, get_relationships_state::Empty> {
GetRelationshipsBuilder::new()
}
}
impl<S: BosStr> GetRelationshipsBuilder<S, get_relationships_state::Empty> {
pub fn new() -> Self {
GetRelationshipsBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetRelationshipsBuilder<S, St>
where
St: get_relationships_state::State,
St::Actor: get_relationships_state::IsUnset,
{
pub fn actor(
mut self,
value: impl Into<AtIdentifier<S>>,
) -> GetRelationshipsBuilder<S, get_relationships_state::SetActor<St>> {
self._fields.0 = Option::Some(value.into());
GetRelationshipsBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: get_relationships_state::State> GetRelationshipsBuilder<S, St> {
pub fn others(mut self, value: impl Into<Option<Vec<AtIdentifier<S>>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_others(mut self, value: Option<Vec<AtIdentifier<S>>>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St> GetRelationshipsBuilder<S, St>
where
St: get_relationships_state::State,
St::Actor: get_relationships_state::IsSet,
{
pub fn build(self) -> GetRelationships<S> {
GetRelationships {
actor: self._fields.0.unwrap(),
others: self._fields.1,
}
}
}