#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_common::types::ident::AtIdentifier;
use jacquard_derive::{IntoStatic, lexicon, open_union};
use serde::{Serialize, Deserialize};
use crate::com_atproto::repo::strong_ref::StrongRef;
use crate::sh_weaver::notebook::NotebookView;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetNotebookByTitle<'a> {
#[serde(borrow)]
pub actor: AtIdentifier<'a>,
#[serde(borrow)]
pub title: CowStr<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetNotebookByTitleOutput<'a> {
#[serde(borrow)]
pub entries: Vec<StrongRef<'a>>,
#[serde(borrow)]
pub notebook: NotebookView<'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 GetNotebookByTitleError<'a> {
#[serde(rename = "NotebookNotFound")]
NotebookNotFound(Option<CowStr<'a>>),
}
impl core::fmt::Display for GetNotebookByTitleError<'_> {
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::Unknown(err) => write!(f, "Unknown error: {:?}", err),
}
}
}
pub struct GetNotebookByTitleResponse;
impl jacquard_common::xrpc::XrpcResp for GetNotebookByTitleResponse {
const NSID: &'static str = "sh.weaver.notebook.getNotebookByTitle";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetNotebookByTitleOutput<'de>;
type Err<'de> = GetNotebookByTitleError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetNotebookByTitle<'a> {
const NSID: &'static str = "sh.weaver.notebook.getNotebookByTitle";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetNotebookByTitleResponse;
}
pub struct GetNotebookByTitleRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetNotebookByTitleRequest {
const PATH: &'static str = "/xrpc/sh.weaver.notebook.getNotebookByTitle";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetNotebookByTitle<'de>;
type Response = GetNotebookByTitleResponse;
}
pub mod get_notebook_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 Actor;
type Title;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Actor = Unset;
type Title = Unset;
}
pub struct SetActor<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetActor<S> {}
impl<S: State> State for SetActor<S> {
type Actor = Set<members::actor>;
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 Actor = S::Actor;
type Title = Set<members::title>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct actor(());
pub struct title(());
}
}
pub struct GetNotebookByTitleBuilder<'a, S: get_notebook_by_title_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<AtIdentifier<'a>>, Option<CowStr<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetNotebookByTitle<'a> {
pub fn new() -> GetNotebookByTitleBuilder<'a, get_notebook_by_title_state::Empty> {
GetNotebookByTitleBuilder::new()
}
}
impl<'a> GetNotebookByTitleBuilder<'a, get_notebook_by_title_state::Empty> {
pub fn new() -> Self {
GetNotebookByTitleBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetNotebookByTitleBuilder<'a, S>
where
S: get_notebook_by_title_state::State,
S::Actor: get_notebook_by_title_state::IsUnset,
{
pub fn actor(
mut self,
value: impl Into<AtIdentifier<'a>>,
) -> GetNotebookByTitleBuilder<'a, get_notebook_by_title_state::SetActor<S>> {
self._fields.0 = Option::Some(value.into());
GetNotebookByTitleBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetNotebookByTitleBuilder<'a, S>
where
S: get_notebook_by_title_state::State,
S::Title: get_notebook_by_title_state::IsUnset,
{
pub fn title(
mut self,
value: impl Into<CowStr<'a>>,
) -> GetNotebookByTitleBuilder<'a, get_notebook_by_title_state::SetTitle<S>> {
self._fields.1 = Option::Some(value.into());
GetNotebookByTitleBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetNotebookByTitleBuilder<'a, S>
where
S: get_notebook_by_title_state::State,
S::Actor: get_notebook_by_title_state::IsSet,
S::Title: get_notebook_by_title_state::IsSet,
{
pub fn build(self) -> GetNotebookByTitle<'a> {
GetNotebookByTitle {
actor: self._fields.0.unwrap(),
title: self._fields.1.unwrap(),
}
}
}