mirror of
https://gitlab.computer.surgery/matrix/grapevine.git
synced 2025-12-17 07:41:23 +01:00
And appease clippy (`__CARGO_FIX_YOLO=1 cargo clippy --fix` plus some manual type shuffling).
542 lines
16 KiB
Rust
542 lines
16 KiB
Rust
use std::{
|
|
collections::{HashMap, HashSet},
|
|
sync::{Arc, RwLock},
|
|
};
|
|
|
|
use ruma::{
|
|
events::{
|
|
ignored_user_list::IgnoredUserListEvent, room::member::MembershipState,
|
|
AnyStrippedStateEvent, AnySyncStateEvent, GlobalAccountDataEventType,
|
|
RoomAccountDataEventType,
|
|
},
|
|
serde::Raw,
|
|
OwnedRoomId, OwnedServerName, OwnedUserId, RoomId, ServerName, UserId,
|
|
};
|
|
use tracing::warn;
|
|
|
|
use crate::{
|
|
observability::{FoundIn, Lookup, METRICS},
|
|
service::appservice::RegistrationInfo,
|
|
services, Error, Result,
|
|
};
|
|
|
|
mod data;
|
|
|
|
pub(crate) use data::Data;
|
|
|
|
use super::state::ExtractPredecessor;
|
|
|
|
pub(crate) struct Service {
|
|
db: &'static dyn Data,
|
|
appservice_in_room_cache:
|
|
RwLock<HashMap<OwnedRoomId, HashMap<String, bool>>>,
|
|
our_real_users_cache:
|
|
RwLock<HashMap<OwnedRoomId, Arc<HashSet<OwnedUserId>>>>,
|
|
}
|
|
|
|
type RoomsLeft = (OwnedRoomId, Vec<Raw<AnySyncStateEvent>>);
|
|
|
|
impl Service {
|
|
pub(crate) fn new(db: &'static dyn Data) -> Self {
|
|
Self {
|
|
db,
|
|
our_real_users_cache: RwLock::new(HashMap::new()),
|
|
appservice_in_room_cache: RwLock::new(HashMap::new()),
|
|
}
|
|
}
|
|
|
|
/// Update current membership data.
|
|
#[tracing::instrument(skip(self, last_state))]
|
|
pub(crate) fn update_membership(
|
|
&self,
|
|
room_id: &RoomId,
|
|
user_id: &UserId,
|
|
membership: MembershipState,
|
|
sender: &UserId,
|
|
last_state: Option<Vec<Raw<AnyStrippedStateEvent>>>,
|
|
update_joined_count: bool,
|
|
) -> Result<()> {
|
|
// Keep track what remote users exist by adding them as "deactivated"
|
|
// users
|
|
if user_id.server_name() != services().globals.server_name() {
|
|
services().users.create(user_id, None)?;
|
|
// TODO: displayname, avatar url
|
|
}
|
|
|
|
match &membership {
|
|
MembershipState::Join => {
|
|
// Check if the user never joined this room
|
|
if !self.once_joined(user_id, room_id)? {
|
|
// Add the user ID to the join list then
|
|
self.db.mark_as_once_joined(user_id, room_id)?;
|
|
|
|
// Check if the room has a predecessor
|
|
if let Some(predecessor) = services()
|
|
.rooms
|
|
.state
|
|
.get_create_content::<ExtractPredecessor>(room_id)
|
|
.inspect_err(|error| {
|
|
warn!(%error, "Failed to get room predecessor");
|
|
})
|
|
.ok()
|
|
.flatten()
|
|
{
|
|
self.copy_upgraded_account_data(
|
|
user_id,
|
|
&predecessor.room_id,
|
|
room_id,
|
|
)?;
|
|
}
|
|
}
|
|
|
|
self.db.mark_as_joined(user_id, room_id)?;
|
|
}
|
|
MembershipState::Invite => {
|
|
let event_kind = RoomAccountDataEventType::from(
|
|
GlobalAccountDataEventType::IgnoredUserList.to_string(),
|
|
);
|
|
|
|
// We want to know if the sender is ignored by the receiver
|
|
let is_ignored = services()
|
|
.account_data
|
|
.get(
|
|
// Ignored users are in global account data
|
|
None,
|
|
// Receiver
|
|
user_id,
|
|
event_kind.clone(),
|
|
)?
|
|
.map(|event| {
|
|
serde_json::from_str::<IgnoredUserListEvent>(
|
|
event.get(),
|
|
)
|
|
.map_err(|error| {
|
|
warn!(
|
|
%error,
|
|
%event_kind,
|
|
"Invalid account data event",
|
|
);
|
|
Error::BadDatabase("Invalid account data event.")
|
|
})
|
|
})
|
|
.transpose()?
|
|
.is_some_and(|ignored| {
|
|
ignored
|
|
.content
|
|
.ignored_users
|
|
.iter()
|
|
.any(|(user, _details)| user == sender)
|
|
});
|
|
|
|
if is_ignored {
|
|
return Ok(());
|
|
}
|
|
|
|
self.db.mark_as_invited(user_id, room_id, last_state)?;
|
|
}
|
|
MembershipState::Leave | MembershipState::Ban => {
|
|
self.db.mark_as_left(user_id, room_id)?;
|
|
}
|
|
_ => {}
|
|
}
|
|
|
|
if update_joined_count {
|
|
self.update_joined_count(room_id)?;
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
/// Copy all account data references from the predecessor to a new room when
|
|
/// joining an upgraded room.
|
|
///
|
|
/// References to the predecessor room are not removed.
|
|
#[tracing::instrument(skip(self))]
|
|
fn copy_upgraded_account_data(
|
|
&self,
|
|
user_id: &UserId,
|
|
from_room_id: &RoomId,
|
|
to_room_id: &RoomId,
|
|
) -> Result<()> {
|
|
// - Push rules
|
|
//
|
|
// TODO: finish this once push rules are implemented.
|
|
//
|
|
// let mut push_rules_event_content: PushRulesEvent =
|
|
// account_data .get(
|
|
// None,
|
|
// user_id,
|
|
// EventType::PushRules,
|
|
// )?;
|
|
//
|
|
// NOTE: find where `predecessor.room_id` match
|
|
// and update to `room_id`.
|
|
//
|
|
// account_data
|
|
// .update(
|
|
// None,
|
|
// user_id,
|
|
// EventType::PushRules,
|
|
// &push_rules_event_content,
|
|
// globals,
|
|
// )
|
|
// .ok();
|
|
|
|
self.copy_upgraded_account_data_tag(user_id, from_room_id, to_room_id)?;
|
|
self.copy_upgraded_account_data_direct(
|
|
user_id,
|
|
from_room_id,
|
|
to_room_id,
|
|
)?;
|
|
Ok(())
|
|
}
|
|
|
|
/// Copy `m.tag` account data to an upgraded room.
|
|
// Allowed because this function uses `services()`
|
|
#[allow(clippy::unused_self)]
|
|
fn copy_upgraded_account_data_tag(
|
|
&self,
|
|
user_id: &UserId,
|
|
from_room_id: &RoomId,
|
|
to_room_id: &RoomId,
|
|
) -> Result<()> {
|
|
let Some(event) = services().account_data.get(
|
|
Some(from_room_id),
|
|
user_id,
|
|
RoomAccountDataEventType::Tag,
|
|
)?
|
|
else {
|
|
return Ok(());
|
|
};
|
|
let event = serde_json::from_str::<serde_json::Value>(event.get())
|
|
.expect("RawValue -> Value should always succeed");
|
|
if let Err(error) = services().account_data.update(
|
|
Some(to_room_id),
|
|
user_id,
|
|
RoomAccountDataEventType::Tag,
|
|
&event,
|
|
) {
|
|
warn!(%error, "error writing m.tag account data to upgraded room");
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
/// Copy references in `m.direct` account data events to an upgraded room.
|
|
// Allowed because this function uses `services()`
|
|
#[allow(clippy::unused_self)]
|
|
fn copy_upgraded_account_data_direct(
|
|
&self,
|
|
user_id: &UserId,
|
|
from_room_id: &RoomId,
|
|
to_room_id: &RoomId,
|
|
) -> Result<()> {
|
|
let event_kind = RoomAccountDataEventType::from(
|
|
GlobalAccountDataEventType::Direct.to_string(),
|
|
);
|
|
let Some(event) =
|
|
services().account_data.get(None, user_id, event_kind.clone())?
|
|
else {
|
|
return Ok(());
|
|
};
|
|
|
|
let mut event = serde_json::from_str::<serde_json::Value>(event.get())
|
|
.expect("RawValue -> Value should always succeed");
|
|
|
|
// As a server, we should try not to assume anything about the schema
|
|
// of this event. Account data may be arbitrary JSON.
|
|
//
|
|
// In particular, there is an element bug[1] that causes it to store
|
|
// m.direct events that don't match the schema from the spec.
|
|
//
|
|
// [1]: https://github.com/element-hq/element-web/issues/27630
|
|
//
|
|
// A valid m.direct event looks like this:
|
|
//
|
|
// {
|
|
// "type": "m.account_data",
|
|
// "content": {
|
|
// "@userid1": [ "!roomid1", "!roomid2" ],
|
|
// "@userid2": [ "!roomid3" ],
|
|
// }
|
|
// }
|
|
//
|
|
// We want to find userid keys where the value contains from_room_id,
|
|
// and insert a new entry for to_room_id. This should work even if some
|
|
// of the userid keys do not conform to the spec. If parts of the object
|
|
// do not match the expected schema, we should prefer to skip just those
|
|
// parts.
|
|
|
|
let mut event_updated = false;
|
|
let Some(direct_user_ids) = event.get_mut("content") else {
|
|
return Ok(());
|
|
};
|
|
let Some(direct_user_ids) = direct_user_ids.as_object_mut() else {
|
|
return Ok(());
|
|
};
|
|
for room_ids in direct_user_ids.values_mut() {
|
|
let Some(room_ids) = room_ids.as_array_mut() else {
|
|
continue;
|
|
};
|
|
if room_ids.iter().any(|room_id| room_id == from_room_id.as_str()) {
|
|
room_ids.push(to_room_id.to_string().into());
|
|
event_updated = true;
|
|
}
|
|
}
|
|
|
|
if event_updated {
|
|
if let Err(error) = services().account_data.update(
|
|
None,
|
|
user_id,
|
|
event_kind.clone(),
|
|
&event,
|
|
) {
|
|
warn!(%event_kind, %error, "error writing account data event after upgrading room");
|
|
}
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
#[tracing::instrument(skip(self, room_id))]
|
|
pub(crate) fn update_joined_count(
|
|
&self,
|
|
room_id: &RoomId,
|
|
) -> Result<Arc<HashSet<OwnedUserId>>> {
|
|
let our_real_users = Arc::new(self.db.update_joined_count(room_id)?);
|
|
|
|
self.our_real_users_cache
|
|
.write()
|
|
.unwrap()
|
|
.insert(room_id.to_owned(), our_real_users.clone());
|
|
self.appservice_in_room_cache.write().unwrap().remove(room_id);
|
|
|
|
Ok(our_real_users)
|
|
}
|
|
|
|
#[tracing::instrument(skip(self, room_id))]
|
|
pub(crate) fn get_our_real_users(
|
|
&self,
|
|
room_id: &RoomId,
|
|
) -> Result<Arc<HashSet<OwnedUserId>>> {
|
|
let lookup = Lookup::OurRealUsers;
|
|
|
|
if let Some(our_real_users) =
|
|
self.our_real_users_cache.read().unwrap().get(room_id).cloned()
|
|
{
|
|
METRICS.record_lookup(lookup, FoundIn::Cache);
|
|
return Ok(our_real_users);
|
|
}
|
|
|
|
let our_real_users = self.update_joined_count(room_id)?;
|
|
|
|
METRICS.record_lookup(lookup, FoundIn::Database);
|
|
|
|
Ok(our_real_users)
|
|
}
|
|
|
|
#[tracing::instrument(skip(self, room_id, appservice))]
|
|
pub(crate) fn appservice_in_room(
|
|
&self,
|
|
room_id: &RoomId,
|
|
appservice: &RegistrationInfo,
|
|
) -> Result<bool> {
|
|
let lookup = Lookup::AppserviceInRoom;
|
|
|
|
if let Some(in_room) = self
|
|
.appservice_in_room_cache
|
|
.read()
|
|
.unwrap()
|
|
.get(room_id)
|
|
.and_then(|map| map.get(&appservice.registration.id))
|
|
.copied()
|
|
{
|
|
METRICS.record_lookup(lookup, FoundIn::Cache);
|
|
return Ok(in_room);
|
|
}
|
|
|
|
let in_room = self.db.appservice_in_room(room_id, appservice)?;
|
|
|
|
METRICS.record_lookup(lookup, FoundIn::Database);
|
|
self.appservice_in_room_cache
|
|
.write()
|
|
.unwrap()
|
|
.entry(room_id.to_owned())
|
|
.or_default()
|
|
.insert(appservice.registration.id.clone(), in_room);
|
|
|
|
Ok(in_room)
|
|
}
|
|
|
|
/// Makes a user forget a room.
|
|
#[tracing::instrument(skip(self))]
|
|
pub(crate) fn forget(
|
|
&self,
|
|
room_id: &RoomId,
|
|
user_id: &UserId,
|
|
) -> Result<()> {
|
|
self.db.forget(room_id, user_id)
|
|
}
|
|
|
|
/// Returns an iterator of all servers participating in this room.
|
|
#[tracing::instrument(skip(self))]
|
|
pub(crate) fn room_servers<'a>(
|
|
&'a self,
|
|
room_id: &RoomId,
|
|
) -> impl Iterator<Item = Result<OwnedServerName>> + 'a {
|
|
self.db.room_servers(room_id)
|
|
}
|
|
|
|
#[tracing::instrument(skip(self))]
|
|
pub(crate) fn server_in_room(
|
|
&self,
|
|
server: &ServerName,
|
|
room_id: &RoomId,
|
|
) -> Result<bool> {
|
|
self.db.server_in_room(server, room_id)
|
|
}
|
|
|
|
/// Returns an iterator of all rooms a server participates in (as far as we
|
|
/// know).
|
|
#[tracing::instrument(skip(self))]
|
|
pub(crate) fn server_rooms<'a>(
|
|
&'a self,
|
|
server: &ServerName,
|
|
) -> impl Iterator<Item = Result<OwnedRoomId>> + 'a {
|
|
self.db.server_rooms(server)
|
|
}
|
|
|
|
/// Returns an iterator over all joined members of a room.
|
|
#[tracing::instrument(skip(self))]
|
|
pub(crate) fn room_members<'a>(
|
|
&'a self,
|
|
room_id: &RoomId,
|
|
) -> impl Iterator<Item = Result<OwnedUserId>> + 'a {
|
|
self.db.room_members(room_id)
|
|
}
|
|
|
|
#[tracing::instrument(skip(self))]
|
|
pub(crate) fn room_joined_count(
|
|
&self,
|
|
room_id: &RoomId,
|
|
) -> Result<Option<u64>> {
|
|
self.db.room_joined_count(room_id)
|
|
}
|
|
|
|
#[tracing::instrument(skip(self))]
|
|
pub(crate) fn room_invited_count(
|
|
&self,
|
|
room_id: &RoomId,
|
|
) -> Result<Option<u64>> {
|
|
self.db.room_invited_count(room_id)
|
|
}
|
|
|
|
/// Returns an iterator over all invited members of a room.
|
|
#[tracing::instrument(skip(self))]
|
|
pub(crate) fn room_members_invited<'a>(
|
|
&'a self,
|
|
room_id: &RoomId,
|
|
) -> impl Iterator<Item = Result<OwnedUserId>> + 'a {
|
|
self.db.room_members_invited(room_id)
|
|
}
|
|
|
|
#[tracing::instrument(skip(self))]
|
|
pub(crate) fn get_invite_count(
|
|
&self,
|
|
room_id: &RoomId,
|
|
user_id: &UserId,
|
|
) -> Result<Option<u64>> {
|
|
self.db.get_invite_count(room_id, user_id)
|
|
}
|
|
|
|
#[tracing::instrument(skip(self))]
|
|
pub(crate) fn get_left_count(
|
|
&self,
|
|
room_id: &RoomId,
|
|
user_id: &UserId,
|
|
) -> Result<Option<u64>> {
|
|
self.db.get_left_count(room_id, user_id)
|
|
}
|
|
|
|
/// Returns an iterator over all rooms this user joined.
|
|
#[tracing::instrument(skip(self))]
|
|
pub(crate) fn rooms_joined<'a>(
|
|
&'a self,
|
|
user_id: &UserId,
|
|
) -> impl Iterator<Item = Result<OwnedRoomId>> + 'a {
|
|
self.db.rooms_joined(user_id)
|
|
}
|
|
|
|
/// Returns an iterator over all rooms a user was invited to.
|
|
#[tracing::instrument(skip(self))]
|
|
pub(crate) fn rooms_invited<'a>(
|
|
&'a self,
|
|
user_id: &UserId,
|
|
) -> impl Iterator<
|
|
Item = Result<(OwnedRoomId, Vec<Raw<AnyStrippedStateEvent>>)>,
|
|
> + 'a {
|
|
self.db.rooms_invited(user_id)
|
|
}
|
|
|
|
#[tracing::instrument(skip(self))]
|
|
pub(crate) fn invite_state(
|
|
&self,
|
|
user_id: &UserId,
|
|
room_id: &RoomId,
|
|
) -> Result<Option<Vec<Raw<AnyStrippedStateEvent>>>> {
|
|
self.db.invite_state(user_id, room_id)
|
|
}
|
|
|
|
#[tracing::instrument(skip(self))]
|
|
pub(crate) fn left_state(
|
|
&self,
|
|
user_id: &UserId,
|
|
room_id: &RoomId,
|
|
) -> Result<Option<Vec<Raw<AnyStrippedStateEvent>>>> {
|
|
self.db.left_state(user_id, room_id)
|
|
}
|
|
|
|
/// Returns an iterator over all rooms a user left.
|
|
#[tracing::instrument(skip(self))]
|
|
pub(crate) fn rooms_left<'a>(
|
|
&'a self,
|
|
user_id: &UserId,
|
|
) -> impl Iterator<Item = Result<RoomsLeft>> + 'a {
|
|
self.db.rooms_left(user_id)
|
|
}
|
|
|
|
#[tracing::instrument(skip(self))]
|
|
pub(crate) fn once_joined(
|
|
&self,
|
|
user_id: &UserId,
|
|
room_id: &RoomId,
|
|
) -> Result<bool> {
|
|
self.db.once_joined(user_id, room_id)
|
|
}
|
|
|
|
#[tracing::instrument(skip(self))]
|
|
pub(crate) fn is_joined(
|
|
&self,
|
|
user_id: &UserId,
|
|
room_id: &RoomId,
|
|
) -> Result<bool> {
|
|
self.db.is_joined(user_id, room_id)
|
|
}
|
|
|
|
#[tracing::instrument(skip(self))]
|
|
pub(crate) fn is_invited(
|
|
&self,
|
|
user_id: &UserId,
|
|
room_id: &RoomId,
|
|
) -> Result<bool> {
|
|
self.db.is_invited(user_id, room_id)
|
|
}
|
|
|
|
#[tracing::instrument(skip(self))]
|
|
pub(crate) fn is_left(
|
|
&self,
|
|
user_id: &UserId,
|
|
room_id: &RoomId,
|
|
) -> Result<bool> {
|
|
self.db.is_left(user_id, room_id)
|
|
}
|
|
}
|