jacquard-api 0.12.0-beta.2

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: ooo.bsky.authfetch.putRecord
//
// This file was automatically generated from Lexicon schemas.
// Any manual changes will be overwritten on the next regeneration.

#[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> {
    ///The NSID of the record collection.
    pub collection: Nsid<S>,
    ///The private record value to store.
    pub record: Data<S>,
    ///The Record Key.
    pub rkey: RecordKey<Rkey<S>>,
    ///The strategy used to authenticate fetch requests for this record.
    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> {
    ///The AT URI of the stored record.
    pub uri: AtUri<S>,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}

/// Response type for ooo.bsky.authfetch.putRecord
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;
}

/// Endpoint type for ooo.bsky.authfetch.putRecord
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 {}
    }
    /// State trait tracking which required fields have been set
    pub trait State: sealed::Sealed {
        type Record;
        type Rkey;
        type Collection;
        type Strategy;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Record = Unset;
        type Rkey = Unset;
        type Collection = Unset;
        type Strategy = Unset;
    }
    ///State transition - sets the `record` field to Set
    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;
    }
    ///State transition - sets the `rkey` field to Set
    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;
    }
    ///State transition - sets the `collection` field to Set
    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;
    }
    ///State transition - sets the `strategy` field to Set
    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>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `record` field
        pub struct record(());
        ///Marker type for the `rkey` field
        pub struct rkey(());
        ///Marker type for the `collection` field
        pub struct collection(());
        ///Marker type for the `strategy` field
        pub struct strategy(());
    }
}

/// Builder for constructing an instance of this type.
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> {
    /// Create a new builder for this type.
    pub fn new() -> PutRecordBuilder<S, put_record_state::Empty> {
        PutRecordBuilder::new()
    }
}

impl<S: BosStr> PutRecordBuilder<S, put_record_state::Empty> {
    /// Create a new builder with all fields unset.
    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,
{
    /// Set the `collection` field (required)
    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,
{
    /// Set the `record` field (required)
    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,
{
    /// Set the `rkey` field (required)
    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,
{
    /// Set the `strategy` field (required)
    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,
{
    /// Build the final struct.
    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(),
        }
    }
    /// Build the final struct with custom extra_data.
    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),
        }
    }
}