refactor: small improvements

This commit is contained in:
Timo Kösters 2022-04-06 18:49:46 +02:00
parent ee96a03d60
commit 566833111c
No known key found for this signature in database
GPG key ID: 24DA7517711A2BA4
4 changed files with 16 additions and 8 deletions

View file

@ -340,14 +340,17 @@ pub async fn change_password_route(
/// Get user_id of the sender user.
///
/// Note: Also works for Application Services
pub async fn whoami_route(body: Ruma<whoami::v3::Request>) -> Result<whoami::v3::Response> {
pub async fn whoami_route(
db: DatabaseGuard,
body: Ruma<whoami::v3::Request>,
) -> Result<whoami::v3::Response> {
let sender_user = body.sender_user.as_ref().expect("user is authenticated");
let device_id = body.sender_device.as_ref().cloned();
let is_guest = device_id.is_none();
Ok(whoami::v3::Response {
user_id: sender_user.clone(),
device_id,
is_guest,
is_guest: db.users.is_deactivated(&sender_user)?,
})
}