Files
continuwuity/src/api/client/profile.rs
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

417 lines
11 KiB
Rust
Raw Normal View History

2024-07-16 08:05:25 +00:00
use axum::extract::State;
2024-12-14 21:58:01 -05:00
use conduwuit::{
Err, Result,
matrix::pdu::PduBuilder,
utils::{IterStream, future::TryExtExt, stream::TryIgnore},
warn,
2024-08-08 17:18:30 +00:00
};
use conduwuit_service::Services;
use futures::{
StreamExt, TryStreamExt,
2025-09-14 15:53:05 -04:00
future::{join, join3, join4},
};
2020-07-30 18:14:47 +02:00
use ruma::{
OwnedMxcUri, OwnedRoomId, UserId,
api::{
client::profile::{
get_avatar_url, get_display_name, get_profile, set_avatar_url, set_display_name,
},
federation,
2020-07-30 18:14:47 +02:00
},
events::room::member::{MembershipState, RoomMemberEventContent},
presence::PresenceState,
2020-07-30 18:14:47 +02:00
};
2024-07-22 07:43:51 +00:00
use crate::Ruma;
2020-07-30 18:14:47 +02:00
2021-08-31 19:14:37 +02:00
/// # `PUT /_matrix/client/r0/profile/{userId}/displayname`
///
/// Updates the displayname.
///
/// - Also makes sure other users receive the update using presence EDUs
2024-04-22 23:48:57 -04:00
pub(crate) async fn set_displayname_route(
State(services): State<crate::State>,
body: Ruma<set_display_name::v3::Request>,
2022-02-18 15:33:14 +01:00
) -> Result<set_display_name::v3::Response> {
let sender_user = body.sender_user();
if services.users.is_suspended(sender_user).await? {
return Err!(Request(UserSuspended("You cannot perform this action while suspended.")));
}
if *sender_user != body.user_id && body.appservice_info.is_none() {
return Err!(Request(Forbidden("You cannot update the profile of another user")));
}
2024-07-16 08:05:25 +00:00
let all_joined_rooms: Vec<OwnedRoomId> = services
2021-08-31 21:20:03 +02:00
.rooms
2022-10-05 09:34:25 +02:00
.state_cache
.rooms_joined(&body.user_id)
2024-08-08 17:18:30 +00:00
.map(ToOwned::to_owned)
.collect()
.await;
2024-03-05 19:48:54 -05:00
update_displayname(&services, &body.user_id, body.displayname.clone(), &all_joined_rooms)
.await;
2024-03-05 19:48:54 -05:00
if services.config.allow_local_presence {
2024-04-01 20:48:40 -07:00
// Presence update
2024-07-16 08:05:25 +00:00
services
2024-04-01 20:48:40 -07:00
.presence
2024-08-08 17:18:30 +00:00
.ping_presence(&body.user_id, &PresenceState::Online)
.await?;
2024-04-01 20:48:40 -07:00
}
2024-03-05 19:48:54 -05:00
2022-02-18 15:33:14 +01:00
Ok(set_display_name::v3::Response {})
2020-07-30 18:14:47 +02:00
}
/// # `GET /_matrix/client/v3/profile/{userId}/displayname`
2021-08-31 19:14:37 +02:00
///
/// Returns the displayname of the user.
///
2024-06-16 00:36:49 +00:00
/// - If user is on another server and we do not have a local copy already fetch
/// displayname over federation
2024-04-22 23:48:57 -04:00
pub(crate) async fn get_displayname_route(
State(services): State<crate::State>,
body: Ruma<get_display_name::v3::Request>,
2022-02-18 15:33:14 +01:00
) -> Result<get_display_name::v3::Response> {
2024-07-22 07:43:51 +00:00
if !services.globals.user_is_local(&body.user_id) {
// Create and update our local copy of the user
2024-07-16 08:05:25 +00:00
if let Ok(response) = services
.sending
.send_federation_request(
body.user_id.server_name(),
federation::query::get_profile_information::v1::Request {
2022-12-14 13:09:10 +01:00
user_id: body.user_id.clone(),
field: None, // we want the full user's profile to update locally too
},
)
.await
{
2024-08-08 17:18:30 +00:00
if !services.users.exists(&body.user_id).await {
2025-08-09 15:06:48 +02:00
services.users.create(&body.user_id, None, None).await?;
}
2024-03-05 19:48:54 -05:00
2024-07-16 08:05:25 +00:00
services
2024-03-25 17:05:11 -04:00
.users
2024-08-08 17:18:30 +00:00
.set_displayname(&body.user_id, response.displayname.clone());
2024-07-16 08:05:25 +00:00
services
2024-03-25 17:05:11 -04:00
.users
2024-08-08 17:18:30 +00:00
.set_avatar_url(&body.user_id, response.avatar_url.clone());
2024-07-16 08:05:25 +00:00
services
2024-03-25 17:05:11 -04:00
.users
2024-08-08 17:18:30 +00:00
.set_blurhash(&body.user_id, response.blurhash.clone());
2024-03-05 19:48:54 -05:00
return Ok(get_display_name::v3::Response { displayname: response.displayname });
2024-03-05 19:48:54 -05:00
}
}
2024-03-05 19:48:54 -05:00
2024-08-08 17:18:30 +00:00
if !services.users.exists(&body.user_id).await {
// Return 404 if this user doesn't exist and we couldn't fetch it over
// federation
return Err!(Request(NotFound("Profile was not found.")));
}
2024-03-05 19:48:54 -05:00
2022-02-18 15:33:14 +01:00
Ok(get_display_name::v3::Response {
2024-08-08 17:18:30 +00:00
displayname: services.users.displayname(&body.user_id).await.ok(),
2022-01-22 16:58:32 +01:00
})
2020-07-30 18:14:47 +02:00
}
/// # `PUT /_matrix/client/v3/profile/{userId}/avatar_url`
2021-08-31 19:14:37 +02:00
///
/// Updates the `avatar_url` and `blurhash`.
2021-08-31 19:14:37 +02:00
///
/// - Also makes sure other users receive the update using presence EDUs
2024-04-22 23:48:57 -04:00
pub(crate) async fn set_avatar_url_route(
State(services): State<crate::State>,
body: Ruma<set_avatar_url::v3::Request>,
2024-04-22 23:48:57 -04:00
) -> Result<set_avatar_url::v3::Response> {
let sender_user = body.sender_user();
if services.users.is_suspended(sender_user).await? {
return Err!(Request(UserSuspended("You cannot perform this action while suspended.")));
}
if *sender_user != body.user_id && body.appservice_info.is_none() {
return Err!(Request(Forbidden("You cannot update the profile of another user")));
}
2024-07-16 08:05:25 +00:00
let all_joined_rooms: Vec<OwnedRoomId> = services
2021-08-31 21:20:03 +02:00
.rooms
2022-10-05 09:34:25 +02:00
.state_cache
.rooms_joined(&body.user_id)
2024-08-08 17:18:30 +00:00
.map(ToOwned::to_owned)
.collect()
.await;
2024-03-05 19:48:54 -05:00
update_avatar_url(
2024-07-27 07:17:07 +00:00
&services,
&body.user_id,
body.avatar_url.clone(),
body.blurhash.clone(),
2024-08-08 17:18:30 +00:00
&all_joined_rooms,
)
.await;
2024-03-05 19:48:54 -05:00
if services.config.allow_local_presence {
2024-04-01 20:48:40 -07:00
// Presence update
2024-07-16 08:05:25 +00:00
services
2024-04-01 20:48:40 -07:00
.presence
2024-08-08 17:18:30 +00:00
.ping_presence(&body.user_id, &PresenceState::Online)
.await
.ok();
2024-04-01 20:48:40 -07:00
}
2024-03-05 19:48:54 -05:00
2022-02-18 15:33:14 +01:00
Ok(set_avatar_url::v3::Response {})
2020-07-30 18:14:47 +02:00
}
/// # `GET /_matrix/client/v3/profile/{userId}/avatar_url`
2021-08-31 19:14:37 +02:00
///
/// Returns the `avatar_url` and `blurhash` of the user.
2021-08-31 19:14:37 +02:00
///
2024-06-16 00:36:49 +00:00
/// - If user is on another server and we do not have a local copy already fetch
/// `avatar_url` and blurhash over federation
2024-04-22 23:48:57 -04:00
pub(crate) async fn get_avatar_url_route(
State(services): State<crate::State>,
body: Ruma<get_avatar_url::v3::Request>,
2024-04-22 23:48:57 -04:00
) -> Result<get_avatar_url::v3::Response> {
2024-07-22 07:43:51 +00:00
if !services.globals.user_is_local(&body.user_id) {
// Create and update our local copy of the user
2024-07-16 08:05:25 +00:00
if let Ok(response) = services
.sending
.send_federation_request(
body.user_id.server_name(),
federation::query::get_profile_information::v1::Request {
2022-12-14 13:09:10 +01:00
user_id: body.user_id.clone(),
field: None, // we want the full user's profile to update locally as well
},
)
.await
{
2024-08-08 17:18:30 +00:00
if !services.users.exists(&body.user_id).await {
2025-08-09 15:06:48 +02:00
services.users.create(&body.user_id, None, None).await?;
}
2024-03-05 19:48:54 -05:00
2024-07-16 08:05:25 +00:00
services
2024-03-25 17:05:11 -04:00
.users
2024-08-08 17:18:30 +00:00
.set_displayname(&body.user_id, response.displayname.clone());
2024-07-16 08:05:25 +00:00
services
2024-03-25 17:05:11 -04:00
.users
2024-08-08 17:18:30 +00:00
.set_avatar_url(&body.user_id, response.avatar_url.clone());
2024-07-16 08:05:25 +00:00
services
2024-03-25 17:05:11 -04:00
.users
2024-08-08 17:18:30 +00:00
.set_blurhash(&body.user_id, response.blurhash.clone());
2024-03-05 19:48:54 -05:00
return Ok(get_avatar_url::v3::Response {
avatar_url: response.avatar_url,
blurhash: response.blurhash,
});
2024-03-05 19:48:54 -05:00
}
}
2024-03-05 19:48:54 -05:00
2024-08-08 17:18:30 +00:00
if !services.users.exists(&body.user_id).await {
// Return 404 if this user doesn't exist and we couldn't fetch it over
// federation
return Err!(Request(NotFound("Profile was not found.")));
}
2024-03-05 19:48:54 -05:00
let (avatar_url, blurhash) = join(
services.users.avatar_url(&body.user_id).ok(),
services.users.blurhash(&body.user_id).ok(),
)
.await;
Ok(get_avatar_url::v3::Response { avatar_url, blurhash })
2020-07-30 18:14:47 +02:00
}
/// # `GET /_matrix/client/v3/profile/{userId}`
2021-08-31 19:14:37 +02:00
///
/// Returns the displayname, avatar_url, blurhash, and custom profile fields of
/// the user.
2021-08-31 19:14:37 +02:00
///
/// - If user is on another server and we do not have a local copy already,
2024-06-16 00:36:49 +00:00
/// fetch profile over federation.
2024-07-16 08:05:25 +00:00
pub(crate) async fn get_profile_route(
State(services): State<crate::State>,
body: Ruma<get_profile::v3::Request>,
2024-07-16 08:05:25 +00:00
) -> Result<get_profile::v3::Response> {
2024-07-22 07:43:51 +00:00
if !services.globals.user_is_local(&body.user_id) {
// Create and update our local copy of the user
2024-07-16 08:05:25 +00:00
if let Ok(response) = services
.sending
.send_federation_request(
body.user_id.server_name(),
federation::query::get_profile_information::v1::Request {
2022-12-14 13:09:10 +01:00
user_id: body.user_id.clone(),
field: None,
},
)
.await
{
2024-08-08 17:18:30 +00:00
if !services.users.exists(&body.user_id).await {
2025-08-09 15:06:48 +02:00
services.users.create(&body.user_id, None, None).await?;
}
2024-03-05 19:48:54 -05:00
2024-07-16 08:05:25 +00:00
services
2024-03-25 17:05:11 -04:00
.users
2024-08-08 17:18:30 +00:00
.set_displayname(&body.user_id, response.displayname.clone());
2024-07-16 08:05:25 +00:00
services
2024-03-25 17:05:11 -04:00
.users
2024-08-08 17:18:30 +00:00
.set_avatar_url(&body.user_id, response.avatar_url.clone());
2024-07-16 08:05:25 +00:00
services
2024-03-25 17:05:11 -04:00
.users
2024-08-08 17:18:30 +00:00
.set_blurhash(&body.user_id, response.blurhash.clone());
2024-03-05 19:48:54 -05:00
for (profile_key, profile_key_value) in &response.custom_profile_fields {
services.users.set_profile_key(
&body.user_id,
profile_key,
Some(profile_key_value.clone()),
);
}
return Ok(get_profile::v3::Response {
displayname: response.displayname,
avatar_url: response.avatar_url,
blurhash: response.blurhash,
custom_profile_fields: response.custom_profile_fields,
});
2024-03-05 19:48:54 -05:00
}
}
2024-03-05 19:48:54 -05:00
2024-08-08 17:18:30 +00:00
if !services.users.exists(&body.user_id).await {
// Return 404 if this user doesn't exist and we couldn't fetch it over
// federation
return Err!(Request(NotFound("Profile was not found.")));
2020-07-30 18:14:47 +02:00
}
2024-03-05 19:48:54 -05:00
2025-09-14 15:53:05 -04:00
let (avatar_url, blurhash, displayname, custom_profile_fields) = join4(
services.users.avatar_url(&body.user_id).ok(),
services.users.blurhash(&body.user_id).ok(),
services.users.displayname(&body.user_id).ok(),
2025-09-14 15:53:05 -04:00
services.users.all_profile_keys(&body.user_id).collect(),
)
.await;
2022-02-18 15:33:14 +01:00
Ok(get_profile::v3::Response {
avatar_url,
blurhash,
displayname,
custom_profile_fields,
2022-01-22 16:58:32 +01:00
})
2020-07-30 18:14:47 +02:00
}
pub async fn update_displayname(
services: &Services,
user_id: &UserId,
displayname: Option<String>,
all_joined_rooms: &[OwnedRoomId],
) {
let (current_avatar_url, current_blurhash, current_displayname) = join3(
services.users.avatar_url(user_id).ok(),
services.users.blurhash(user_id).ok(),
services.users.displayname(user_id).ok(),
)
.await;
if displayname == current_displayname {
return;
}
2024-08-08 17:18:30 +00:00
services.users.set_displayname(user_id, displayname.clone());
// Send a new join membership event into all joined rooms
let avatar_url = &current_avatar_url;
let blurhash = &current_blurhash;
let displayname = &displayname;
let all_joined_rooms: Vec<_> = all_joined_rooms
.iter()
.try_stream()
.and_then(|room_id: &OwnedRoomId| async move {
let pdu = PduBuilder::state(user_id.to_string(), &RoomMemberEventContent {
displayname: displayname.clone(),
membership: MembershipState::Join,
avatar_url: avatar_url.clone(),
blurhash: blurhash.clone(),
join_authorized_via_users_server: None,
reason: None,
is_direct: None,
third_party_invite: None,
2025-06-29 13:29:27 +01:00
redact_events: None,
});
Ok((pdu, room_id))
})
.ignore_err()
.collect()
.await;
update_all_rooms(services, all_joined_rooms, user_id).await;
}
pub async fn update_avatar_url(
services: &Services,
user_id: &UserId,
avatar_url: Option<OwnedMxcUri>,
blurhash: Option<String>,
2024-08-08 17:18:30 +00:00
all_joined_rooms: &[OwnedRoomId],
) {
let (current_avatar_url, current_blurhash, current_displayname) = join3(
services.users.avatar_url(user_id).ok(),
services.users.blurhash(user_id).ok(),
services.users.displayname(user_id).ok(),
)
.await;
if current_avatar_url == avatar_url && current_blurhash == blurhash {
return;
}
2024-08-08 17:18:30 +00:00
services.users.set_avatar_url(user_id, avatar_url.clone());
services.users.set_blurhash(user_id, blurhash.clone());
// Send a new join membership event into all joined rooms
2024-08-08 17:18:30 +00:00
let avatar_url = &avatar_url;
let blurhash = &blurhash;
let displayname = &current_displayname;
let all_joined_rooms: Vec<_> = all_joined_rooms
.iter()
2024-08-08 17:18:30 +00:00
.try_stream()
.and_then(|room_id: &OwnedRoomId| async move {
let pdu = PduBuilder::state(user_id.to_string(), &RoomMemberEventContent {
avatar_url: avatar_url.clone(),
blurhash: blurhash.clone(),
membership: MembershipState::Join,
displayname: displayname.clone(),
join_authorized_via_users_server: None,
reason: None,
is_direct: None,
third_party_invite: None,
2025-06-29 13:29:27 +01:00
redact_events: None,
});
Ok((pdu, room_id))
})
2024-08-08 17:18:30 +00:00
.ignore_err()
.collect()
.await;
2024-07-16 08:05:25 +00:00
update_all_rooms(services, all_joined_rooms, user_id).await;
}
2024-07-16 08:05:25 +00:00
pub async fn update_all_rooms(
services: &Services,
all_joined_rooms: Vec<(PduBuilder, &OwnedRoomId)>,
user_id: &UserId,
2024-07-16 08:05:25 +00:00
) {
for (pdu_builder, room_id) in all_joined_rooms {
2024-07-16 08:05:25 +00:00
let state_lock = services.rooms.state.mutex.lock(room_id).await;
if let Err(e) = services
.rooms
.timeline
.build_and_append_pdu(pdu_builder, user_id, room_id, &state_lock)
.await
{
warn!(%user_id, %room_id, "Failed to update/send new profile join membership update in room: {e}");
}
}
}