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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
//! Demo: AT Reply with File Data
//!
//! This example demonstrates how to create a bot that responds to @ mentions
//! with file uploads (images). It's equivalent to the Python demo_at_reply_file_data.py example.
mod common;
use botrs::{Client, Context, EventHandler, Intents, Message, Ready, Token};
use common::{Config, init_logging};
use std::env;
use std::fs;
use tracing::{info, warn};
/// Event handler that responds to @ mentions with file uploads.
struct FileReplyHandler;
#[async_trait::async_trait]
impl EventHandler for FileReplyHandler {
/// Called when the bot is ready and connected.
async fn ready(&self, _ctx: Context, ready: Ready) {
info!("robot 「{}」 on_ready!", ready.user.username);
}
/// Called when a message is created that mentions the bot.
async fn message_create(&self, ctx: Context, message: Message) {
// Get message content
let content = match &message.content {
Some(content) => content,
None => return,
};
info!("Received message: {}", content);
// Get bot name from the bot info if available
let bot_name = ctx
.bot_info
.as_ref()
.map(|info| info.username.as_str())
.unwrap_or("Bot");
let reply_content = format!("机器人{bot_name}收到你的@消息了: {content}");
// Get required IDs
let channel_id = match &message.channel_id {
Some(id) => id,
None => {
warn!("Message has no channel_id");
return;
}
};
// Method 1: Read file as bytes and send (equivalent to Python method 1)
match self
.send_file_as_bytes(&ctx, channel_id, &reply_content)
.await
{
Ok(_) => info!("Successfully sent file as bytes"),
Err(e) => warn!("Failed to send file as bytes: {}", e),
}
// Method 2: Send file by reading it again (equivalent to Python method 2)
// Note: In Rust, this is similar to method 1 since we need to read the file
match self
.send_file_direct(&ctx, channel_id, &reply_content)
.await
{
Ok(_) => info!("Successfully sent file directly"),
Err(e) => warn!("Failed to send file directly: {}", e),
}
// Method 3: Send file by path (equivalent to Python method 3)
// Note: In the current API, we still need to read the file, but this demonstrates
// the concept of path-based file sending
match self
.send_file_by_path(&ctx, channel_id, &reply_content)
.await
{
Ok(_) => info!("Successfully sent file by path"),
Err(e) => warn!("Failed to send file by path: {}", e),
}
}
/// Called when an error occurs during event processing.
async fn error(&self, error: botrs::BotError) {
warn!("Event handler error: {}", error);
}
}
impl FileReplyHandler {
/// Method 1: Read file as bytes and send (equivalent to Python method 1)
async fn send_file_as_bytes(
&self,
ctx: &Context,
channel_id: &str,
content: &str,
) -> Result<(), Box<dyn std::error::Error>> {
let file_path = "examples/resource/test.png";
// Read file as bytes (equivalent to Python: with open("resource/test.png", "rb") as img: img_bytes = img.read())
let img_bytes = match fs::read(file_path) {
Ok(bytes) => bytes,
Err(e) => {
warn!(
"Could not read file {}: {}. Make sure the file exists.",
file_path, e
);
info!("Creating a simple placeholder file for demonstration...");
// Create a simple placeholder if file doesn't exist
b"This is a placeholder file for demo purposes. Replace with an actual image file."
.to_vec()
}
};
// Send message with file attachment
// Send file image using bytes
let params =
botrs::models::message::MessageParams::new_text(content).with_file_image(&img_bytes);
ctx.api
.post_message_with_params(&ctx.token, channel_id, params)
.await?;
Ok(())
}
/// Method 2: Send file by reading it directly (equivalent to Python method 2)
async fn send_file_direct(
&self,
ctx: &Context,
channel_id: &str,
content: &str,
) -> Result<(), Box<dyn std::error::Error>> {
let file_path = "examples/resource/test.png";
// Read file directly (equivalent to Python: with open("resource/test.png", "rb") as img:)
let img_bytes = match fs::read(file_path) {
Ok(bytes) => bytes,
Err(e) => {
warn!(
"Could not read file {}: {}. Using placeholder.",
file_path, e
);
// Create a simple placeholder if file doesn't exist
b"This is a placeholder file for demo purposes (method 2). Replace with an actual image file.".to_vec()
}
};
// Send message with file attachment
// Send file image using bytes directly
let params =
botrs::models::message::MessageParams::new_text(content).with_file_image(&img_bytes);
ctx.api
.post_message_with_params(&ctx.token, channel_id, params)
.await?;
Ok(())
}
/// Method 3: Send file by path (equivalent to Python method 3)
/// Note: The API still requires bytes, but this demonstrates path-based approach
async fn send_file_by_path(
&self,
ctx: &Context,
channel_id: &str,
content: &str,
) -> Result<(), Box<dyn std::error::Error>> {
let file_path = "examples/resource/test.png";
info!("Sending file from path: {}", file_path);
// Read file from path (equivalent to Python: file_image="resource/test.png")
let img_bytes = match fs::read(file_path) {
Ok(bytes) => bytes,
Err(e) => {
warn!(
"Could not read file {}: {}. Using placeholder.",
file_path, e
);
// Create a simple placeholder if file doesn't exist
b"This is a placeholder file for demo purposes (method 3). Replace with an actual image file.".to_vec()
}
};
// Send message with file attachment
// Send file image using bytes from path
let params =
botrs::models::message::MessageParams::new_text(content).with_file_image(&img_bytes);
ctx.api
.post_message_with_params(&ctx.token, channel_id, params)
.await?;
Ok(())
}
}
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
// Initialize logging
init_logging();
info!("Starting AT reply file data demo...");
// Load configuration with multiple fallback options
let config = Config::load_with_fallback(
Some("examples/config.toml"),
env::args().nth(1), // app_id from command line
env::args().nth(2), // secret from command line
)?;
info!("Configuration loaded successfully");
// Create token
let token = Token::new(config.bot.app_id, config.bot.secret);
// Validate token
if let Err(e) = token.validate() {
panic!("Invalid token: {e}");
}
info!("Token validated successfully");
// Set up intents - we want to receive public guild messages (@ mentions)
// This is equivalent to: intents = botpy.Intents(public_guild_messages=True)
let intents = Intents::default().with_public_guild_messages();
info!("Configured intents: {}", intents);
// Create event handler
let handler = FileReplyHandler;
// Create client with caching enabled
let mut client = Client::new(token, intents, handler, true)?;
info!("Client created, starting bot...");
// Start the bot - this will block until the bot stops
client.start().await?;
info!("Bot stopped");
Ok(())
}