#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct GetRecord<'a> {
#[serde(skip_serializing_if = "std::option::Option::is_none")]
#[serde(borrow)]
pub cid: std::option::Option<jacquard_common::types::string::Cid<'a>>,
#[serde(borrow)]
pub collection: jacquard_common::types::string::Nsid<'a>,
#[serde(borrow)]
pub repo: jacquard_common::types::ident::AtIdentifier<'a>,
#[serde(borrow)]
pub rkey: jacquard_common::types::string::RecordKey<
jacquard_common::types::string::Rkey<'a>,
>,
}
pub mod get_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<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetRkey<S> {}
impl<S: State> State for SetRkey<S> {
type Rkey = Set<members::rkey>;
type Repo = S::Repo;
type Collection = S::Collection;
}
pub struct SetRepo<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetRepo<S> {}
impl<S: State> State for SetRepo<S> {
type Rkey = S::Rkey;
type Repo = Set<members::repo>;
type Collection = S::Collection;
}
pub struct SetCollection<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCollection<S> {}
impl<S: State> State for SetCollection<S> {
type Rkey = S::Rkey;
type Repo = S::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 GetRecordBuilder<'a, S: get_record_state::State> {
_phantom_state: ::core::marker::PhantomData<fn() -> S>,
__unsafe_private_named: (
::core::option::Option<jacquard_common::types::string::Cid<'a>>,
::core::option::Option<jacquard_common::types::string::Nsid<'a>>,
::core::option::Option<jacquard_common::types::ident::AtIdentifier<'a>>,
::core::option::Option<
jacquard_common::types::string::RecordKey<
jacquard_common::types::string::Rkey<'a>,
>,
>,
),
_phantom: ::core::marker::PhantomData<&'a ()>,
}
impl<'a> GetRecord<'a> {
pub fn new() -> GetRecordBuilder<'a, get_record_state::Empty> {
GetRecordBuilder::new()
}
}
impl<'a> GetRecordBuilder<'a, get_record_state::Empty> {
pub fn new() -> Self {
GetRecordBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: (None, None, None, None),
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S: get_record_state::State> GetRecordBuilder<'a, S> {
pub fn cid(
mut self,
value: impl Into<Option<jacquard_common::types::string::Cid<'a>>>,
) -> Self {
self.__unsafe_private_named.0 = value.into();
self
}
pub fn maybe_cid(
mut self,
value: Option<jacquard_common::types::string::Cid<'a>>,
) -> Self {
self.__unsafe_private_named.0 = value;
self
}
}
impl<'a, S> GetRecordBuilder<'a, S>
where
S: get_record_state::State,
S::Collection: get_record_state::IsUnset,
{
pub fn collection(
mut self,
value: impl Into<jacquard_common::types::string::Nsid<'a>>,
) -> GetRecordBuilder<'a, get_record_state::SetCollection<S>> {
self.__unsafe_private_named.1 = ::core::option::Option::Some(value.into());
GetRecordBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S> GetRecordBuilder<'a, S>
where
S: get_record_state::State,
S::Repo: get_record_state::IsUnset,
{
pub fn repo(
mut self,
value: impl Into<jacquard_common::types::ident::AtIdentifier<'a>>,
) -> GetRecordBuilder<'a, get_record_state::SetRepo<S>> {
self.__unsafe_private_named.2 = ::core::option::Option::Some(value.into());
GetRecordBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S> GetRecordBuilder<'a, S>
where
S: get_record_state::State,
S::Rkey: get_record_state::IsUnset,
{
pub fn rkey(
mut self,
value: impl Into<
jacquard_common::types::string::RecordKey<
jacquard_common::types::string::Rkey<'a>,
>,
>,
) -> GetRecordBuilder<'a, get_record_state::SetRkey<S>> {
self.__unsafe_private_named.3 = ::core::option::Option::Some(value.into());
GetRecordBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S> GetRecordBuilder<'a, S>
where
S: get_record_state::State,
S::Rkey: get_record_state::IsSet,
S::Repo: get_record_state::IsSet,
S::Collection: get_record_state::IsSet,
{
pub fn build(self) -> GetRecord<'a> {
GetRecord {
cid: self.__unsafe_private_named.0,
collection: self.__unsafe_private_named.1.unwrap(),
repo: self.__unsafe_private_named.2.unwrap(),
rkey: self.__unsafe_private_named.3.unwrap(),
}
}
}
#[jacquard_derive::lexicon]
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct GetRecordOutput<'a> {
#[serde(skip_serializing_if = "std::option::Option::is_none")]
#[serde(borrow)]
pub cid: std::option::Option<jacquard_common::types::string::Cid<'a>>,
#[serde(borrow)]
pub uri: jacquard_common::types::string::AtUri<'a>,
#[serde(borrow)]
pub value: jacquard_common::types::value::Data<'a>,
}
#[jacquard_derive::open_union]
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
thiserror::Error,
miette::Diagnostic,
jacquard_derive::IntoStatic
)]
#[serde(tag = "error", content = "message")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum GetRecordError<'a> {
#[serde(rename = "RecordNotFound")]
RecordNotFound(std::option::Option<jacquard_common::CowStr<'a>>),
}
impl core::fmt::Display for GetRecordError<'_> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::RecordNotFound(msg) => {
write!(f, "RecordNotFound")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::Unknown(err) => write!(f, "Unknown error: {:?}", err),
}
}
}
pub struct GetRecordResponse;
impl jacquard_common::xrpc::XrpcResp for GetRecordResponse {
const NSID: &'static str = "com.atproto.repo.getRecord";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetRecordOutput<'de>;
type Err<'de> = GetRecordError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetRecord<'a> {
const NSID: &'static str = "com.atproto.repo.getRecord";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetRecordResponse;
}
pub struct GetRecordRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetRecordRequest {
const PATH: &'static str = "/xrpc/com.atproto.repo.getRecord";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetRecord<'de>;
type Response = GetRecordResponse;
}