mirror of
https://gitlab.com/famedly/conduit.git
synced 2024-12-28 13:33:47 +03:00
Rename userid_avatar_url to userid_avatarurl and fix debug print
Run cargo fmt Took 5 minutes
This commit is contained in:
parent
b1284fd509
commit
49fe5e3271
3 changed files with 28 additions and 35 deletions
|
@ -84,13 +84,13 @@ impl Data {
|
|||
|
||||
/// Removes a avatar_url.
|
||||
pub fn avatar_url_remove(&self, user_id: &UserId) {
|
||||
self.db.userid_avatar_url.remove(user_id).unwrap();
|
||||
self.db.userid_avatarurl.remove(user_id).unwrap();
|
||||
}
|
||||
|
||||
/// Set a new avatar_url.
|
||||
pub fn avatar_url_set(&self, user_id: &UserId, avatar_url: String) {
|
||||
self.db
|
||||
.userid_avatar_url
|
||||
.userid_avatarurl
|
||||
.insert(user_id.to_string(), &*avatar_url)
|
||||
.unwrap();
|
||||
}
|
||||
|
@ -98,7 +98,7 @@ impl Data {
|
|||
/// Get a the avatar_url of a user.
|
||||
pub fn avatar_url_get(&self, user_id: &UserId) -> Option<String> {
|
||||
self.db
|
||||
.userid_avatar_url
|
||||
.userid_avatarurl
|
||||
.get(user_id.to_string())
|
||||
.unwrap()
|
||||
.map(|bytes| utils::string_from_bytes(&bytes))
|
||||
|
|
|
@ -53,7 +53,7 @@ pub struct Database {
|
|||
pub userid_password: sled::Tree,
|
||||
pub userid_deviceids: MultiValue,
|
||||
pub userid_displayname: sled::Tree,
|
||||
pub userid_avatar_url: sled::Tree,
|
||||
pub userid_avatarurl: sled::Tree,
|
||||
pub deviceid_token: sled::Tree,
|
||||
pub token_userid: sled::Tree,
|
||||
pub pduid_pdus: sled::Tree,
|
||||
|
@ -78,7 +78,7 @@ impl Database {
|
|||
userid_password: db.open_tree("userid_password").unwrap(),
|
||||
userid_deviceids: MultiValue(db.open_tree("userid_deviceids").unwrap()),
|
||||
userid_displayname: db.open_tree("userid_displayname").unwrap(),
|
||||
userid_avatar_url: db.open_tree("userid_avatar_url").unwrap(),
|
||||
userid_avatarurl: db.open_tree("userid_avatarurl").unwrap(),
|
||||
deviceid_token: db.open_tree("deviceid_token").unwrap(),
|
||||
token_userid: db.open_tree("token_userid").unwrap(),
|
||||
pduid_pdus: db.open_tree("pduid_pdus").unwrap(),
|
||||
|
@ -107,7 +107,7 @@ impl Database {
|
|||
String::from_utf8_lossy(&v),
|
||||
);
|
||||
}
|
||||
println!("# AccountData -> Displayname:");
|
||||
println!("# UserId -> Displayname:");
|
||||
for (k, v) in self.userid_displayname.iter().map(|r| r.unwrap()) {
|
||||
println!(
|
||||
"{:?} -> {:?}",
|
||||
|
@ -115,8 +115,8 @@ impl Database {
|
|||
String::from_utf8_lossy(&v),
|
||||
);
|
||||
}
|
||||
println!("# AccountData -> AvatarURL:");
|
||||
for (k, v) in self.userid_avatar_url.iter().map(|r| r.unwrap()) {
|
||||
println!("# UserId -> AvatarURL:");
|
||||
for (k, v) in self.userid_avatarurl.iter().map(|r| r.unwrap()) {
|
||||
println!(
|
||||
"{:?} -> {:?}",
|
||||
String::from_utf8_lossy(&k),
|
||||
|
|
11
src/main.rs
11
src/main.rs
|
@ -317,7 +317,6 @@ fn set_displayname_route(
|
|||
data.displayname_set(&user_id, body.displayname.clone());
|
||||
// TODO send a new m.room.member join event with the updated displayname
|
||||
// TODO send a new m.presence event with the updated displayname
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -349,9 +348,7 @@ fn get_displayname_route(
|
|||
}));
|
||||
}
|
||||
|
||||
MatrixResult(Ok(get_display_name::Response {
|
||||
displayname: None,
|
||||
}))
|
||||
MatrixResult(Ok(get_display_name::Response { displayname: None }))
|
||||
}
|
||||
|
||||
#[put("/_matrix/client/r0/profile/<_user_id>/avatar_url", data = "<body>")]
|
||||
|
@ -374,14 +371,12 @@ fn set_avatar_url_route(
|
|||
// TODO in the future when we can handle media uploads make sure that this url is our own server
|
||||
// TODO also make sure this is valid mxc:// format (not only starting with it)
|
||||
|
||||
|
||||
if body.avatar_url == "" {
|
||||
data.avatar_url_remove(&user_id);
|
||||
} else {
|
||||
data.avatar_url_set(&user_id, body.displayname.clone());
|
||||
// TODO send a new m.room.member join event with the updated avatar_url
|
||||
// TODO send a new m.presence event with the updated avatar_url
|
||||
|
||||
}
|
||||
|
||||
MatrixResult(Ok(set_avatar_url::Response))
|
||||
|
@ -409,9 +404,7 @@ fn get_avatar_url_route(
|
|||
}));
|
||||
}
|
||||
|
||||
MatrixResult(Ok(get_avatar_url::Response {
|
||||
avatar_url: None,
|
||||
}))
|
||||
MatrixResult(Ok(get_avatar_url::Response { avatar_url: None }))
|
||||
}
|
||||
|
||||
#[get("/_matrix/client/r0/profile/<user_id_raw>", data = "<body>")]
|
||||
|
|
Loading…
Reference in a new issue