forked from projectmoon/tenebrous-dicebot
33 lines
1.1 KiB
Rust
33 lines
1.1 KiB
Rust
use chronicle_dicebot::commands;
|
|
use chronicle_dicebot::commands::ResponseExtractor;
|
|
use chronicle_dicebot::context::{Context, RoomContext};
|
|
use chronicle_dicebot::db::Database;
|
|
use chronicle_dicebot::error::BotError;
|
|
use matrix_sdk::identifiers::room_id;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<(), BotError> {
|
|
let input = std::env::args().skip(1).collect::<Vec<String>>().join(" ");
|
|
let command = match commands::parser::parse_command(&input) {
|
|
Ok(command) => command,
|
|
Err(e) => return Err(e),
|
|
};
|
|
|
|
let context = Context {
|
|
db: Database::new_temp()?,
|
|
matrix_client: &matrix_sdk::Client::new("http://example.com")
|
|
.expect("Could not create matrix client"),
|
|
room: RoomContext {
|
|
id: &room_id!("!fakeroomid:example.com"),
|
|
display_name: "fake room",
|
|
},
|
|
username: "@localuser:example.com",
|
|
message_body: &input,
|
|
};
|
|
|
|
let message = command.execute(&context).await.message_html("fakeuser");
|
|
let message = html2text::from_read(message.as_bytes(), 80);
|
|
println!("{}", message.trim());
|
|
Ok(())
|
|
}
|