mirror of
https://gitlab.com/famedly/conduit.git
synced 2024-11-04 16:28:53 +01:00
Rename/Add count methods to count_local_users
This commit is contained in:
parent
567cf6dbe9
commit
d21030566c
2 changed files with 13 additions and 1 deletions
|
@ -96,7 +96,7 @@ impl Admin {
|
|||
match event {
|
||||
AdminCommand::CountUsers => {
|
||||
// count() does not return an error on failure...
|
||||
if let Ok(usercount) = guard.users.count() {
|
||||
if let Ok(usercount) = guard.users.count_local_users() {
|
||||
let message = format!("Found {} total user accounts", usercount);
|
||||
send_message(RoomMessageEventContent::text_plain(message), guard, &state_lock);
|
||||
} else {
|
||||
|
|
|
@ -77,11 +77,23 @@ impl Users {
|
|||
}
|
||||
|
||||
/// Returns the number of users registered on this server.
|
||||
/// It really returns all users, not only real ones with a
|
||||
/// password to login but also bridge puppets...
|
||||
#[tracing::instrument(skip(self))]
|
||||
pub fn count(&self) -> Result<usize> {
|
||||
Ok(self.userid_password.iter().count())
|
||||
}
|
||||
|
||||
/// This method will only count those local user accounts with
|
||||
/// a password thus returning only real accounts on this instance.
|
||||
#[tracing::instrument(skip(self))]
|
||||
pub fn count_local_users(&self) -> Result<usize> {
|
||||
self.userid_password.iter().map(|(key, value)| {
|
||||
|
||||
});
|
||||
Ok(1)
|
||||
}
|
||||
|
||||
/// Find out which user an access token belongs to.
|
||||
#[tracing::instrument(skip(self, token))]
|
||||
pub fn find_from_token(&self, token: &str) -> Result<Option<(Box<UserId>, String)>> {
|
||||
|
|
Loading…
Reference in a new issue