#[allow(unused_imports)]
use alloc::collections::BTreeMap;
use crate::ooo_bsky::authfetch::strategy::Strategy;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::{AtUri, Nsid, RecordKey, Rkey};
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, DefaultStr, FromStaticStr};
use jacquard_derive::IntoStatic;
use serde::{Deserialize, Serialize};
#[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 record: Data<S>,
pub rkey: RecordKey<Rkey<S>>,
pub strategy: Strategy<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)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct PutRecordOutput<S: BosStr = DefaultStr> {
pub uri: AtUri<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct PutRecordResponse;
impl jacquard_common::xrpc::XrpcResp for PutRecordResponse {
const NSID: &'static str = "ooo.bsky.authfetch.putRecord";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = PutRecordOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for PutRecord<S> {
const NSID: &'static str = "ooo.bsky.authfetch.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.authfetch.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::{IsSet, IsUnset, Set, Unset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Record;
type Rkey;
type Collection;
type Strategy;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Record = Unset;
type Rkey = Unset;
type Collection = Unset;
type Strategy = Unset;
}
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 Record = Set<members::record>;
type Rkey = St::Rkey;
type Collection = St::Collection;
type Strategy = St::Strategy;
}
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 Record = St::Record;
type Rkey = Set<members::rkey>;
type Collection = St::Collection;
type Strategy = St::Strategy;
}
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 Record = St::Record;
type Rkey = St::Rkey;
type Collection = Set<members::collection>;
type Strategy = St::Strategy;
}
pub struct SetStrategy<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetStrategy<St> {}
impl<St: State> State for SetStrategy<St> {
type Record = St::Record;
type Rkey = St::Rkey;
type Collection = St::Collection;
type Strategy = Set<members::strategy>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct record(());
pub struct rkey(());
pub struct collection(());
pub struct strategy(());
}
}
pub struct PutRecordBuilder<S: BosStr, St: put_record_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Nsid<S>>,
Option<Data<S>>,
Option<RecordKey<Rkey<S>>>,
Option<Strategy<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> PutRecord<S> {
pub fn new() -> PutRecordBuilder<S, put_record_state::Empty> {
PutRecordBuilder::new()
}
}
impl<S: BosStr> PutRecordBuilder<S, put_record_state::Empty> {
pub fn new() -> Self {
PutRecordBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PutRecordBuilder<S, St>
where
St: put_record_state::State,
St::Collection: put_record_state::IsUnset,
{
pub fn collection(
mut self,
value: impl Into<Nsid<S>>,
) -> PutRecordBuilder<S, put_record_state::SetCollection<St>> {
self._fields.0 = Option::Some(value.into());
PutRecordBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PutRecordBuilder<S, St>
where
St: put_record_state::State,
St::Record: put_record_state::IsUnset,
{
pub fn record(
mut self,
value: impl Into<Data<S>>,
) -> PutRecordBuilder<S, put_record_state::SetRecord<St>> {
self._fields.1 = Option::Some(value.into());
PutRecordBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PutRecordBuilder<S, St>
where
St: put_record_state::State,
St::Rkey: put_record_state::IsUnset,
{
pub fn rkey(
mut self,
value: impl Into<RecordKey<Rkey<S>>>,
) -> PutRecordBuilder<S, put_record_state::SetRkey<St>> {
self._fields.2 = Option::Some(value.into());
PutRecordBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PutRecordBuilder<S, St>
where
St: put_record_state::State,
St::Strategy: put_record_state::IsUnset,
{
pub fn strategy(
mut self,
value: impl Into<Strategy<S>>,
) -> PutRecordBuilder<S, put_record_state::SetStrategy<St>> {
self._fields.3 = Option::Some(value.into());
PutRecordBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PutRecordBuilder<S, St>
where
St: put_record_state::State,
St::Record: put_record_state::IsSet,
St::Rkey: put_record_state::IsSet,
St::Collection: put_record_state::IsSet,
St::Strategy: put_record_state::IsSet,
{
pub fn build(self) -> PutRecord<S> {
PutRecord {
collection: self._fields.0.unwrap(),
record: self._fields.1.unwrap(),
rkey: self._fields.2.unwrap(),
strategy: self._fields.3.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> PutRecord<S> {
PutRecord {
collection: self._fields.0.unwrap(),
record: self._fields.1.unwrap(),
rkey: self._fields.2.unwrap(),
strategy: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}