#[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::value::Data;
use jacquard_derive::{IntoStatic, open_union};
use serde::{Serialize, Deserialize};
use crate::app_bsky::draft::Draft;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct CreateDraft<S: BosStr = DefaultStr> {
pub draft: Draft<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, IntoStatic, Default)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct CreateDraftOutput<S: BosStr = DefaultStr> {
pub id: 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 CreateDraftError {
#[serde(rename = "DraftLimitReached")]
DraftLimitReached(Option<SmolStr>),
#[serde(untagged)]
Other { error: SmolStr, message: Option<SmolStr> },
}
impl core::fmt::Display for CreateDraftError {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::DraftLimitReached(msg) => {
write!(f, "DraftLimitReached")?;
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 CreateDraftResponse;
impl jacquard_common::xrpc::XrpcResp for CreateDraftResponse {
const NSID: &'static str = "app.bsky.draft.createDraft";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = CreateDraftOutput<S>;
type Err = CreateDraftError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for CreateDraft<S> {
const NSID: &'static str = "app.bsky.draft.createDraft";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = CreateDraftResponse;
}
pub struct CreateDraftRequest;
impl jacquard_common::xrpc::XrpcEndpoint for CreateDraftRequest {
const PATH: &'static str = "/xrpc/app.bsky.draft.createDraft";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<S: BosStr> = CreateDraft<S>;
type Response = CreateDraftResponse;
}
pub mod create_draft_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 Draft;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Draft = Unset;
}
pub struct SetDraft<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetDraft<St> {}
impl<St: State> State for SetDraft<St> {
type Draft = Set<members::draft>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct draft(());
}
}
pub struct CreateDraftBuilder<S: BosStr, St: create_draft_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Draft<S>>,),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> CreateDraft<S> {
pub fn new() -> CreateDraftBuilder<S, create_draft_state::Empty> {
CreateDraftBuilder::new()
}
}
impl<S: BosStr> CreateDraftBuilder<S, create_draft_state::Empty> {
pub fn new() -> Self {
CreateDraftBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> CreateDraftBuilder<S, St>
where
St: create_draft_state::State,
St::Draft: create_draft_state::IsUnset,
{
pub fn draft(
mut self,
value: impl Into<Draft<S>>,
) -> CreateDraftBuilder<S, create_draft_state::SetDraft<St>> {
self._fields.0 = Option::Some(value.into());
CreateDraftBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> CreateDraftBuilder<S, St>
where
St: create_draft_state::State,
St::Draft: create_draft_state::IsSet,
{
pub fn build(self) -> CreateDraft<S> {
CreateDraft {
draft: self._fields.0.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> CreateDraft<S> {
CreateDraft {
draft: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}