1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
use std::{
collections::BTreeMap,
ops::{Deref, DerefMut},
};
use ruma_macros::EventContent;
use serde::{Deserialize, Serialize};
use crate::{
receipt::ReceiptType, EventId, MilliSecondsSinceUnixEpoch, OwnedEventId, OwnedUserId, UserId,
};
#[derive(Clone, Debug, Deserialize, Serialize, EventContent)]
#[allow(clippy::exhaustive_structs)]
#[ruma_event(type = "m.receipt", kind = EphemeralRoom)]
pub struct ReceiptEventContent(pub BTreeMap<OwnedEventId, Receipts>);
impl ReceiptEventContent {
pub fn user_receipt(
&self,
user_id: &UserId,
receipt_type: ReceiptType,
) -> Option<(&EventId, &Receipt)> {
self.iter().find_map(|(event_id, receipts)| {
let receipt = receipts.get(&receipt_type)?.get(user_id)?;
Some((event_id.as_ref(), receipt))
})
}
}
impl Deref for ReceiptEventContent {
type Target = BTreeMap<OwnedEventId, Receipts>;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl DerefMut for ReceiptEventContent {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
pub type Receipts = BTreeMap<ReceiptType, UserReceipts>;
pub type UserReceipts = BTreeMap<OwnedUserId, Receipt>;
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
pub struct Receipt {
#[serde(skip_serializing_if = "Option::is_none")]
pub ts: Option<MilliSecondsSinceUnixEpoch>,
}
impl Receipt {
pub fn new(ts: MilliSecondsSinceUnixEpoch) -> Self {
Self { ts: Some(ts) }
}
}