Add joke bot example.

This commit is contained in:
Isaiah Inuwa 2021-11-09 16:54:13 -06:00
parent 824cefb3e9
commit 993cd30f46
5 changed files with 326 additions and 1 deletions

View File

@ -1,2 +1,2 @@
[workspace]
members = ["crates/*", "xtask"]
members = ["crates/*", "examples/*", "xtask"]

6
examples/README.md Normal file
View File

@ -0,0 +1,6 @@
# Ruma Examples
These are example projects showcasing how to use the various crates in this repository. You can use
these as a base for starting your own project.
Other examples can be found in the [examples directory of the `ruma` crate](../crates/ruma/examples).

View File

@ -0,0 +1,22 @@
[package]
name = "misterbot"
version = "0.1.0"
authors = ["Isaiah Inuwa <isaiah.inuwa@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ruma = { version = "0.4.0", path = "../../crates/ruma", features = ["client-api-c", "client", "client-hyper-native-tls", "events"] }
ruma-client = { version = "0.7.0", path = "../../crates/ruma-client", features = ["client-api"]}
# For building locally: use the git dependencies below.
# Browse the source at this revision here: https://github.com/ruma/ruma/tree/f161c8117c706fc52089999e1f406cf34276ec9d
# ruma = { git = "https://github.com/ruma/ruma", rev = "f161c8117c706fc52089999e1f406cf34276ec9d", features = ["client-api-c", "client", "client-hyper-native-tls", "events"] }
# ruma-client = { git = "https://github.com/ruma/ruma", rev = "f161c8117c706fc52089999e1f406cf34276ec9d", features = ["client-api"] }
http = "0.2.2"
hyper = "0.14.2"
hyper-tls = "0.5.0"
serde_json = "1.0"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1.7"

View File

@ -0,0 +1,30 @@
A simple bot to demonstrate `ruma-client` functionality. Tells jokes when you ask for them.
# Note on dependency versions
This example was written against pre-release versions of `ruma` and
`ruma-client-api`. Check the comments in the `[dependencies]` section of
[`Cargo.toml`](Cargo.toml) for more information.
# Usage
Create a file called `config` and populate it with the following values in `key=value` format:
- `homeserver`: Your homeserver URL.
- `username`: The Matrix ID for the bot.
- `password`: The password for the bot.
For example:
```ini
homeserver=https://example.com:8448/
username=@user:example.com
password=yourpassword
```
You will need to pre-register the bot account; it doesn't do registration
automatically. The bot will automatically join rooms it is invited to though.
Finally, run the bot (e.g. using `cargo run`) from the same directory as your
`config` file. The bot should respond to the request "Tell me a joke" in any
channel that it is invited to.

View File

@ -0,0 +1,267 @@
use std::{
convert::TryInto,
error::Error,
io,
process::exit,
time::{Duration, SystemTime},
};
use ruma::{
api::client::r0::{
filter::FilterDefinition, membership::join_room_by_id, message::send_message_event,
sync::sync_events,
},
assign, client,
events::{
room::message::{MessageType, RoomMessageEventContent},
AnySyncMessageEvent, AnySyncRoomEvent,
},
presence::PresenceState,
serde::Raw,
RoomId, UserId,
};
use serde_json::Value as JsonValue;
use tokio::fs;
use tokio_stream::StreamExt as _;
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
if let Err(e) = run().await {
eprintln!("{}", e);
exit(1)
}
Ok(())
}
type HttpClient = client::http_client::HyperNativeTls;
type MatrixClient = client::Client<client::http_client::HyperNativeTls>;
async fn run() -> Result<(), Box<dyn Error>> {
let config =
read_config().await.map_err(|e| format!("configuration in ./config is invalid: {}", e))?;
let http_client =
hyper::Client::builder().build::<_, hyper::Body>(hyper_tls::HttpsConnector::new());
let matrix_client = if let Some(state) = read_state().await.ok().flatten() {
MatrixClient::with_http_client(
http_client.clone(),
config.homeserver.to_owned(),
Some(state.access_token),
)
} else if config.password.is_some() {
let client = create_matrix_session(http_client.clone(), &config).await?;
if let Err(err) = write_state(&State {
access_token: client.access_token().expect("Matrix access token is missing"),
})
.await
{
eprintln!("Failed to persist access token to disk. Re-authentication will be required on the next startup: {}", err)
}
client
} else {
return Err("No previous session found and no credentials stored in config".into());
};
let filter = FilterDefinition::ignore_all().into();
let initial_sync_response = matrix_client
.send_request(assign!(sync_events::Request::new(), {
filter: Some(&filter),
}))
.await?;
let user_id = &config.username;
let not_senders = &[user_id.clone()];
let filter = {
let mut filter = FilterDefinition::empty();
filter.room.timeline.not_senders = not_senders;
filter
}
.into();
let mut sync_stream = Box::pin(matrix_client.sync(
Some(&filter),
initial_sync_response.next_batch,
&PresenceState::Online,
Some(Duration::from_secs(30)),
));
println!("Listening...");
while let Some(response) = sync_stream.try_next().await? {
for (room_id, room_info) in response.rooms.join {
for e in &room_info.timeline.events {
match handle_messages(&http_client, &matrix_client, e, &room_id, user_id).await {
Ok(_) => {}
Err(err) => {
eprintln!("failed to respond to message: {}", err)
}
}
}
}
for (room_id, _) in response.rooms.invite {
match handle_invitations(&http_client, &matrix_client, &room_id).await {
Ok(_) => {}
Err(err) => eprintln!("failed to accept invitation for room {}: {}", &room_id, err),
}
}
}
Ok(())
}
async fn create_matrix_session(
http_client: HttpClient,
config: &Config,
) -> Result<MatrixClient, Box<dyn Error>> {
if let Some(password) = &config.password {
let client =
MatrixClient::with_http_client(http_client, config.homeserver.to_owned(), None);
if let Err(e) = client.log_in(config.username.as_ref(), password, None, None).await {
let reason = match e {
client::Error::AuthenticationRequired => "invalid credentials specified".to_owned(),
client::Error::Response(response_err) => {
format!("failed to get a response from the server: {}", response_err)
}
client::Error::FromHttpResponse(parse_err) => {
format!("failed to parse log in response: {}", parse_err)
}
_ => e.to_string(),
};
return Err(format!("Failed to log in: {}", reason).into());
}
Ok(client)
} else {
Err("Failed to create session: no password stored in config".to_owned().into())
}
}
async fn handle_messages(
http_client: &HttpClient,
matrix_client: &MatrixClient,
e: &Raw<AnySyncRoomEvent>,
room_id: &RoomId,
bot_user_id: &UserId,
) -> Result<(), Box<dyn Error>> {
if let Ok(AnySyncRoomEvent::Message(AnySyncMessageEvent::RoomMessage(m))) = e.deserialize() {
// workaround because Conduit does not implement filtering.
if m.sender == bot_user_id {
return Ok(());
}
if let MessageType::Text(t) = m.content.msgtype {
println!("{}:\t{}", m.sender, t.body);
if t.body.to_ascii_lowercase().contains("joke") {
let joke = match get_joke(http_client).await {
Ok(joke) => joke,
Err(_) => "I thought of a joke... but I just forgot it.".to_owned(),
};
let joke_content = RoomMessageEventContent::text_plain(joke);
let txn_id = generate_txn_id();
let req = send_message_event::Request::new(room_id, &txn_id, &joke_content)?;
// Do nothing if we can't send the message.
let _ = matrix_client.send_request(req).await;
}
}
}
Ok(())
}
async fn handle_invitations(
http_client: &HttpClient,
matrix_client: &MatrixClient,
room_id: &RoomId,
) -> Result<(), Box<dyn Error>> {
println!("invited to {}", &room_id);
matrix_client.send_request(join_room_by_id::Request::new(room_id)).await?;
let greeting = "Hello! My name is Mr. Bot! I like to tell jokes. Like this one: ";
let joke = get_joke(http_client).await.unwrap_or_else(|_| "err... never mind.".to_owned());
let content = RoomMessageEventContent::text_plain(format!("{}\n{}", greeting, joke));
let txn_id = generate_txn_id();
let message = send_message_event::Request::new(room_id, &txn_id, &content)?;
matrix_client.send_request(message).await?;
Ok(())
}
// Each message needs a unique transaction ID, otherwise the server thinks that the message is
// being retransmitted. We could use a random value, or a counter, but to avoid having to store
// the state, we'll just use the current time as a transaction ID.
fn generate_txn_id() -> String {
SystemTime::now()
.duration_since(SystemTime::UNIX_EPOCH)
.expect("current time is earlier than Unix epoch")
.as_millis()
.to_string()
}
async fn get_joke(client: &HttpClient) -> Result<String, Box<dyn Error>> {
let uri = "https://v2.jokeapi.dev/joke/Programming,Pun,Misc?safe-mode&type=single"
.parse::<hyper::Uri>()?;
let rsp = client.get(uri).await?;
let bytes = hyper::body::to_bytes(rsp).await?;
let joke_obj = serde_json::from_slice::<JsonValue>(&bytes)
.map_err(|_| "invalid JSON returned from joke API")?;
let joke = joke_obj["joke"].as_str().ok_or("joke field missing from joke API response")?;
Ok(joke.to_owned())
}
struct State {
access_token: String,
}
async fn write_state(state: &State) -> io::Result<()> {
let content = &state.access_token;
fs::write("./session", content).await?;
Ok(())
}
async fn read_state() -> io::Result<Option<State>> {
match fs::read_to_string("./session").await {
Ok(access_token) => Ok(Some(State { access_token })),
Err(e) if e.kind() == io::ErrorKind::NotFound => Ok(None),
Err(e) => Err(e),
}
}
struct Config {
homeserver: String,
username: Box<UserId>,
password: Option<String>,
}
async fn read_config() -> io::Result<Config> {
let content = fs::read_to_string("./config").await?;
let lines = content.split('\n');
let mut homeserver = None;
let mut username = Err("required field `username` is missing".to_owned());
let mut password = None;
for line in lines {
if let Some((key, value)) = line.split_once('=') {
match key.trim() {
"homeserver" => homeserver = Some(value.trim().to_owned()),
// TODO: infer domain from `homeserver`
"username" => {
username =
value.trim().to_owned().try_into().map_err(|e| {
format!("invalid Matrix user ID format for `username`: {}", e)
})
}
"password" => password = Some(value.trim().to_owned()),
_ => {}
}
}
}
match (homeserver, username) {
(Some(homeserver), Ok(username)) => Ok(Config { homeserver, username, password }),
(homeserver, username) => {
let mut error = String::from("Invalid config specified:");
if homeserver.is_none() {
error.push_str("\n required field `homeserver` is missing")
}
if let Err(e) = username {
error.push_str(&format!("\n {}", e))
}
Err(io::Error::new(io::ErrorKind::InvalidData, error))
}
}
}