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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
use std::collections::HashSet;
use jid::JID;
use sqlx::Sqlite;
pub struct ContactUpdate {
pub name: Option<String>,
pub groups: HashSet<String>,
}
#[derive(Debug, sqlx::FromRow, Clone)]
pub struct Contact {
// jid is the id used to reference everything, but not the primary key
pub user_jid: JID,
pub subscription: Subscription,
/// client user defined name
pub name: Option<String>,
// TODO: avatar, nickname
/// nickname picked by contact
// nickname: Option<String>,
#[sqlx(skip)]
pub groups: HashSet<String>,
}
#[derive(Debug, Clone)]
pub enum Subscription {
None,
PendingOut,
PendingIn,
PendingInPendingOut,
OnlyOut,
OnlyIn,
OutPendingIn,
InPendingOut,
Buddy,
// TODO: perhaps don't need, just emit event to remove contact
// Remove,
}
impl sqlx::Type<Sqlite> for Subscription {
fn type_info() -> <Sqlite as sqlx::Database>::TypeInfo {
<&str as sqlx::Type<Sqlite>>::type_info()
}
}
impl sqlx::Decode<'_, Sqlite> for Subscription {
fn decode(
value: <Sqlite as sqlx::Database>::ValueRef<'_>,
) -> Result<Self, sqlx::error::BoxDynError> {
let value = <&str as sqlx::Decode<Sqlite>>::decode(value)?;
match value {
"none" => Ok(Self::None),
"pending-out" => Ok(Self::PendingOut),
"pending-in" => Ok(Self::PendingIn),
"pending-in-pending-out" => Ok(Self::PendingInPendingOut),
"only-out" => Ok(Self::OnlyOut),
"only-in" => Ok(Self::OnlyIn),
"out-pending-in" => Ok(Self::OutPendingIn),
"in-pending-out" => Ok(Self::InPendingOut),
"buddy" => Ok(Self::Buddy),
_ => panic!("unexpected subscription `{value}`"),
}
}
}
impl sqlx::Encode<'_, Sqlite> for Subscription {
fn encode_by_ref(
&self,
buf: &mut <Sqlite as sqlx::Database>::ArgumentBuffer<'_>,
) -> Result<sqlx::encode::IsNull, sqlx::error::BoxDynError> {
let value = match self {
Subscription::None => "none",
Subscription::PendingOut => "pending-out",
Subscription::PendingIn => "pending-in",
Subscription::PendingInPendingOut => "pending-in-pending-out",
Subscription::OnlyOut => "only-out",
Subscription::OnlyIn => "only-in",
Subscription::OutPendingIn => "out-pending-in",
Subscription::InPendingOut => "in-pending-out",
Subscription::Buddy => "buddy",
};
<&str as sqlx::Encode<Sqlite>>::encode(value, buf)
}
}
// none
// >
// >>
// <
// <<
// ><
// >><
// ><<
// >><<
impl From<stanza::roster::Item> for Contact {
fn from(value: stanza::roster::Item) -> Self {
let subscription = match value.ask {
true => match value.subscription {
Some(s) => match s {
stanza::roster::Subscription::Both => Subscription::Buddy,
stanza::roster::Subscription::From => Subscription::InPendingOut,
stanza::roster::Subscription::None => Subscription::PendingOut,
stanza::roster::Subscription::Remove => Subscription::PendingOut,
stanza::roster::Subscription::To => Subscription::OnlyOut,
},
None => Subscription::PendingOut,
},
false => match value.subscription {
Some(s) => match s {
stanza::roster::Subscription::Both => Subscription::Buddy,
stanza::roster::Subscription::From => Subscription::OnlyIn,
stanza::roster::Subscription::None => Subscription::None,
stanza::roster::Subscription::Remove => Subscription::None,
stanza::roster::Subscription::To => Subscription::OnlyOut,
},
None => Subscription::None,
},
};
Contact {
user_jid: value.jid,
subscription,
name: value.name,
groups: HashSet::from_iter(value.groups.into_iter().filter_map(|group| group.0)),
}
}
}
|