#[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::{AtUri, Cid};
use jacquard_common::types::value::Data;
use jacquard_derive::{IntoStatic, open_union};
use serde::{Serialize, Deserialize};
use crate::place_atwork::listing::Listing;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetListing<S: BosStr = DefaultStr> {
pub repo: AtIdentifier<S>,
pub rkey: S,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetListingOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Listing<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 GetListingError {
#[serde(rename = "ListingNotFound")]
ListingNotFound(Option<SmolStr>),
#[serde(rename = "ListingParseFailed")]
ListingParseFailed(Option<SmolStr>),
#[serde(rename = "ListingFetchFailed")]
ListingFetchFailed(Option<SmolStr>),
#[serde(untagged)]
Other { error: SmolStr, message: Option<SmolStr> },
}
impl core::fmt::Display for GetListingError {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::ListingNotFound(msg) => {
write!(f, "ListingNotFound")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::ListingParseFailed(msg) => {
write!(f, "ListingParseFailed")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::ListingFetchFailed(msg) => {
write!(f, "ListingFetchFailed")?;
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 GetListingResponse;
impl jacquard_common::xrpc::XrpcResp for GetListingResponse {
const NSID: &'static str = "place.atwork.getListing";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetListingOutput<S>;
type Err = GetListingError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetListing<S> {
const NSID: &'static str = "place.atwork.getListing";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetListingResponse;
}
pub struct GetListingRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetListingRequest {
const PATH: &'static str = "/xrpc/place.atwork.getListing";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetListing<S>;
type Response = GetListingResponse;
}
pub mod get_listing_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 Repo;
type Rkey;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Repo = Unset;
type Rkey = Unset;
}
pub struct SetRepo<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRepo<St> {}
impl<St: State> State for SetRepo<St> {
type Repo = Set<members::repo>;
type Rkey = St::Rkey;
}
pub struct SetRkey<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRkey<St> {}
impl<St: State> State for SetRkey<St> {
type Repo = St::Repo;
type Rkey = Set<members::rkey>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct repo(());
pub struct rkey(());
}
}
pub struct GetListingBuilder<S: BosStr, St: get_listing_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<AtIdentifier<S>>, Option<S>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> GetListing<S> {
pub fn new() -> GetListingBuilder<S, get_listing_state::Empty> {
GetListingBuilder::new()
}
}
impl<S: BosStr> GetListingBuilder<S, get_listing_state::Empty> {
pub fn new() -> Self {
GetListingBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetListingBuilder<S, St>
where
St: get_listing_state::State,
St::Repo: get_listing_state::IsUnset,
{
pub fn repo(
mut self,
value: impl Into<AtIdentifier<S>>,
) -> GetListingBuilder<S, get_listing_state::SetRepo<St>> {
self._fields.0 = Option::Some(value.into());
GetListingBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetListingBuilder<S, St>
where
St: get_listing_state::State,
St::Rkey: get_listing_state::IsUnset,
{
pub fn rkey(
mut self,
value: impl Into<S>,
) -> GetListingBuilder<S, get_listing_state::SetRkey<St>> {
self._fields.1 = Option::Some(value.into());
GetListingBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetListingBuilder<S, St>
where
St: get_listing_state::State,
St::Repo: get_listing_state::IsSet,
St::Rkey: get_listing_state::IsSet,
{
pub fn build(self) -> GetListing<S> {
GetListing {
repo: self._fields.0.unwrap(),
rkey: self._fields.1.unwrap(),
}
}
}