#[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, 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::get_event;
#[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 GetEvent<'a> {
#[serde(borrow)]
pub record_key: CowStr<'a>,
#[serde(borrow)]
pub repository: Did<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetEventOutput<'a> {
#[serde(flatten)]
#[serde(borrow)]
pub value: jacquard_common::types::value::Data<'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 GetEventError<'a> {
#[serde(rename = "NotFound")]
NotFound(Option<CowStr<'a>>),
}
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::Unknown(err) => write!(f, "Unknown error: {:?}", err),
}
}
}
impl<'a> LexiconSchema for EventView<'a> {
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<'de> = GetEventOutput<'de>;
type Err<'de> = GetEventError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetEvent<'a> {
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<'de> = GetEvent<'de>;
type Response = GetEventResponse;
}
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 Url;
type CountNotGoing;
type CountInterested;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CountGoing = Unset;
type Url = Unset;
type CountNotGoing = Unset;
type CountInterested = Unset;
}
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 CountGoing = Set<members::count_going>;
type Url = S::Url;
type CountNotGoing = S::CountNotGoing;
type CountInterested = S::CountInterested;
}
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 CountGoing = S::CountGoing;
type Url = Set<members::url>;
type CountNotGoing = S::CountNotGoing;
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 CountGoing = S::CountGoing;
type Url = S::Url;
type CountNotGoing = Set<members::count_not_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 CountGoing = S::CountGoing;
type Url = S::Url;
type CountNotGoing = S::CountNotGoing;
type CountInterested = Set<members::count_interested>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct count_going(());
pub struct url(());
pub struct count_not_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::CountGoing: event_view_state::IsSet,
S::Url: event_view_state::IsSet,
S::CountNotGoing: 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_getEvent() -> 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.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::{Set, Unset, IsSet, IsUnset};
#[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<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetRecordKey<S> {}
impl<S: State> State for SetRecordKey<S> {
type RecordKey = Set<members::record_key>;
type Repository = S::Repository;
}
pub struct SetRepository<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetRepository<S> {}
impl<S: State> State for SetRepository<S> {
type RecordKey = S::RecordKey;
type Repository = Set<members::repository>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct record_key(());
pub struct repository(());
}
}
pub struct GetEventBuilder<'a, S: get_event_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<CowStr<'a>>, Option<Did<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetEvent<'a> {
pub fn new() -> GetEventBuilder<'a, get_event_state::Empty> {
GetEventBuilder::new()
}
}
impl<'a> GetEventBuilder<'a, get_event_state::Empty> {
pub fn new() -> Self {
GetEventBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetEventBuilder<'a, S>
where
S: get_event_state::State,
S::RecordKey: get_event_state::IsUnset,
{
pub fn record_key(
mut self,
value: impl Into<CowStr<'a>>,
) -> GetEventBuilder<'a, get_event_state::SetRecordKey<S>> {
self._fields.0 = Option::Some(value.into());
GetEventBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetEventBuilder<'a, S>
where
S: get_event_state::State,
S::Repository: get_event_state::IsUnset,
{
pub fn repository(
mut self,
value: impl Into<Did<'a>>,
) -> GetEventBuilder<'a, get_event_state::SetRepository<S>> {
self._fields.1 = Option::Some(value.into());
GetEventBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetEventBuilder<'a, S>
where
S: get_event_state::State,
S::RecordKey: get_event_state::IsSet,
S::Repository: get_event_state::IsSet,
{
pub fn build(self) -> GetEvent<'a> {
GetEvent {
record_key: self._fields.0.unwrap(),
repository: self._fields.1.unwrap(),
}
}
}