mirror of
https://gitlab.com/famedly/conduit.git
synced 2024-11-04 17:18:51 +01:00
Merge branch 'filter-users' into 'next'
Hide users from user directory if they are only in private rooms and they don't share a room Closes #24 See merge request famedly/conduit!325
This commit is contained in:
commit
0286a804f4
2 changed files with 46 additions and 3 deletions
|
@ -1,15 +1,23 @@
|
||||||
use crate::{database::DatabaseGuard, Result, Ruma};
|
use crate::{database::DatabaseGuard, Result, Ruma};
|
||||||
use ruma::api::client::user_directory::search_users;
|
use ruma::{
|
||||||
|
api::client::user_directory::search_users,
|
||||||
|
events::{
|
||||||
|
room::join_rules::{JoinRule, RoomJoinRulesEventContent},
|
||||||
|
StateEventType,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
/// # `POST /_matrix/client/r0/user_directory/search`
|
/// # `POST /_matrix/client/r0/user_directory/search`
|
||||||
///
|
///
|
||||||
/// Searches all known users for a match.
|
/// Searches all known users for a match.
|
||||||
///
|
///
|
||||||
/// - TODO: Hide users that are not in any public rooms?
|
/// - Hides any local users that aren't in any public rooms (i.e. those that have the join rule set to public)
|
||||||
|
/// and don't share a room with the sender
|
||||||
pub async fn search_users_route(
|
pub async fn search_users_route(
|
||||||
db: DatabaseGuard,
|
db: DatabaseGuard,
|
||||||
body: Ruma<search_users::v3::IncomingRequest>,
|
body: Ruma<search_users::v3::IncomingRequest>,
|
||||||
) -> Result<search_users::v3::Response> {
|
) -> Result<search_users::v3::Response> {
|
||||||
|
let sender_user = body.sender_user.as_ref().expect("user is authenticated");
|
||||||
let limit = u64::from(body.limit) as usize;
|
let limit = u64::from(body.limit) as usize;
|
||||||
|
|
||||||
let mut users = db.users.iter().filter_map(|user_id| {
|
let mut users = db.users.iter().filter_map(|user_id| {
|
||||||
|
@ -41,7 +49,39 @@ pub async fn search_users_route(
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
|
|
||||||
Some(user)
|
let user_is_in_public_rooms =
|
||||||
|
db.rooms
|
||||||
|
.rooms_joined(&user_id)
|
||||||
|
.filter_map(|r| r.ok())
|
||||||
|
.any(|room| {
|
||||||
|
db.rooms
|
||||||
|
.room_state_get(&room, &StateEventType::RoomJoinRules, "")
|
||||||
|
.map_or(false, |event| {
|
||||||
|
event.map_or(false, |event| {
|
||||||
|
serde_json::from_str(event.content.get())
|
||||||
|
.map_or(false, |r: RoomJoinRulesEventContent| {
|
||||||
|
r.join_rule == JoinRule::Public
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
});
|
||||||
|
|
||||||
|
if user_is_in_public_rooms {
|
||||||
|
return Some(user);
|
||||||
|
}
|
||||||
|
|
||||||
|
let user_is_in_shared_rooms = db
|
||||||
|
.rooms
|
||||||
|
.get_shared_rooms(vec![sender_user.clone(), user_id.clone()])
|
||||||
|
.ok()?
|
||||||
|
.next()
|
||||||
|
.is_some();
|
||||||
|
|
||||||
|
if user_is_in_shared_rooms {
|
||||||
|
return Some(user);
|
||||||
|
}
|
||||||
|
|
||||||
|
None
|
||||||
});
|
});
|
||||||
|
|
||||||
let results = users.by_ref().take(limit).collect();
|
let results = users.by_ref().take(limit).collect();
|
||||||
|
|
|
@ -445,6 +445,9 @@ Typing notifications don't leak
|
||||||
Uninvited users cannot join the room
|
Uninvited users cannot join the room
|
||||||
Unprivileged users can set m.room.topic if it only needs level 0
|
Unprivileged users can set m.room.topic if it only needs level 0
|
||||||
User appears in user directory
|
User appears in user directory
|
||||||
|
User in private room doesn't appear in user directory
|
||||||
|
User joining then leaving public room appears and dissappears from directory
|
||||||
|
User in shared private room does appear in user directory until leave
|
||||||
User can create and send/receive messages in a room with version 1
|
User can create and send/receive messages in a room with version 1
|
||||||
User can create and send/receive messages in a room with version 2
|
User can create and send/receive messages in a room with version 2
|
||||||
User can create and send/receive messages in a room with version 3
|
User can create and send/receive messages in a room with version 3
|
||||||
|
|
Loading…
Reference in a new issue