improvement: more forgiving admin command syntax
This commit is contained in:
parent
fd9e52a559
commit
606b25b9e7
2 changed files with 4 additions and 2 deletions
|
@ -287,7 +287,7 @@ impl Service {
|
||||||
|
|
||||||
// Parse and process a message from the admin room
|
// Parse and process a message from the admin room
|
||||||
async fn process_admin_message(&self, room_message: String) -> RoomMessageEventContent {
|
async fn process_admin_message(&self, room_message: String) -> RoomMessageEventContent {
|
||||||
let mut lines = room_message.lines();
|
let mut lines = room_message.lines().filter(|l| !l.trim().is_empty());
|
||||||
let command_line = lines.next().expect("each string has at least one line");
|
let command_line = lines.next().expect("each string has at least one line");
|
||||||
let body: Vec<_> = lines.collect();
|
let body: Vec<_> = lines.collect();
|
||||||
|
|
||||||
|
|
|
@ -456,7 +456,9 @@ impl Service {
|
||||||
let server_user = format!("@conduit:{}", services().globals.server_name());
|
let server_user = format!("@conduit:{}", services().globals.server_name());
|
||||||
|
|
||||||
let to_conduit = body.starts_with(&format!("{server_user}: "))
|
let to_conduit = body.starts_with(&format!("{server_user}: "))
|
||||||
|| body.starts_with(&format!("{server_user} "));
|
|| body.starts_with(&format!("{server_user} "))
|
||||||
|
|| body == format!("{server_user}:")
|
||||||
|
|| body == format!("{server_user}");
|
||||||
|
|
||||||
// This will evaluate to false if the emergency password is set up so that
|
// This will evaluate to false if the emergency password is set up so that
|
||||||
// the administrator can execute commands as conduit
|
// the administrator can execute commands as conduit
|
||||||
|
|
Loading…
Add table
Reference in a new issue