use ruma::{api::appservice::Registration, events::room::message::RoomMessageEventContent}; use crate::{services, Result}; pub(super) async fn register(body: Vec<&str>) -> Result { if body.len() < 2 || !body[0].trim().starts_with("```") || body.last().unwrap_or(&"").trim() != "```" { return Ok(RoomMessageEventContent::text_plain( "Expected code block in command body. Add --help for details.", )); } let appservice_config = body[1..body.len().checked_sub(1).unwrap()].join("\n"); let parsed_config = serde_yaml::from_str::(&appservice_config); match parsed_config { Ok(yaml) => match services().appservice.register_appservice(yaml).await { Ok(id) => Ok(RoomMessageEventContent::text_plain(format!( "Appservice registered with ID: {id}." ))), Err(e) => Ok(RoomMessageEventContent::text_plain(format!( "Failed to register appservice: {e}" ))), }, Err(e) => Ok(RoomMessageEventContent::text_plain(format!( "Could not parse appservice config: {e}" ))), } } pub(super) async fn unregister(_body: Vec<&str>, appservice_identifier: String) -> Result { match services() .appservice .unregister_appservice(&appservice_identifier) .await { Ok(()) => Ok(RoomMessageEventContent::text_plain("Appservice unregistered.")), Err(e) => Ok(RoomMessageEventContent::text_plain(format!( "Failed to unregister appservice: {e}" ))), } } pub(super) async fn show(_body: Vec<&str>, appservice_identifier: String) -> Result { match services() .appservice .get_registration(&appservice_identifier) .await { Some(config) => { let config_str = serde_yaml::to_string(&config).expect("config should've been validated on register"); let output = format!("Config for {appservice_identifier}:\n\n```yaml\n{config_str}\n```",); Ok(RoomMessageEventContent::notice_markdown(output)) }, None => Ok(RoomMessageEventContent::text_plain("Appservice does not exist.")), } } pub(super) async fn list(_body: Vec<&str>) -> Result { let appservices = services().appservice.iter_ids().await; let output = format!("Appservices ({}): {}", appservices.len(), appservices.join(", ")); Ok(RoomMessageEventContent::text_plain(output)) }