#[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::string::Did;
use jacquard_common::types::value::Data;
use jacquard_derive::{IntoStatic, open_union};
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetStatus<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub did: Option<Did<S>>,
pub feature: S,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetStatusOutput<S: BosStr = DefaultStr> {
pub did: Did<S>,
pub feature: S,
pub status: GetStatusOutputStatus<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum GetStatusOutputStatus<S: BosStr = DefaultStr> {
Granted,
Requested,
None,
Other(S),
}
impl<S: BosStr> GetStatusOutputStatus<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Granted => "granted",
Self::Requested => "requested",
Self::None => "none",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"granted" => Self::Granted,
"requested" => Self::Requested,
"none" => Self::None,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for GetStatusOutputStatus<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for GetStatusOutputStatus<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for GetStatusOutputStatus<S> {
fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
where
Ser: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, S: Deserialize<'de> + BosStr> Deserialize<'de> for GetStatusOutputStatus<S> {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = S::deserialize(deserializer)?;
Ok(Self::from_value(s))
}
}
impl<S: BosStr + Default> Default for GetStatusOutputStatus<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for GetStatusOutputStatus<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = GetStatusOutputStatus<S::Output>;
fn into_static(self) -> Self::Output {
match self {
GetStatusOutputStatus::Granted => GetStatusOutputStatus::Granted,
GetStatusOutputStatus::Requested => GetStatusOutputStatus::Requested,
GetStatusOutputStatus::None => GetStatusOutputStatus::None,
GetStatusOutputStatus::Other(v) => {
GetStatusOutputStatus::Other(v.into_static())
}
}
}
}
#[derive(
Serialize,
Deserialize,
Debug,
Clone,
PartialEq,
Eq,
thiserror::Error,
miette::Diagnostic
)]
#[serde(tag = "error", content = "message")]
pub enum GetStatusError {
#[serde(rename = "DidRequired")]
DidRequired(Option<SmolStr>),
#[serde(untagged)]
Other { error: SmolStr, message: Option<SmolStr> },
}
impl core::fmt::Display for GetStatusError {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::DidRequired(msg) => {
write!(f, "DidRequired")?;
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 GetStatusResponse;
impl jacquard_common::xrpc::XrpcResp for GetStatusResponse {
const NSID: &'static str = "place.stream.beta.getStatus";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetStatusOutput<S>;
type Err = GetStatusError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetStatus<S> {
const NSID: &'static str = "place.stream.beta.getStatus";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetStatusResponse;
}
pub struct GetStatusRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetStatusRequest {
const PATH: &'static str = "/xrpc/place.stream.beta.getStatus";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetStatus<S>;
type Response = GetStatusResponse;
}
pub mod get_status_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 Feature;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Feature = Unset;
}
pub struct SetFeature<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetFeature<St> {}
impl<St: State> State for SetFeature<St> {
type Feature = Set<members::feature>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct feature(());
}
}
pub struct GetStatusBuilder<St: get_status_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Did<S>>, Option<S>),
_type: PhantomData<fn() -> S>,
}
impl GetStatus<DefaultStr> {
pub fn new() -> GetStatusBuilder<get_status_state::Empty, DefaultStr> {
GetStatusBuilder::new()
}
}
impl<S: BosStr> GetStatus<S> {
pub fn builder() -> GetStatusBuilder<get_status_state::Empty, S> {
GetStatusBuilder::builder()
}
}
impl GetStatusBuilder<get_status_state::Empty, DefaultStr> {
pub fn new() -> Self {
GetStatusBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> GetStatusBuilder<get_status_state::Empty, S> {
pub fn builder() -> Self {
GetStatusBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<St: get_status_state::State, S: BosStr> GetStatusBuilder<St, S> {
pub fn did(mut self, value: impl Into<Option<Did<S>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_did(mut self, value: Option<Did<S>>) -> Self {
self._fields.0 = value;
self
}
}
impl<St, S: BosStr> GetStatusBuilder<St, S>
where
St: get_status_state::State,
St::Feature: get_status_state::IsUnset,
{
pub fn feature(
mut self,
value: impl Into<S>,
) -> GetStatusBuilder<get_status_state::SetFeature<St>, S> {
self._fields.1 = Option::Some(value.into());
GetStatusBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> GetStatusBuilder<St, S>
where
St: get_status_state::State,
St::Feature: get_status_state::IsSet,
{
pub fn build(self) -> GetStatus<S> {
GetStatus {
did: self._fields.0,
feature: self._fields.1.unwrap(),
}
}
}