#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_common::types::string::AtUri;
use jacquard_derive::{IntoStatic, lexicon, open_union};
use serde::{Serialize, Deserialize};
use crate::blue_recipes::feed::RecipeView;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetRecipe<'a> {
#[serde(borrow)]
pub uris: Vec<AtUri<'a>>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetRecipeOutput<'a> {
#[serde(borrow)]
pub recipes: Vec<RecipeView<'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 GetRecipeError<'a> {
#[serde(rename = "NotFound")]
NotFound(Option<CowStr<'a>>),
#[serde(rename = "InvalidUri")]
InvalidUri(Option<CowStr<'a>>),
}
impl core::fmt::Display for GetRecipeError<'_> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::NotFound(msg) => {
write!(f, "NotFound")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::InvalidUri(msg) => {
write!(f, "InvalidUri")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::Unknown(err) => write!(f, "Unknown error: {:?}", err),
}
}
}
pub struct GetRecipeResponse;
impl jacquard_common::xrpc::XrpcResp for GetRecipeResponse {
const NSID: &'static str = "blue.recipes.feed.getRecipe";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetRecipeOutput<'de>;
type Err<'de> = GetRecipeError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetRecipe<'a> {
const NSID: &'static str = "blue.recipes.feed.getRecipe";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetRecipeResponse;
}
pub struct GetRecipeRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetRecipeRequest {
const PATH: &'static str = "/xrpc/blue.recipes.feed.getRecipe";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetRecipe<'de>;
type Response = GetRecipeResponse;
}
pub mod get_recipe_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 Uris;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Uris = Unset;
}
pub struct SetUris<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetUris<S> {}
impl<S: State> State for SetUris<S> {
type Uris = Set<members::uris>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct uris(());
}
}
pub struct GetRecipeBuilder<'a, S: get_recipe_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Vec<AtUri<'a>>>,),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetRecipe<'a> {
pub fn new() -> GetRecipeBuilder<'a, get_recipe_state::Empty> {
GetRecipeBuilder::new()
}
}
impl<'a> GetRecipeBuilder<'a, get_recipe_state::Empty> {
pub fn new() -> Self {
GetRecipeBuilder {
_state: PhantomData,
_fields: (None,),
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetRecipeBuilder<'a, S>
where
S: get_recipe_state::State,
S::Uris: get_recipe_state::IsUnset,
{
pub fn uris(
mut self,
value: impl Into<Vec<AtUri<'a>>>,
) -> GetRecipeBuilder<'a, get_recipe_state::SetUris<S>> {
self._fields.0 = Option::Some(value.into());
GetRecipeBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetRecipeBuilder<'a, S>
where
S: get_recipe_state::State,
S::Uris: get_recipe_state::IsSet,
{
pub fn build(self) -> GetRecipe<'a> {
GetRecipe {
uris: self._fields.0.unwrap(),
}
}
}