#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::types::string::{Did, Cid, UriValue};
use jacquard_derive::{IntoStatic, lexicon, 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;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct EventView<'a> {
pub count_going: i64,
pub count_interested: i64,
pub count_not_going: i64,
#[serde(borrow)]
pub url: UriValue<'a>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct SearchEvents<'a> {
#[serde(default = "_default_limit")]
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub location: Option<Vec<Cid<'a>>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub query: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub repository: Option<Did<'a>>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct SearchEventsOutput<'a> {
#[serde(borrow)]
pub results: Vec<search_events::EventView<'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 SearchEventsError<'a> {
#[serde(rename = "InvalidRepository")]
InvalidRepository(Option<CowStr<'a>>),
#[serde(rename = "SearchUnavailable")]
SearchUnavailable(Option<CowStr<'a>>),
#[serde(rename = "SearchError")]
SearchError(Option<CowStr<'a>>),
}
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::Unknown(err) => write!(f, "Unknown error: {:?}", err),
}
}
}
impl<'a> LexiconSchema for EventView<'a> {
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<'de> = SearchEventsOutput<'de>;
type Err<'de> = SearchEventsError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for SearchEvents<'a> {
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<'de> = SearchEvents<'de>;
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 Url;
type CountNotGoing;
type CountGoing;
type CountInterested;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Url = Unset;
type CountNotGoing = Unset;
type CountGoing = Unset;
type CountInterested = Unset;
}
pub struct SetUrl<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetUrl<S> {}
impl<S: State> State for SetUrl<S> {
type Url = Set<members::url>;
type CountNotGoing = S::CountNotGoing;
type CountGoing = S::CountGoing;
type CountInterested = S::CountInterested;
}
pub struct SetCountNotGoing<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCountNotGoing<S> {}
impl<S: State> State for SetCountNotGoing<S> {
type Url = S::Url;
type CountNotGoing = Set<members::count_not_going>;
type CountGoing = S::CountGoing;
type CountInterested = S::CountInterested;
}
pub struct SetCountGoing<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCountGoing<S> {}
impl<S: State> State for SetCountGoing<S> {
type Url = S::Url;
type CountNotGoing = S::CountNotGoing;
type CountGoing = Set<members::count_going>;
type CountInterested = S::CountInterested;
}
pub struct SetCountInterested<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCountInterested<S> {}
impl<S: State> State for SetCountInterested<S> {
type Url = S::Url;
type CountNotGoing = S::CountNotGoing;
type CountGoing = S::CountGoing;
type CountInterested = Set<members::count_interested>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct url(());
pub struct count_not_going(());
pub struct count_going(());
pub struct count_interested(());
}
}
pub struct EventViewBuilder<'a, S: event_view_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<i64>, Option<i64>, Option<i64>, Option<UriValue<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> EventView<'a> {
pub fn new() -> EventViewBuilder<'a, event_view_state::Empty> {
EventViewBuilder::new()
}
}
impl<'a> EventViewBuilder<'a, event_view_state::Empty> {
pub fn new() -> Self {
EventViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> EventViewBuilder<'a, S>
where
S: event_view_state::State,
S::CountGoing: event_view_state::IsUnset,
{
pub fn count_going(
mut self,
value: impl Into<i64>,
) -> EventViewBuilder<'a, event_view_state::SetCountGoing<S>> {
self._fields.0 = Option::Some(value.into());
EventViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> EventViewBuilder<'a, S>
where
S: event_view_state::State,
S::CountInterested: event_view_state::IsUnset,
{
pub fn count_interested(
mut self,
value: impl Into<i64>,
) -> EventViewBuilder<'a, event_view_state::SetCountInterested<S>> {
self._fields.1 = Option::Some(value.into());
EventViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> EventViewBuilder<'a, S>
where
S: event_view_state::State,
S::CountNotGoing: event_view_state::IsUnset,
{
pub fn count_not_going(
mut self,
value: impl Into<i64>,
) -> EventViewBuilder<'a, event_view_state::SetCountNotGoing<S>> {
self._fields.2 = Option::Some(value.into());
EventViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> EventViewBuilder<'a, S>
where
S: event_view_state::State,
S::Url: event_view_state::IsUnset,
{
pub fn url(
mut self,
value: impl Into<UriValue<'a>>,
) -> EventViewBuilder<'a, event_view_state::SetUrl<S>> {
self._fields.3 = Option::Some(value.into());
EventViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> EventViewBuilder<'a, S>
where
S: event_view_state::State,
S::Url: event_view_state::IsSet,
S::CountNotGoing: event_view_state::IsSet,
S::CountGoing: event_view_state::IsSet,
S::CountInterested: event_view_state::IsSet,
{
pub fn build(self) -> EventView<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> EventView<'a> {
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<'a, S: search_events_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<i64>, Option<Vec<Cid<'a>>>, Option<CowStr<'a>>, Option<Did<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> SearchEvents<'a> {
pub fn new() -> SearchEventsBuilder<'a, search_events_state::Empty> {
SearchEventsBuilder::new()
}
}
impl<'a> SearchEventsBuilder<'a, search_events_state::Empty> {
pub fn new() -> Self {
SearchEventsBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: search_events_state::State> SearchEventsBuilder<'a, 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<'a, S: search_events_state::State> SearchEventsBuilder<'a, S> {
pub fn location(mut self, value: impl Into<Option<Vec<Cid<'a>>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_location(mut self, value: Option<Vec<Cid<'a>>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: search_events_state::State> SearchEventsBuilder<'a, S> {
pub fn query(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_query(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S: search_events_state::State> SearchEventsBuilder<'a, S> {
pub fn repository(mut self, value: impl Into<Option<Did<'a>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_repository(mut self, value: Option<Did<'a>>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S> SearchEventsBuilder<'a, S>
where
S: search_events_state::State,
{
pub fn build(self) -> SearchEvents<'a> {
SearchEvents {
limit: self._fields.0,
location: self._fields.1,
query: self._fields.2,
repository: self._fields.3,
}
}
}