@@ -170,7 +170,7 @@ func (ctx *Ctx) SendTextAndAt(groupWxId, wxId, text string) error {
170
170
}
171
171
172
172
// SendImage 发送图片消息到指定好友
173
- // 支持本地图片 ,图片路径以local://开头
173
+ // 支持本地文件 ,图片路径以local://开头
174
174
func (ctx * Ctx ) SendImage (wxId , path string ) error {
175
175
ctx .mutex .Lock ()
176
176
defer ctx .mutex .Unlock ()
@@ -194,7 +194,7 @@ func (ctx *Ctx) SendImage(wxId, path string) error {
194
194
}
195
195
196
196
// SendShareLink 发送分享链接消息到指定好友
197
- // 支持本地图片 ,图片路径以local://开头
197
+ // 支持本地文件 ,图片路径以local://开头
198
198
func (ctx * Ctx ) SendShareLink (wxId , title , desc , imageUrl , jumpUrl string ) error {
199
199
ctx .mutex .Lock ()
200
200
defer ctx .mutex .Unlock ()
@@ -218,23 +218,74 @@ func (ctx *Ctx) SendShareLink(wxId, title, desc, imageUrl, jumpUrl string) error
218
218
}
219
219
220
220
// SendFile 发送文件消息到指定好友
221
+ // 支持本地文件,图片路径以local://开头
221
222
func (ctx * Ctx ) SendFile (wxId , path string ) error {
222
223
ctx .mutex .Lock ()
223
224
defer ctx .mutex .Unlock ()
225
+ if strings .HasPrefix (path , "local://" ) {
226
+ if ! utils .CheckPathExists (path [8 :]) {
227
+ log .Errorf ("[SendFile] 发送文件失败,文件不存在: %s" , path [8 :])
228
+ return errors .New ("发送文件失败,文件不存在" )
229
+ }
230
+ if bot .config .ServerAddress == "" {
231
+ log .Errorf ("[SendFile] 发送文件失败,请在config.yaml中配置serverAddress项" )
232
+ return errors .New ("发送文件失败,请在config.yaml中配置serverAddress项" )
233
+ }
234
+ filename , err := cryptor .EncryptFilename (fileSecret , path [8 :])
235
+ if err != nil {
236
+ log .Errorf ("[SendFile] 加密文件名失败: %v" , err )
237
+ return err
238
+ }
239
+ path = bot .config .ServerAddress + "/wxbot/static?file=" + filename
240
+ }
224
241
return ctx .framework .SendFile (wxId , path )
225
242
}
226
243
227
244
// SendVideo 发送视频消息到指定好友
245
+ // 支持本地文件,图片路径以local://开头
228
246
func (ctx * Ctx ) SendVideo (wxId , path string ) error {
229
247
ctx .mutex .Lock ()
230
248
defer ctx .mutex .Unlock ()
249
+ if strings .HasPrefix (path , "local://" ) {
250
+ if ! utils .CheckPathExists (path [8 :]) {
251
+ log .Errorf ("[SendVideo] 发送视频失败,文件不存在: %s" , path [8 :])
252
+ return errors .New ("发送视频失败,文件不存在" )
253
+ }
254
+ if bot .config .ServerAddress == "" {
255
+ log .Errorf ("[SendVideo] 发送视频失败,请在config.yaml中配置serverAddress项" )
256
+ return errors .New ("发送视频失败,请在config.yaml中配置serverAddress项" )
257
+ }
258
+ filename , err := cryptor .EncryptFilename (fileSecret , path [8 :])
259
+ if err != nil {
260
+ log .Errorf ("[SendVideo] 加密文件名失败: %v" , err )
261
+ return err
262
+ }
263
+ path = bot .config .ServerAddress + "/wxbot/static?file=" + filename
264
+ }
231
265
return ctx .framework .SendVideo (wxId , path )
232
266
}
233
267
234
268
// SendEmoji 发送表情消息到指定好友
269
+ // 支持本地文件,图片路径以local://开头
235
270
func (ctx * Ctx ) SendEmoji (wxId , path string ) error {
236
271
ctx .mutex .Lock ()
237
272
defer ctx .mutex .Unlock ()
273
+ if strings .HasPrefix (path , "local://" ) {
274
+ if ! utils .CheckPathExists (path [8 :]) {
275
+ log .Errorf ("[SendEmoji] 发送Emoji失败,文件不存在: %s" , path [8 :])
276
+ return errors .New ("发送Emoji失败,文件不存在" )
277
+ }
278
+ if bot .config .ServerAddress == "" {
279
+ log .Errorf ("[SendEmoji] 发送Emoji失败,请在config.yaml中配置serverAddress项" )
280
+ return errors .New ("发送Emoji失败,请在config.yaml中配置serverAddress项" )
281
+ }
282
+ filename , err := cryptor .EncryptFilename (fileSecret , path [8 :])
283
+ if err != nil {
284
+ log .Errorf ("[SendEmoji] 加密文件名失败: %v" , err )
285
+ return err
286
+ }
287
+ path = bot .config .ServerAddress + "/wxbot/static?file=" + filename
288
+ }
238
289
return ctx .framework .SendEmoji (wxId , path )
239
290
}
240
291
@@ -304,28 +355,31 @@ func (ctx *Ctx) ReplyTextAndAt(text string) error {
304
355
}
305
356
306
357
// ReplyImage 回复图片消息
307
- // 支持本地图片 ,图片路径以local://开头
358
+ // 支持本地文件 ,图片路径以local://开头
308
359
func (ctx * Ctx ) ReplyImage (path string ) error {
309
360
return ctx .SendImage (ctx .Event .FromUniqueID , path )
310
361
}
311
362
312
363
// ReplyShareLink 回复分享链接消息
313
- // 支持本地图片 ,图片路径以local://开头
364
+ // 支持本地文件 ,图片路径以local://开头
314
365
func (ctx * Ctx ) ReplyShareLink (title , desc , imageUrl , jumpUrl string ) error {
315
366
return ctx .SendShareLink (ctx .Event .FromUniqueID , title , desc , imageUrl , jumpUrl )
316
367
}
317
368
318
369
// ReplyFile 回复文件消息
370
+ // 支持本地文件,图片路径以local://开头
319
371
func (ctx * Ctx ) ReplyFile (path string ) error {
320
372
return ctx .SendFile (ctx .Event .FromUniqueID , path )
321
373
}
322
374
323
375
// ReplyVideo 回复视频消息
376
+ // 支持本地文件,图片路径以local://开头
324
377
func (ctx * Ctx ) ReplyVideo (path string ) error {
325
378
return ctx .SendVideo (ctx .Event .FromUniqueID , path )
326
379
}
327
380
328
381
// ReplyEmoji 回复表情消息
382
+ // 支持本地文件,图片路径以local://开头
329
383
func (ctx * Ctx ) ReplyEmoji (path string ) error {
330
384
return ctx .SendEmoji (ctx .Event .FromUniqueID , path )
331
385
}
0 commit comments