Compare commits

..

No commits in common. "b7393c19079591f4e6b424481b35f55e2e888bf0" and "53339282e061d8a3e4ba8db27d3231dece665f26" have entirely different histories.

9 changed files with 83 additions and 148 deletions

View File

@ -1,5 +1,4 @@
use matrix_sdk::identifiers::room_id; use matrix_sdk::identifiers::room_id;
use matrix_sdk::Client;
use tenebrous_dicebot::commands; use tenebrous_dicebot::commands;
use tenebrous_dicebot::commands::ResponseExtractor; use tenebrous_dicebot::commands::ResponseExtractor;
use tenebrous_dicebot::context::{Context, RoomContext}; use tenebrous_dicebot::context::{Context, RoomContext};
@ -27,15 +26,11 @@ async fn main() -> Result<(), BotError> {
.await?; .await?;
let context = Context { let context = Context {
db, db: db,
account: Account::default(), account: Account::default(),
matrix_client: Client::new(homeserver).expect("Could not create matrix client"), matrix_client: &matrix_sdk::Client::new(homeserver)
origin_room: RoomContext { .expect("Could not create matrix client"),
id: &room_id!("!fakeroomid:example.com"), room: RoomContext {
display_name: "fake room".to_owned(),
secure: false,
},
active_room: RoomContext {
id: &room_id!("!fakeroomid:example.com"), id: &room_id!("!fakeroomid:example.com"),
display_name: "fake room".to_owned(), display_name: "fake room".to_owned(),
secure: false, secure: false,

View File

@ -1,21 +1,12 @@
use crate::commands::{execute_command, ExecutionResult, ResponseExtractor};
use crate::context::{Context, RoomContext}; use crate::context::{Context, RoomContext};
use crate::db::sqlite::Database; use crate::db::sqlite::Database;
use crate::error::BotError; use crate::error::BotError;
use crate::logic; use crate::logic;
use crate::matrix; use crate::matrix;
use crate::{
commands::{execute_command, ExecutionResult, ResponseExtractor},
models::Account,
};
use futures::stream::{self, StreamExt}; use futures::stream::{self, StreamExt};
use matrix_sdk::{ use matrix_sdk::{self, identifiers::EventId, room::Joined, Client};
self,
identifiers::{EventId, RoomId},
room::Joined,
Client,
};
use std::clone::Clone; use std::clone::Clone;
use std::convert::TryFrom;
/// Handle responding to a single command being executed. Wil print /// Handle responding to a single command being executed. Wil print
/// out the full result of that command. /// out the full result of that command.
@ -104,57 +95,24 @@ pub(super) async fn handle_multiple_results(
matrix::send_message(client, room.room_id(), (&message, &plain), None).await; matrix::send_message(client, room.room_id(), (&message, &plain), None).await;
} }
/// Map an account's active room value to an actual matrix room, if /// Create a context for command execution. Can fai if the room
/// the account has an active room. This only retrieves the /// context creation fails.
/// user-specified active room, and doesn't perform any further async fn create_context<'a>(
/// filtering. db: &'a Database,
fn get_account_active_room(client: &Client, account: &Account) -> Result<Option<Joined>, BotError> { client: &'a Client,
let active_room = account room: &'a Joined,
.registered_user() sender: &'a str,
.and_then(|u| u.active_room.as_deref()) command: &'a str,
.map(|room_id| RoomId::try_from(room_id)) ) -> Result<Context<'a>, BotError> {
.transpose()? let room_ctx = RoomContext::new(room, sender).await?;
.and_then(|active_room_id| client.get_joined_room(&active_room_id)); Ok(Context {
Ok(active_room)
}
/// Execute a single command in the list of commands. Can fail if the
/// Account value cannot be created/fetched from the database, or if
/// room display names cannot be calculated. Otherwise, the success or
/// error of command execution itself is returned.
async fn execute_single_command(
command: &str,
db: &Database,
client: &Client,
origin_room: &Joined,
sender: &str,
) -> ExecutionResult {
let origin_ctx = RoomContext::new(origin_room, sender).await?;
let account = logic::get_account(db, sender).await?;
let active_room = get_account_active_room(client, &account)?;
// Active room is used in secure command-issuing rooms. In
// "public" rooms, where other users are, treat origin as the
// active room.
let active_room = active_room
.as_ref()
.filter(|_| origin_ctx.secure)
.unwrap_or(origin_room);
let active_ctx = RoomContext::new(active_room, sender).await?;
let ctx = Context {
account,
db: db.clone(), db: db.clone(),
matrix_client: client.clone(), matrix_client: client,
origin_room: origin_ctx, room: room_ctx,
username: &sender, username: &sender,
active_room: active_ctx, account: logic::get_account(db, &sender).await?,
message_body: &command, message_body: &command,
}; })
execute_command(&ctx).await
} }
/// Attempt to execute all commands sent to the bot in a message. This /// Attempt to execute all commands sent to the bot in a message. This
@ -169,8 +127,13 @@ pub(super) async fn execute(
) -> Vec<(String, ExecutionResult)> { ) -> Vec<(String, ExecutionResult)> {
stream::iter(commands) stream::iter(commands)
.then(|command| async move { .then(|command| async move {
let result = execute_single_command(command, db, client, room, sender).await; match create_context(db, client, room, sender, command).await {
(command.to_owned(), result) Err(e) => (command.to_owned(), Err(e)),
Ok(ctx) => {
let cmd_result = execute_command(&ctx).await;
(command.to_owned(), cmd_result)
}
}
}) })
.collect() .collect()
.await .await

View File

@ -485,9 +485,8 @@ mod tests {
let ctx = Context { let ctx = Context {
account: crate::models::Account::default(), account: crate::models::Account::default(),
db: db, db: db,
matrix_client: matrix_sdk::Client::new(homeserver).unwrap(), matrix_client: &matrix_sdk::Client::new(homeserver).unwrap(),
origin_room: dummy_room!(), room: dummy_room!(),
active_room: dummy_room!(),
username: "username", username: "username",
message_body: "message", message_body: "message",
}; };
@ -527,9 +526,8 @@ mod tests {
let ctx = Context { let ctx = Context {
account: crate::models::Account::default(), account: crate::models::Account::default(),
db: db, db: db,
matrix_client: matrix_sdk::Client::new(homeserver).unwrap(), matrix_client: &matrix_sdk::Client::new(homeserver).unwrap(),
origin_room: dummy_room!(), room: dummy_room!(),
active_room: dummy_room!(),
username: "username", username: "username",
message_body: "message", message_body: "message",
}; };
@ -566,19 +564,13 @@ mod tests {
let ctx = Context { let ctx = Context {
account: crate::models::Account::default(), account: crate::models::Account::default(),
db: db.clone(), db: db.clone(),
matrix_client: matrix_sdk::Client::new(homeserver).unwrap(), matrix_client: &matrix_sdk::Client::new(homeserver).unwrap(),
origin_room: dummy_room!(), room: dummy_room!(),
active_room: dummy_room!(),
username: "username", username: "username",
message_body: "message", message_body: "message",
}; };
db.set_user_variable( db.set_user_variable(&ctx.username, &ctx.room.id.as_str(), "myvariable", 10)
&ctx.username,
&ctx.origin_room.id.as_str(),
"myvariable",
10,
)
.await .await
.expect("could not set myvariable to 10"); .expect("could not set myvariable to 10");

View File

@ -146,13 +146,13 @@ fn log_command(cmd: &(impl Command + ?Sized), ctx: &Context, result: &ExecutionR
Ok(_) => { Ok(_) => {
info!( info!(
"[{}] {} <{}{}> - success", "[{}] {} <{}{}> - success",
ctx.origin_room.display_name, ctx.username, command, dots ctx.room.display_name, ctx.username, command, dots
); );
} }
Err(e) => { Err(e) => {
error!( error!(
"[{}] {} <{}{}> - {}", "[{}] {} <{}{}> - {}",
ctx.origin_room.display_name, ctx.username, command, dots, e ctx.room.display_name, ctx.username, command, dots, e
); );
} }
}; };
@ -196,9 +196,8 @@ mod tests {
let ctx = Context { let ctx = Context {
account: crate::models::Account::default(), account: crate::models::Account::default(),
db: db, db: db,
matrix_client: matrix_sdk::Client::new(homeserver).unwrap(), matrix_client: &matrix_sdk::Client::new(homeserver).unwrap(),
origin_room: secure_room!(), room: secure_room!(),
active_room: secure_room!(),
username: "myusername", username: "myusername",
message_body: "!notacommand", message_body: "!notacommand",
}; };
@ -219,9 +218,8 @@ mod tests {
let ctx = Context { let ctx = Context {
account: crate::models::Account::default(), account: crate::models::Account::default(),
db: db, db: db,
matrix_client: matrix_sdk::Client::new(homeserver).unwrap(), matrix_client: &matrix_sdk::Client::new(homeserver).unwrap(),
origin_room: secure_room!(), room: secure_room!(),
active_room: secure_room!(),
username: "myusername", username: "myusername",
message_body: "!notacommand", message_body: "!notacommand",
}; };
@ -242,9 +240,8 @@ mod tests {
let ctx = Context { let ctx = Context {
account: crate::models::Account::default(), account: crate::models::Account::default(),
db: db, db: db,
matrix_client: matrix_sdk::Client::new(homeserver).unwrap(), matrix_client: &matrix_sdk::Client::new(homeserver).unwrap(),
origin_room: dummy_room!(), room: dummy_room!(),
active_room: dummy_room!(),
username: "myusername", username: "myusername",
message_body: "!notacommand", message_body: "!notacommand",
}; };
@ -265,9 +262,8 @@ mod tests {
let ctx = Context { let ctx = Context {
account: crate::models::Account::default(), account: crate::models::Account::default(),
db: db, db: db,
matrix_client: matrix_sdk::Client::new(homeserver).unwrap(), matrix_client: &matrix_sdk::Client::new(homeserver).unwrap(),
origin_room: dummy_room!(), room: dummy_room!(),
active_room: dummy_room!(),
username: "myusername", username: "myusername",
message_body: "!notacommand", message_body: "!notacommand",
}; };
@ -288,9 +284,8 @@ mod tests {
let ctx = Context { let ctx = Context {
account: crate::models::Account::default(), account: crate::models::Account::default(),
db: db, db: db,
matrix_client: matrix_sdk::Client::new(homeserver).unwrap(), matrix_client: &matrix_sdk::Client::new(homeserver).unwrap(),
origin_room: dummy_room!(), room: dummy_room!(),
active_room: dummy_room!(),
username: "myusername", username: "myusername",
message_body: "!notacommand", message_body: "!notacommand",
}; };

View File

@ -110,7 +110,7 @@ impl Command for ListRoomsCommand {
} }
async fn execute(&self, ctx: &Context<'_>) -> ExecutionResult { async fn execute(&self, ctx: &Context<'_>) -> ExecutionResult {
let rooms_for_user: Vec<String> = get_rooms_for_user(&ctx.matrix_client, ctx.username) let rooms_for_user: Vec<String> = get_rooms_for_user(ctx.matrix_client, ctx.username)
.await .await
.map(|rooms| { .map(|rooms| {
rooms rooms
@ -155,7 +155,7 @@ impl Command for SetRoomCommand {
return Err(BotError::AccountDoesNotExist); return Err(BotError::AccountDoesNotExist);
} }
let rooms_for_user = get_rooms_for_user(&ctx.matrix_client, ctx.username).await?; let rooms_for_user = get_rooms_for_user(ctx.matrix_client, ctx.username).await?;
let room = search_for_room(&rooms_for_user, &self.0); let room = search_for_room(&rooms_for_user, &self.0);
if let Some(room) = room { if let Some(room) = room {

View File

@ -35,7 +35,7 @@ impl Command for GetAllVariablesCommand {
async fn execute(&self, ctx: &Context<'_>) -> ExecutionResult { async fn execute(&self, ctx: &Context<'_>) -> ExecutionResult {
let variables = ctx let variables = ctx
.db .db
.get_user_variables(&ctx.username, ctx.active_room_id().as_str()) .get_user_variables(&ctx.username, ctx.room_id().as_str())
.await?; .await?;
let mut variable_list: Vec<String> = variables let mut variable_list: Vec<String> = variables
@ -85,7 +85,7 @@ impl Command for GetVariableCommand {
let name = &self.0; let name = &self.0;
let result = ctx let result = ctx
.db .db
.get_user_variable(&ctx.username, ctx.active_room_id().as_str(), name) .get_user_variable(&ctx.username, ctx.room_id().as_str(), name)
.await; .await;
let value = match result { let value = match result {
@ -131,7 +131,7 @@ impl Command for SetVariableCommand {
let value = self.1; let value = self.1;
ctx.db ctx.db
.set_user_variable(&ctx.username, ctx.active_room_id().as_str(), name, value) .set_user_variable(&ctx.username, ctx.room_id().as_str(), name, value)
.await?; .await?;
let content = format!("{} = {}", name, value); let content = format!("{} = {}", name, value);
@ -170,7 +170,7 @@ impl Command for DeleteVariableCommand {
let name = &self.0; let name = &self.0;
let result = ctx let result = ctx
.db .db
.delete_user_variable(&ctx.username, ctx.active_room_id().as_str(), name) .delete_user_variable(&ctx.username, ctx.room_id().as_str(), name)
.await; .await;
let value = match result { let value = match result {

View File

@ -11,25 +11,20 @@ use std::convert::TryFrom;
#[derive(Clone)] #[derive(Clone)]
pub struct Context<'a> { pub struct Context<'a> {
pub db: Database, pub db: Database,
pub matrix_client: Client, pub matrix_client: &'a Client,
pub origin_room: RoomContext<'a>, pub room: RoomContext<'a>,
pub active_room: RoomContext<'a>,
pub username: &'a str, pub username: &'a str,
pub message_body: &'a str, pub message_body: &'a str,
pub account: Account, pub account: Account,
} }
impl Context<'_> { impl Context<'_> {
pub fn active_room_id(&self) -> &RoomId {
self.active_room.id
}
pub fn room_id(&self) -> &RoomId { pub fn room_id(&self) -> &RoomId {
self.origin_room.id self.room.id
} }
pub fn is_secure(&self) -> bool { pub fn is_secure(&self) -> bool {
self.origin_room.secure self.room.secure
} }
} }
@ -43,21 +38,15 @@ pub struct RoomContext<'a> {
impl RoomContext<'_> { impl RoomContext<'_> {
pub async fn new_with_name<'a>( pub async fn new_with_name<'a>(
room: &'a Joined, room: &'a Joined,
display_name: String,
sending_user: &str, sending_user: &str,
) -> Result<RoomContext<'a>, BotError> { ) -> Result<RoomContext<'a>, BotError> {
// TODO is_direct is a hack; the bot should set eligible rooms // TODO is_direct is a hack; should set rooms to Direct
// to Direct Message upon joining, if other contact has // Message upon joining, if other contact has requested it.
// requested it. Waiting on SDK support. // Waiting on SDK support.
let display_name = room
.display_name()
.await
.ok()
.unwrap_or_default()
.to_string();
let sending_user = UserId::try_from(sending_user)?; let sending_user = UserId::try_from(sending_user)?;
let user_in_room = room.get_member(&sending_user).await.ok().is_some(); let user_in_room = room.get_member(&sending_user).await.ok().is_some();
let is_direct = room.active_members().await?.len() == 2; let is_direct = room.joined_members().await?.len() == 2;
Ok(RoomContext { Ok(RoomContext {
id: room.room_id(), id: room.room_id(),
@ -68,8 +57,17 @@ impl RoomContext<'_> {
pub async fn new<'a>( pub async fn new<'a>(
room: &'a Joined, room: &'a Joined,
sending_user: &'a str, sending_user: &str,
) -> Result<RoomContext<'a>, BotError> { ) -> Result<RoomContext<'a>, BotError> {
Self::new_with_name(room, sending_user).await Self::new_with_name(
&room,
room.display_name()
.await
.ok()
.unwrap_or_default()
.to_string(),
sending_user,
)
.await
} }
} }

View File

@ -380,12 +380,7 @@ async fn update_skill(ctx: &Context<'_>, variable: &str, value: u32) -> Result<(
use std::convert::TryInto; use std::convert::TryInto;
let value: i32 = value.try_into()?; let value: i32 = value.try_into()?;
ctx.db ctx.db
.set_user_variable( .set_user_variable(&ctx.username, &ctx.room_id().as_str(), variable, value)
&ctx.username,
&ctx.active_room_id().as_str(),
variable,
value,
)
.await?; .await?;
Ok(()) Ok(())
} }
@ -511,9 +506,8 @@ mod tests {
let ctx = Context { let ctx = Context {
account: crate::models::Account::default(), account: crate::models::Account::default(),
db: db, db: db,
matrix_client: matrix_sdk::Client::new(homeserver).unwrap(), matrix_client: &matrix_sdk::Client::new(homeserver).unwrap(),
origin_room: dummy_room!(), room: dummy_room!(),
active_room: dummy_room!(),
username: "username", username: "username",
message_body: "message", message_body: "message",
}; };
@ -549,9 +543,8 @@ mod tests {
let ctx = Context { let ctx = Context {
account: crate::models::Account::default(), account: crate::models::Account::default(),
db: db, db: db,
matrix_client: matrix_sdk::Client::new(homeserver).unwrap(), matrix_client: &matrix_sdk::Client::new(homeserver).unwrap(),
origin_room: dummy_room!(), room: dummy_room!(),
active_room: dummy_room!(),
username: "username", username: "username",
message_body: "message", message_body: "message",
}; };
@ -587,9 +580,8 @@ mod tests {
let ctx = Context { let ctx = Context {
account: crate::models::Account::default(), account: crate::models::Account::default(),
db: db, db: db,
matrix_client: matrix_sdk::Client::new(homeserver).unwrap(), matrix_client: &matrix_sdk::Client::new(homeserver).unwrap(),
origin_room: dummy_room!(), room: dummy_room!(),
active_room: dummy_room!(),
username: "username", username: "username",
message_body: "message", message_body: "message",
}; };

View File

@ -27,7 +27,7 @@ pub async fn calculate_dice_amount(amounts: &[Amount], ctx: &Context<'_>) -> Res
let stream = stream::iter(amounts); let stream = stream::iter(amounts);
let variables = &ctx let variables = &ctx
.db .db
.get_user_variables(&ctx.username, ctx.active_room_id().as_str()) .get_user_variables(&ctx.username, ctx.room_id().as_str())
.await?; .await?;
use DiceRollingError::VariableNotFound; use DiceRollingError::VariableNotFound;