#[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::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid, Datetime};
use jacquard_common::types::uri::{RecordUri, UriError};
use jacquard_common::types::value::Data;
use jacquard_common::xrpc::XrpcResp;
use jacquard_derive::{IntoStatic, lexicon};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "app.protoimsg.chat.presence",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Presence<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub away_message: Option<S>,
pub status: PresenceStatus<S>,
pub updated_at: Datetime,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum PresenceStatus<S: BosStr = DefaultStr> {
Online,
Away,
Idle,
Offline,
Invisible,
Other(S),
}
impl<S: BosStr> PresenceStatus<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Online => "online",
Self::Away => "away",
Self::Idle => "idle",
Self::Offline => "offline",
Self::Invisible => "invisible",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"online" => Self::Online,
"away" => Self::Away,
"idle" => Self::Idle,
"offline" => Self::Offline,
"invisible" => Self::Invisible,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for PresenceStatus<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for PresenceStatus<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for PresenceStatus<S> {
fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
where
Ser: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, S: Deserialize<'de> + BosStr> Deserialize<'de> for PresenceStatus<S> {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = S::deserialize(deserializer)?;
Ok(Self::from_value(s))
}
}
impl<S: BosStr + Default> Default for PresenceStatus<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for PresenceStatus<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = PresenceStatus<S::Output>;
fn into_static(self) -> Self::Output {
match self {
PresenceStatus::Online => PresenceStatus::Online,
PresenceStatus::Away => PresenceStatus::Away,
PresenceStatus::Idle => PresenceStatus::Idle,
PresenceStatus::Offline => PresenceStatus::Offline,
PresenceStatus::Invisible => PresenceStatus::Invisible,
PresenceStatus::Other(v) => PresenceStatus::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct PresenceGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Presence<S>,
}
impl<S: BosStr> Presence<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, PresenceRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct PresenceRecord;
impl XrpcResp for PresenceRecord {
const NSID: &'static str = "app.protoimsg.chat.presence";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = PresenceGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<PresenceGetRecordOutput<S>> for Presence<S> {
fn from(output: PresenceGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Presence<S> {
const NSID: &'static str = "app.protoimsg.chat.presence";
type Record = PresenceRecord;
}
impl Collection for PresenceRecord {
const NSID: &'static str = "app.protoimsg.chat.presence";
type Record = PresenceRecord;
}
impl<S: BosStr> LexiconSchema for Presence<S> {
fn nsid() -> &'static str {
"app.protoimsg.chat.presence"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_protoimsg_chat_presence()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.away_message {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 300usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("away_message"),
max: 300usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
pub mod presence_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 UpdatedAt;
type Status;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type UpdatedAt = Unset;
type Status = Unset;
}
pub struct SetUpdatedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetUpdatedAt<St> {}
impl<St: State> State for SetUpdatedAt<St> {
type UpdatedAt = Set<members::updated_at>;
type Status = St::Status;
}
pub struct SetStatus<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetStatus<St> {}
impl<St: State> State for SetStatus<St> {
type UpdatedAt = St::UpdatedAt;
type Status = Set<members::status>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct updated_at(());
pub struct status(());
}
}
pub struct PresenceBuilder<S: BosStr, St: presence_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>, Option<PresenceStatus<S>>, Option<Datetime>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Presence<S> {
pub fn new() -> PresenceBuilder<S, presence_state::Empty> {
PresenceBuilder::new()
}
}
impl<S: BosStr> PresenceBuilder<S, presence_state::Empty> {
pub fn new() -> Self {
PresenceBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: presence_state::State> PresenceBuilder<S, St> {
pub fn away_message(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_away_message(mut self, value: Option<S>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St> PresenceBuilder<S, St>
where
St: presence_state::State,
St::Status: presence_state::IsUnset,
{
pub fn status(
mut self,
value: impl Into<PresenceStatus<S>>,
) -> PresenceBuilder<S, presence_state::SetStatus<St>> {
self._fields.1 = Option::Some(value.into());
PresenceBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PresenceBuilder<S, St>
where
St: presence_state::State,
St::UpdatedAt: presence_state::IsUnset,
{
pub fn updated_at(
mut self,
value: impl Into<Datetime>,
) -> PresenceBuilder<S, presence_state::SetUpdatedAt<St>> {
self._fields.2 = Option::Some(value.into());
PresenceBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PresenceBuilder<S, St>
where
St: presence_state::State,
St::UpdatedAt: presence_state::IsSet,
St::Status: presence_state::IsSet,
{
pub fn build(self) -> Presence<S> {
Presence {
away_message: self._fields.0,
status: self._fields.1.unwrap(),
updated_at: self._fields.2.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Presence<S> {
Presence {
away_message: self._fields.0,
status: self._fields.1.unwrap(),
updated_at: self._fields.2.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_app_protoimsg_chat_presence() -> 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("app.protoimsg.chat.presence"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"User's current presence status. Lives in their repo, updated by their client. IMPORTANT: visibleTo is intentionally excluded — it is a privacy preference and must remain server-side only. Writing it to the PDS would publicly expose who the user is hiding from.",
),
),
key: Some(CowStr::new_static("literal:self")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("status"),
SmolStr::new_static("updatedAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("awayMessage"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Custom away message / status text."),
),
max_length: Some(300usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("status"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Current presence status."),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("updatedAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("When presence was last updated."),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}