2023-12-07 15:58:55 +08:00
|
|
|
package current
|
|
|
|
|
2023-12-11 10:44:23 +08:00
|
|
|
import (
|
|
|
|
"go-wechat/model"
|
|
|
|
plugin "go-wechat/plugin"
|
|
|
|
)
|
2023-12-07 15:58:55 +08:00
|
|
|
|
2023-12-11 10:44:23 +08:00
|
|
|
// robotInfo
|
|
|
|
// @description: 机器人信息
|
|
|
|
type robotInfo struct {
|
|
|
|
info model.RobotUserInfo
|
|
|
|
MessageHandler plugin.MessageHandler // 启用的插件
|
|
|
|
}
|
|
|
|
|
|
|
|
// 当前接入的机器人信息
|
|
|
|
var ri robotInfo
|
2023-12-07 15:58:55 +08:00
|
|
|
|
|
|
|
// SetRobotInfo
|
|
|
|
// @description: 设置机器人信息
|
|
|
|
// @param info
|
|
|
|
func SetRobotInfo(info model.RobotUserInfo) {
|
2023-12-11 10:44:23 +08:00
|
|
|
ri.info = info
|
2023-12-07 15:58:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetRobotInfo
|
|
|
|
// @description: 获取机器人信息
|
|
|
|
// @return model.RobotUserInfo
|
|
|
|
func GetRobotInfo() model.RobotUserInfo {
|
2023-12-11 10:44:23 +08:00
|
|
|
return ri.info
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetRobotMessageHandler
|
|
|
|
// @description: 获取机器人插件信息
|
|
|
|
// @return robotInfo
|
|
|
|
func GetRobotMessageHandler() plugin.MessageHandler {
|
|
|
|
return ri.MessageHandler
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetRobotMessageHandler
|
|
|
|
// @description: 设置机器人插件信息
|
|
|
|
// @param handler
|
|
|
|
func SetRobotMessageHandler(handler plugin.MessageHandler) {
|
|
|
|
ri.MessageHandler = handler
|
2023-12-07 15:58:55 +08:00
|
|
|
}
|