1//! Types to deserialize `m.room.third_party_invite` events.
23use std::{collections::BTreeSet, ops::Deref};
45use ruma_common::{serde::from_raw_json_value, third_party_invite::IdentityServerBase64PublicKey};
6use serde::Deserialize;
78use super::Event;
910/// A helper type for an [`Event`] of type `m.room.third_party_invite`.
11///
12/// This is a type that deserializes each field lazily, when requested.
13#[derive(Debug, Clone)]
14pub struct RoomThirdPartyInviteEvent<E: Event>(E);
1516impl<E: Event> RoomThirdPartyInviteEvent<E> {
17/// Construct a new `RoomThirdPartyInviteEvent` around the given event.
18pub fn new(event: E) -> Self {
19Self(event)
20 }
2122/// The public keys of the identity server that might be used to sign the third-party invite.
23pub fn public_keys(&self) -> Result<BTreeSet<IdentityServerBase64PublicKey>, String> {
24#[derive(Deserialize)]
25struct RoomThirdPartyInviteContentPublicKeys {
26 public_key: Option<IdentityServerBase64PublicKey>,
27#[serde(default)]
28public_keys: Vec<PublicKey>,
29 }
3031#[derive(Deserialize)]
32struct PublicKey {
33 public_key: IdentityServerBase64PublicKey,
34 }
3536let content: RoomThirdPartyInviteContentPublicKeys = from_raw_json_value(self.content())
37 .map_err(|err: serde_json::Error| {
38format!("invalid `public_key` or `public_keys` field in `m.room.third_party_invite` event: {err}")
39 })?;
40Ok(content
41 .public_key
42 .into_iter()
43 .chain(content.public_keys.into_iter().map(|k| k.public_key))
44 .collect())
45 }
46}
4748impl<E: Event> Deref for RoomThirdPartyInviteEvent<E> {
49type Target = E;
5051fn deref(&self) -> &Self::Target {
52&self.0
53}
54}