#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, DefaultStr, FromStaticStr};
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::{Did, Cid, UriValue};
use jacquard_common::types::value::Data;
use jacquard_derive::{IntoStatic, open_union};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Serialize, Deserialize};
use crate::community_lexicon::calendar::search_events;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct EventView<S: BosStr = DefaultStr> {
pub count_going: i64,
pub count_interested: i64,
pub count_not_going: i64,
pub url: UriValue<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 SearchEvents<S: BosStr = DefaultStr> {
#[serde(default = "_default_limit")]
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub location: Option<Vec<Cid<S>>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub query: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub repository: Option<Did<S>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct SearchEventsOutput<S: BosStr = DefaultStr> {
pub results: Vec<search_events::EventView<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 SearchEventsError {
#[serde(rename = "InvalidRepository")]
InvalidRepository(Option<SmolStr>),
#[serde(rename = "SearchUnavailable")]
SearchUnavailable(Option<SmolStr>),
#[serde(rename = "SearchError")]
SearchError(Option<SmolStr>),
#[serde(untagged)]
Other { error: SmolStr, message: Option<SmolStr> },
}
impl core::fmt::Display for SearchEventsError {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::InvalidRepository(msg) => {
write!(f, "InvalidRepository")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::SearchUnavailable(msg) => {
write!(f, "SearchUnavailable")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::SearchError(msg) => {
write!(f, "SearchError")?;
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(())
}
}
}
}
impl<S: BosStr> LexiconSchema for EventView<S> {
fn nsid() -> &'static str {
"community.lexicon.calendar.searchEvents"
}
fn def_name() -> &'static str {
"eventView"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_community_lexicon_calendar_searchEvents()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub struct SearchEventsResponse;
impl jacquard_common::xrpc::XrpcResp for SearchEventsResponse {
const NSID: &'static str = "community.lexicon.calendar.searchEvents";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = SearchEventsOutput<S>;
type Err = SearchEventsError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for SearchEvents<S> {
const NSID: &'static str = "community.lexicon.calendar.searchEvents";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = SearchEventsResponse;
}
pub struct SearchEventsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for SearchEventsRequest {
const PATH: &'static str = "/xrpc/community.lexicon.calendar.searchEvents";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = SearchEvents<S>;
type Response = SearchEventsResponse;
}
pub mod event_view_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 CountGoing;
type CountInterested;
type CountNotGoing;
type Url;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CountGoing = Unset;
type CountInterested = Unset;
type CountNotGoing = Unset;
type Url = Unset;
}
pub struct SetCountGoing<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCountGoing<St> {}
impl<St: State> State for SetCountGoing<St> {
type CountGoing = Set<members::count_going>;
type CountInterested = St::CountInterested;
type CountNotGoing = St::CountNotGoing;
type Url = St::Url;
}
pub struct SetCountInterested<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCountInterested<St> {}
impl<St: State> State for SetCountInterested<St> {
type CountGoing = St::CountGoing;
type CountInterested = Set<members::count_interested>;
type CountNotGoing = St::CountNotGoing;
type Url = St::Url;
}
pub struct SetCountNotGoing<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCountNotGoing<St> {}
impl<St: State> State for SetCountNotGoing<St> {
type CountGoing = St::CountGoing;
type CountInterested = St::CountInterested;
type CountNotGoing = Set<members::count_not_going>;
type Url = St::Url;
}
pub struct SetUrl<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetUrl<St> {}
impl<St: State> State for SetUrl<St> {
type CountGoing = St::CountGoing;
type CountInterested = St::CountInterested;
type CountNotGoing = St::CountNotGoing;
type Url = Set<members::url>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct count_going(());
pub struct count_interested(());
pub struct count_not_going(());
pub struct url(());
}
}
pub struct EventViewBuilder<St: event_view_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (Option<i64>, Option<i64>, Option<i64>, Option<UriValue<S>>),
_type: PhantomData<fn() -> S>,
}
impl EventView<DefaultStr> {
pub fn new() -> EventViewBuilder<event_view_state::Empty, DefaultStr> {
EventViewBuilder::new()
}
}
impl<S: BosStr> EventView<S> {
pub fn builder() -> EventViewBuilder<event_view_state::Empty, S> {
EventViewBuilder::builder()
}
}
impl EventViewBuilder<event_view_state::Empty, DefaultStr> {
pub fn new() -> Self {
EventViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> EventViewBuilder<event_view_state::Empty, S> {
pub fn builder() -> Self {
EventViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> EventViewBuilder<St, S>
where
St: event_view_state::State,
St::CountGoing: event_view_state::IsUnset,
{
pub fn count_going(
mut self,
value: impl Into<i64>,
) -> EventViewBuilder<event_view_state::SetCountGoing<St>, S> {
self._fields.0 = Option::Some(value.into());
EventViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> EventViewBuilder<St, S>
where
St: event_view_state::State,
St::CountInterested: event_view_state::IsUnset,
{
pub fn count_interested(
mut self,
value: impl Into<i64>,
) -> EventViewBuilder<event_view_state::SetCountInterested<St>, S> {
self._fields.1 = Option::Some(value.into());
EventViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> EventViewBuilder<St, S>
where
St: event_view_state::State,
St::CountNotGoing: event_view_state::IsUnset,
{
pub fn count_not_going(
mut self,
value: impl Into<i64>,
) -> EventViewBuilder<event_view_state::SetCountNotGoing<St>, S> {
self._fields.2 = Option::Some(value.into());
EventViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> EventViewBuilder<St, S>
where
St: event_view_state::State,
St::Url: event_view_state::IsUnset,
{
pub fn url(
mut self,
value: impl Into<UriValue<S>>,
) -> EventViewBuilder<event_view_state::SetUrl<St>, S> {
self._fields.3 = Option::Some(value.into());
EventViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> EventViewBuilder<St, S>
where
St: event_view_state::State,
St::CountGoing: event_view_state::IsSet,
St::CountInterested: event_view_state::IsSet,
St::CountNotGoing: event_view_state::IsSet,
St::Url: event_view_state::IsSet,
{
pub fn build(self) -> EventView<S> {
EventView {
count_going: self._fields.0.unwrap(),
count_interested: self._fields.1.unwrap(),
count_not_going: self._fields.2.unwrap(),
url: self._fields.3.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> EventView<S> {
EventView {
count_going: self._fields.0.unwrap(),
count_interested: self._fields.1.unwrap(),
count_not_going: self._fields.2.unwrap(),
url: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_community_lexicon_calendar_searchEvents() -> LexiconDoc<'static> {
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
use alloc::collections::BTreeMap;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("community.lexicon.calendar.searchEvents"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("eventView"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static("An event record with RSVP counts and URL."),
),
required: Some(
vec![
SmolStr::new_static("countGoing"),
SmolStr::new_static("countInterested"),
SmolStr::new_static("countNotGoing"),
SmolStr::new_static("url")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("countGoing"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("countInterested"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("countNotGoing"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("url"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The canonical web URL for this event."),
),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("main"),
LexUserType::XrpcQuery(LexXrpcQuery {
parameters: Some(
LexXrpcQueryParameter::Params(LexXrpcParameters {
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("limit"),
LexXrpcParametersProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("location"),
LexXrpcParametersProperty::Array(LexPrimitiveArray {
items: LexPrimitiveArrayItem::String(LexString {
format: Some(LexStringFormat::Cid),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("query"),
LexXrpcParametersProperty::String(LexString {
description: Some(
CowStr::new_static("Full-text search query."),
),
max_length: Some(150usize),
max_graphemes: Some(150usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("repository"),
LexXrpcParametersProperty::String(LexString {
description: Some(
CowStr::new_static("Filter events by DID."),
),
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map
},
..Default::default()
}),
),
..Default::default()
}),
);
map
},
..Default::default()
}
}
fn _default_limit() -> Option<i64> {
Some(10i64)
}
pub mod search_events_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 {}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {}
#[allow(non_camel_case_types)]
pub mod members {}
}
pub struct SearchEventsBuilder<St: search_events_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (Option<i64>, Option<Vec<Cid<S>>>, Option<S>, Option<Did<S>>),
_type: PhantomData<fn() -> S>,
}
impl SearchEvents<DefaultStr> {
pub fn new() -> SearchEventsBuilder<search_events_state::Empty, DefaultStr> {
SearchEventsBuilder::new()
}
}
impl<S: BosStr> SearchEvents<S> {
pub fn builder() -> SearchEventsBuilder<search_events_state::Empty, S> {
SearchEventsBuilder::builder()
}
}
impl SearchEventsBuilder<search_events_state::Empty, DefaultStr> {
pub fn new() -> Self {
SearchEventsBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> SearchEventsBuilder<search_events_state::Empty, S> {
pub fn builder() -> Self {
SearchEventsBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<St: search_events_state::State, S: BosStr> SearchEventsBuilder<St, S> {
pub fn limit(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_limit(mut self, value: Option<i64>) -> Self {
self._fields.0 = value;
self
}
}
impl<St: search_events_state::State, S: BosStr> SearchEventsBuilder<St, S> {
pub fn location(mut self, value: impl Into<Option<Vec<Cid<S>>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_location(mut self, value: Option<Vec<Cid<S>>>) -> Self {
self._fields.1 = value;
self
}
}
impl<St: search_events_state::State, S: BosStr> SearchEventsBuilder<St, S> {
pub fn query(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_query(mut self, value: Option<S>) -> Self {
self._fields.2 = value;
self
}
}
impl<St: search_events_state::State, S: BosStr> SearchEventsBuilder<St, S> {
pub fn repository(mut self, value: impl Into<Option<Did<S>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_repository(mut self, value: Option<Did<S>>) -> Self {
self._fields.3 = value;
self
}
}
impl<St, S: BosStr> SearchEventsBuilder<St, S>
where
St: search_events_state::State,
{
pub fn build(self) -> SearchEvents<S> {
SearchEvents {
limit: self._fields.0,
location: self._fields.1,
query: self._fields.2,
repository: self._fields.3,
}
}
}