#[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, UriValue};
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 PutRecord<S: BosStr = DefaultStr> {
pub collection: Nsid<S>,
pub gate_uri: UriValue<S>,
pub record: Data<S>,
pub repo: AtIdentifier<S>,
pub rkey: RecordKey<Rkey<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub swap_record: Option<Cid<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub validate: Option<bool>,
#[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)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct PutRecordOutput<S: BosStr = DefaultStr> {
pub cid: Cid<S>,
pub uri: UriValue<S>,
pub validation_status: 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 PutRecordError {
#[serde(rename = "InvalidSwap")]
InvalidSwap(Option<SmolStr>),
#[serde(untagged)]
Other { error: SmolStr, message: Option<SmolStr> },
}
impl core::fmt::Display for PutRecordError {
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 PutRecordResponse;
impl jacquard_common::xrpc::XrpcResp for PutRecordResponse {
const NSID: &'static str = "ooo.bsky.hds.putRecord";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = PutRecordOutput<S>;
type Err = PutRecordError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for PutRecord<S> {
const NSID: &'static str = "ooo.bsky.hds.putRecord";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = PutRecordResponse;
}
pub struct PutRecordRequest;
impl jacquard_common::xrpc::XrpcEndpoint for PutRecordRequest {
const PATH: &'static str = "/xrpc/ooo.bsky.hds.putRecord";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<S: BosStr> = PutRecord<S>;
type Response = PutRecordResponse;
}
pub mod put_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 Collection;
type GateUri;
type Record;
type Repo;
type Rkey;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Collection = Unset;
type GateUri = Unset;
type Record = Unset;
type Repo = Unset;
type Rkey = Unset;
}
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 Collection = Set<members::collection>;
type GateUri = St::GateUri;
type Record = St::Record;
type Repo = St::Repo;
type Rkey = St::Rkey;
}
pub struct SetGateUri<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetGateUri<St> {}
impl<St: State> State for SetGateUri<St> {
type Collection = St::Collection;
type GateUri = Set<members::gate_uri>;
type Record = St::Record;
type Repo = St::Repo;
type Rkey = St::Rkey;
}
pub struct SetRecord<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRecord<St> {}
impl<St: State> State for SetRecord<St> {
type Collection = St::Collection;
type GateUri = St::GateUri;
type Record = Set<members::record>;
type Repo = St::Repo;
type Rkey = St::Rkey;
}
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 Collection = St::Collection;
type GateUri = St::GateUri;
type Record = St::Record;
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 Collection = St::Collection;
type GateUri = St::GateUri;
type Record = St::Record;
type Repo = St::Repo;
type Rkey = Set<members::rkey>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct collection(());
pub struct gate_uri(());
pub struct record(());
pub struct repo(());
pub struct rkey(());
}
}
pub struct PutRecordBuilder<St: put_record_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Nsid<S>>,
Option<UriValue<S>>,
Option<Data<S>>,
Option<AtIdentifier<S>>,
Option<RecordKey<Rkey<S>>>,
Option<Cid<S>>,
Option<bool>,
),
_type: PhantomData<fn() -> S>,
}
impl PutRecord<DefaultStr> {
pub fn new() -> PutRecordBuilder<put_record_state::Empty, DefaultStr> {
PutRecordBuilder::new()
}
}
impl<S: BosStr> PutRecord<S> {
pub fn builder() -> PutRecordBuilder<put_record_state::Empty, S> {
PutRecordBuilder::builder()
}
}
impl PutRecordBuilder<put_record_state::Empty, DefaultStr> {
pub fn new() -> Self {
PutRecordBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> PutRecordBuilder<put_record_state::Empty, S> {
pub fn builder() -> Self {
PutRecordBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> PutRecordBuilder<St, S>
where
St: put_record_state::State,
St::Collection: put_record_state::IsUnset,
{
pub fn collection(
mut self,
value: impl Into<Nsid<S>>,
) -> PutRecordBuilder<put_record_state::SetCollection<St>, S> {
self._fields.0 = Option::Some(value.into());
PutRecordBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> PutRecordBuilder<St, S>
where
St: put_record_state::State,
St::GateUri: put_record_state::IsUnset,
{
pub fn gate_uri(
mut self,
value: impl Into<UriValue<S>>,
) -> PutRecordBuilder<put_record_state::SetGateUri<St>, S> {
self._fields.1 = Option::Some(value.into());
PutRecordBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> PutRecordBuilder<St, S>
where
St: put_record_state::State,
St::Record: put_record_state::IsUnset,
{
pub fn record(
mut self,
value: impl Into<Data<S>>,
) -> PutRecordBuilder<put_record_state::SetRecord<St>, S> {
self._fields.2 = Option::Some(value.into());
PutRecordBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> PutRecordBuilder<St, S>
where
St: put_record_state::State,
St::Repo: put_record_state::IsUnset,
{
pub fn repo(
mut self,
value: impl Into<AtIdentifier<S>>,
) -> PutRecordBuilder<put_record_state::SetRepo<St>, S> {
self._fields.3 = Option::Some(value.into());
PutRecordBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> PutRecordBuilder<St, S>
where
St: put_record_state::State,
St::Rkey: put_record_state::IsUnset,
{
pub fn rkey(
mut self,
value: impl Into<RecordKey<Rkey<S>>>,
) -> PutRecordBuilder<put_record_state::SetRkey<St>, S> {
self._fields.4 = Option::Some(value.into());
PutRecordBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: put_record_state::State, S: BosStr> PutRecordBuilder<St, S> {
pub fn swap_record(mut self, value: impl Into<Option<Cid<S>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_swap_record(mut self, value: Option<Cid<S>>) -> Self {
self._fields.5 = value;
self
}
}
impl<St: put_record_state::State, S: BosStr> PutRecordBuilder<St, S> {
pub fn validate(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_validate(mut self, value: Option<bool>) -> Self {
self._fields.6 = value;
self
}
}
impl<St, S: BosStr> PutRecordBuilder<St, S>
where
St: put_record_state::State,
St::Collection: put_record_state::IsSet,
St::GateUri: put_record_state::IsSet,
St::Record: put_record_state::IsSet,
St::Repo: put_record_state::IsSet,
St::Rkey: put_record_state::IsSet,
{
pub fn build(self) -> PutRecord<S> {
PutRecord {
collection: self._fields.0.unwrap(),
gate_uri: self._fields.1.unwrap(),
record: self._fields.2.unwrap(),
repo: self._fields.3.unwrap(),
rkey: self._fields.4.unwrap(),
swap_record: self._fields.5,
validate: self._fields.6,
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> PutRecord<S> {
PutRecord {
collection: self._fields.0.unwrap(),
gate_uri: self._fields.1.unwrap(),
record: self._fields.2.unwrap(),
repo: self._fields.3.unwrap(),
rkey: self._fields.4.unwrap(),
swap_record: self._fields.5,
validate: self._fields.6,
extra_data: Some(extra_data),
}
}
}