1use std::{
6 collections::BTreeMap,
7 hash::{Hash, Hasher},
8};
9
10use serde::{Deserialize, Serialize};
11
12use crate::{
13 serde::StringEnum, MilliSecondsSinceUnixEpoch, OwnedRoomAliasId, OwnedUserId, PrivOwnedStr,
14};
15
16#[derive(Clone, Debug, Deserialize, Serialize)]
21#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
22pub struct Protocol<I = ProtocolInstance> {
23 pub user_fields: Vec<String>,
25
26 pub location_fields: Vec<String>,
28
29 #[cfg_attr(feature = "compat-optional", serde(default))]
34 pub icon: String,
35
36 pub field_types: BTreeMap<String, FieldType>,
38
39 pub instances: Vec<I>,
41}
42
43impl<I> Protocol<I> {
44 pub fn into<J: From<I>>(self) -> Protocol<J> {
46 let Self { user_fields, location_fields, icon, field_types, instances } = self;
47 Protocol {
48 user_fields,
49 location_fields,
50 icon,
51 field_types,
52 instances: instances.into_iter().map(J::from).collect(),
53 }
54 }
55}
56
57#[derive(Debug)]
62#[allow(clippy::exhaustive_structs)]
63pub struct ProtocolInit<I = ProtocolInstance> {
64 pub user_fields: Vec<String>,
66
67 pub location_fields: Vec<String>,
69
70 pub icon: String,
72
73 pub field_types: BTreeMap<String, FieldType>,
75
76 pub instances: Vec<I>,
78}
79
80impl<I> From<ProtocolInit<I>> for Protocol<I> {
81 fn from(init: ProtocolInit<I>) -> Self {
82 let ProtocolInit { user_fields, location_fields, icon, field_types, instances } = init;
83 Self { user_fields, location_fields, icon, field_types, instances }
84 }
85}
86
87#[derive(Clone, Debug, Deserialize, Serialize)]
92#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
93pub struct ProtocolInstance {
94 pub desc: String,
96
97 #[serde(skip_serializing_if = "Option::is_none")]
99 pub icon: Option<String>,
100
101 pub fields: BTreeMap<String, String>,
103
104 pub network_id: String,
106
107 #[serde(skip_serializing_if = "Option::is_none")]
115 pub instance_id: Option<String>,
116}
117
118#[derive(Debug)]
123#[allow(clippy::exhaustive_structs)]
124pub struct ProtocolInstanceInit {
125 pub desc: String,
127
128 pub fields: BTreeMap<String, String>,
130
131 pub network_id: String,
133}
134
135impl From<ProtocolInstanceInit> for ProtocolInstance {
136 fn from(init: ProtocolInstanceInit) -> Self {
137 let ProtocolInstanceInit { desc, fields, network_id } = init;
138 Self { desc, icon: None, fields, network_id, instance_id: None }
139 }
140}
141
142#[derive(Clone, Debug, Deserialize, Serialize)]
147#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
148pub struct FieldType {
149 pub regexp: String,
151
152 pub placeholder: String,
154}
155
156#[derive(Debug)]
161#[allow(clippy::exhaustive_structs)]
162pub struct FieldTypeInit {
163 pub regexp: String,
165
166 pub placeholder: String,
168}
169
170impl From<FieldTypeInit> for FieldType {
171 fn from(init: FieldTypeInit) -> Self {
172 let FieldTypeInit { regexp, placeholder } = init;
173 Self { regexp, placeholder }
174 }
175}
176
177#[derive(Clone, Debug, Deserialize, Serialize)]
179#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
180pub struct Location {
181 pub alias: OwnedRoomAliasId,
183
184 pub protocol: String,
186
187 pub fields: BTreeMap<String, String>,
189}
190
191impl Location {
192 pub fn new(
194 alias: OwnedRoomAliasId,
195 protocol: String,
196 fields: BTreeMap<String, String>,
197 ) -> Self {
198 Self { alias, protocol, fields }
199 }
200}
201
202#[derive(Clone, Debug, Deserialize, Serialize)]
204#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
205pub struct User {
206 pub userid: OwnedUserId,
208
209 pub protocol: String,
211
212 pub fields: BTreeMap<String, String>,
214}
215
216impl User {
217 pub fn new(userid: OwnedUserId, protocol: String, fields: BTreeMap<String, String>) -> Self {
219 Self { userid, protocol, fields }
220 }
221}
222
223#[doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/src/doc/string_enum.md"))]
225#[derive(Clone, PartialEq, Eq, StringEnum)]
226#[ruma_enum(rename_all = "lowercase")]
227#[non_exhaustive]
228pub enum Medium {
229 Email,
231
232 Msisdn,
234
235 #[doc(hidden)]
236 _Custom(PrivOwnedStr),
237}
238
239#[derive(Clone, Debug, Deserialize, Serialize)]
244#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
245pub struct ThirdPartyIdentifier {
246 pub address: String,
248
249 pub medium: Medium,
251
252 pub validated_at: MilliSecondsSinceUnixEpoch,
254
255 pub added_at: MilliSecondsSinceUnixEpoch,
257}
258
259impl Eq for ThirdPartyIdentifier {}
260
261impl Hash for ThirdPartyIdentifier {
262 fn hash<H: Hasher>(&self, hasher: &mut H) {
263 (self.medium.as_str(), &self.address).hash(hasher);
264 }
265}
266
267impl PartialEq for ThirdPartyIdentifier {
268 fn eq(&self, other: &ThirdPartyIdentifier) -> bool {
269 self.address == other.address && self.medium == other.medium
270 }
271}
272
273#[derive(Debug)]
278#[allow(clippy::exhaustive_structs)]
279pub struct ThirdPartyIdentifierInit {
280 pub address: String,
282
283 pub medium: Medium,
285
286 pub validated_at: MilliSecondsSinceUnixEpoch,
288
289 pub added_at: MilliSecondsSinceUnixEpoch,
291}
292
293impl From<ThirdPartyIdentifierInit> for ThirdPartyIdentifier {
294 fn from(init: ThirdPartyIdentifierInit) -> Self {
295 let ThirdPartyIdentifierInit { address, medium, validated_at, added_at } = init;
296 ThirdPartyIdentifier { address, medium, validated_at, added_at }
297 }
298}
299
300#[cfg(test)]
301mod tests {
302 use serde_json::{from_value as from_json_value, json, to_value as to_json_value};
303
304 use super::{Medium, ThirdPartyIdentifier};
305 use crate::MilliSecondsSinceUnixEpoch;
306
307 #[test]
308 fn third_party_identifier_serde() {
309 let third_party_id = ThirdPartyIdentifier {
310 address: "monkey@banana.island".into(),
311 medium: Medium::Email,
312 validated_at: MilliSecondsSinceUnixEpoch(1_535_176_800_000_u64.try_into().unwrap()),
313 added_at: MilliSecondsSinceUnixEpoch(1_535_336_848_756_u64.try_into().unwrap()),
314 };
315
316 let third_party_id_serialized = json!({
317 "medium": "email",
318 "address": "monkey@banana.island",
319 "validated_at": 1_535_176_800_000_u64,
320 "added_at": 1_535_336_848_756_u64
321 });
322
323 assert_eq!(to_json_value(third_party_id.clone()).unwrap(), third_party_id_serialized);
324 assert_eq!(third_party_id, from_json_value(third_party_id_serialized).unwrap());
325 }
326}