#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{BosStr, CowStr, 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, UriValue};
use jacquard_common::types::value::Data;
use jacquard_derive::{IntoStatic, open_union};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
use crate::community_lexicon::calendar::get_event;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Deserialize, Serialize};
#[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 GetEvent<S: BosStr = DefaultStr> {
pub record_key: S,
pub repository: Did<S>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct GetEventOutput<S: BosStr = DefaultStr> {
#[serde(flatten)]
pub value: Data<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 GetEventError {
#[serde(rename = "NotFound")]
NotFound(Option<SmolStr>),
#[serde(untagged)]
Other {
error: SmolStr,
message: Option<SmolStr>,
},
}
impl core::fmt::Display for GetEventError {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::NotFound(msg) => {
write!(f, "NotFound")?;
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.getEvent"
}
fn def_name() -> &'static str {
"eventView"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_community_lexicon_calendar_getEvent()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub struct GetEventResponse;
impl jacquard_common::xrpc::XrpcResp for GetEventResponse {
const NSID: &'static str = "community.lexicon.calendar.getEvent";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetEventOutput<S>;
type Err = GetEventError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetEvent<S> {
const NSID: &'static str = "community.lexicon.calendar.getEvent";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetEventResponse;
}
pub struct GetEventRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetEventRequest {
const PATH: &'static str = "/xrpc/community.lexicon.calendar.getEvent";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetEvent<S>;
type Response = GetEventResponse;
}
pub mod event_view_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 Url;
type CountInterested;
type CountGoing;
type CountNotGoing;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Url = Unset;
type CountInterested = Unset;
type CountGoing = Unset;
type CountNotGoing = Unset;
}
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 Url = Set<members::url>;
type CountInterested = St::CountInterested;
type CountGoing = St::CountGoing;
type CountNotGoing = St::CountNotGoing;
}
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 Url = St::Url;
type CountInterested = Set<members::count_interested>;
type CountGoing = St::CountGoing;
type CountNotGoing = St::CountNotGoing;
}
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 Url = St::Url;
type CountInterested = St::CountInterested;
type CountGoing = Set<members::count_going>;
type CountNotGoing = St::CountNotGoing;
}
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 Url = St::Url;
type CountInterested = St::CountInterested;
type CountGoing = St::CountGoing;
type CountNotGoing = Set<members::count_not_going>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct url(());
pub struct count_interested(());
pub struct count_going(());
pub struct count_not_going(());
}
}
pub struct EventViewBuilder<S: BosStr, St: event_view_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<i64>, Option<i64>, Option<i64>, Option<UriValue<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> EventView<S> {
pub fn new() -> EventViewBuilder<S, event_view_state::Empty> {
EventViewBuilder::new()
}
}
impl<S: BosStr> EventViewBuilder<S, event_view_state::Empty> {
pub fn new() -> Self {
EventViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> EventViewBuilder<S, St>
where
St: event_view_state::State,
St::CountGoing: event_view_state::IsUnset,
{
pub fn count_going(
mut self,
value: impl Into<i64>,
) -> EventViewBuilder<S, event_view_state::SetCountGoing<St>> {
self._fields.0 = Option::Some(value.into());
EventViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> EventViewBuilder<S, St>
where
St: event_view_state::State,
St::CountInterested: event_view_state::IsUnset,
{
pub fn count_interested(
mut self,
value: impl Into<i64>,
) -> EventViewBuilder<S, event_view_state::SetCountInterested<St>> {
self._fields.1 = Option::Some(value.into());
EventViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> EventViewBuilder<S, St>
where
St: event_view_state::State,
St::CountNotGoing: event_view_state::IsUnset,
{
pub fn count_not_going(
mut self,
value: impl Into<i64>,
) -> EventViewBuilder<S, event_view_state::SetCountNotGoing<St>> {
self._fields.2 = Option::Some(value.into());
EventViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> EventViewBuilder<S, St>
where
St: event_view_state::State,
St::Url: event_view_state::IsUnset,
{
pub fn url(
mut self,
value: impl Into<UriValue<S>>,
) -> EventViewBuilder<S, event_view_state::SetUrl<St>> {
self._fields.3 = Option::Some(value.into());
EventViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> EventViewBuilder<S, St>
where
St: event_view_state::State,
St::Url: event_view_state::IsSet,
St::CountInterested: event_view_state::IsSet,
St::CountGoing: event_view_state::IsSet,
St::CountNotGoing: 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_getEvent() -> LexiconDoc<'static> {
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("community.lexicon.calendar.getEvent"),
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 URL for this event on Smoke Signal.",
)),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("main"),
LexUserType::XrpcQuery(LexXrpcQuery {
parameters: Some(LexXrpcQueryParameter::Params(LexXrpcParameters {
required: Some(vec![
SmolStr::new_static("repository"),
SmolStr::new_static("recordKey"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("recordKey"),
LexXrpcParametersProperty::String(LexString {
description: Some(CowStr::new_static(
"The record key (rkey) of the event.",
)),
max_length: Some(150usize),
max_graphemes: Some(150usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("repository"),
LexXrpcParametersProperty::String(LexString {
description: Some(CowStr::new_static(
"The DID of the repository containing the event.",
)),
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map
},
..Default::default()
})),
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod get_event_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 RecordKey;
type Repository;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type RecordKey = Unset;
type Repository = Unset;
}
pub struct SetRecordKey<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRecordKey<St> {}
impl<St: State> State for SetRecordKey<St> {
type RecordKey = Set<members::record_key>;
type Repository = St::Repository;
}
pub struct SetRepository<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRepository<St> {}
impl<St: State> State for SetRepository<St> {
type RecordKey = St::RecordKey;
type Repository = Set<members::repository>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct record_key(());
pub struct repository(());
}
}
pub struct GetEventBuilder<S: BosStr, St: get_event_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>, Option<Did<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> GetEvent<S> {
pub fn new() -> GetEventBuilder<S, get_event_state::Empty> {
GetEventBuilder::new()
}
}
impl<S: BosStr> GetEventBuilder<S, get_event_state::Empty> {
pub fn new() -> Self {
GetEventBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetEventBuilder<S, St>
where
St: get_event_state::State,
St::RecordKey: get_event_state::IsUnset,
{
pub fn record_key(
mut self,
value: impl Into<S>,
) -> GetEventBuilder<S, get_event_state::SetRecordKey<St>> {
self._fields.0 = Option::Some(value.into());
GetEventBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetEventBuilder<S, St>
where
St: get_event_state::State,
St::Repository: get_event_state::IsUnset,
{
pub fn repository(
mut self,
value: impl Into<Did<S>>,
) -> GetEventBuilder<S, get_event_state::SetRepository<St>> {
self._fields.1 = Option::Some(value.into());
GetEventBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetEventBuilder<S, St>
where
St: get_event_state::State,
St::RecordKey: get_event_state::IsSet,
St::Repository: get_event_state::IsSet,
{
pub fn build(self) -> GetEvent<S> {
GetEvent {
record_key: self._fields.0.unwrap(),
repository: self._fields.1.unwrap(),
}
}
}