pub mod gate;
pub mod message;
pub mod profile;
#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{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::{AtUri, Cid, Datetime};
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
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::app_bsky::actor::ProfileViewBasic;
use crate::place_stream::chat::profile::Profile;
use crate::place_stream::chat;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct MessageView<S: BosStr = DefaultStr> {
pub author: ProfileViewBasic<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub chat_profile: Option<Profile<S>>,
pub cid: Cid<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub deleted: Option<bool>,
pub indexed_at: Datetime,
pub record: Data<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub reply_to: Option<MessageViewReplyTo<S>>,
pub uri: AtUri<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[jacquard_derive::open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum MessageViewReplyTo<S: BosStr = DefaultStr> {
#[serde(rename = "place.stream.chat.defs#messageView")]
MessageView(Box<chat::MessageView<S>>),
}
impl<S: BosStr> LexiconSchema for MessageView<S> {
fn nsid() -> &'static str {
"place.stream.chat.defs"
}
fn def_name() -> &'static str {
"messageView"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_place_stream_chat_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod message_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 Uri;
type Author;
type IndexedAt;
type Cid;
type Record;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Uri = Unset;
type Author = Unset;
type IndexedAt = Unset;
type Cid = Unset;
type Record = Unset;
}
pub struct SetUri<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetUri<St> {}
impl<St: State> State for SetUri<St> {
type Uri = Set<members::uri>;
type Author = St::Author;
type IndexedAt = St::IndexedAt;
type Cid = St::Cid;
type Record = St::Record;
}
pub struct SetAuthor<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAuthor<St> {}
impl<St: State> State for SetAuthor<St> {
type Uri = St::Uri;
type Author = Set<members::author>;
type IndexedAt = St::IndexedAt;
type Cid = St::Cid;
type Record = St::Record;
}
pub struct SetIndexedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetIndexedAt<St> {}
impl<St: State> State for SetIndexedAt<St> {
type Uri = St::Uri;
type Author = St::Author;
type IndexedAt = Set<members::indexed_at>;
type Cid = St::Cid;
type Record = St::Record;
}
pub struct SetCid<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCid<St> {}
impl<St: State> State for SetCid<St> {
type Uri = St::Uri;
type Author = St::Author;
type IndexedAt = St::IndexedAt;
type Cid = Set<members::cid>;
type Record = St::Record;
}
pub struct SetRecord<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRecord<St> {}
impl<St: State> State for SetRecord<St> {
type Uri = St::Uri;
type Author = St::Author;
type IndexedAt = St::IndexedAt;
type Cid = St::Cid;
type Record = Set<members::record>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct uri(());
pub struct author(());
pub struct indexed_at(());
pub struct cid(());
pub struct record(());
}
}
pub struct MessageViewBuilder<S: BosStr, St: message_view_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<ProfileViewBasic<S>>,
Option<Profile<S>>,
Option<Cid<S>>,
Option<bool>,
Option<Datetime>,
Option<Data<S>>,
Option<MessageViewReplyTo<S>>,
Option<AtUri<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> MessageView<S> {
pub fn new() -> MessageViewBuilder<S, message_view_state::Empty> {
MessageViewBuilder::new()
}
}
impl<S: BosStr> MessageViewBuilder<S, message_view_state::Empty> {
pub fn new() -> Self {
MessageViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> MessageViewBuilder<S, St>
where
St: message_view_state::State,
St::Author: message_view_state::IsUnset,
{
pub fn author(
mut self,
value: impl Into<ProfileViewBasic<S>>,
) -> MessageViewBuilder<S, message_view_state::SetAuthor<St>> {
self._fields.0 = Option::Some(value.into());
MessageViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: message_view_state::State> MessageViewBuilder<S, St> {
pub fn chat_profile(mut self, value: impl Into<Option<Profile<S>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_chat_profile(mut self, value: Option<Profile<S>>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St> MessageViewBuilder<S, St>
where
St: message_view_state::State,
St::Cid: message_view_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<Cid<S>>,
) -> MessageViewBuilder<S, message_view_state::SetCid<St>> {
self._fields.2 = Option::Some(value.into());
MessageViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: message_view_state::State> MessageViewBuilder<S, St> {
pub fn deleted(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_deleted(mut self, value: Option<bool>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St> MessageViewBuilder<S, St>
where
St: message_view_state::State,
St::IndexedAt: message_view_state::IsUnset,
{
pub fn indexed_at(
mut self,
value: impl Into<Datetime>,
) -> MessageViewBuilder<S, message_view_state::SetIndexedAt<St>> {
self._fields.4 = Option::Some(value.into());
MessageViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> MessageViewBuilder<S, St>
where
St: message_view_state::State,
St::Record: message_view_state::IsUnset,
{
pub fn record(
mut self,
value: impl Into<Data<S>>,
) -> MessageViewBuilder<S, message_view_state::SetRecord<St>> {
self._fields.5 = Option::Some(value.into());
MessageViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: message_view_state::State> MessageViewBuilder<S, St> {
pub fn reply_to(mut self, value: impl Into<Option<MessageViewReplyTo<S>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_reply_to(mut self, value: Option<MessageViewReplyTo<S>>) -> Self {
self._fields.6 = value;
self
}
}
impl<S: BosStr, St> MessageViewBuilder<S, St>
where
St: message_view_state::State,
St::Uri: message_view_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<S>>,
) -> MessageViewBuilder<S, message_view_state::SetUri<St>> {
self._fields.7 = Option::Some(value.into());
MessageViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> MessageViewBuilder<S, St>
where
St: message_view_state::State,
St::Uri: message_view_state::IsSet,
St::Author: message_view_state::IsSet,
St::IndexedAt: message_view_state::IsSet,
St::Cid: message_view_state::IsSet,
St::Record: message_view_state::IsSet,
{
pub fn build(self) -> MessageView<S> {
MessageView {
author: self._fields.0.unwrap(),
chat_profile: self._fields.1,
cid: self._fields.2.unwrap(),
deleted: self._fields.3,
indexed_at: self._fields.4.unwrap(),
record: self._fields.5.unwrap(),
reply_to: self._fields.6,
uri: self._fields.7.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> MessageView<S> {
MessageView {
author: self._fields.0.unwrap(),
chat_profile: self._fields.1,
cid: self._fields.2.unwrap(),
deleted: self._fields.3,
indexed_at: self._fields.4.unwrap(),
record: self._fields.5.unwrap(),
reply_to: self._fields.6,
uri: self._fields.7.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_place_stream_chat_defs() -> 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("place.stream.chat.defs"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("messageView"),
LexUserType::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("uri"), SmolStr::new_static("cid"),
SmolStr::new_static("author"), SmolStr::new_static("record"),
SmolStr::new_static("indexedAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("author"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static(
"app.bsky.actor.defs#profileViewBasic",
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("chatProfile"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("place.stream.chat.profile"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("cid"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Cid),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("deleted"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("indexedAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("record"),
LexObjectProperty::Unknown(LexUnknown {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("replyTo"),
LexObjectProperty::Union(LexRefUnion {
refs: vec![CowStr::new_static("#messageView")],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}