#[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::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid, Datetime};
use jacquard_common::types::uri::{RecordUri, UriError};
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};
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Presence<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub away_message: Option<CowStr<'a>>,
#[serde(borrow)]
pub status: PresenceStatus<'a>,
pub updated_at: Datetime,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum PresenceStatus<'a> {
Online,
Away,
Idle,
Offline,
Invisible,
Other(CowStr<'a>),
}
impl<'a> PresenceStatus<'a> {
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(),
}
}
}
impl<'a> From<&'a str> for PresenceStatus<'a> {
fn from(s: &'a str) -> Self {
match s {
"online" => Self::Online,
"away" => Self::Away,
"idle" => Self::Idle,
"offline" => Self::Offline,
"invisible" => Self::Invisible,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> From<String> for PresenceStatus<'a> {
fn from(s: String) -> Self {
match s.as_str() {
"online" => Self::Online,
"away" => Self::Away,
"idle" => Self::Idle,
"offline" => Self::Offline,
"invisible" => Self::Invisible,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> core::fmt::Display for PresenceStatus<'a> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<'a> AsRef<str> for PresenceStatus<'a> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<'a> serde::Serialize for PresenceStatus<'a> {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, 'a> serde::Deserialize<'de> for PresenceStatus<'a>
where
'de: 'a,
{
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = <&'de str>::deserialize(deserializer)?;
Ok(Self::from(s))
}
}
impl<'a> Default for PresenceStatus<'a> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl jacquard_common::IntoStatic for PresenceStatus<'_> {
type Output = PresenceStatus<'static>;
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<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cid: Option<Cid<'a>>,
#[serde(borrow)]
pub uri: AtUri<'a>,
#[serde(borrow)]
pub value: Presence<'a>,
}
impl<'a> Presence<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, PresenceRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[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<'de> = PresenceGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<PresenceGetRecordOutput<'_>> for Presence<'_> {
fn from(output: PresenceGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Presence<'_> {
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<'a> LexiconSchema for Presence<'a> {
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 Status;
type UpdatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Status = Unset;
type UpdatedAt = Unset;
}
pub struct SetStatus<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetStatus<S> {}
impl<S: State> State for SetStatus<S> {
type Status = Set<members::status>;
type UpdatedAt = S::UpdatedAt;
}
pub struct SetUpdatedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetUpdatedAt<S> {}
impl<S: State> State for SetUpdatedAt<S> {
type Status = S::Status;
type UpdatedAt = Set<members::updated_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct status(());
pub struct updated_at(());
}
}
pub struct PresenceBuilder<'a, S: presence_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<CowStr<'a>>, Option<PresenceStatus<'a>>, Option<Datetime>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Presence<'a> {
pub fn new() -> PresenceBuilder<'a, presence_state::Empty> {
PresenceBuilder::new()
}
}
impl<'a> PresenceBuilder<'a, presence_state::Empty> {
pub fn new() -> Self {
PresenceBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: presence_state::State> PresenceBuilder<'a, S> {
pub fn away_message(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_away_message(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S> PresenceBuilder<'a, S>
where
S: presence_state::State,
S::Status: presence_state::IsUnset,
{
pub fn status(
mut self,
value: impl Into<PresenceStatus<'a>>,
) -> PresenceBuilder<'a, presence_state::SetStatus<S>> {
self._fields.1 = Option::Some(value.into());
PresenceBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PresenceBuilder<'a, S>
where
S: presence_state::State,
S::UpdatedAt: presence_state::IsUnset,
{
pub fn updated_at(
mut self,
value: impl Into<Datetime>,
) -> PresenceBuilder<'a, presence_state::SetUpdatedAt<S>> {
self._fields.2 = Option::Some(value.into());
PresenceBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PresenceBuilder<'a, S>
where
S: presence_state::State,
S::Status: presence_state::IsSet,
S::UpdatedAt: presence_state::IsSet,
{
pub fn build(self) -> Presence<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Presence<'a> {
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()
}
}