|
@@ -32,7 +32,7 @@ func (w *WeWorkMsgAuditClient) GetMsgAuditContent(seq, limit uint64, timeout int
|
|
return
|
|
return
|
|
}
|
|
}
|
|
if chatInfo.Type == "image" {
|
|
if chatInfo.Type == "image" {
|
|
- /*image, _ := chatInfo.GetImageMessage()
|
|
|
|
|
|
+ image, _ := chatInfo.GetImageMessage()
|
|
sdkFileID := image.Image.SdkFileID
|
|
sdkFileID := image.Image.SdkFileID
|
|
|
|
|
|
isFinish := false
|
|
isFinish := false
|
|
@@ -53,14 +53,24 @@ func (w *WeWorkMsgAuditClient) GetMsgAuditContent(seq, limit uint64, timeout int
|
|
indexBuf = mediaData.OutIndexBuf
|
|
indexBuf = mediaData.OutIndexBuf
|
|
}
|
|
}
|
|
filePath, _ := os.Getwd()
|
|
filePath, _ := os.Getwd()
|
|
- filePath = path.Join(filePath, "test.png")
|
|
|
|
|
|
+ filePath = path.Join(filePath, image.Image.FileName)
|
|
err := ioutil.WriteFile(filePath, buffer.Bytes(), 0666)
|
|
err := ioutil.WriteFile(filePath, buffer.Bytes(), 0666)
|
|
if err != nil {
|
|
if err != nil {
|
|
utils.FileLog.Info(fmt.Sprintf("文件存储失败:%v \n", err))
|
|
utils.FileLog.Info(fmt.Sprintf("文件存储失败:%v \n", err))
|
|
errMsg = errors.New("企业微信 文件存储失败:"+err.Error())
|
|
errMsg = errors.New("企业微信 文件存储失败:"+err.Error())
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- break*/
|
|
|
|
|
|
+ utils.FileLog.Info(fmt.Sprintf("文件存储成功:%s \n", filePath))
|
|
|
|
+ list = append(list, msgaudit.TextMessage{
|
|
|
|
+ MsgId: image.MsgID,
|
|
|
|
+ Action: image.Action,
|
|
|
|
+ From: image.From,
|
|
|
|
+ ToList: image.ToList,
|
|
|
|
+ RoomId: image.RoomID,
|
|
|
|
+ MsgTime: image.MsgTime,
|
|
|
|
+ MsgType: image.MsgType,
|
|
|
|
+ Content: filePath,
|
|
|
|
+ })
|
|
continue
|
|
continue
|
|
}else if chatInfo.Type == "text" {
|
|
}else if chatInfo.Type == "text" {
|
|
msg, err := chatInfo.GetTextMessage()
|
|
msg, err := chatInfo.GetTextMessage()
|