-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathbasic_chatbot.rs
39 lines (36 loc) · 1.01 KB
/
basic_chatbot.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
extern crate discord;
use discord::model::Event;
use discord::Discord;
use std::env;
fn main() {
// Log in to Discord using a bot token from the environment
let discord = Discord::from_bot_token(&env::var("DISCORD_TOKEN").expect("Expected token"))
.expect("login failed");
// Establish and use a websocket connection
let (mut connection, _) = discord.connect().expect("connect failed");
println!("Ready.");
loop {
match connection.recv_event() {
Ok(Event::MessageCreate(message)) => {
println!("{} says: {}", message.author.name, message.content);
if message.content == "!test" {
let _ = discord.send_message(
message.channel_id,
"This is a reply to the test.",
"",
false,
);
} else if message.content == "!quit" {
println!("Quitting.");
break;
}
}
Ok(_) => {}
Err(discord::Error::Closed(code, body)) => {
println!("Gateway closed on us with code {:?}: {}", code, body);
break;
}
Err(err) => println!("Receive error: {:?}", err),
}
}
}