Skip to content

Commit 6c698a6

Browse files
authored
feat: 完善发送本地文件使用local:// (yqchilde#47)
1 parent 267a10d commit 6c698a6

File tree

1 file changed

+58
-4
lines changed

1 file changed

+58
-4
lines changed

engine/robot/api.go

+58-4
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ func (ctx *Ctx) SendTextAndAt(groupWxId, wxId, text string) error {
170170
}
171171

172172
// SendImage 发送图片消息到指定好友
173-
// 支持本地图片,图片路径以local://开头
173+
// 支持本地文件,图片路径以local://开头
174174
func (ctx *Ctx) SendImage(wxId, path string) error {
175175
ctx.mutex.Lock()
176176
defer ctx.mutex.Unlock()
@@ -194,7 +194,7 @@ func (ctx *Ctx) SendImage(wxId, path string) error {
194194
}
195195

196196
// SendShareLink 发送分享链接消息到指定好友
197-
// 支持本地图片,图片路径以local://开头
197+
// 支持本地文件,图片路径以local://开头
198198
func (ctx *Ctx) SendShareLink(wxId, title, desc, imageUrl, jumpUrl string) error {
199199
ctx.mutex.Lock()
200200
defer ctx.mutex.Unlock()
@@ -218,23 +218,74 @@ func (ctx *Ctx) SendShareLink(wxId, title, desc, imageUrl, jumpUrl string) error
218218
}
219219

220220
// SendFile 发送文件消息到指定好友
221+
// 支持本地文件,图片路径以local://开头
221222
func (ctx *Ctx) SendFile(wxId, path string) error {
222223
ctx.mutex.Lock()
223224
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+
}
224241
return ctx.framework.SendFile(wxId, path)
225242
}
226243

227244
// SendVideo 发送视频消息到指定好友
245+
// 支持本地文件,图片路径以local://开头
228246
func (ctx *Ctx) SendVideo(wxId, path string) error {
229247
ctx.mutex.Lock()
230248
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+
}
231265
return ctx.framework.SendVideo(wxId, path)
232266
}
233267

234268
// SendEmoji 发送表情消息到指定好友
269+
// 支持本地文件,图片路径以local://开头
235270
func (ctx *Ctx) SendEmoji(wxId, path string) error {
236271
ctx.mutex.Lock()
237272
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+
}
238289
return ctx.framework.SendEmoji(wxId, path)
239290
}
240291

@@ -304,28 +355,31 @@ func (ctx *Ctx) ReplyTextAndAt(text string) error {
304355
}
305356

306357
// ReplyImage 回复图片消息
307-
// 支持本地图片,图片路径以local://开头
358+
// 支持本地文件,图片路径以local://开头
308359
func (ctx *Ctx) ReplyImage(path string) error {
309360
return ctx.SendImage(ctx.Event.FromUniqueID, path)
310361
}
311362

312363
// ReplyShareLink 回复分享链接消息
313-
// 支持本地图片,图片路径以local://开头
364+
// 支持本地文件,图片路径以local://开头
314365
func (ctx *Ctx) ReplyShareLink(title, desc, imageUrl, jumpUrl string) error {
315366
return ctx.SendShareLink(ctx.Event.FromUniqueID, title, desc, imageUrl, jumpUrl)
316367
}
317368

318369
// ReplyFile 回复文件消息
370+
// 支持本地文件,图片路径以local://开头
319371
func (ctx *Ctx) ReplyFile(path string) error {
320372
return ctx.SendFile(ctx.Event.FromUniqueID, path)
321373
}
322374

323375
// ReplyVideo 回复视频消息
376+
// 支持本地文件,图片路径以local://开头
324377
func (ctx *Ctx) ReplyVideo(path string) error {
325378
return ctx.SendVideo(ctx.Event.FromUniqueID, path)
326379
}
327380

328381
// ReplyEmoji 回复表情消息
382+
// 支持本地文件,图片路径以local://开头
329383
func (ctx *Ctx) ReplyEmoji(path string) error {
330384
return ctx.SendEmoji(ctx.Event.FromUniqueID, path)
331385
}

0 commit comments

Comments
 (0)