#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_common::types::string::AtUri;
use jacquard_common::types::value::Data;
use jacquard_derive::{IntoStatic, lexicon, open_union};
use serde::{Serialize, Deserialize};
use crate::sh_weaver::notebook::BookEntryView;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetEntryByTitle<'a> {
#[serde(borrow)]
pub notebook: AtUri<'a>,
#[serde(borrow)]
pub title: CowStr<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetEntryByTitleOutput<'a> {
#[serde(borrow)]
pub entry: BookEntryView<'a>,
#[serde(borrow)]
pub record: Data<'a>,
}
#[open_union]
#[derive(
Serialize,
Deserialize,
Debug,
Clone,
PartialEq,
Eq,
thiserror::Error,
miette::Diagnostic,
IntoStatic
)]
#[serde(tag = "error", content = "message")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum GetEntryByTitleError<'a> {
#[serde(rename = "NotebookNotFound")]
NotebookNotFound(Option<CowStr<'a>>),
#[serde(rename = "EntryNotFound")]
EntryNotFound(Option<CowStr<'a>>),
}
impl core::fmt::Display for GetEntryByTitleError<'_> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::NotebookNotFound(msg) => {
write!(f, "NotebookNotFound")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::EntryNotFound(msg) => {
write!(f, "EntryNotFound")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::Unknown(err) => write!(f, "Unknown error: {:?}", err),
}
}
}
pub struct GetEntryByTitleResponse;
impl jacquard_common::xrpc::XrpcResp for GetEntryByTitleResponse {
const NSID: &'static str = "sh.weaver.notebook.getEntryByTitle";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetEntryByTitleOutput<'de>;
type Err<'de> = GetEntryByTitleError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetEntryByTitle<'a> {
const NSID: &'static str = "sh.weaver.notebook.getEntryByTitle";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetEntryByTitleResponse;
}
pub struct GetEntryByTitleRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetEntryByTitleRequest {
const PATH: &'static str = "/xrpc/sh.weaver.notebook.getEntryByTitle";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetEntryByTitle<'de>;
type Response = GetEntryByTitleResponse;
}
pub mod get_entry_by_title_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 Notebook;
type Title;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Notebook = Unset;
type Title = Unset;
}
pub struct SetNotebook<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetNotebook<S> {}
impl<S: State> State for SetNotebook<S> {
type Notebook = Set<members::notebook>;
type Title = S::Title;
}
pub struct SetTitle<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetTitle<S> {}
impl<S: State> State for SetTitle<S> {
type Notebook = S::Notebook;
type Title = Set<members::title>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct notebook(());
pub struct title(());
}
}
pub struct GetEntryByTitleBuilder<'a, S: get_entry_by_title_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<AtUri<'a>>, Option<CowStr<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetEntryByTitle<'a> {
pub fn new() -> GetEntryByTitleBuilder<'a, get_entry_by_title_state::Empty> {
GetEntryByTitleBuilder::new()
}
}
impl<'a> GetEntryByTitleBuilder<'a, get_entry_by_title_state::Empty> {
pub fn new() -> Self {
GetEntryByTitleBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetEntryByTitleBuilder<'a, S>
where
S: get_entry_by_title_state::State,
S::Notebook: get_entry_by_title_state::IsUnset,
{
pub fn notebook(
mut self,
value: impl Into<AtUri<'a>>,
) -> GetEntryByTitleBuilder<'a, get_entry_by_title_state::SetNotebook<S>> {
self._fields.0 = Option::Some(value.into());
GetEntryByTitleBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetEntryByTitleBuilder<'a, S>
where
S: get_entry_by_title_state::State,
S::Title: get_entry_by_title_state::IsUnset,
{
pub fn title(
mut self,
value: impl Into<CowStr<'a>>,
) -> GetEntryByTitleBuilder<'a, get_entry_by_title_state::SetTitle<S>> {
self._fields.1 = Option::Some(value.into());
GetEntryByTitleBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetEntryByTitleBuilder<'a, S>
where
S: get_entry_by_title_state::State,
S::Notebook: get_entry_by_title_state::IsSet,
S::Title: get_entry_by_title_state::IsSet,
{
pub fn build(self) -> GetEntryByTitle<'a> {
GetEntryByTitle {
notebook: self._fields.0.unwrap(),
title: self._fields.1.unwrap(),
}
}
}