2020-11-09 11:21:04 +00:00
|
|
|
use std::convert::{TryFrom, TryInto};
|
|
|
|
|
2020-12-02 14:49:50 +00:00
|
|
|
use crate::pdu::PduBuilder;
|
|
|
|
use log::warn;
|
2020-11-09 11:21:04 +00:00
|
|
|
use rocket::futures::{channel::mpsc, stream::StreamExt};
|
2020-12-04 23:16:17 +00:00
|
|
|
use ruma::{
|
|
|
|
events::{room::message, EventType},
|
|
|
|
UserId,
|
|
|
|
};
|
2020-11-09 11:21:04 +00:00
|
|
|
use tokio::select;
|
|
|
|
|
|
|
|
pub enum AdminCommand {
|
|
|
|
SendTextMessage(message::TextMessageEventContent),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct Admin {
|
|
|
|
pub sender: mpsc::UnboundedSender<AdminCommand>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Admin {
|
|
|
|
pub fn start_handler(
|
|
|
|
&self,
|
|
|
|
db: super::Database,
|
|
|
|
mut receiver: mpsc::UnboundedReceiver<AdminCommand>,
|
|
|
|
) {
|
|
|
|
tokio::spawn(async move {
|
|
|
|
// TODO: Use futures when we have long admin commands
|
|
|
|
//let mut futures = FuturesUnordered::new();
|
|
|
|
|
|
|
|
let conduit_user = UserId::try_from(format!("@conduit:{}", db.globals.server_name()))
|
|
|
|
.expect("@conduit:server_name is valid");
|
|
|
|
|
|
|
|
let conduit_room = db
|
|
|
|
.rooms
|
|
|
|
.id_from_alias(
|
|
|
|
&format!("#admins:{}", db.globals.server_name())
|
|
|
|
.try_into()
|
|
|
|
.expect("#admins:server_name is a valid room alias"),
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
2020-12-02 14:49:50 +00:00
|
|
|
if conduit_room.is_none() {
|
|
|
|
warn!("Conduit instance does not have an #admins room. Logging to that room will not work.");
|
|
|
|
}
|
|
|
|
|
2020-11-09 11:21:04 +00:00
|
|
|
loop {
|
|
|
|
select! {
|
|
|
|
Some(event) = receiver.next() => {
|
|
|
|
match event {
|
|
|
|
AdminCommand::SendTextMessage(message) => {
|
2020-12-02 14:49:50 +00:00
|
|
|
if let Some(conduit_room) = &conduit_room {
|
|
|
|
db.rooms.build_and_append_pdu(
|
|
|
|
PduBuilder {
|
|
|
|
event_type: EventType::RoomMessage,
|
|
|
|
content: serde_json::to_value(message).expect("event is valid, we just created it"),
|
|
|
|
unsigned: None,
|
|
|
|
state_key: None,
|
|
|
|
redacts: None,
|
|
|
|
},
|
|
|
|
&conduit_user,
|
|
|
|
&conduit_room,
|
|
|
|
&db.globals,
|
|
|
|
&db.sending,
|
|
|
|
&db.admin,
|
|
|
|
&db.account_data,
|
|
|
|
).unwrap();
|
|
|
|
}
|
2020-11-09 11:21:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn send(&self, command: AdminCommand) {
|
|
|
|
self.sender.unbounded_send(command).unwrap()
|
|
|
|
}
|
|
|
|
}
|