#[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 CreateRecord<S: BosStr = DefaultStr> {
pub collection: Nsid<S>,
pub gate_uri: UriValue<S>,
pub record: Data<S>,
pub repo: AtIdentifier<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub rkey: Option<RecordKey<Rkey<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 CreateRecordOutput<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 CreateRecordError {
#[serde(rename = "AlreadyExists")]
AlreadyExists(Option<SmolStr>),
#[serde(untagged)]
Other { error: SmolStr, message: Option<SmolStr> },
}
impl core::fmt::Display for CreateRecordError {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::AlreadyExists(msg) => {
write!(f, "AlreadyExists")?;
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 CreateRecordResponse;
impl jacquard_common::xrpc::XrpcResp for CreateRecordResponse {
const NSID: &'static str = "ooo.bsky.hds.createRecord";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = CreateRecordOutput<S>;
type Err = CreateRecordError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for CreateRecord<S> {
const NSID: &'static str = "ooo.bsky.hds.createRecord";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = CreateRecordResponse;
}
pub struct CreateRecordRequest;
impl jacquard_common::xrpc::XrpcEndpoint for CreateRecordRequest {
const PATH: &'static str = "/xrpc/ooo.bsky.hds.createRecord";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<S: BosStr> = CreateRecord<S>;
type Response = CreateRecordResponse;
}
pub mod create_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;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Collection = Unset;
type GateUri = Unset;
type Record = Unset;
type Repo = 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;
}
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;
}
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;
}
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>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct collection(());
pub struct gate_uri(());
pub struct record(());
pub struct repo(());
}
}
pub struct CreateRecordBuilder<St: create_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<bool>,
),
_type: PhantomData<fn() -> S>,
}
impl CreateRecord<DefaultStr> {
pub fn new() -> CreateRecordBuilder<create_record_state::Empty, DefaultStr> {
CreateRecordBuilder::new()
}
}
impl<S: BosStr> CreateRecord<S> {
pub fn builder() -> CreateRecordBuilder<create_record_state::Empty, S> {
CreateRecordBuilder::builder()
}
}
impl CreateRecordBuilder<create_record_state::Empty, DefaultStr> {
pub fn new() -> Self {
CreateRecordBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> CreateRecordBuilder<create_record_state::Empty, S> {
pub fn builder() -> Self {
CreateRecordBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CreateRecordBuilder<St, S>
where
St: create_record_state::State,
St::Collection: create_record_state::IsUnset,
{
pub fn collection(
mut self,
value: impl Into<Nsid<S>>,
) -> CreateRecordBuilder<create_record_state::SetCollection<St>, S> {
self._fields.0 = Option::Some(value.into());
CreateRecordBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CreateRecordBuilder<St, S>
where
St: create_record_state::State,
St::GateUri: create_record_state::IsUnset,
{
pub fn gate_uri(
mut self,
value: impl Into<UriValue<S>>,
) -> CreateRecordBuilder<create_record_state::SetGateUri<St>, S> {
self._fields.1 = Option::Some(value.into());
CreateRecordBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CreateRecordBuilder<St, S>
where
St: create_record_state::State,
St::Record: create_record_state::IsUnset,
{
pub fn record(
mut self,
value: impl Into<Data<S>>,
) -> CreateRecordBuilder<create_record_state::SetRecord<St>, S> {
self._fields.2 = Option::Some(value.into());
CreateRecordBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CreateRecordBuilder<St, S>
where
St: create_record_state::State,
St::Repo: create_record_state::IsUnset,
{
pub fn repo(
mut self,
value: impl Into<AtIdentifier<S>>,
) -> CreateRecordBuilder<create_record_state::SetRepo<St>, S> {
self._fields.3 = Option::Some(value.into());
CreateRecordBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: create_record_state::State, S: BosStr> CreateRecordBuilder<St, S> {
pub fn rkey(mut self, value: impl Into<Option<RecordKey<Rkey<S>>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_rkey(mut self, value: Option<RecordKey<Rkey<S>>>) -> Self {
self._fields.4 = value;
self
}
}
impl<St: create_record_state::State, S: BosStr> CreateRecordBuilder<St, S> {
pub fn validate(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_validate(mut self, value: Option<bool>) -> Self {
self._fields.5 = value;
self
}
}
impl<St, S: BosStr> CreateRecordBuilder<St, S>
where
St: create_record_state::State,
St::Collection: create_record_state::IsSet,
St::GateUri: create_record_state::IsSet,
St::Record: create_record_state::IsSet,
St::Repo: create_record_state::IsSet,
{
pub fn build(self) -> CreateRecord<S> {
CreateRecord {
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,
validate: self._fields.5,
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> CreateRecord<S> {
CreateRecord {
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,
validate: self._fields.5,
extra_data: Some(extra_data),
}
}
}