#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{BosStr, DefaultStr, FromStaticStr};
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::{AtUri, Cid, RecordKey, Rkey};
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
use crate::systems_timker::hawlt::note::Note;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct PutNote<S: BosStr = DefaultStr> {
pub record: Note<S>,
pub rkey: RecordKey<Rkey<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 PutNoteOutput<S: BosStr = DefaultStr> {
pub cid: Cid<S>,
pub uri: AtUri<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct PutNoteResponse;
impl jacquard_common::xrpc::XrpcResp for PutNoteResponse {
const NSID: &'static str = "systems.timker.hawlt.putNote";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = PutNoteOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for PutNote<S> {
const NSID: &'static str = "systems.timker.hawlt.putNote";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = PutNoteResponse;
}
pub struct PutNoteRequest;
impl jacquard_common::xrpc::XrpcEndpoint for PutNoteRequest {
const PATH: &'static str = "/xrpc/systems.timker.hawlt.putNote";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<S: BosStr> = PutNote<S>;
type Response = PutNoteResponse;
}
pub mod put_note_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 Record;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Rkey = Unset;
type Record = Unset;
}
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 Rkey = Set<members::rkey>;
type Record = St::Record;
}
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 Rkey = St::Rkey;
type Record = Set<members::record>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct rkey(());
pub struct record(());
}
}
pub struct PutNoteBuilder<S: BosStr, St: put_note_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Note<S>>, Option<RecordKey<Rkey<S>>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> PutNote<S> {
pub fn new() -> PutNoteBuilder<S, put_note_state::Empty> {
PutNoteBuilder::new()
}
}
impl<S: BosStr> PutNoteBuilder<S, put_note_state::Empty> {
pub fn new() -> Self {
PutNoteBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PutNoteBuilder<S, St>
where
St: put_note_state::State,
St::Record: put_note_state::IsUnset,
{
pub fn record(
mut self,
value: impl Into<Note<S>>,
) -> PutNoteBuilder<S, put_note_state::SetRecord<St>> {
self._fields.0 = Option::Some(value.into());
PutNoteBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PutNoteBuilder<S, St>
where
St: put_note_state::State,
St::Rkey: put_note_state::IsUnset,
{
pub fn rkey(
mut self,
value: impl Into<RecordKey<Rkey<S>>>,
) -> PutNoteBuilder<S, put_note_state::SetRkey<St>> {
self._fields.1 = Option::Some(value.into());
PutNoteBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PutNoteBuilder<S, St>
where
St: put_note_state::State,
St::Rkey: put_note_state::IsSet,
St::Record: put_note_state::IsSet,
{
pub fn build(self) -> PutNote<S> {
PutNote {
record: self._fields.0.unwrap(),
rkey: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> PutNote<S> {
PutNote {
record: self._fields.0.unwrap(),
rkey: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}