doc: add example for sending and reacting on custom events

This commit is contained in:
Benjamin Kampmann
2022-08-04 13:08:42 +02:00
parent 323974fe4c
commit 9d588f7e00
2 changed files with 200 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
[package]
name = "example-custom-events"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
anyhow = "1"
dirs = "4.0.0"
serde = "1.0"
tokio = { version = "1.20.1", features = ["full"] }
tracing-subscriber = "0.3.15"
[dependencies.matrix-sdk]
path = "../../crates/matrix-sdk"
+185
View File
@@ -0,0 +1,185 @@
///
/// This is an example showcasing how to build a very simple bot with custom
/// events using the matrix-sdk. To try it, you need a rust build setup, then
/// you can run: `cargo run -p example-custom-events -- <homeserver_url> <user>
/// <password>`
///
/// Use a second client to open a DM to your bot or invite them into some room.
/// You should see it automatically join. Then post `!ping` and observe the log
/// of the bot. You will see that it sends the `Ping` event and upon receiving
/// it responds with the `Ack` event send to the room. You won't see that in
/// most regular clients, unless you activate showing of unknown events.
use std::{env, process::exit};
use matrix_sdk::{
config::SyncSettings,
room::Room,
ruma::{
events::{
macros::EventContent,
room::{
member::StrippedRoomMemberEvent,
message::{MessageType, OriginalSyncRoomMessageEvent, TextMessageEventContent},
},
SyncMessageLikeEvent,
},
OwnedEventId,
},
Client,
};
use serde::{Deserialize, Serialize};
use tokio::time::{sleep, Duration};
// We use ruma to define our custom events. Just declare the events content
// by deriving from `EventContent` adn define `ruma_events` for the metadata
#[derive(Clone, Debug, Deserialize, Serialize, EventContent)]
#[ruma_event(type = "rs.matrix-sdk.example.ping", kind = MessageLike)]
pub struct PingContent {}
#[derive(Clone, Debug, Deserialize, Serialize, EventContent)]
#[ruma_event(type = "rs.matrix-sdk.example.ack", kind = MessageLike)]
pub struct AckContent {
// the event ID of the ping.
ping_id: OwnedEventId,
}
/// The final events can be redacted, hence us defining only the specialized
/// content (and not room_id and event_id and such). Wrapping the content with
/// `SyncMessageLikeEvent` props them up to become a full event.
pub type PingEvent = SyncMessageLikeEvent<PingContent>;
pub type AckEvent = SyncMessageLikeEvent<AckContent>;
// we want to start the ping-ack-flow on "!ping" messages.
async fn on_regular_room_message(event: OriginalSyncRoomMessageEvent, room: Room) {
if let Room::Joined(room) = room {
let msg_body = match event.content.msgtype {
MessageType::Text(TextMessageEventContent { body, .. }) => body,
_ => return,
};
if msg_body.contains("!ping") {
let content = PingContent {};
println!("sending ping");
room.send(content, None).await.unwrap();
println!("ping sent");
}
}
}
// call this on any PingEvent we receive
async fn on_ping_event(event: PingEvent, room: Room) {
if let Room::Joined(room) = room {
let event_id = event.event_id().to_owned();
// Send an ack with the event_id of the ping, as our 'protocol' demands
let content = AckContent { ping_id: event_id };
println!("sending ack");
room.send(content, None).await.unwrap();
println!("ack sent");
}
}
// once logged in, this is called where we configure the handlers
// and run the client
async fn sync_loop(client: Client) -> anyhow::Result<()> {
// invite acceptance as in the getting-started-client
client.add_event_handler(on_stripped_state_member).await;
client.sync_once(SyncSettings::default()).await.unwrap();
// our customisation:
// - send `PingEvent` on `!ping` in any room
client.add_event_handler(on_regular_room_message).await;
// - send `AckEvent` on `PingEvent` in any room
client.add_event_handler(on_ping_event).await;
let settings = SyncSettings::default().token(client.sync_token().await.unwrap());
client.sync(settings).await; // this essentially loops until we kill the bot
Ok(())
}
// ------ below is mainly like the getting-started example, see that for docs.
async fn login_and_sync(
homeserver_url: String,
username: &str,
password: &str,
) -> anyhow::Result<()> {
#[allow(unused_mut)]
let mut client_builder = Client::builder().homeserver_url(homeserver_url);
let home = dirs::data_dir().expect("no home directory found").join("getting_started");
client_builder = client_builder.sled_store(home, None)?;
let client = client_builder.build().await?;
client
.login_username(username, password)
.initial_device_display_name("getting started bot")
.send()
.await?;
// it worked!
println!("logged in as {username}");
sync_loop(client).await
}
// Whenever we see a new stripped room member event, we've asked our client to
// call this function. So what exactly are we doing then?
async fn on_stripped_state_member(
room_member: StrippedRoomMemberEvent,
client: Client,
room: Room,
) {
if room_member.state_key != client.user_id().unwrap() {
// the invite we've seen isn't for us, but for someone else. ignore
return;
}
// looks like the room is an invited room, let's attempt to join then
if let Room::Invited(room) = room {
println!("Autojoining room {}", room.room_id());
let mut delay = 2;
while let Err(err) = room.accept_invitation().await {
// retry autojoin due to synapse sending invites, before the
// invited user can join for more information see
// https://github.com/matrix-org/synapse/issues/4345
eprintln!("Failed to join room {} ({err:?}), retrying in {delay}s", room.room_id());
sleep(Duration::from_secs(delay)).await;
delay *= 2;
if delay > 3600 {
eprintln!("Can't join room {} ({err:?})", room.room_id());
break;
}
}
println!("Successfully joined room {}", room.room_id());
}
}
#[tokio::main]
async fn main() -> anyhow::Result<()> {
// set up some simple stderr logging. You can configure it by changing the env
// var `RUST_LOG`
tracing_subscriber::fmt::init();
// parse the command line for homeserver, username and password
let (homeserver_url, username, password) =
match (env::args().nth(1), env::args().nth(2), env::args().nth(3)) {
(Some(a), Some(b), Some(c)) => (a, b, c),
_ => {
eprintln!(
"Usage: {} <homeserver_url> <username> <password>",
env::args().next().unwrap()
);
// exist if missing
exit(1)
}
};
// our actual runner
login_and_sync(homeserver_url, &username, &password).await?;
Ok(())
}