2024-02-19 14:17:26 +08:00
|
|
|
|
package mq
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"encoding/json"
|
|
|
|
|
"go-wechat/common/current"
|
2024-07-05 09:32:39 +08:00
|
|
|
|
"go-wechat/model/dto"
|
2024-02-19 14:17:26 +08:00
|
|
|
|
"go-wechat/types"
|
|
|
|
|
"log"
|
|
|
|
|
"strings"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// parse
|
|
|
|
|
// @description: 解析消息
|
|
|
|
|
// @param msg
|
|
|
|
|
func parse(msg []byte) {
|
2024-07-05 09:32:39 +08:00
|
|
|
|
var m dto.Message
|
2024-02-19 14:17:26 +08:00
|
|
|
|
if err := json.Unmarshal(msg, &m); err != nil {
|
|
|
|
|
log.Printf("消息解析失败: %v", err)
|
|
|
|
|
log.Printf("消息内容: %d -> %v", len(msg), string(msg))
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
// 记录原始数据
|
|
|
|
|
m.Raw = string(msg)
|
|
|
|
|
|
|
|
|
|
// 提取出群成员信息
|
|
|
|
|
// Sys类型的消息正文不包含微信 Id,所以不需要处理
|
|
|
|
|
if m.IsGroup() && m.Type != types.MsgTypeSys {
|
|
|
|
|
// 群消息,处理一下消息和发信人
|
|
|
|
|
groupUser := strings.Split(m.Content, "\n")[0]
|
|
|
|
|
groupUser = strings.ReplaceAll(groupUser, ":", "")
|
|
|
|
|
// 如果两个id一致,说明是系统发的
|
|
|
|
|
if m.FromUser != groupUser {
|
|
|
|
|
m.GroupUser = groupUser
|
|
|
|
|
}
|
|
|
|
|
// 用户的操作单独提出来处理一下
|
|
|
|
|
m.Content = strings.Join(strings.Split(m.Content, "\n")[1:], "\n")
|
|
|
|
|
}
|
|
|
|
|
log.Printf("收到新微信消息\n消息来源: %s\n群成员: %s\n消息类型: %v\n消息内容: %s", m.FromUser, m.GroupUser, m.Type, m.Content)
|
|
|
|
|
|
|
|
|
|
// 插件不为空,开始执行
|
|
|
|
|
if p := current.GetRobotMessageHandler(); p != nil {
|
|
|
|
|
p(&m)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|