2020-11-21 21:48:27 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2020-12-12 20:44:53 +00:00
|
|
|
use std::{collections::BTreeMap, convert::TryFrom, time::SystemTime};
|
2020-11-21 21:48:27 +00:00
|
|
|
|
2021-01-19 11:29:46 +00:00
|
|
|
use super::{
|
2020-12-07 14:11:18 +00:00
|
|
|
api::r0::sync::sync_events::{
|
|
|
|
DeviceLists, UnreadNotificationsCount as RumaUnreadNotificationsCount,
|
|
|
|
},
|
2020-12-07 13:13:31 +00:00
|
|
|
events::{
|
2020-12-12 20:44:53 +00:00
|
|
|
presence::PresenceEvent, room::member::MemberEventContent, AnyBasicEvent,
|
|
|
|
AnyStrippedStateEvent, AnySyncEphemeralRoomEvent, AnySyncRoomEvent, AnySyncStateEvent,
|
|
|
|
AnyToDeviceEvent, StateEvent, StrippedStateEvent, SyncStateEvent, Unsigned,
|
2020-12-07 13:13:31 +00:00
|
|
|
},
|
2020-12-12 20:44:53 +00:00
|
|
|
identifiers::{DeviceKeyAlgorithm, EventId, RoomId, UserId},
|
2020-11-21 21:48:27 +00:00
|
|
|
};
|
|
|
|
|
2021-01-28 13:10:26 +00:00
|
|
|
/// A change in ambiguity of room members that an `m.room.member` event
|
|
|
|
/// triggers.
|
2021-01-27 10:42:13 +00:00
|
|
|
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
|
|
|
pub struct AmbiguityChange {
|
2021-01-28 13:10:26 +00:00
|
|
|
/// Is the member that is contained in the state key of the `m.room.member`
|
|
|
|
/// event itself ambiguous because of the event.
|
2021-01-27 10:42:13 +00:00
|
|
|
pub member_ambiguous: bool,
|
2021-01-28 13:10:26 +00:00
|
|
|
/// Has another user been disambiguated because of this event.
|
2021-01-27 10:42:13 +00:00
|
|
|
pub disambiguated_member: Option<UserId>,
|
2021-01-28 13:10:26 +00:00
|
|
|
/// Has another user become ambiguous because of this event.
|
2021-01-27 10:42:13 +00:00
|
|
|
pub ambiguated_member: Option<UserId>,
|
|
|
|
}
|
|
|
|
|
2021-01-28 13:10:26 +00:00
|
|
|
/// Collection of ambiguioty changes that room member events trigger.
|
2021-01-27 10:42:13 +00:00
|
|
|
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
|
|
|
pub struct AmbiguityChanges {
|
2021-01-28 13:10:26 +00:00
|
|
|
/// A map from room id to a map of an event id to the `AmbiguityChange` that
|
|
|
|
/// the event with the given id caused.
|
2021-01-27 10:42:13 +00:00
|
|
|
pub changes: BTreeMap<RoomId, BTreeMap<EventId, AmbiguityChange>>,
|
|
|
|
}
|
|
|
|
|
2020-11-21 21:48:27 +00:00
|
|
|
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
|
|
|
pub struct SyncResponse {
|
|
|
|
/// The batch token to supply in the `since` param of the next `/sync` request.
|
|
|
|
pub next_batch: String,
|
|
|
|
/// Updates to rooms.
|
|
|
|
pub rooms: Rooms,
|
2020-11-30 13:42:08 +00:00
|
|
|
/// Updates to the presence status of other users.
|
|
|
|
pub presence: Presence,
|
2020-12-07 15:35:00 +00:00
|
|
|
/// The global private data created by this user.
|
|
|
|
pub account_data: AccountData,
|
2020-11-30 14:24:49 +00:00
|
|
|
/// Messages sent dirrectly between devices.
|
|
|
|
pub to_device: ToDevice,
|
|
|
|
/// Information on E2E device updates.
|
|
|
|
///
|
|
|
|
/// Only present on an incremental sync.
|
|
|
|
pub device_lists: DeviceLists,
|
|
|
|
/// For each key algorithm, the number of unclaimed one-time keys
|
|
|
|
/// currently held on the server for a device.
|
|
|
|
pub device_one_time_keys_count: BTreeMap<DeviceKeyAlgorithm, u64>,
|
2021-01-27 10:42:13 +00:00
|
|
|
/// Collection of ambiguioty changes that room member events trigger.
|
|
|
|
pub ambiguity_changes: AmbiguityChanges,
|
2020-11-21 21:48:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl SyncResponse {
|
2020-12-01 09:23:28 +00:00
|
|
|
pub fn new(next_batch: String) -> Self {
|
2020-11-21 21:48:27 +00:00
|
|
|
Self {
|
|
|
|
next_batch,
|
|
|
|
..Default::default()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-30 13:42:08 +00:00
|
|
|
/// Updates to the presence status of other users.
|
|
|
|
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
|
|
|
pub struct Presence {
|
|
|
|
/// A list of events.
|
|
|
|
pub events: Vec<PresenceEvent>,
|
|
|
|
}
|
|
|
|
|
2020-12-07 13:13:31 +00:00
|
|
|
/// Data that the user has attached to either the account or a specific room.
|
|
|
|
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
|
|
|
pub struct AccountData {
|
|
|
|
/// The list of account data events.
|
|
|
|
pub events: Vec<AnyBasicEvent>,
|
|
|
|
}
|
|
|
|
|
2020-11-30 14:24:49 +00:00
|
|
|
/// Messages sent dirrectly between devices.
|
|
|
|
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
|
|
|
pub struct ToDevice {
|
|
|
|
/// A list of events.
|
|
|
|
pub events: Vec<AnyToDeviceEvent>,
|
|
|
|
}
|
|
|
|
|
2021-01-14 12:35:21 +00:00
|
|
|
impl From<Vec<AnyToDeviceEvent>> for ToDevice {
|
|
|
|
fn from(events: Vec<AnyToDeviceEvent>) -> Self {
|
|
|
|
Self { events }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-21 21:48:27 +00:00
|
|
|
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
|
|
|
pub struct Rooms {
|
2020-12-01 09:23:28 +00:00
|
|
|
/// The rooms that the user has left or been banned from.
|
|
|
|
pub leave: BTreeMap<RoomId, LeftRoom>,
|
2020-11-21 21:48:27 +00:00
|
|
|
/// The rooms that the user has joined.
|
|
|
|
pub join: BTreeMap<RoomId, JoinedRoom>,
|
2020-12-08 08:52:27 +00:00
|
|
|
/// The rooms that the user has been invited to.
|
|
|
|
pub invite: BTreeMap<RoomId, InvitedRoom>,
|
2020-11-21 21:48:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Updates to joined rooms.
|
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
|
|
|
pub struct JoinedRoom {
|
2020-12-07 14:11:18 +00:00
|
|
|
/// Counts of unread notifications for this room.
|
|
|
|
pub unread_notifications: UnreadNotificationsCount,
|
2020-11-21 21:48:27 +00:00
|
|
|
/// The timeline of messages and state changes in the room.
|
|
|
|
pub timeline: Timeline,
|
|
|
|
/// Updates to the state, between the time indicated by the `since` parameter, and the start
|
|
|
|
/// of the `timeline` (or all state up to the start of the `timeline`, if `since` is not
|
|
|
|
/// given, or `full_state` is true).
|
|
|
|
pub state: State,
|
2020-12-07 13:13:31 +00:00
|
|
|
/// The private data that this user has attached to this room.
|
|
|
|
pub account_data: AccountData,
|
2020-12-07 13:34:18 +00:00
|
|
|
/// The ephemeral events in the room that aren't recorded in the timeline or state of the
|
|
|
|
/// room. e.g. typing.
|
|
|
|
pub ephemeral: Ephemeral,
|
2020-11-21 21:48:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl JoinedRoom {
|
2020-12-07 13:34:18 +00:00
|
|
|
pub fn new(
|
|
|
|
timeline: Timeline,
|
|
|
|
state: State,
|
|
|
|
account_data: AccountData,
|
|
|
|
ephemeral: Ephemeral,
|
2020-12-07 14:11:18 +00:00
|
|
|
unread_notifications: UnreadNotificationsCount,
|
2020-12-07 13:34:18 +00:00
|
|
|
) -> Self {
|
2020-12-07 13:13:31 +00:00
|
|
|
Self {
|
|
|
|
timeline,
|
|
|
|
state,
|
|
|
|
account_data,
|
2020-12-07 13:34:18 +00:00
|
|
|
ephemeral,
|
2020-12-07 14:11:18 +00:00
|
|
|
unread_notifications,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:52:27 +00:00
|
|
|
/// Updates to the rooms that the user has been invited to.
|
|
|
|
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
|
|
|
pub struct InvitedRoom {
|
|
|
|
/// The state of a room that the user has been invited to.
|
|
|
|
pub invite_state: InviteState,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The state of a room that the user has been invited to.
|
|
|
|
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
|
|
|
pub struct InviteState {
|
|
|
|
/// A list of state events.
|
|
|
|
pub events: Vec<AnyStrippedStateEvent>,
|
|
|
|
}
|
|
|
|
|
2020-12-07 14:11:18 +00:00
|
|
|
/// Counts of unread notifications for a room.
|
|
|
|
#[derive(Copy, Clone, Debug, Default, Deserialize, Serialize)]
|
|
|
|
pub struct UnreadNotificationsCount {
|
|
|
|
/// The number of unread notifications for this room with the highlight flag set.
|
|
|
|
highlight_count: u64,
|
|
|
|
/// The total number of unread notifications for this room.
|
|
|
|
notification_count: u64,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<RumaUnreadNotificationsCount> for UnreadNotificationsCount {
|
|
|
|
fn from(notifications: RumaUnreadNotificationsCount) -> Self {
|
|
|
|
Self {
|
|
|
|
highlight_count: notifications.highlight_count.map(|c| c.into()).unwrap_or(0),
|
|
|
|
notification_count: notifications
|
|
|
|
.notification_count
|
|
|
|
.map(|c| c.into())
|
|
|
|
.unwrap_or(0),
|
2020-12-07 13:13:31 +00:00
|
|
|
}
|
2020-11-21 21:48:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-07 13:34:18 +00:00
|
|
|
/// The ephemeral events in the room that aren't recorded in the timeline or
|
|
|
|
/// state of the room. e.g. typing.
|
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
|
|
|
pub struct Ephemeral {
|
|
|
|
pub events: Vec<AnySyncEphemeralRoomEvent>,
|
|
|
|
}
|
|
|
|
|
2020-12-01 09:23:28 +00:00
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
|
|
|
pub struct LeftRoom {
|
|
|
|
/// The timeline of messages and state changes in the room up to the point
|
|
|
|
/// when the user left.
|
|
|
|
pub timeline: Timeline,
|
|
|
|
/// Updates to the state, between the time indicated by the `since` parameter, and the start
|
|
|
|
/// of the `timeline` (or all state up to the start of the `timeline`, if `since` is not
|
|
|
|
/// given, or `full_state` is true).
|
|
|
|
pub state: State,
|
2020-12-07 13:13:31 +00:00
|
|
|
/// The private data that this user has attached to this room.
|
|
|
|
pub account_data: AccountData,
|
2020-12-01 09:23:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl LeftRoom {
|
2020-12-07 13:13:31 +00:00
|
|
|
pub fn new(timeline: Timeline, state: State, account_data: AccountData) -> Self {
|
|
|
|
Self {
|
|
|
|
timeline,
|
|
|
|
state,
|
|
|
|
account_data,
|
|
|
|
}
|
2020-12-01 09:23:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-21 21:48:27 +00:00
|
|
|
/// Events in the room.
|
|
|
|
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
|
|
|
pub struct Timeline {
|
|
|
|
/// True if the number of events returned was limited by the `limit` on the filter.
|
|
|
|
pub limited: bool,
|
|
|
|
|
|
|
|
/// A token that can be supplied to to the `from` parameter of the
|
|
|
|
/// `/rooms/{roomId}/messages` endpoint.
|
|
|
|
pub prev_batch: Option<String>,
|
|
|
|
|
|
|
|
/// A list of events.
|
|
|
|
pub events: Vec<AnySyncRoomEvent>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Timeline {
|
|
|
|
pub fn new(limited: bool, prev_batch: Option<String>) -> Self {
|
|
|
|
Self {
|
|
|
|
limited,
|
|
|
|
prev_batch,
|
|
|
|
..Default::default()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// State events in the room.
|
|
|
|
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
|
|
|
pub struct State {
|
|
|
|
/// A list of state events.
|
|
|
|
pub events: Vec<AnySyncStateEvent>,
|
|
|
|
}
|
2020-12-12 20:44:53 +00:00
|
|
|
|
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
|
|
|
#[serde(
|
|
|
|
try_from = "SyncStateEvent<MemberEventContent>",
|
|
|
|
into = "SyncStateEvent<MemberEventContent>"
|
|
|
|
)]
|
|
|
|
pub struct MemberEvent {
|
|
|
|
pub content: MemberEventContent,
|
|
|
|
pub event_id: EventId,
|
|
|
|
pub origin_server_ts: SystemTime,
|
|
|
|
pub prev_content: Option<MemberEventContent>,
|
|
|
|
pub sender: UserId,
|
|
|
|
pub state_key: UserId,
|
|
|
|
pub unsigned: Unsigned,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TryFrom<SyncStateEvent<MemberEventContent>> for MemberEvent {
|
2021-01-19 11:29:46 +00:00
|
|
|
type Error = super::identifiers::Error;
|
2020-12-12 20:44:53 +00:00
|
|
|
|
|
|
|
fn try_from(event: SyncStateEvent<MemberEventContent>) -> Result<Self, Self::Error> {
|
|
|
|
Ok(MemberEvent {
|
|
|
|
content: event.content,
|
|
|
|
event_id: event.event_id,
|
|
|
|
origin_server_ts: event.origin_server_ts,
|
|
|
|
prev_content: event.prev_content,
|
|
|
|
sender: event.sender,
|
|
|
|
state_key: UserId::try_from(event.state_key)?,
|
|
|
|
unsigned: event.unsigned,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TryFrom<StateEvent<MemberEventContent>> for MemberEvent {
|
2021-01-19 11:29:46 +00:00
|
|
|
type Error = super::identifiers::Error;
|
2020-12-12 20:44:53 +00:00
|
|
|
|
|
|
|
fn try_from(event: StateEvent<MemberEventContent>) -> Result<Self, Self::Error> {
|
|
|
|
Ok(MemberEvent {
|
|
|
|
content: event.content,
|
|
|
|
event_id: event.event_id,
|
|
|
|
origin_server_ts: event.origin_server_ts,
|
|
|
|
prev_content: event.prev_content,
|
|
|
|
sender: event.sender,
|
|
|
|
state_key: UserId::try_from(event.state_key)?,
|
|
|
|
unsigned: event.unsigned,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Into<SyncStateEvent<MemberEventContent>> for MemberEvent {
|
|
|
|
fn into(self) -> SyncStateEvent<MemberEventContent> {
|
|
|
|
SyncStateEvent {
|
|
|
|
content: self.content,
|
|
|
|
event_id: self.event_id,
|
|
|
|
sender: self.sender,
|
|
|
|
origin_server_ts: self.origin_server_ts,
|
|
|
|
state_key: self.state_key.to_string(),
|
|
|
|
prev_content: self.prev_content,
|
|
|
|
unsigned: self.unsigned,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
|
|
|
#[serde(
|
|
|
|
try_from = "StrippedStateEvent<MemberEventContent>",
|
|
|
|
into = "StrippedStateEvent<MemberEventContent>"
|
|
|
|
)]
|
|
|
|
pub struct StrippedMemberEvent {
|
|
|
|
pub content: MemberEventContent,
|
|
|
|
pub sender: UserId,
|
|
|
|
pub state_key: UserId,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TryFrom<StrippedStateEvent<MemberEventContent>> for StrippedMemberEvent {
|
2021-01-19 11:29:46 +00:00
|
|
|
type Error = super::identifiers::Error;
|
2020-12-12 20:44:53 +00:00
|
|
|
|
|
|
|
fn try_from(event: StrippedStateEvent<MemberEventContent>) -> Result<Self, Self::Error> {
|
|
|
|
Ok(StrippedMemberEvent {
|
|
|
|
content: event.content,
|
|
|
|
sender: event.sender,
|
|
|
|
state_key: UserId::try_from(event.state_key)?,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Into<StrippedStateEvent<MemberEventContent>> for StrippedMemberEvent {
|
|
|
|
fn into(self) -> StrippedStateEvent<MemberEventContent> {
|
|
|
|
StrippedStateEvent {
|
|
|
|
content: self.content,
|
|
|
|
sender: self.sender,
|
|
|
|
state_key: self.state_key.to_string(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-01-27 10:42:13 +00:00
|
|
|
|
2021-01-28 13:10:26 +00:00
|
|
|
/// A deserialized response for the rooms members API call.
|
|
|
|
///
|
|
|
|
/// [GET /_matrix/client/r0/rooms/{roomId}/members](https://matrix.org/docs/spec/client_server/r0.6.0#get-matrix-client-r0-rooms-roomid-members)
|
2021-01-27 10:42:13 +00:00
|
|
|
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
|
|
|
pub struct MembersResponse {
|
2021-01-28 13:10:26 +00:00
|
|
|
/// The list of members events.
|
2021-01-27 10:42:13 +00:00
|
|
|
pub chunk: Vec<MemberEvent>,
|
|
|
|
/// Collection of ambiguioty changes that room member events trigger.
|
|
|
|
pub ambiguity_changes: AmbiguityChanges,
|
|
|
|
}
|