381 lines
11 KiB
Rust
381 lines
11 KiB
Rust
use ruma::{
|
|
api::{
|
|
client::{
|
|
directory::{get_public_rooms, get_public_rooms_filtered, get_room_visibility, set_room_visibility},
|
|
error::ErrorKind,
|
|
room,
|
|
},
|
|
federation,
|
|
},
|
|
directory::{Filter, PublicRoomJoinRule, PublicRoomsChunk, RoomNetwork},
|
|
events::{
|
|
room::{
|
|
avatar::RoomAvatarEventContent,
|
|
canonical_alias::RoomCanonicalAliasEventContent,
|
|
create::RoomCreateEventContent,
|
|
join_rules::{JoinRule, RoomJoinRulesEventContent},
|
|
topic::RoomTopicEventContent,
|
|
},
|
|
StateEventType,
|
|
},
|
|
uint, ServerName, UInt,
|
|
};
|
|
use tracing::{error, info, warn};
|
|
|
|
use crate::{service::server_is_ours, services, Error, Result, Ruma};
|
|
|
|
/// # `POST /_matrix/client/v3/publicRooms`
|
|
///
|
|
/// Lists the public rooms on this server.
|
|
///
|
|
/// - Rooms are ordered by the number of joined members
|
|
pub(crate) async fn get_public_rooms_filtered_route(
|
|
body: Ruma<get_public_rooms_filtered::v3::Request>,
|
|
) -> Result<get_public_rooms_filtered::v3::Response> {
|
|
if let Some(server) = &body.server {
|
|
if services()
|
|
.globals
|
|
.forbidden_remote_room_directory_server_names()
|
|
.contains(server)
|
|
{
|
|
return Err(Error::BadRequest(
|
|
ErrorKind::forbidden(),
|
|
"Server is banned on this homeserver.",
|
|
));
|
|
}
|
|
}
|
|
|
|
let response = get_public_rooms_filtered_helper(
|
|
body.server.as_deref(),
|
|
body.limit,
|
|
body.since.as_deref(),
|
|
&body.filter,
|
|
&body.room_network,
|
|
)
|
|
.await
|
|
.map_err(|e| {
|
|
warn!("Failed to return our /publicRooms: {e}");
|
|
Error::BadRequest(ErrorKind::Unknown, "Failed to return this server's public room list.")
|
|
})?;
|
|
|
|
Ok(response)
|
|
}
|
|
|
|
/// # `GET /_matrix/client/v3/publicRooms`
|
|
///
|
|
/// Lists the public rooms on this server.
|
|
///
|
|
/// - Rooms are ordered by the number of joined members
|
|
pub(crate) async fn get_public_rooms_route(
|
|
body: Ruma<get_public_rooms::v3::Request>,
|
|
) -> Result<get_public_rooms::v3::Response> {
|
|
if let Some(server) = &body.server {
|
|
if services()
|
|
.globals
|
|
.forbidden_remote_room_directory_server_names()
|
|
.contains(server)
|
|
{
|
|
return Err(Error::BadRequest(
|
|
ErrorKind::forbidden(),
|
|
"Server is banned on this homeserver.",
|
|
));
|
|
}
|
|
}
|
|
|
|
let response = get_public_rooms_filtered_helper(
|
|
body.server.as_deref(),
|
|
body.limit,
|
|
body.since.as_deref(),
|
|
&Filter::default(),
|
|
&RoomNetwork::Matrix,
|
|
)
|
|
.await
|
|
.map_err(|e| {
|
|
warn!("Failed to return our /publicRooms: {e}");
|
|
Error::BadRequest(ErrorKind::Unknown, "Failed to return this server's public room list.")
|
|
})?;
|
|
|
|
Ok(get_public_rooms::v3::Response {
|
|
chunk: response.chunk,
|
|
prev_batch: response.prev_batch,
|
|
next_batch: response.next_batch,
|
|
total_room_count_estimate: response.total_room_count_estimate,
|
|
})
|
|
}
|
|
|
|
/// # `PUT /_matrix/client/r0/directory/list/room/{roomId}`
|
|
///
|
|
/// Sets the visibility of a given room in the room directory.
|
|
///
|
|
/// - TODO: Access control checks
|
|
pub(crate) async fn set_room_visibility_route(
|
|
body: Ruma<set_room_visibility::v3::Request>,
|
|
) -> Result<set_room_visibility::v3::Response> {
|
|
let sender_user = body.sender_user.as_ref().expect("user is authenticated");
|
|
|
|
if !services().rooms.metadata.exists(&body.room_id)? {
|
|
// Return 404 if the room doesn't exist
|
|
return Err(Error::BadRequest(ErrorKind::NotFound, "Room not found"));
|
|
}
|
|
|
|
match &body.visibility {
|
|
room::Visibility::Public => {
|
|
if services().globals.config.lockdown_public_room_directory && !services().users.is_admin(sender_user)? {
|
|
info!(
|
|
"Non-admin user {sender_user} tried to publish {0} to the room directory while \
|
|
\"lockdown_public_room_directory\" is enabled",
|
|
body.room_id
|
|
);
|
|
|
|
return Err(Error::BadRequest(
|
|
ErrorKind::forbidden(),
|
|
"Publishing rooms to the room directory is not allowed",
|
|
));
|
|
}
|
|
|
|
services().rooms.directory.set_public(&body.room_id)?;
|
|
info!("{sender_user} made {0} public", body.room_id);
|
|
},
|
|
room::Visibility::Private => services().rooms.directory.set_not_public(&body.room_id)?,
|
|
_ => {
|
|
return Err(Error::BadRequest(
|
|
ErrorKind::InvalidParam,
|
|
"Room visibility type is not supported.",
|
|
));
|
|
},
|
|
}
|
|
|
|
Ok(set_room_visibility::v3::Response {})
|
|
}
|
|
|
|
/// # `GET /_matrix/client/r0/directory/list/room/{roomId}`
|
|
///
|
|
/// Gets the visibility of a given room in the room directory.
|
|
pub(crate) async fn get_room_visibility_route(
|
|
body: Ruma<get_room_visibility::v3::Request>,
|
|
) -> Result<get_room_visibility::v3::Response> {
|
|
if !services().rooms.metadata.exists(&body.room_id)? {
|
|
// Return 404 if the room doesn't exist
|
|
return Err(Error::BadRequest(ErrorKind::NotFound, "Room not found"));
|
|
}
|
|
|
|
Ok(get_room_visibility::v3::Response {
|
|
visibility: if services().rooms.directory.is_public_room(&body.room_id)? {
|
|
room::Visibility::Public
|
|
} else {
|
|
room::Visibility::Private
|
|
},
|
|
})
|
|
}
|
|
|
|
pub(crate) async fn get_public_rooms_filtered_helper(
|
|
server: Option<&ServerName>, limit: Option<UInt>, since: Option<&str>, filter: &Filter, _network: &RoomNetwork,
|
|
) -> Result<get_public_rooms_filtered::v3::Response> {
|
|
if let Some(other_server) = server.filter(|server_name| !server_is_ours(server_name)) {
|
|
let response = services()
|
|
.sending
|
|
.send_federation_request(
|
|
other_server,
|
|
federation::directory::get_public_rooms_filtered::v1::Request {
|
|
limit,
|
|
since: since.map(ToOwned::to_owned),
|
|
filter: Filter {
|
|
generic_search_term: filter.generic_search_term.clone(),
|
|
room_types: filter.room_types.clone(),
|
|
},
|
|
room_network: RoomNetwork::Matrix,
|
|
},
|
|
)
|
|
.await?;
|
|
|
|
return Ok(get_public_rooms_filtered::v3::Response {
|
|
chunk: response.chunk,
|
|
prev_batch: response.prev_batch,
|
|
next_batch: response.next_batch,
|
|
total_room_count_estimate: response.total_room_count_estimate,
|
|
});
|
|
}
|
|
|
|
// Use limit or else 10, with maximum 100
|
|
let limit = limit.map_or(10, u64::from);
|
|
let mut num_since: u64 = 0;
|
|
|
|
if let Some(s) = &since {
|
|
let mut characters = s.chars();
|
|
let backwards = match characters.next() {
|
|
Some('n') => false,
|
|
Some('p') => true,
|
|
_ => return Err(Error::BadRequest(ErrorKind::InvalidParam, "Invalid `since` token")),
|
|
};
|
|
|
|
num_since = characters
|
|
.collect::<String>()
|
|
.parse()
|
|
.map_err(|_| Error::BadRequest(ErrorKind::InvalidParam, "Invalid `since` token."))?;
|
|
|
|
if backwards {
|
|
num_since = num_since.saturating_sub(limit);
|
|
}
|
|
}
|
|
|
|
let mut all_rooms: Vec<_> = services()
|
|
.rooms
|
|
.directory
|
|
.public_rooms()
|
|
.map(|room_id| {
|
|
let room_id = room_id?;
|
|
|
|
let chunk = PublicRoomsChunk {
|
|
canonical_alias: services()
|
|
.rooms
|
|
.state_accessor
|
|
.room_state_get(&room_id, &StateEventType::RoomCanonicalAlias, "")?
|
|
.map_or(Ok(None), |s| {
|
|
serde_json::from_str(s.content.get())
|
|
.map(|c: RoomCanonicalAliasEventContent| c.alias)
|
|
.map_err(|_| Error::bad_database("Invalid canonical alias event in database."))
|
|
})?,
|
|
name: services().rooms.state_accessor.get_name(&room_id)?,
|
|
num_joined_members: services()
|
|
.rooms
|
|
.state_cache
|
|
.room_joined_count(&room_id)?
|
|
.unwrap_or_else(|| {
|
|
warn!("Room {} has no member count", room_id);
|
|
0
|
|
})
|
|
.try_into()
|
|
.expect("user count should not be that big"),
|
|
topic: services()
|
|
.rooms
|
|
.state_accessor
|
|
.room_state_get(&room_id, &StateEventType::RoomTopic, "")?
|
|
.map_or(Ok(None), |s| {
|
|
serde_json::from_str(s.content.get())
|
|
.map(|c: RoomTopicEventContent| Some(c.topic))
|
|
.map_err(|e| {
|
|
error!("Invalid room topic event in database for room {room_id}: {e}");
|
|
Error::bad_database("Invalid room topic event in database.")
|
|
})
|
|
})
|
|
.unwrap_or(None),
|
|
world_readable: services().rooms.state_accessor.is_world_readable(&room_id)?,
|
|
guest_can_join: services()
|
|
.rooms
|
|
.state_accessor
|
|
.guest_can_join(&room_id)?,
|
|
avatar_url: services()
|
|
.rooms
|
|
.state_accessor
|
|
.room_state_get(&room_id, &StateEventType::RoomAvatar, "")?
|
|
.map(|s| {
|
|
serde_json::from_str(s.content.get())
|
|
.map(|c: RoomAvatarEventContent| c.url)
|
|
.map_err(|_| Error::bad_database("Invalid room avatar event in database."))
|
|
})
|
|
.transpose()?
|
|
// url is now an Option<String> so we must flatten
|
|
.flatten(),
|
|
join_rule: services()
|
|
.rooms
|
|
.state_accessor
|
|
.room_state_get(&room_id, &StateEventType::RoomJoinRules, "")?
|
|
.map(|s| {
|
|
serde_json::from_str(s.content.get())
|
|
.map(|c: RoomJoinRulesEventContent| match c.join_rule {
|
|
JoinRule::Public => Some(PublicRoomJoinRule::Public),
|
|
JoinRule::Knock => Some(PublicRoomJoinRule::Knock),
|
|
_ => None,
|
|
})
|
|
.map_err(|e| {
|
|
error!("Invalid room join rule event in database: {}", e);
|
|
Error::BadDatabase("Invalid room join rule event in database.")
|
|
})
|
|
})
|
|
.transpose()?
|
|
.flatten()
|
|
.ok_or_else(|| Error::bad_database("Missing room join rule event for room."))?,
|
|
room_type: services()
|
|
.rooms
|
|
.state_accessor
|
|
.room_state_get(&room_id, &StateEventType::RoomCreate, "")?
|
|
.map(|s| {
|
|
serde_json::from_str::<RoomCreateEventContent>(s.content.get()).map_err(|e| {
|
|
error!("Invalid room create event in database: {}", e);
|
|
Error::BadDatabase("Invalid room create event in database.")
|
|
})
|
|
})
|
|
.transpose()?
|
|
.and_then(|e| e.room_type),
|
|
room_id,
|
|
};
|
|
Ok(chunk)
|
|
})
|
|
.filter_map(|r: Result<_>| r.ok()) // Filter out buggy rooms
|
|
.filter(|chunk| {
|
|
if let Some(query) = filter.generic_search_term.as_ref().map(|q| q.to_lowercase()) {
|
|
if let Some(name) = &chunk.name {
|
|
if name.as_str().to_lowercase().contains(&query) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
if let Some(topic) = &chunk.topic {
|
|
if topic.to_lowercase().contains(&query) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
if let Some(canonical_alias) = &chunk.canonical_alias {
|
|
if canonical_alias.as_str().to_lowercase().contains(&query) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
false
|
|
} else {
|
|
// No search term
|
|
true
|
|
}
|
|
})
|
|
// We need to collect all, so we can sort by member count
|
|
.collect();
|
|
|
|
all_rooms.sort_by(|l, r| r.num_joined_members.cmp(&l.num_joined_members));
|
|
|
|
let total_room_count_estimate = UInt::try_from(all_rooms.len()).unwrap_or_else(|_| uint!(0));
|
|
|
|
let chunk: Vec<_> = all_rooms
|
|
.into_iter()
|
|
.skip(
|
|
num_since
|
|
.try_into()
|
|
.expect("num_since should not be this high"),
|
|
)
|
|
.take(limit.try_into().expect("limit should not be this high"))
|
|
.collect();
|
|
|
|
let prev_batch = if num_since == 0 {
|
|
None
|
|
} else {
|
|
Some(format!("p{num_since}"))
|
|
};
|
|
|
|
let next_batch = if chunk.len() < limit.try_into().unwrap() {
|
|
None
|
|
} else {
|
|
Some(format!(
|
|
"n{}",
|
|
num_since
|
|
.checked_add(limit)
|
|
.expect("num_since and limit should not be that large")
|
|
))
|
|
};
|
|
|
|
Ok(get_public_rooms_filtered::v3::Response {
|
|
chunk,
|
|
prev_batch,
|
|
next_batch,
|
|
total_room_count_estimate: Some(total_room_count_estimate),
|
|
})
|
|
}
|