#[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::{Nsid, Cid, RecordKey, Rkey};
use jacquard_common::types::value::Data;
use jacquard_derive::{IntoStatic, open_union};
use serde::{Serialize, Deserialize};
use crate::com_atproto::repo::CommitMeta;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct DeleteRecord<S: BosStr = DefaultStr> {
pub collection: Nsid<S>,
pub repo: AtIdentifier<S>,
pub rkey: RecordKey<Rkey<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub swap_commit: Option<Cid<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub swap_record: Option<Cid<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 DeleteRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub commit: Option<CommitMeta<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 DeleteRecordError {
#[serde(rename = "InvalidSwap")]
InvalidSwap(Option<SmolStr>),
#[serde(untagged)]
Other { error: SmolStr, message: Option<SmolStr> },
}
impl core::fmt::Display for DeleteRecordError {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::InvalidSwap(msg) => {
write!(f, "InvalidSwap")?;
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 DeleteRecordResponse;
impl jacquard_common::xrpc::XrpcResp for DeleteRecordResponse {
const NSID: &'static str = "com.atproto.repo.deleteRecord";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = DeleteRecordOutput<S>;
type Err = DeleteRecordError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for DeleteRecord<S> {
const NSID: &'static str = "com.atproto.repo.deleteRecord";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = DeleteRecordResponse;
}
pub struct DeleteRecordRequest;
impl jacquard_common::xrpc::XrpcEndpoint for DeleteRecordRequest {
const PATH: &'static str = "/xrpc/com.atproto.repo.deleteRecord";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<S: BosStr> = DeleteRecord<S>;
type Response = DeleteRecordResponse;
}
pub mod delete_record_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 Rkey;
type Repo;
type Collection;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Rkey = Unset;
type Repo = Unset;
type Collection = Unset;
}
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 Rkey = Set<members::rkey>;
type Repo = St::Repo;
type Collection = St::Collection;
}
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 Rkey = St::Rkey;
type Repo = Set<members::repo>;
type Collection = St::Collection;
}
pub struct SetCollection<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCollection<St> {}
impl<St: State> State for SetCollection<St> {
type Rkey = St::Rkey;
type Repo = St::Repo;
type Collection = Set<members::collection>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct rkey(());
pub struct repo(());
pub struct collection(());
}
}
pub struct DeleteRecordBuilder<S: BosStr, St: delete_record_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Nsid<S>>,
Option<AtIdentifier<S>>,
Option<RecordKey<Rkey<S>>>,
Option<Cid<S>>,
Option<Cid<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> DeleteRecord<S> {
pub fn new() -> DeleteRecordBuilder<S, delete_record_state::Empty> {
DeleteRecordBuilder::new()
}
}
impl<S: BosStr> DeleteRecordBuilder<S, delete_record_state::Empty> {
pub fn new() -> Self {
DeleteRecordBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> DeleteRecordBuilder<S, St>
where
St: delete_record_state::State,
St::Collection: delete_record_state::IsUnset,
{
pub fn collection(
mut self,
value: impl Into<Nsid<S>>,
) -> DeleteRecordBuilder<S, delete_record_state::SetCollection<St>> {
self._fields.0 = Option::Some(value.into());
DeleteRecordBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> DeleteRecordBuilder<S, St>
where
St: delete_record_state::State,
St::Repo: delete_record_state::IsUnset,
{
pub fn repo(
mut self,
value: impl Into<AtIdentifier<S>>,
) -> DeleteRecordBuilder<S, delete_record_state::SetRepo<St>> {
self._fields.1 = Option::Some(value.into());
DeleteRecordBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> DeleteRecordBuilder<S, St>
where
St: delete_record_state::State,
St::Rkey: delete_record_state::IsUnset,
{
pub fn rkey(
mut self,
value: impl Into<RecordKey<Rkey<S>>>,
) -> DeleteRecordBuilder<S, delete_record_state::SetRkey<St>> {
self._fields.2 = Option::Some(value.into());
DeleteRecordBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: delete_record_state::State> DeleteRecordBuilder<S, St> {
pub fn swap_commit(mut self, value: impl Into<Option<Cid<S>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_swap_commit(mut self, value: Option<Cid<S>>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St: delete_record_state::State> DeleteRecordBuilder<S, St> {
pub fn swap_record(mut self, value: impl Into<Option<Cid<S>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_swap_record(mut self, value: Option<Cid<S>>) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St> DeleteRecordBuilder<S, St>
where
St: delete_record_state::State,
St::Rkey: delete_record_state::IsSet,
St::Repo: delete_record_state::IsSet,
St::Collection: delete_record_state::IsSet,
{
pub fn build(self) -> DeleteRecord<S> {
DeleteRecord {
collection: self._fields.0.unwrap(),
repo: self._fields.1.unwrap(),
rkey: self._fields.2.unwrap(),
swap_commit: self._fields.3,
swap_record: self._fields.4,
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> DeleteRecord<S> {
DeleteRecord {
collection: self._fields.0.unwrap(),
repo: self._fields.1.unwrap(),
rkey: self._fields.2.unwrap(),
swap_commit: self._fields.3,
swap_record: self._fields.4,
extra_data: Some(extra_data),
}
}
}