#[allow(unused_imports)]
use alloc::collections::BTreeMap;
use crate::com_atproto::repo::strong_ref::StrongRef;
use crate::sh_weaver::notebook::NotebookView;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::ident::AtIdentifier;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, CowStr, DefaultStr, FromStaticStr};
use jacquard_derive::{IntoStatic, open_union};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct GetNotebookByTitle<S: BosStr = DefaultStr> {
pub actor: AtIdentifier<S>,
pub title: S,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct GetNotebookByTitleOutput<S: BosStr = DefaultStr> {
pub entries: Vec<StrongRef<S>>,
pub notebook: NotebookView<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, thiserror::Error, miette::Diagnostic,
)]
#[serde(tag = "error", content = "message")]
pub enum GetNotebookByTitleError {
#[serde(rename = "NotebookNotFound")]
NotebookNotFound(Option<SmolStr>),
#[serde(untagged)]
Other {
error: SmolStr,
message: Option<SmolStr>,
},
}
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::Other { error, message } => {
write!(f, "{}", error)?;
if let Some(msg) = message {
write!(f, ": {}", msg)?;
}
Ok(())
}
}
}
}
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<S: BosStr> = GetNotebookByTitleOutput<S>;
type Err = GetNotebookByTitleError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetNotebookByTitle<S> {
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<S: BosStr> = GetNotebookByTitle<S>;
type Response = GetNotebookByTitleResponse;
}
pub mod get_notebook_by_title_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 Title;
type Actor;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Title = Unset;
type Actor = Unset;
}
pub struct SetTitle<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetTitle<St> {}
impl<St: State> State for SetTitle<St> {
type Title = Set<members::title>;
type Actor = St::Actor;
}
pub struct SetActor<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetActor<St> {}
impl<St: State> State for SetActor<St> {
type Title = St::Title;
type Actor = Set<members::actor>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct title(());
pub struct actor(());
}
}
pub struct GetNotebookByTitleBuilder<S: BosStr, St: get_notebook_by_title_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<AtIdentifier<S>>, Option<S>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> GetNotebookByTitle<S> {
pub fn new() -> GetNotebookByTitleBuilder<S, get_notebook_by_title_state::Empty> {
GetNotebookByTitleBuilder::new()
}
}
impl<S: BosStr> GetNotebookByTitleBuilder<S, get_notebook_by_title_state::Empty> {
pub fn new() -> Self {
GetNotebookByTitleBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetNotebookByTitleBuilder<S, St>
where
St: get_notebook_by_title_state::State,
St::Actor: get_notebook_by_title_state::IsUnset,
{
pub fn actor(
mut self,
value: impl Into<AtIdentifier<S>>,
) -> GetNotebookByTitleBuilder<S, get_notebook_by_title_state::SetActor<St>> {
self._fields.0 = Option::Some(value.into());
GetNotebookByTitleBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetNotebookByTitleBuilder<S, St>
where
St: get_notebook_by_title_state::State,
St::Title: get_notebook_by_title_state::IsUnset,
{
pub fn title(
mut self,
value: impl Into<S>,
) -> GetNotebookByTitleBuilder<S, get_notebook_by_title_state::SetTitle<St>> {
self._fields.1 = Option::Some(value.into());
GetNotebookByTitleBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetNotebookByTitleBuilder<S, St>
where
St: get_notebook_by_title_state::State,
St::Title: get_notebook_by_title_state::IsSet,
St::Actor: get_notebook_by_title_state::IsSet,
{
pub fn build(self) -> GetNotebookByTitle<S> {
GetNotebookByTitle {
actor: self._fields.0.unwrap(),
title: self._fields.1.unwrap(),
}
}
}