mirror of
https://github.com/Mrs4s/go-cqhttp.git
synced 2025-06-30 03:43:25 +00:00
Compare commits
34 Commits
v1.0.0-rc1
...
typeparam
Author | SHA1 | Date | |
---|---|---|---|
76295b0e89 | |||
d7fe481a8b | |||
152521893d | |||
4d8c55aca1 | |||
c00e07dec9 | |||
8d26e3aec4 | |||
6687d22643 | |||
d4c2b62e5e | |||
0f06688ac6 | |||
dfcad8082b | |||
987daad785 | |||
d1f143ebf7 | |||
c7f0aed1b7 | |||
19230b1511 | |||
b833193926 | |||
2709c5d448 | |||
31cdd33767 | |||
ee749a45fc | |||
e6904d8dde | |||
75bed6aabc | |||
a85f846a5f | |||
8326685088 | |||
2a66896d43 | |||
197ca5a3ea | |||
9054d4cee8 | |||
f2e26d0e13 | |||
da9bad44e2 | |||
c609fd72f5 | |||
325bd42734 | |||
ba808fff1d | |||
baecc2f8e6 | |||
cf9fa71646 | |||
115a5f1da7 | |||
1a78a4809a |
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
@ -28,7 +28,8 @@ jobs:
|
||||
- name: Setup Go environment
|
||||
uses: actions/setup-go@v2.1.3
|
||||
with:
|
||||
go-version: 1.17
|
||||
stable: false
|
||||
go-version: 1.18.0-rc1
|
||||
- name: Cache downloaded module
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -7,3 +7,5 @@ session.token
|
||||
device.json
|
||||
data/
|
||||
logs/
|
||||
internal/btree/*.lock
|
||||
internal/btree/*.db
|
@ -3,13 +3,14 @@ package gocq
|
||||
import (
|
||||
"bufio"
|
||||
"bytes"
|
||||
"image"
|
||||
"image/png"
|
||||
"os"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
qrcodeTerminal "github.com/Baozisoftware/qrcode-terminal-go"
|
||||
"github.com/Mrs4s/MiraiGo/client"
|
||||
"github.com/gocq/qrcode"
|
||||
"github.com/mattn/go-colorable"
|
||||
"github.com/pkg/errors"
|
||||
log "github.com/sirupsen/logrus"
|
||||
|
||||
@ -53,12 +54,36 @@ func commonLogin() error {
|
||||
return loginResponseProcessor(res)
|
||||
}
|
||||
|
||||
func qrcodeLogin() error {
|
||||
rsp, err := cli.FetchQRCode()
|
||||
func printQRCode(imgData []byte) {
|
||||
const (
|
||||
black = "\033[48;5;0m \033[0m"
|
||||
white = "\033[48;5;7m \033[0m"
|
||||
)
|
||||
img, err := png.Decode(bytes.NewReader(imgData))
|
||||
if err != nil {
|
||||
return err
|
||||
log.Panic(err)
|
||||
}
|
||||
fi, err := qrcode.Decode(bytes.NewReader(rsp.ImageData))
|
||||
data := img.(*image.Gray).Pix
|
||||
bound := img.Bounds().Max.X
|
||||
buf := make([]byte, 0, (bound*4+1)*(bound))
|
||||
i := 0
|
||||
for y := 0; y < bound; y++ {
|
||||
i = y * bound
|
||||
for x := 0; x < bound; x++ {
|
||||
if data[i] != 255 {
|
||||
buf = append(buf, white...)
|
||||
} else {
|
||||
buf = append(buf, black...)
|
||||
}
|
||||
i++
|
||||
}
|
||||
buf = append(buf, '\n')
|
||||
}
|
||||
_, _ = colorable.NewColorableStdout().Write(buf)
|
||||
}
|
||||
|
||||
func qrcodeLogin() error {
|
||||
rsp, err := cli.FetchQRCodeCustomSize(1, 2, 1)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
@ -70,7 +95,7 @@ func qrcodeLogin() error {
|
||||
log.Infof("请使用手机QQ扫描二维码 (qrcode.png) : ")
|
||||
}
|
||||
time.Sleep(time.Second)
|
||||
qrcodeTerminal.New2(qrcodeTerminal.ConsoleColors.BrightBlack, qrcodeTerminal.ConsoleColors.BrightWhite, qrcodeTerminal.QRCodeRecoveryLevels.Low).Get(fi.Content).Print()
|
||||
printQRCode(rsp.ImageData)
|
||||
s, err := cli.QueryQRCodeStatus(rsp.Sig)
|
||||
if err != nil {
|
||||
return err
|
||||
|
@ -81,7 +81,7 @@ func Main() {
|
||||
|
||||
mkCacheDir := func(path string, _type string) {
|
||||
if !global.PathExists(path) {
|
||||
if err := os.MkdirAll(path, 0o755); err != nil {
|
||||
if err := os.MkdirAll(path, 0o644); err != nil {
|
||||
log.Fatalf("创建%s缓存文件夹失败: %v", _type, err)
|
||||
}
|
||||
}
|
||||
@ -130,7 +130,6 @@ func Main() {
|
||||
log.Info("当前版本:", base.Version)
|
||||
if base.Debug {
|
||||
log.SetLevel(log.DebugLevel)
|
||||
log.SetReportCaller(true)
|
||||
log.Warnf("已开启Debug模式.")
|
||||
// log.Debugf("开发交流群: 192548878")
|
||||
}
|
||||
@ -259,7 +258,7 @@ func Main() {
|
||||
}
|
||||
var times uint = 1 // 重试次数
|
||||
var reLoginLock sync.Mutex
|
||||
cli.OnDisconnected(func(q *client.QQClient, e *client.ClientDisconnectedEvent) {
|
||||
cli.DisconnectedEvent.Subscribe(func(q *client.QQClient, e *client.ClientDisconnectedEvent) {
|
||||
reLoginLock.Lock()
|
||||
defer reLoginLock.Unlock()
|
||||
times = 1
|
||||
@ -383,22 +382,36 @@ func newClient() *client.QQClient {
|
||||
}
|
||||
log.Infof("读取到 %v 个自定义地址.", len(addr))
|
||||
}
|
||||
c.OnLog(func(c *client.QQClient, e *client.LogEvent) {
|
||||
switch e.Type {
|
||||
case "INFO":
|
||||
log.Info("Protocol -> " + e.Message)
|
||||
case "ERROR":
|
||||
log.Error("Protocol -> " + e.Message)
|
||||
case "DEBUG":
|
||||
log.Debug("Protocol -> " + e.Message)
|
||||
case "DUMP":
|
||||
if !global.PathExists(global.DumpsPath) {
|
||||
_ = os.MkdirAll(global.DumpsPath, 0o755)
|
||||
}
|
||||
dumpFile := path.Join(global.DumpsPath, fmt.Sprintf("%v.dump", time.Now().Unix()))
|
||||
log.Errorf("出现错误 %v. 详细信息已转储至文件 %v 请连同日志提交给开发者处理", e.Message, dumpFile)
|
||||
_ = os.WriteFile(dumpFile, e.Dump, 0o644)
|
||||
}
|
||||
})
|
||||
c.SetLogger(protocolLogger{})
|
||||
return c
|
||||
}
|
||||
|
||||
type protocolLogger struct{}
|
||||
|
||||
const fromProtocol = "Protocol -> "
|
||||
|
||||
func (p protocolLogger) Info(format string, arg ...any) {
|
||||
log.Infof(fromProtocol+format, arg...)
|
||||
}
|
||||
|
||||
func (p protocolLogger) Warning(format string, arg ...any) {
|
||||
log.Warnf(fromProtocol+format, arg...)
|
||||
}
|
||||
|
||||
func (p protocolLogger) Debug(format string, arg ...any) {
|
||||
log.Debugf(fromProtocol+format, arg...)
|
||||
}
|
||||
|
||||
func (p protocolLogger) Error(format string, arg ...any) {
|
||||
log.Errorf(fromProtocol+format, arg...)
|
||||
}
|
||||
|
||||
func (p protocolLogger) Dump(data []byte, format string, arg ...any) {
|
||||
if !global.PathExists(global.DumpsPath) {
|
||||
_ = os.MkdirAll(global.DumpsPath, 0o755)
|
||||
}
|
||||
dumpFile := path.Join(global.DumpsPath, fmt.Sprintf("%v.dump", time.Now().Unix()))
|
||||
message := fmt.Sprintf(format, arg...)
|
||||
log.Errorf("出现错误 %v. 详细信息已转储至文件 %v 请连同日志提交给开发者处理", message, dumpFile)
|
||||
_ = os.WriteFile(dumpFile, data, 0o644)
|
||||
}
|
||||
|
101
coolq/api.go
101
coolq/api.go
@ -12,7 +12,6 @@ import (
|
||||
"runtime"
|
||||
"strconv"
|
||||
"strings"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/segmentio/asm/base64"
|
||||
@ -157,7 +156,7 @@ func (bot *CQBot) CQGetGuildMembers(guildID uint64, nextToken string) global.MSG
|
||||
if !exists {
|
||||
return Failed(100, "NEXT_TOKEN_NOT_EXISTS")
|
||||
}
|
||||
token = i.(*guildMemberPageToken)
|
||||
token = i
|
||||
if token.guildID != guildID {
|
||||
return Failed(100, "GUILD_NOT_MATCH")
|
||||
}
|
||||
@ -712,7 +711,7 @@ func (bot *CQBot) CQSendGroupMessage(groupID int64, m gjson.Result, autoEscape b
|
||||
|
||||
var elem []message.IMessageElement
|
||||
if m.Type == gjson.JSON {
|
||||
elem = bot.ConvertObjectMessage(m, MessageSourceGroup)
|
||||
elem = bot.ConvertObjectMessage(m, message.SourceGroup)
|
||||
} else {
|
||||
str := m.String()
|
||||
if str == "" {
|
||||
@ -722,7 +721,7 @@ func (bot *CQBot) CQSendGroupMessage(groupID int64, m gjson.Result, autoEscape b
|
||||
if autoEscape {
|
||||
elem = []message.IMessageElement{message.NewText(str)}
|
||||
} else {
|
||||
elem = bot.ConvertStringMessage(str, MessageSourceGroup)
|
||||
elem = bot.ConvertStringMessage(str, message.SourceGroup)
|
||||
}
|
||||
}
|
||||
fixAt(elem)
|
||||
@ -766,7 +765,7 @@ func (bot *CQBot) CQSendGuildChannelMessage(guildID, channelID uint64, m gjson.R
|
||||
|
||||
var elem []message.IMessageElement
|
||||
if m.Type == gjson.JSON {
|
||||
elem = bot.ConvertObjectMessage(m, MessageSourceGuildChannel)
|
||||
elem = bot.ConvertObjectMessage(m, message.SourceGuildChannel)
|
||||
} else {
|
||||
str := m.String()
|
||||
if str == "" {
|
||||
@ -776,7 +775,7 @@ func (bot *CQBot) CQSendGuildChannelMessage(guildID, channelID uint64, m gjson.R
|
||||
if autoEscape {
|
||||
elem = []message.IMessageElement{message.NewText(str)}
|
||||
} else {
|
||||
elem = bot.ConvertStringMessage(str, MessageSourceGuildChannel)
|
||||
elem = bot.ConvertStringMessage(str, message.SourceGuildChannel)
|
||||
}
|
||||
}
|
||||
fixAt(elem)
|
||||
@ -791,22 +790,29 @@ func (bot *CQBot) CQSendGuildChannelMessage(guildID, channelID uint64, m gjson.R
|
||||
func (bot *CQBot) uploadForwardElement(m gjson.Result, groupID int64) *message.ForwardElement {
|
||||
ts := time.Now().Add(-time.Minute * 5)
|
||||
fm := message.NewForwardMessage()
|
||||
source := message.Source{SourceType: message.SourceGroup, PrimaryID: groupID}
|
||||
|
||||
var lazyUpload []func()
|
||||
var wg sync.WaitGroup
|
||||
var w worker
|
||||
resolveElement := func(elems []message.IMessageElement) []message.IMessageElement {
|
||||
for i, elem := range elems {
|
||||
iescape := i
|
||||
p := &elems[i]
|
||||
switch o := elem.(type) {
|
||||
case *LocalImageElement, *LocalVideoElement:
|
||||
wg.Add(1)
|
||||
lazyUpload = append(lazyUpload, func() {
|
||||
defer wg.Done()
|
||||
gm, err := bot.uploadMedia(o, groupID, true)
|
||||
case *LocalVideoElement:
|
||||
w.do(func() {
|
||||
gm, err := bot.uploadLocalVideo(source, o)
|
||||
if err != nil {
|
||||
log.Warnf("警告: 群 %d %s上传失败: %v", groupID, o.Type().String(), err)
|
||||
log.Warnf(uploadFailedTemplate, "群", groupID, "视频", err)
|
||||
} else {
|
||||
elems[iescape] = gm
|
||||
*p = gm
|
||||
}
|
||||
})
|
||||
case *LocalImageElement:
|
||||
w.do(func() {
|
||||
gm, err := bot.uploadLocalImage(source, o)
|
||||
if err != nil {
|
||||
log.Warnf(uploadFailedTemplate, "群", groupID, "图片", err)
|
||||
} else {
|
||||
*p = gm
|
||||
}
|
||||
})
|
||||
}
|
||||
@ -833,7 +839,7 @@ func (bot *CQBot) uploadForwardElement(m gjson.Result, groupID int64) *message.F
|
||||
}
|
||||
return int32(msgTime)
|
||||
}(),
|
||||
Message: resolveElement(bot.ConvertContentMessage(m.Content, MessageSourceGroup)),
|
||||
Message: resolveElement(bot.ConvertContentMessage(m.Content, message.SourceGroup)),
|
||||
}
|
||||
}
|
||||
log.Warnf("警告: 引用消息 %v 错误或数据库未开启.", e.Get("data.id").Str)
|
||||
@ -865,7 +871,7 @@ func (bot *CQBot) uploadForwardElement(m gjson.Result, groupID int64) *message.F
|
||||
}
|
||||
}
|
||||
}
|
||||
content := bot.ConvertObjectMessage(c, MessageSourceGroup)
|
||||
content := bot.ConvertObjectMessage(c, message.SourceGroup)
|
||||
if uin != 0 && name != "" && len(content) > 0 {
|
||||
return &message.ForwardNode{
|
||||
SenderId: uin,
|
||||
@ -891,12 +897,7 @@ func (bot *CQBot) uploadForwardElement(m gjson.Result, groupID int64) *message.F
|
||||
fm.AddNode(node)
|
||||
}
|
||||
}
|
||||
|
||||
for _, upload := range lazyUpload {
|
||||
go upload()
|
||||
}
|
||||
wg.Wait()
|
||||
|
||||
w.wait()
|
||||
return bot.Client.UploadGroupForwardMessage(groupID, fm)
|
||||
}
|
||||
|
||||
@ -932,7 +933,7 @@ func (bot *CQBot) CQSendGroupForwardMessage(groupID int64, m gjson.Result) globa
|
||||
func (bot *CQBot) CQSendPrivateMessage(userID int64, groupID int64, m gjson.Result, autoEscape bool) global.MSG {
|
||||
var elem []message.IMessageElement
|
||||
if m.Type == gjson.JSON {
|
||||
elem = bot.ConvertObjectMessage(m, MessageSourcePrivate)
|
||||
elem = bot.ConvertObjectMessage(m, message.SourcePrivate)
|
||||
} else {
|
||||
str := m.String()
|
||||
if str == "" {
|
||||
@ -941,7 +942,7 @@ func (bot *CQBot) CQSendPrivateMessage(userID int64, groupID int64, m gjson.Resu
|
||||
if autoEscape {
|
||||
elem = []message.IMessageElement{message.NewText(str)}
|
||||
} else {
|
||||
elem = bot.ConvertStringMessage(str, MessageSourcePrivate)
|
||||
elem = bot.ConvertStringMessage(str, message.SourcePrivate)
|
||||
}
|
||||
}
|
||||
mid := bot.SendPrivateMessage(userID, groupID, &message.SendingMessage{Elements: elem})
|
||||
@ -1525,7 +1526,7 @@ func (bot *CQBot) CQGetForwardMessage(resID string) global.MSG {
|
||||
r := make([]global.MSG, len(nodes))
|
||||
for i, n := range nodes {
|
||||
bot.checkMedia(n.Message, 0)
|
||||
content := ToFormattedMessage(n.Message, MessageSource{SourceType: MessageSourceGroup}, false)
|
||||
content := ToFormattedMessage(n.Message, message.Source{SourceType: message.SourceGroup}, false)
|
||||
if len(n.Message) == 1 {
|
||||
if forward, ok := n.Message[0].(*message.ForwardMessage); ok {
|
||||
content = transformNodes(forward.Nodes)
|
||||
@ -1573,9 +1574,9 @@ func (bot *CQBot) CQGetMessage(messageID int32) global.MSG {
|
||||
switch o := msg.(type) {
|
||||
case *db.StoredGroupMessage:
|
||||
m["group_id"] = o.GroupCode
|
||||
m["message"] = ToFormattedMessage(bot.ConvertContentMessage(o.Content, MessageSourceGroup), MessageSource{SourceType: MessageSourceGroup, PrimaryID: uint64(o.GroupCode)}, false)
|
||||
m["message"] = ToFormattedMessage(bot.ConvertContentMessage(o.Content, message.SourceGroup), message.Source{SourceType: message.SourceGroup, PrimaryID: o.GroupCode}, false)
|
||||
case *db.StoredPrivateMessage:
|
||||
m["message"] = ToFormattedMessage(bot.ConvertContentMessage(o.Content, MessageSourcePrivate), MessageSource{SourceType: MessageSourcePrivate}, false)
|
||||
m["message"] = ToFormattedMessage(bot.ConvertContentMessage(o.Content, message.SourcePrivate), message.Source{SourceType: message.SourcePrivate}, false)
|
||||
}
|
||||
return OK(m)
|
||||
}
|
||||
@ -1591,21 +1592,21 @@ func (bot *CQBot) CQGetGuildMessage(messageID string, noCache bool) global.MSG {
|
||||
m := global.MSG{
|
||||
"message_id": messageID,
|
||||
"message_source": func() string {
|
||||
if source.SourceType == MessageSourceGuildDirect {
|
||||
if source.SourceType == message.SourceGuildDirect {
|
||||
return "direct"
|
||||
}
|
||||
return "channel"
|
||||
}(),
|
||||
"message_seq": seq,
|
||||
"guild_id": fU64(source.PrimaryID),
|
||||
"guild_id": fU64(uint64(source.PrimaryID)),
|
||||
"reactions": []int{},
|
||||
}
|
||||
// nolint: exhaustive
|
||||
switch source.SourceType {
|
||||
case MessageSourceGuildChannel:
|
||||
m["channel_id"] = fU64(source.SubID)
|
||||
case message.SourceGuildChannel:
|
||||
m["channel_id"] = fU64(uint64(source.SecondaryID))
|
||||
if noCache {
|
||||
pull, err := bot.Client.GuildService.PullGuildChannelMessage(source.PrimaryID, source.SubID, seq, seq)
|
||||
pull, err := bot.Client.GuildService.PullGuildChannelMessage(uint64(source.PrimaryID), uint64(source.SecondaryID), seq, seq)
|
||||
if err != nil {
|
||||
log.Warnf("获取消息时出现错误: %v", err)
|
||||
return Failed(100, "API_ERROR", err.Error())
|
||||
@ -1635,11 +1636,11 @@ func (bot *CQBot) CQGetGuildMessage(messageID string, noCache bool) global.MSG {
|
||||
"tiny_id": fU64(channelMsgByDB.Attribute.SenderTinyID),
|
||||
"nickname": channelMsgByDB.Attribute.SenderName,
|
||||
}
|
||||
m["message"] = ToFormattedMessage(bot.ConvertContentMessage(channelMsgByDB.Content, MessageSourceGuildChannel), *source)
|
||||
m["message"] = ToFormattedMessage(bot.ConvertContentMessage(channelMsgByDB.Content, message.SourceGuildChannel), *source)
|
||||
}
|
||||
case MessageSourceGuildDirect:
|
||||
case message.SourceGuildDirect:
|
||||
// todo(mrs4s): 支持 direct 消息
|
||||
m["tiny_id"] = fU64(source.SubID)
|
||||
m["tiny_id"] = fU64(uint64(source.SecondaryID))
|
||||
}
|
||||
return OK(m)
|
||||
}
|
||||
@ -1737,7 +1738,7 @@ func (bot *CQBot) CQCanSendRecord() global.MSG {
|
||||
// @route(ocr_image,".ocr_image")
|
||||
// @rename(image_id->image)
|
||||
func (bot *CQBot) CQOcrImage(imageID string) global.MSG {
|
||||
img, err := bot.makeImageOrVideoElem(map[string]string{"file": imageID}, false, MessageSourceGroup)
|
||||
img, err := bot.makeImageOrVideoElem(map[string]string{"file": imageID}, false, message.SourceGroup)
|
||||
if err != nil {
|
||||
log.Warnf("load image error: %v", err)
|
||||
return Failed(100, "LOAD_FILE_ERROR", err.Error())
|
||||
@ -1969,6 +1970,27 @@ func (bot *CQBot) CQMarkMessageAsRead(msgID int32) global.MSG {
|
||||
return OK(nil)
|
||||
}
|
||||
|
||||
// CQSetQQProfile 设置 QQ 资料
|
||||
//
|
||||
// @route(set_qq_profile)
|
||||
func (bot *CQBot) CQSetQQProfile(nickname, company, email, college, personalNote gjson.Result) global.MSG {
|
||||
u := client.NewProfileDetailUpdate()
|
||||
|
||||
fi := func(f gjson.Result, do func(value string) client.ProfileDetailUpdate) {
|
||||
if f.Exists() {
|
||||
do(f.String())
|
||||
}
|
||||
}
|
||||
|
||||
fi(nickname, u.Nick)
|
||||
fi(company, u.Company)
|
||||
fi(email, u.Email)
|
||||
fi(college, u.College)
|
||||
fi(personalNote, u.PersonalNote)
|
||||
bot.Client.UpdateProfile(u)
|
||||
return OK(nil)
|
||||
}
|
||||
|
||||
// CQReloadEventFilter 重载事件过滤器
|
||||
//
|
||||
// @route(reload_event_filter)
|
||||
@ -1984,8 +2006,7 @@ func OK(data interface{}) global.MSG {
|
||||
|
||||
// Failed 生成失败返回值
|
||||
func Failed(code int, msg ...string) global.MSG {
|
||||
m := ""
|
||||
w := ""
|
||||
m, w := "", ""
|
||||
if len(msg) > 0 {
|
||||
m = msg[0]
|
||||
}
|
||||
|
280
coolq/bot.go
280
coolq/bot.go
@ -5,9 +5,7 @@ import (
|
||||
"encoding/hex"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io"
|
||||
"os"
|
||||
"path"
|
||||
"runtime/debug"
|
||||
"sync"
|
||||
"time"
|
||||
@ -34,7 +32,7 @@ type CQBot struct {
|
||||
|
||||
friendReqCache sync.Map
|
||||
tempSessionCache sync.Map
|
||||
nextTokenCache *utils.Cache
|
||||
nextTokenCache *utils.Cache[*guildMemberPageToken]
|
||||
}
|
||||
|
||||
// Event 事件
|
||||
@ -69,40 +67,40 @@ func (e *Event) JSONString() string {
|
||||
func NewQQBot(cli *client.QQClient) *CQBot {
|
||||
bot := &CQBot{
|
||||
Client: cli,
|
||||
nextTokenCache: utils.NewCache(time.Second * 10),
|
||||
nextTokenCache: utils.NewCache[*guildMemberPageToken](time.Second * 10),
|
||||
}
|
||||
bot.Client.OnPrivateMessage(bot.privateMessageEvent)
|
||||
bot.Client.OnGroupMessage(bot.groupMessageEvent)
|
||||
bot.Client.PrivateMessageEvent.Subscribe(bot.privateMessageEvent)
|
||||
bot.Client.GroupMessageEvent.Subscribe(bot.groupMessageEvent)
|
||||
if base.ReportSelfMessage {
|
||||
bot.Client.OnSelfPrivateMessage(bot.privateMessageEvent)
|
||||
bot.Client.OnSelfGroupMessage(bot.groupMessageEvent)
|
||||
bot.Client.SelfPrivateMessageEvent.Subscribe(bot.privateMessageEvent)
|
||||
bot.Client.SelfGroupMessageEvent.Subscribe(bot.groupMessageEvent)
|
||||
}
|
||||
bot.Client.OnTempMessage(bot.tempMessageEvent)
|
||||
bot.Client.TempMessageEvent.Subscribe(bot.tempMessageEvent)
|
||||
bot.Client.GuildService.OnGuildChannelMessage(bot.guildChannelMessageEvent)
|
||||
bot.Client.GuildService.OnGuildMessageReactionsUpdated(bot.guildMessageReactionsUpdatedEvent)
|
||||
bot.Client.GuildService.OnGuildMessageRecalled(bot.guildChannelMessageRecalledEvent)
|
||||
bot.Client.GuildService.OnGuildChannelUpdated(bot.guildChannelUpdatedEvent)
|
||||
bot.Client.GuildService.OnGuildChannelCreated(bot.guildChannelCreatedEvent)
|
||||
bot.Client.GuildService.OnGuildChannelDestroyed(bot.guildChannelDestroyedEvent)
|
||||
bot.Client.OnGroupMuted(bot.groupMutedEvent)
|
||||
bot.Client.OnGroupMessageRecalled(bot.groupRecallEvent)
|
||||
bot.Client.OnGroupNotify(bot.groupNotifyEvent)
|
||||
bot.Client.OnFriendNotify(bot.friendNotifyEvent)
|
||||
bot.Client.OnMemberSpecialTitleUpdated(bot.memberTitleUpdatedEvent)
|
||||
bot.Client.OnFriendMessageRecalled(bot.friendRecallEvent)
|
||||
bot.Client.OnReceivedOfflineFile(bot.offlineFileEvent)
|
||||
bot.Client.OnJoinGroup(bot.joinGroupEvent)
|
||||
bot.Client.OnLeaveGroup(bot.leaveGroupEvent)
|
||||
bot.Client.OnGroupMemberJoined(bot.memberJoinEvent)
|
||||
bot.Client.OnGroupMemberLeaved(bot.memberLeaveEvent)
|
||||
bot.Client.OnGroupMemberPermissionChanged(bot.memberPermissionChangedEvent)
|
||||
bot.Client.OnGroupMemberCardUpdated(bot.memberCardUpdatedEvent)
|
||||
bot.Client.OnNewFriendRequest(bot.friendRequestEvent)
|
||||
bot.Client.OnNewFriendAdded(bot.friendAddedEvent)
|
||||
bot.Client.OnGroupInvited(bot.groupInvitedEvent)
|
||||
bot.Client.OnUserWantJoinGroup(bot.groupJoinReqEvent)
|
||||
bot.Client.OnOtherClientStatusChanged(bot.otherClientStatusChangedEvent)
|
||||
bot.Client.OnGroupDigest(bot.groupEssenceMsg)
|
||||
bot.Client.GroupMuteEvent.Subscribe(bot.groupMutedEvent)
|
||||
bot.Client.GroupMessageRecalledEvent.Subscribe(bot.groupRecallEvent)
|
||||
bot.Client.GroupNotifyEvent.Subscribe(bot.groupNotifyEvent)
|
||||
bot.Client.FriendNotifyEvent.Subscribe(bot.friendNotifyEvent)
|
||||
bot.Client.MemberSpecialTitleUpdatedEvent.Subscribe(bot.memberTitleUpdatedEvent)
|
||||
bot.Client.FriendMessageRecalledEvent.Subscribe(bot.friendRecallEvent)
|
||||
bot.Client.OfflineFileEvent.Subscribe(bot.offlineFileEvent)
|
||||
bot.Client.GroupJoinEvent.Subscribe(bot.joinGroupEvent)
|
||||
bot.Client.GroupLeaveEvent.Subscribe(bot.leaveGroupEvent)
|
||||
bot.Client.GroupMemberJoinEvent.Subscribe(bot.memberJoinEvent)
|
||||
bot.Client.GroupMemberLeaveEvent.Subscribe(bot.memberLeaveEvent)
|
||||
bot.Client.GroupMemberPermissionChangedEvent.Subscribe(bot.memberPermissionChangedEvent)
|
||||
bot.Client.MemberCardUpdatedEvent.Subscribe(bot.memberCardUpdatedEvent)
|
||||
bot.Client.NewFriendRequestEvent.Subscribe(bot.friendRequestEvent)
|
||||
bot.Client.NewFriendEvent.Subscribe(bot.friendAddedEvent)
|
||||
bot.Client.GroupInvitedEvent.Subscribe(bot.groupInvitedEvent)
|
||||
bot.Client.UserWantJoinGroupEvent.Subscribe(bot.groupJoinReqEvent)
|
||||
bot.Client.OtherClientStatusChangedEvent.Subscribe(bot.otherClientStatusChangedEvent)
|
||||
bot.Client.GroupDigestEvent.Subscribe(bot.groupEssenceMsg)
|
||||
go func() {
|
||||
if base.HeartbeatInterval == 0 {
|
||||
log.Warn("警告: 心跳功能已关闭,若非预期,请检查配置文件。")
|
||||
@ -131,8 +129,24 @@ func (bot *CQBot) OnEventPush(f func(e *Event)) {
|
||||
bot.lock.Unlock()
|
||||
}
|
||||
|
||||
// UploadLocalImageAsGroup 上传本地图片至群聊
|
||||
func (bot *CQBot) UploadLocalImageAsGroup(groupCode int64, img *LocalImageElement) (i *message.GroupImageElement, err error) {
|
||||
type worker struct {
|
||||
wg sync.WaitGroup
|
||||
}
|
||||
|
||||
func (w *worker) do(f func()) {
|
||||
w.wg.Add(1)
|
||||
go func() {
|
||||
defer w.wg.Done()
|
||||
f()
|
||||
}()
|
||||
}
|
||||
|
||||
func (w *worker) wait() {
|
||||
w.wg.Wait()
|
||||
}
|
||||
|
||||
// uploadLocalImage 上传本地图片
|
||||
func (bot *CQBot) uploadLocalImage(target message.Source, img *LocalImageElement) (message.IMessageElement, error) {
|
||||
if img.File != "" {
|
||||
f, err := os.Open(img.File)
|
||||
if err != nil {
|
||||
@ -144,89 +158,109 @@ func (bot *CQBot) UploadLocalImageAsGroup(groupCode int64, img *LocalImageElemen
|
||||
if lawful, mime := base.IsLawfulImage(img.Stream); !lawful {
|
||||
return nil, errors.New("image type error: " + mime)
|
||||
}
|
||||
i, err = bot.Client.UploadGroupImage(groupCode, img.Stream)
|
||||
if i != nil {
|
||||
// todo: enable multi-thread upload, now got error code 81
|
||||
i, err := bot.Client.UploadImage(target, img.Stream, 4)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
switch i := i.(type) {
|
||||
case *message.GroupImageElement:
|
||||
i.Flash = img.Flash
|
||||
i.EffectID = img.EffectID
|
||||
case *message.FriendImageElement:
|
||||
i.Flash = img.Flash
|
||||
}
|
||||
return
|
||||
return i, err
|
||||
}
|
||||
|
||||
// UploadLocalVideo 上传本地短视频至群聊
|
||||
func (bot *CQBot) UploadLocalVideo(target int64, v *LocalVideoElement) (*message.ShortVideoElement, error) {
|
||||
// uploadLocalVideo 上传本地短视频至群聊
|
||||
func (bot *CQBot) uploadLocalVideo(target message.Source, v *LocalVideoElement) (*message.ShortVideoElement, error) {
|
||||
video, err := os.Open(v.File)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
defer func() { _ = video.Close() }()
|
||||
hash, _ := utils.ComputeMd5AndLength(io.MultiReader(video, v.thumb))
|
||||
cacheFile := path.Join(global.CachePath, hex.EncodeToString(hash)+".cache")
|
||||
_, _ = video.Seek(0, io.SeekStart)
|
||||
_, _ = v.thumb.Seek(0, io.SeekStart)
|
||||
return bot.Client.UploadGroupShortVideo(target, video, v.thumb, cacheFile)
|
||||
return bot.Client.UploadShortVideo(target, video, v.thumb, 4)
|
||||
}
|
||||
|
||||
// UploadLocalImageAsPrivate 上传本地图片至私聊
|
||||
func (bot *CQBot) UploadLocalImageAsPrivate(userID int64, img *LocalImageElement) (i *message.FriendImageElement, err error) {
|
||||
if img.File != "" {
|
||||
f, err := os.Open(img.File)
|
||||
if err != nil {
|
||||
return nil, errors.Wrap(err, "open image error")
|
||||
func removeLocalElement(elements []message.IMessageElement) []message.IMessageElement {
|
||||
var j int
|
||||
for i, e := range elements {
|
||||
switch e.(type) {
|
||||
case *LocalImageElement, *LocalVideoElement:
|
||||
case *message.VoiceElement: // 未上传的语音消息, 也删除
|
||||
case nil:
|
||||
default:
|
||||
if j < i {
|
||||
elements[j] = e
|
||||
}
|
||||
j++
|
||||
}
|
||||
defer func() { _ = f.Close() }()
|
||||
img.Stream = f
|
||||
}
|
||||
if lawful, mime := base.IsLawfulImage(img.Stream); !lawful {
|
||||
return nil, errors.New("image type error: " + mime)
|
||||
}
|
||||
i, err = bot.Client.UploadPrivateImage(userID, img.Stream)
|
||||
if i != nil {
|
||||
i.Flash = img.Flash
|
||||
}
|
||||
return
|
||||
return elements[:j]
|
||||
}
|
||||
|
||||
// UploadLocalImageAsGuildChannel 上传本地图片至频道
|
||||
func (bot *CQBot) UploadLocalImageAsGuildChannel(guildID, channelID uint64, img *LocalImageElement) (*message.GuildImageElement, error) {
|
||||
if img.File != "" {
|
||||
f, err := os.Open(img.File)
|
||||
if err != nil {
|
||||
return nil, errors.Wrap(err, "open image error")
|
||||
const uploadFailedTemplate = "警告: %s %d %s上传失败: %v"
|
||||
|
||||
func (bot *CQBot) uploadMedia(target message.Source, elements []message.IMessageElement) []message.IMessageElement {
|
||||
var w worker
|
||||
var source string
|
||||
switch target.SourceType { // nolint:exhaustive
|
||||
case message.SourceGroup:
|
||||
source = "群"
|
||||
case message.SourcePrivate:
|
||||
source = "私聊"
|
||||
case message.SourceGuildChannel:
|
||||
source = "频道"
|
||||
}
|
||||
|
||||
for i, m := range elements {
|
||||
p := &elements[i]
|
||||
switch e := m.(type) {
|
||||
case *LocalImageElement:
|
||||
w.do(func() {
|
||||
m, err := bot.uploadLocalImage(target, e)
|
||||
if err != nil {
|
||||
log.Warnf(uploadFailedTemplate, source, target.PrimaryID, "图片", err)
|
||||
} else {
|
||||
*p = m
|
||||
}
|
||||
})
|
||||
case *message.VoiceElement:
|
||||
w.do(func() {
|
||||
m, err := bot.Client.UploadVoice(target, bytes.NewReader(e.Data))
|
||||
if err != nil {
|
||||
log.Warnf(uploadFailedTemplate, source, target.PrimaryID, "语音", err)
|
||||
} else {
|
||||
*p = m
|
||||
}
|
||||
})
|
||||
case *LocalVideoElement:
|
||||
w.do(func() {
|
||||
m, err := bot.uploadLocalVideo(target, e)
|
||||
if err != nil {
|
||||
log.Warnf(uploadFailedTemplate, source, target.PrimaryID, "视频", err)
|
||||
} else {
|
||||
*p = m
|
||||
}
|
||||
})
|
||||
}
|
||||
defer func() { _ = f.Close() }()
|
||||
img.Stream = f
|
||||
}
|
||||
if lawful, mime := base.IsLawfulImage(img.Stream); !lawful {
|
||||
return nil, errors.New("image type error: " + mime)
|
||||
}
|
||||
return bot.Client.GuildService.UploadGuildImage(guildID, channelID, img.Stream)
|
||||
}
|
||||
|
||||
func (bot *CQBot) uploadGuildVideo(i *LocalVideoElement, guildID, channelID uint64) (*message.ShortVideoElement, error) {
|
||||
video, err := os.Open(i.File)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
defer func() { _ = video.Close() }()
|
||||
_, _ = video.Seek(0, io.SeekStart)
|
||||
_, _ = i.thumb.Seek(0, io.SeekStart)
|
||||
n, err := bot.Client.UploadGuildShortVideo(guildID, channelID, video, i.thumb)
|
||||
return n, err
|
||||
w.wait()
|
||||
return removeLocalElement(elements)
|
||||
}
|
||||
|
||||
// SendGroupMessage 发送群消息
|
||||
func (bot *CQBot) SendGroupMessage(groupID int64, m *message.SendingMessage) int32 {
|
||||
newElem := make([]message.IMessageElement, 0, len(m.Elements))
|
||||
group := bot.Client.FindGroup(groupID)
|
||||
source := message.Source{
|
||||
SourceType: message.SourceGroup,
|
||||
PrimaryID: groupID,
|
||||
}
|
||||
m.Elements = bot.uploadMedia(source, m.Elements)
|
||||
for _, e := range m.Elements {
|
||||
switch i := e.(type) {
|
||||
case *LocalImageElement, *message.VoiceElement, *LocalVideoElement:
|
||||
i, err := bot.uploadMedia(i, groupID, true)
|
||||
if err != nil {
|
||||
log.Warnf("警告: 群 %d 消息%s上传失败: %v", groupID, e.Type().String(), err)
|
||||
continue
|
||||
}
|
||||
e = i
|
||||
case *PokeElement:
|
||||
if group != nil {
|
||||
if mem := group.FindMember(i.Target); mem != nil {
|
||||
@ -265,15 +299,13 @@ func (bot *CQBot) SendGroupMessage(groupID int64, m *message.SendingMessage) int
|
||||
// SendPrivateMessage 发送私聊消息
|
||||
func (bot *CQBot) SendPrivateMessage(target int64, groupID int64, m *message.SendingMessage) int32 {
|
||||
newElem := make([]message.IMessageElement, 0, len(m.Elements))
|
||||
source := message.Source{
|
||||
SourceType: message.SourcePrivate,
|
||||
PrimaryID: target,
|
||||
}
|
||||
m.Elements = bot.uploadMedia(source, m.Elements)
|
||||
for _, e := range m.Elements {
|
||||
switch i := e.(type) {
|
||||
case *LocalImageElement, *message.VoiceElement, *LocalVideoElement:
|
||||
i, err := bot.uploadMedia(i, target, false)
|
||||
if err != nil {
|
||||
log.Warnf("警告: 私聊 %d 消息%s上传失败: %v", target, e.Type().String(), err)
|
||||
continue
|
||||
}
|
||||
e = i
|
||||
case *PokeElement:
|
||||
bot.Client.SendFriendPoke(i.Target)
|
||||
return 0
|
||||
@ -362,29 +394,19 @@ func (bot *CQBot) SendPrivateMessage(target int64, groupID int64, m *message.Sen
|
||||
// SendGuildChannelMessage 发送频道消息
|
||||
func (bot *CQBot) SendGuildChannelMessage(guildID, channelID uint64, m *message.SendingMessage) string {
|
||||
newElem := make([]message.IMessageElement, 0, len(m.Elements))
|
||||
source := message.Source{
|
||||
SourceType: message.SourceGuildChannel,
|
||||
PrimaryID: int64(guildID),
|
||||
SecondaryID: int64(channelID),
|
||||
}
|
||||
m.Elements = bot.uploadMedia(source, m.Elements)
|
||||
for _, e := range m.Elements {
|
||||
switch i := e.(type) {
|
||||
case *LocalImageElement:
|
||||
n, err := bot.UploadLocalImageAsGuildChannel(guildID, channelID, i)
|
||||
if err != nil {
|
||||
log.Warnf("警告: 频道 %d 消息%s上传失败: %v", channelID, e.Type().String(), err)
|
||||
continue
|
||||
}
|
||||
e = n
|
||||
|
||||
case *LocalVideoElement:
|
||||
n, err := bot.uploadGuildVideo(i, guildID, channelID)
|
||||
if err != nil {
|
||||
log.Warnf("警告: 频道 %d 消息%s上传失败: %v", channelID, e.Type().String(), err)
|
||||
continue
|
||||
}
|
||||
e = n
|
||||
|
||||
case *message.MusicShareElement:
|
||||
bot.Client.SendGuildMusicShare(guildID, channelID, i)
|
||||
return "-1" // todo: fix this
|
||||
|
||||
case *LocalVoiceElement, *PokeElement:
|
||||
case *message.VoiceElement, *PokeElement:
|
||||
log.Warnf("警告: 频道暂不支持发送 %v 消息", i.Type().String())
|
||||
continue
|
||||
}
|
||||
@ -523,7 +545,7 @@ func (bot *CQBot) InsertTempMessage(target int64, m *message.TempMessage) int32
|
||||
|
||||
// InsertGuildChannelMessage 频道消息入数据库
|
||||
func (bot *CQBot) InsertGuildChannelMessage(m *message.GuildChannelMessage) string {
|
||||
id := encodeGuildMessageID(m.GuildId, m.ChannelId, m.Id, MessageSourceGuildChannel)
|
||||
id := encodeGuildMessageID(m.GuildId, m.ChannelId, m.Id, message.SourceGuildChannel)
|
||||
msg := &db.StoredGuildChannelMessage{
|
||||
ID: id,
|
||||
Attribute: &db.StoredGuildMessageAttribute{
|
||||
@ -544,10 +566,6 @@ func (bot *CQBot) InsertGuildChannelMessage(m *message.GuildChannelMessage) stri
|
||||
return msg.ID
|
||||
}
|
||||
|
||||
// Release 释放Bot实例
|
||||
func (bot *CQBot) Release() {
|
||||
}
|
||||
|
||||
func (bot *CQBot) dispatchEventMessage(m global.MSG) {
|
||||
bot.lock.RLock()
|
||||
defer bot.lock.RUnlock()
|
||||
@ -589,24 +607,6 @@ func formatMemberName(mem *client.GroupMemberInfo) string {
|
||||
return fmt.Sprintf("%s(%d)", mem.DisplayName(), mem.Uin)
|
||||
}
|
||||
|
||||
func (bot *CQBot) uploadMedia(raw message.IMessageElement, target int64, group bool) (message.IMessageElement, error) {
|
||||
switch m := raw.(type) {
|
||||
case *LocalImageElement:
|
||||
if group {
|
||||
return bot.UploadLocalImageAsGroup(target, m)
|
||||
}
|
||||
return bot.UploadLocalImageAsPrivate(target, m)
|
||||
case *message.VoiceElement:
|
||||
if group {
|
||||
return bot.Client.UploadGroupPtt(target, bytes.NewReader(m.Data))
|
||||
}
|
||||
return bot.Client.UploadPrivatePtt(target, bytes.NewReader(m.Data))
|
||||
case *LocalVideoElement:
|
||||
return bot.UploadLocalVideo(target, m)
|
||||
}
|
||||
return nil, errors.New("unsupported message element type")
|
||||
}
|
||||
|
||||
// encodeMessageID 临时先这样, 暂时用不上
|
||||
func encodeMessageID(target int64, seq int32) string {
|
||||
return hex.EncodeToString(binary.NewWriterF(func(w *binary.Writer) {
|
||||
@ -618,7 +618,7 @@ func encodeMessageID(target int64, seq int32) string {
|
||||
// encodeGuildMessageID 将频道信息编码为字符串
|
||||
// 当信息来源为 Channel 时 primaryID 为 guildID , subID 为 channelID
|
||||
// 当信息来源为 Direct 时 primaryID 为 guildID , subID 为 tinyID
|
||||
func encodeGuildMessageID(primaryID, subID, seq uint64, source MessageSourceType) string {
|
||||
func encodeGuildMessageID(primaryID, subID, seq uint64, source message.SourceType) string {
|
||||
return base64.StdEncoding.EncodeToString(binary.NewWriterF(func(w *binary.Writer) {
|
||||
w.WriteByte(byte(source))
|
||||
w.WriteUInt64(primaryID)
|
||||
@ -627,16 +627,16 @@ func encodeGuildMessageID(primaryID, subID, seq uint64, source MessageSourceType
|
||||
}))
|
||||
}
|
||||
|
||||
func decodeGuildMessageID(id string) (source *MessageSource, seq uint64) {
|
||||
func decodeGuildMessageID(id string) (source *message.Source, seq uint64) {
|
||||
b, _ := base64.StdEncoding.DecodeString(id)
|
||||
if len(b) < 25 {
|
||||
return
|
||||
}
|
||||
r := binary.NewReader(b)
|
||||
source = &MessageSource{
|
||||
SourceType: MessageSourceType(r.ReadByte()),
|
||||
PrimaryID: uint64(r.ReadInt64()),
|
||||
SubID: uint64(r.ReadInt64()),
|
||||
source = &message.Source{
|
||||
SourceType: message.SourceType(r.ReadByte()),
|
||||
PrimaryID: r.ReadInt64(),
|
||||
SecondaryID: r.ReadInt64(),
|
||||
}
|
||||
seq = uint64(r.ReadInt64())
|
||||
return
|
||||
|
@ -13,38 +13,32 @@ import (
|
||||
)
|
||||
|
||||
func convertGroupMemberInfo(groupID int64, m *client.GroupMemberInfo) global.MSG {
|
||||
sex := "unknown"
|
||||
if m.Gender == 1 { // unknown = 0xff
|
||||
sex = "female"
|
||||
} else if m.Gender == 0 {
|
||||
sex = "male"
|
||||
}
|
||||
role := "member"
|
||||
switch m.Permission { // nolint:exhaustive
|
||||
case client.Owner:
|
||||
role = "owner"
|
||||
case client.Administrator:
|
||||
role = "admin"
|
||||
}
|
||||
return global.MSG{
|
||||
"group_id": groupID,
|
||||
"user_id": m.Uin,
|
||||
"nickname": m.Nickname,
|
||||
"card": m.CardName,
|
||||
"sex": func() string {
|
||||
if m.Gender == 1 {
|
||||
return "female"
|
||||
} else if m.Gender == 0 {
|
||||
return "male"
|
||||
}
|
||||
// unknown = 0xff
|
||||
return "unknown"
|
||||
}(),
|
||||
"group_id": groupID,
|
||||
"user_id": m.Uin,
|
||||
"nickname": m.Nickname,
|
||||
"card": m.CardName,
|
||||
"sex": sex,
|
||||
"age": 0,
|
||||
"area": "",
|
||||
"join_time": m.JoinTime,
|
||||
"last_sent_time": m.LastSpeakTime,
|
||||
"shut_up_timestamp": m.ShutUpTimestamp,
|
||||
"level": strconv.FormatInt(int64(m.Level), 10),
|
||||
"role": func() string {
|
||||
switch m.Permission {
|
||||
case client.Owner:
|
||||
return "owner"
|
||||
case client.Administrator:
|
||||
return "admin"
|
||||
case client.Member:
|
||||
return "member"
|
||||
default:
|
||||
return "member"
|
||||
}
|
||||
}(),
|
||||
"role": role,
|
||||
"unfriendly": false,
|
||||
"title": m.SpecialTitle,
|
||||
"title_expire_time": m.SpecialTitleExpireTime,
|
||||
@ -66,11 +60,15 @@ func convertGuildMemberInfo(m []*client.GuildMemberInfo) (r []global.MSG) {
|
||||
}
|
||||
|
||||
func (bot *CQBot) formatGroupMessage(m *message.GroupMessage) global.MSG {
|
||||
source := MessageSource{
|
||||
SourceType: MessageSourceGroup,
|
||||
PrimaryID: uint64(m.GroupCode),
|
||||
source := message.Source{
|
||||
SourceType: message.SourceGroup,
|
||||
PrimaryID: m.GroupCode,
|
||||
}
|
||||
cqm := ToStringMessage(m.Elements, source, true)
|
||||
postType := "message"
|
||||
if m.Sender.Uin == bot.Client.Uin {
|
||||
postType = "message_sent"
|
||||
}
|
||||
gm := global.MSG{
|
||||
"anonymous": nil,
|
||||
"font": 0,
|
||||
@ -78,14 +76,9 @@ func (bot *CQBot) formatGroupMessage(m *message.GroupMessage) global.MSG {
|
||||
"message": ToFormattedMessage(m.Elements, source, false),
|
||||
"message_type": "group",
|
||||
"message_seq": m.Id,
|
||||
"post_type": func() string {
|
||||
if m.Sender.Uin == bot.Client.Uin {
|
||||
return "message_sent"
|
||||
}
|
||||
return "message"
|
||||
}(),
|
||||
"raw_message": cqm,
|
||||
"self_id": bot.Client.Uin,
|
||||
"post_type": postType,
|
||||
"raw_message": cqm,
|
||||
"self_id": bot.Client.Uin,
|
||||
"sender": global.MSG{
|
||||
"age": 0,
|
||||
"area": "",
|
||||
@ -122,16 +115,14 @@ func (bot *CQBot) formatGroupMessage(m *message.GroupMessage) global.MSG {
|
||||
}
|
||||
}
|
||||
ms := gm["sender"].(global.MSG)
|
||||
switch mem.Permission {
|
||||
role := "member"
|
||||
switch mem.Permission { // nolint:exhaustive
|
||||
case client.Owner:
|
||||
ms["role"] = "owner"
|
||||
role = "owner"
|
||||
case client.Administrator:
|
||||
ms["role"] = "admin"
|
||||
case client.Member:
|
||||
ms["role"] = "member"
|
||||
default:
|
||||
ms["role"] = "member"
|
||||
role = "admin"
|
||||
}
|
||||
ms["role"] = role
|
||||
ms["nickname"] = mem.Nickname
|
||||
ms["card"] = mem.CardName
|
||||
ms["title"] = mem.SpecialTitle
|
||||
|
309
coolq/cqcode.go
309
coolq/cqcode.go
@ -4,7 +4,6 @@ import (
|
||||
"bytes"
|
||||
"crypto/md5"
|
||||
"encoding/hex"
|
||||
xml2 "encoding/xml"
|
||||
"errors"
|
||||
"fmt"
|
||||
"io"
|
||||
@ -23,6 +22,7 @@ import (
|
||||
log "github.com/sirupsen/logrus"
|
||||
"github.com/tidwall/gjson"
|
||||
|
||||
"github.com/Mrs4s/go-cqhttp/coolq/cqcode"
|
||||
"github.com/Mrs4s/go-cqhttp/db"
|
||||
"github.com/Mrs4s/go-cqhttp/global"
|
||||
"github.com/Mrs4s/go-cqhttp/internal/base"
|
||||
@ -45,43 +45,18 @@ type PokeElement struct {
|
||||
type LocalImageElement struct {
|
||||
Stream io.ReadSeeker
|
||||
File string
|
||||
URL string
|
||||
|
||||
Flash bool
|
||||
EffectID int32
|
||||
}
|
||||
|
||||
// LocalVoiceElement 本地语音
|
||||
type LocalVoiceElement struct {
|
||||
message.VoiceElement
|
||||
Stream io.ReadSeeker
|
||||
}
|
||||
|
||||
// LocalVideoElement 本地视频
|
||||
type LocalVideoElement struct {
|
||||
File string
|
||||
thumb io.ReadSeeker
|
||||
}
|
||||
|
||||
// MessageSource 消息来源
|
||||
// 如果为私聊或者群聊, PrimaryID 将代表群号/QQ号
|
||||
// 如果为频道, PrimaryID 为 GuildID, SubID 为 ChannelID
|
||||
type MessageSource struct {
|
||||
SourceType MessageSourceType
|
||||
PrimaryID uint64
|
||||
SubID uint64
|
||||
}
|
||||
|
||||
// MessageSourceType 消息来源类型
|
||||
type MessageSourceType byte
|
||||
|
||||
// MessageSourceType 常量
|
||||
const (
|
||||
MessageSourcePrivate MessageSourceType = 1 << iota
|
||||
MessageSourceGroup
|
||||
MessageSourceGuildChannel
|
||||
MessageSourceGuildDirect
|
||||
)
|
||||
|
||||
const (
|
||||
maxImageSize = 1024 * 1024 * 30 // 30MB
|
||||
maxVideoSize = 1024 * 1024 * 100 // 100MB
|
||||
@ -103,28 +78,36 @@ func (e *PokeElement) Type() message.ElementType {
|
||||
return message.At
|
||||
}
|
||||
|
||||
func replyID(r *message.ReplyElement, source message.Source) int32 {
|
||||
id := source.PrimaryID
|
||||
seq := r.ReplySeq
|
||||
if source.SourceType == message.SourcePrivate {
|
||||
// 私聊似乎腾讯服务器有bug?
|
||||
seq = int32(uint16(seq))
|
||||
id = r.Sender
|
||||
}
|
||||
if r.GroupID != 0 {
|
||||
id = r.GroupID
|
||||
}
|
||||
return db.ToGlobalID(id, seq)
|
||||
}
|
||||
|
||||
// ToArrayMessage 将消息元素数组转为MSG数组以用于消息上报
|
||||
func ToArrayMessage(e []message.IMessageElement, source MessageSource) (r []global.MSG) {
|
||||
func ToArrayMessage(e []message.IMessageElement, source message.Source) (r []global.MSG) {
|
||||
r = make([]global.MSG, 0, len(e))
|
||||
m := &message.SendingMessage{Elements: e}
|
||||
reply := m.FirstOrNil(func(e message.IMessageElement) bool {
|
||||
_, ok := e.(*message.ReplyElement)
|
||||
return ok
|
||||
})
|
||||
if reply != nil && source.SourceType&(MessageSourceGroup|MessageSourcePrivate) != 0 {
|
||||
if reply != nil && source.SourceType&(message.SourceGroup|message.SourcePrivate) != 0 {
|
||||
replyElem := reply.(*message.ReplyElement)
|
||||
rid := int64(source.PrimaryID)
|
||||
if rid == 0 {
|
||||
rid = replyElem.Sender
|
||||
}
|
||||
if replyElem.GroupID != 0 {
|
||||
rid = replyElem.GroupID
|
||||
}
|
||||
id := replyID(replyElem, source)
|
||||
if base.ExtraReplyData {
|
||||
r = append(r, global.MSG{
|
||||
"type": "reply",
|
||||
"data": map[string]string{
|
||||
"id": strconv.FormatInt(int64(db.ToGlobalID(rid, replyElem.ReplySeq)), 10),
|
||||
"id": strconv.FormatInt(int64(id), 10),
|
||||
"seq": strconv.FormatInt(int64(replyElem.ReplySeq), 10),
|
||||
"qq": strconv.FormatInt(replyElem.Sender, 10),
|
||||
"time": strconv.FormatInt(int64(replyElem.Time), 10),
|
||||
@ -134,7 +117,7 @@ func ToArrayMessage(e []message.IMessageElement, source MessageSource) (r []glob
|
||||
} else {
|
||||
r = append(r, global.MSG{
|
||||
"type": "reply",
|
||||
"data": map[string]string{"id": strconv.FormatInt(int64(db.ToGlobalID(rid, replyElem.ReplySeq)), 10)},
|
||||
"data": map[string]string{"id": strconv.FormatInt(int64(id), 10)},
|
||||
})
|
||||
}
|
||||
}
|
||||
@ -261,7 +244,7 @@ func ToArrayMessage(e []message.IMessageElement, source MessageSource) (r []glob
|
||||
}
|
||||
|
||||
// ToStringMessage 将消息元素数组转为字符串以用于消息上报
|
||||
func ToStringMessage(e []message.IMessageElement, source MessageSource, isRaw ...bool) (r string) {
|
||||
func ToStringMessage(e []message.IMessageElement, source message.Source, isRaw ...bool) (r string) {
|
||||
sb := global.NewBuffer()
|
||||
sb.Reset()
|
||||
write := func(format string, a ...interface{}) {
|
||||
@ -277,22 +260,15 @@ func ToStringMessage(e []message.IMessageElement, source MessageSource, isRaw ..
|
||||
_, ok := e.(*message.ReplyElement)
|
||||
return ok
|
||||
})
|
||||
if reply != nil && source.SourceType&(MessageSourceGroup|MessageSourcePrivate) != 0 {
|
||||
if reply != nil && source.SourceType&(message.SourceGroup|message.SourcePrivate) != 0 {
|
||||
replyElem := reply.(*message.ReplyElement)
|
||||
rid := int64(source.PrimaryID)
|
||||
if rid == 0 {
|
||||
rid = replyElem.Sender
|
||||
}
|
||||
if replyElem.GroupID != 0 {
|
||||
rid = replyElem.GroupID
|
||||
}
|
||||
id := replyID(replyElem, source)
|
||||
if base.ExtraReplyData {
|
||||
write("[CQ:reply,id=%d,seq=%d,qq=%d,time=%d,text=%s]",
|
||||
db.ToGlobalID(rid, replyElem.ReplySeq),
|
||||
replyElem.ReplySeq, replyElem.Sender, replyElem.Time,
|
||||
CQCodeEscapeValue(ToStringMessage(replyElem.Elements, source)))
|
||||
id, replyElem.ReplySeq, replyElem.Sender, replyElem.Time,
|
||||
cqcode.EscapeValue(ToStringMessage(replyElem.Elements, source)))
|
||||
} else {
|
||||
write("[CQ:reply,id=%d]", db.ToGlobalID(rid, replyElem.ReplySeq))
|
||||
write("[CQ:reply,id=%d]", id)
|
||||
}
|
||||
}
|
||||
for i, elem := range e {
|
||||
@ -305,7 +281,7 @@ func ToStringMessage(e []message.IMessageElement, source MessageSource, isRaw ..
|
||||
}
|
||||
}
|
||||
case *message.TextElement:
|
||||
sb.WriteString(CQCodeEscapeText(o.Content))
|
||||
sb.WriteString(cqcode.EscapeText(o.Content))
|
||||
case *message.AtElement:
|
||||
if o.Target == 0 {
|
||||
write("[CQ:at,qq=all]")
|
||||
@ -322,13 +298,13 @@ func ToStringMessage(e []message.IMessageElement, source MessageSource, isRaw ..
|
||||
if ur {
|
||||
write(`[CQ:record,file=%s]`, o.Name)
|
||||
} else {
|
||||
write(`[CQ:record,file=%s,url=%s]`, o.Name, CQCodeEscapeValue(o.Url))
|
||||
write(`[CQ:record,file=%s,url=%s]`, o.Name, cqcode.EscapeValue(o.Url))
|
||||
}
|
||||
case *message.ShortVideoElement:
|
||||
if ur {
|
||||
write(`[CQ:video,file=%s]`, o.Name)
|
||||
} else {
|
||||
write(`[CQ:video,file=%s,url=%s]`, o.Name, CQCodeEscapeValue(o.Url))
|
||||
write(`[CQ:video,file=%s,url=%s]`, o.Name, cqcode.EscapeValue(o.Url))
|
||||
}
|
||||
case *message.GroupImageElement:
|
||||
var arg string
|
||||
@ -341,7 +317,7 @@ func ToStringMessage(e []message.IMessageElement, source MessageSource, isRaw ..
|
||||
if ur {
|
||||
write("[CQ:image,file=%s%s]", hex.EncodeToString(o.Md5)+".image", arg)
|
||||
} else {
|
||||
write("[CQ:image,file=%s,url=%s%s]", hex.EncodeToString(o.Md5)+".image", CQCodeEscapeValue(o.Url), arg)
|
||||
write("[CQ:image,file=%s,url=%s%s]", hex.EncodeToString(o.Md5)+".image", cqcode.EscapeValue(o.Url), arg)
|
||||
}
|
||||
case *message.FriendImageElement:
|
||||
var arg string
|
||||
@ -351,22 +327,36 @@ func ToStringMessage(e []message.IMessageElement, source MessageSource, isRaw ..
|
||||
if ur {
|
||||
write("[CQ:image,file=%s%s]", hex.EncodeToString(o.Md5)+".image", arg)
|
||||
} else {
|
||||
write("[CQ:image,file=%s,url=%s%s]", hex.EncodeToString(o.Md5)+".image", CQCodeEscapeValue(o.Url), arg)
|
||||
write("[CQ:image,file=%s,url=%s%s]", hex.EncodeToString(o.Md5)+".image", cqcode.EscapeValue(o.Url), arg)
|
||||
}
|
||||
case *LocalImageElement:
|
||||
var arg string
|
||||
if o.Flash {
|
||||
arg = ",type=flash"
|
||||
}
|
||||
data, err := os.ReadFile(o.File)
|
||||
if err == nil {
|
||||
m := md5.Sum(data)
|
||||
if ur {
|
||||
write("[CQ:image,file=%s%s]", hex.EncodeToString(m[:])+".image", arg)
|
||||
} else {
|
||||
write("[CQ:image,file=%s,url=%s%s]", hex.EncodeToString(m[:])+".image", cqcode.EscapeValue(o.URL), arg)
|
||||
}
|
||||
}
|
||||
case *message.GuildImageElement:
|
||||
write("[CQ:image,file=%s,url=%s]", hex.EncodeToString(o.Md5)+".image", CQCodeEscapeValue(o.Url))
|
||||
write("[CQ:image,file=%s,url=%s]", hex.EncodeToString(o.Md5)+".image", cqcode.EscapeValue(o.Url))
|
||||
case *message.DiceElement:
|
||||
write("[CQ:dice,value=%v]", o.Value)
|
||||
case *message.MarketFaceElement:
|
||||
sb.WriteString(o.Name)
|
||||
case *message.ServiceElement:
|
||||
if isOk := strings.Contains(o.Content, "<?xml"); isOk {
|
||||
write(`[CQ:xml,data=%s,resid=%d]`, CQCodeEscapeValue(o.Content), o.Id)
|
||||
write(`[CQ:xml,data=%s,resid=%d]`, cqcode.EscapeValue(o.Content), o.Id)
|
||||
} else {
|
||||
write(`[CQ:json,data=%s,resid=%d]`, CQCodeEscapeValue(o.Content), o.Id)
|
||||
write(`[CQ:json,data=%s,resid=%d]`, cqcode.EscapeValue(o.Content), o.Id)
|
||||
}
|
||||
case *message.LightAppElement:
|
||||
write(`[CQ:json,data=%s]`, CQCodeEscapeValue(o.Content))
|
||||
write(`[CQ:json,data=%s]`, cqcode.EscapeValue(o.Content))
|
||||
case *message.AnimatedSticker:
|
||||
write(`[CQ:face,id=%d,type=sticker]`, o.ID)
|
||||
}
|
||||
@ -495,7 +485,7 @@ func ToMessageContent(e []message.IMessageElement) (r []global.MSG) {
|
||||
}
|
||||
|
||||
// ConvertStringMessage 将消息字符串转为消息元素数组
|
||||
func (bot *CQBot) ConvertStringMessage(raw string, sourceType MessageSourceType) (r []message.IMessageElement) {
|
||||
func (bot *CQBot) ConvertStringMessage(raw string, sourceType message.SourceType) (r []message.IMessageElement) {
|
||||
var t, key string
|
||||
d := map[string]string{}
|
||||
|
||||
@ -610,11 +600,11 @@ func (bot *CQBot) ConvertStringMessage(raw string, sourceType MessageSourceType)
|
||||
}
|
||||
if i > 0 {
|
||||
if base.SplitURL {
|
||||
for _, txt := range param.SplitURL(CQCodeUnescapeText(raw[:i])) {
|
||||
for _, txt := range param.SplitURL(cqcode.UnescapeText(raw[:i])) {
|
||||
r = append(r, message.NewText(txt))
|
||||
}
|
||||
} else {
|
||||
r = append(r, message.NewText(CQCodeUnescapeText(raw[:i])))
|
||||
r = append(r, message.NewText(cqcode.UnescapeText(raw[:i])))
|
||||
}
|
||||
}
|
||||
|
||||
@ -659,7 +649,7 @@ func (bot *CQBot) ConvertStringMessage(raw string, sourceType MessageSourceType)
|
||||
if i+1 > len(raw) {
|
||||
return
|
||||
}
|
||||
d[key] = CQCodeUnescapeValue(raw[:i])
|
||||
d[key] = cqcode.UnescapeValue(raw[:i])
|
||||
raw = raw[i:]
|
||||
i = 0
|
||||
}
|
||||
@ -668,11 +658,11 @@ func (bot *CQBot) ConvertStringMessage(raw string, sourceType MessageSourceType)
|
||||
}
|
||||
|
||||
// ConvertObjectMessage 将消息JSON对象转为消息元素数组
|
||||
func (bot *CQBot) ConvertObjectMessage(m gjson.Result, sourceType MessageSourceType) (r []message.IMessageElement) {
|
||||
func (bot *CQBot) ConvertObjectMessage(m gjson.Result, sourceType message.SourceType) (r []message.IMessageElement) {
|
||||
d := make(map[string]string)
|
||||
convertElem := func(e gjson.Result) {
|
||||
t := e.Get("type").Str
|
||||
if t == "reply" && sourceType&(MessageSourceGroup|MessageSourcePrivate) != 0 {
|
||||
if t == "reply" && sourceType&(message.SourceGroup|message.SourcePrivate) != 0 {
|
||||
if len(r) > 0 {
|
||||
if _, ok := r[0].(*message.ReplyElement); ok {
|
||||
log.Warnf("警告: 一条信息只能包含一个 Reply 元素.")
|
||||
@ -788,14 +778,20 @@ func (bot *CQBot) ConvertObjectMessage(m gjson.Result, sourceType MessageSourceT
|
||||
}
|
||||
|
||||
// ConvertContentMessage 将数据库用的 content 转换为消息元素数组
|
||||
func (bot *CQBot) ConvertContentMessage(content []global.MSG, sourceType MessageSourceType) (r []message.IMessageElement) {
|
||||
func (bot *CQBot) ConvertContentMessage(content []global.MSG, sourceType message.SourceType) (r []message.IMessageElement) {
|
||||
for _, c := range content {
|
||||
data := c["data"].(global.MSG)
|
||||
switch c["type"] {
|
||||
case "text":
|
||||
r = append(r, message.NewText(data["text"].(string)))
|
||||
case "image":
|
||||
e, err := bot.makeImageOrVideoElem(map[string]string{"file": data["file"].(string)}, false, sourceType)
|
||||
u, ok := data["url"]
|
||||
d := make(map[string]string, 2)
|
||||
if ok {
|
||||
d["url"] = u.(string)
|
||||
}
|
||||
d["file"] = data["file"].(string)
|
||||
e, err := bot.makeImageOrVideoElem(d, false, sourceType)
|
||||
if err != nil {
|
||||
log.Warnf("make image elem error: %v", err)
|
||||
continue
|
||||
@ -861,7 +857,7 @@ func (bot *CQBot) ConvertContentMessage(content []global.MSG, sourceType Message
|
||||
// 返回 interface{} 存在三种类型
|
||||
//
|
||||
// message.IMessageElement []message.IMessageElement nil
|
||||
func (bot *CQBot) ToElement(t string, d map[string]string, sourceType MessageSourceType) (m interface{}, err error) {
|
||||
func (bot *CQBot) ToElement(t string, d map[string]string, sourceType message.SourceType) (m interface{}, err error) {
|
||||
switch t {
|
||||
case "text":
|
||||
if base.SplitURL {
|
||||
@ -932,8 +928,6 @@ func (bot *CQBot) ToElement(t string, d map[string]string, sourceType MessageSou
|
||||
if !lawful {
|
||||
return nil, errors.New("audio type error: " + mt)
|
||||
}
|
||||
}
|
||||
if !global.IsAMRorSILK(data) {
|
||||
data, err = global.EncoderSilk(data)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
@ -954,7 +948,10 @@ func (bot *CQBot) ToElement(t string, d map[string]string, sourceType MessageSou
|
||||
if qq == "all" {
|
||||
return message.AtAll(), nil
|
||||
}
|
||||
t, _ := strconv.ParseInt(qq, 10, 64)
|
||||
t, err := strconv.ParseInt(qq, 10, 64)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
name := strings.TrimSpace(d["name"])
|
||||
if len(name) > 0 {
|
||||
name = "@" + name
|
||||
@ -1041,7 +1038,7 @@ func (bot *CQBot) ToElement(t string, d map[string]string, sourceType MessageSou
|
||||
}, nil
|
||||
}
|
||||
xml := fmt.Sprintf(`<?xml version='1.0' encoding='UTF-8' standalone='yes' ?><msg serviceID="2" templateID="1" action="web" brief="[分享] %s" sourceMsgId="0" url="%s" flag="0" adverSign="0" multiMsgFlag="0"><item layout="2"><audio cover="%s" src="%s"/><title>%s</title><summary>%s</summary></item><source name="音乐" icon="https://i.gtimg.cn/open/app_icon/01/07/98/56/1101079856_100_m.png" url="http://web.p.qq.com/qqmpmobile/aio/app.html?id=1101079856" action="app" a_actionData="com.tencent.qqmusic" i_actionData="tencent1101079856://" appid="1101079856" /></msg>`,
|
||||
XMLEscape(d["title"]), d["url"], d["image"], d["audio"], XMLEscape(d["title"]), XMLEscape(d["content"]))
|
||||
utils.XmlEscape(d["title"]), d["url"], d["image"], d["audio"], utils.XmlEscape(d["title"]), utils.XmlEscape(d["content"]))
|
||||
return &message.ServiceElement{
|
||||
Id: 60,
|
||||
Content: xml,
|
||||
@ -1058,7 +1055,7 @@ func (bot *CQBot) ToElement(t string, d map[string]string, sourceType MessageSou
|
||||
return message.NewDice(int32(i)), nil
|
||||
case "xml":
|
||||
resID := d["resid"]
|
||||
template := CQCodeEscapeValue(d["data"])
|
||||
template := cqcode.EscapeValue(d["data"])
|
||||
i, _ := strconv.ParseInt(resID, 10, 64)
|
||||
msg := message.NewRichXml(template, i)
|
||||
return msg, nil
|
||||
@ -1092,7 +1089,7 @@ func (bot *CQBot) ToElement(t string, d map[string]string, sourceType MessageSou
|
||||
if err != nil {
|
||||
return nil, errors.New("send cardimage faild")
|
||||
}
|
||||
return bot.makeShowPic(img, source, brief, icon, minWidth, minHeight, maxWidth, maxHeight, sourceType == MessageSourceGroup)
|
||||
return bot.makeShowPic(img, source, brief, icon, minWidth, minHeight, maxWidth, maxHeight, sourceType == message.SourceGroup)
|
||||
case "video":
|
||||
file, err := bot.makeImageOrVideoElem(d, true, sourceType)
|
||||
if err != nil {
|
||||
@ -1144,112 +1141,13 @@ func (bot *CQBot) ToElement(t string, d map[string]string, sourceType MessageSou
|
||||
}
|
||||
}
|
||||
|
||||
// XMLEscape 将字符串c转义为XML字符串
|
||||
func XMLEscape(c string) string {
|
||||
buf := global.NewBuffer()
|
||||
defer global.PutBuffer(buf)
|
||||
_ = xml2.EscapeText(buf, utils.S2B(c))
|
||||
return buf.String()
|
||||
}
|
||||
|
||||
/*CQCodeEscapeText 将字符串raw中部分字符转义
|
||||
|
||||
& -> &
|
||||
|
||||
[ -> [
|
||||
|
||||
] -> ]
|
||||
|
||||
*/
|
||||
func CQCodeEscapeText(s string) string {
|
||||
count := strings.Count(s, "&")
|
||||
count += strings.Count(s, "[")
|
||||
count += strings.Count(s, "]")
|
||||
if count == 0 {
|
||||
return s
|
||||
}
|
||||
|
||||
// Apply replacements to buffer.
|
||||
var b strings.Builder
|
||||
b.Grow(len(s) + count*4)
|
||||
start := 0
|
||||
for i := 0; i < count; i++ {
|
||||
j := start
|
||||
for index, r := range s[start:] {
|
||||
if r == '&' || r == '[' || r == ']' {
|
||||
j += index
|
||||
break
|
||||
}
|
||||
}
|
||||
b.WriteString(s[start:j])
|
||||
switch s[j] {
|
||||
case '&':
|
||||
b.WriteString("&")
|
||||
case '[':
|
||||
b.WriteString("[")
|
||||
case ']':
|
||||
b.WriteString("]")
|
||||
}
|
||||
start = j + 1
|
||||
}
|
||||
b.WriteString(s[start:])
|
||||
return b.String()
|
||||
}
|
||||
|
||||
/*CQCodeEscapeValue 将字符串value中部分字符转义
|
||||
|
||||
, -> ,
|
||||
|
||||
& -> &
|
||||
|
||||
[ -> [
|
||||
|
||||
] -> ]
|
||||
|
||||
*/
|
||||
func CQCodeEscapeValue(value string) string {
|
||||
ret := CQCodeEscapeText(value)
|
||||
ret = strings.ReplaceAll(ret, ",", ",")
|
||||
return ret
|
||||
}
|
||||
|
||||
/*CQCodeUnescapeText 将字符串content中部分字符反转义
|
||||
|
||||
& -> &
|
||||
|
||||
[ -> [
|
||||
|
||||
] -> ]
|
||||
|
||||
*/
|
||||
func CQCodeUnescapeText(content string) string {
|
||||
ret := content
|
||||
ret = strings.ReplaceAll(ret, "[", "[")
|
||||
ret = strings.ReplaceAll(ret, "]", "]")
|
||||
ret = strings.ReplaceAll(ret, "&", "&")
|
||||
return ret
|
||||
}
|
||||
|
||||
/*CQCodeUnescapeValue 将字符串content中部分字符反转义
|
||||
|
||||
, -> ,
|
||||
|
||||
& -> &
|
||||
|
||||
[ -> [
|
||||
|
||||
] -> ]
|
||||
|
||||
*/
|
||||
func CQCodeUnescapeValue(content string) string {
|
||||
ret := strings.ReplaceAll(content, ",", ",")
|
||||
ret = CQCodeUnescapeText(ret)
|
||||
return ret
|
||||
}
|
||||
|
||||
// makeImageOrVideoElem 图片 elem 生成器,单独拎出来,用于公用
|
||||
func (bot *CQBot) makeImageOrVideoElem(d map[string]string, video bool, sourceType MessageSourceType) (message.IMessageElement, error) {
|
||||
func (bot *CQBot) makeImageOrVideoElem(d map[string]string, video bool, sourceType message.SourceType) (message.IMessageElement, error) {
|
||||
f := d["file"]
|
||||
u, ok := d["url"]
|
||||
if !ok {
|
||||
u = ""
|
||||
}
|
||||
if strings.HasPrefix(f, "http") {
|
||||
hash := md5.Sum([]byte(f))
|
||||
cacheFile := path.Join(global.CachePath, hex.EncodeToString(hash[:])+".cache")
|
||||
@ -1272,7 +1170,7 @@ func (bot *CQBot) makeImageOrVideoElem(d map[string]string, video bool, sourceTy
|
||||
if video {
|
||||
return &LocalVideoElement{File: cacheFile}, nil
|
||||
}
|
||||
return &LocalImageElement{File: cacheFile}, nil
|
||||
return &LocalImageElement{File: cacheFile, URL: f}, nil
|
||||
}
|
||||
if strings.HasPrefix(f, "file") {
|
||||
fu, err := url.Parse(f)
|
||||
@ -1298,14 +1196,14 @@ func (bot *CQBot) makeImageOrVideoElem(d map[string]string, video bool, sourceTy
|
||||
if info.Size() == 0 || info.Size() >= maxImageSize {
|
||||
return nil, errors.New("invalid image size")
|
||||
}
|
||||
return &LocalImageElement{File: fu.Path}, nil
|
||||
return &LocalImageElement{File: fu.Path, URL: f}, nil
|
||||
}
|
||||
if strings.HasPrefix(f, "base64") && !video {
|
||||
b, err := param.Base64DecodeString(strings.TrimPrefix(f, "base64://"))
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return &LocalImageElement{Stream: bytes.NewReader(b)}, nil
|
||||
return &LocalImageElement{Stream: bytes.NewReader(b), URL: f}, nil
|
||||
}
|
||||
rawPath := path.Join(global.ImagePath, f)
|
||||
if video {
|
||||
@ -1328,7 +1226,7 @@ func (bot *CQBot) makeImageOrVideoElem(d map[string]string, video bool, sourceTy
|
||||
return bot.readVideoCache(b), nil
|
||||
}
|
||||
// 目前频道内上传的图片均无法被查询到, 需要单独处理
|
||||
if sourceType == MessageSourceGuildChannel {
|
||||
if sourceType == message.SourceGuildChannel {
|
||||
cacheFile := path.Join(global.ImagePath, "guild-images", f)
|
||||
if global.PathExists(cacheFile) {
|
||||
return &LocalImageElement{File: cacheFile}, nil
|
||||
@ -1354,7 +1252,7 @@ func (bot *CQBot) makeImageOrVideoElem(d map[string]string, video bool, sourceTy
|
||||
return nil, errors.New("invalid image")
|
||||
}
|
||||
if path.Ext(rawPath) != ".image" {
|
||||
return &LocalImageElement{File: rawPath}, nil
|
||||
return &LocalImageElement{File: rawPath, URL: u}, nil
|
||||
}
|
||||
b, err := os.ReadFile(rawPath)
|
||||
if err != nil {
|
||||
@ -1363,7 +1261,7 @@ func (bot *CQBot) makeImageOrVideoElem(d map[string]string, video bool, sourceTy
|
||||
return bot.readImageCache(b, sourceType)
|
||||
}
|
||||
|
||||
func (bot *CQBot) readImageCache(b []byte, sourceType MessageSourceType) (message.IMessageElement, error) {
|
||||
func (bot *CQBot) readImageCache(b []byte, sourceType message.SourceType) (message.IMessageElement, error) {
|
||||
var err error
|
||||
if len(b) < 20 {
|
||||
return nil, errors.New("invalid cache")
|
||||
@ -1373,38 +1271,27 @@ func (bot *CQBot) readImageCache(b []byte, sourceType MessageSourceType) (messag
|
||||
size := r.ReadInt32()
|
||||
r.ReadString()
|
||||
imageURL := r.ReadString()
|
||||
if size == 0 {
|
||||
if imageURL != "" {
|
||||
return bot.makeImageOrVideoElem(map[string]string{"file": imageURL}, false, sourceType)
|
||||
}
|
||||
return nil, errors.New("img size is 0")
|
||||
}
|
||||
if len(hash) != 16 {
|
||||
return nil, errors.New("invalid hash")
|
||||
if size == 0 && imageURL != "" {
|
||||
return bot.makeImageOrVideoElem(map[string]string{"file": imageURL}, false, sourceType)
|
||||
}
|
||||
var rsp message.IMessageElement
|
||||
if sourceType == MessageSourceGroup {
|
||||
switch sourceType { // nolint:exhaustive
|
||||
case message.SourceGroup:
|
||||
rsp, err = bot.Client.QueryGroupImage(int64(rand.Uint32()), hash, size)
|
||||
goto ok
|
||||
}
|
||||
if sourceType == MessageSourceGuildChannel {
|
||||
case message.SourceGuildChannel:
|
||||
if len(bot.Client.GuildService.Guilds) == 0 {
|
||||
err = errors.New("cannot query guild image: not any joined guild")
|
||||
goto ok
|
||||
break
|
||||
}
|
||||
guild := bot.Client.GuildService.Guilds[0]
|
||||
rsp, err = bot.Client.GuildService.QueryImage(guild.GuildId, guild.Channels[0].ChannelId, hash, uint64(size))
|
||||
goto ok
|
||||
default:
|
||||
rsp, err = bot.Client.QueryFriendImage(int64(rand.Uint32()), hash, size)
|
||||
}
|
||||
rsp, err = bot.Client.QueryFriendImage(int64(rand.Uint32()), hash, size)
|
||||
ok:
|
||||
if err != nil {
|
||||
if imageURL != "" {
|
||||
return bot.makeImageOrVideoElem(map[string]string{"file": imageURL}, false, sourceType)
|
||||
}
|
||||
return nil, err
|
||||
if err != nil && imageURL != "" {
|
||||
return bot.makeImageOrVideoElem(map[string]string{"file": imageURL}, false, sourceType)
|
||||
}
|
||||
return rsp, nil
|
||||
return rsp, err
|
||||
}
|
||||
|
||||
func (bot *CQBot) readVideoCache(b []byte) message.IMessageElement {
|
||||
@ -1426,9 +1313,13 @@ func (bot *CQBot) makeShowPic(elem message.IMessageElement, source string, brief
|
||||
if brief == "" {
|
||||
brief = "[分享]我看到一张很赞的图片,分享给你,快来看!"
|
||||
}
|
||||
if _, ok := elem.(*LocalImageElement); ok {
|
||||
if local, ok := elem.(*LocalImageElement); ok {
|
||||
r := rand.Uint32()
|
||||
e, err := bot.uploadMedia(elem, int64(r), group)
|
||||
typ := message.SourceGroup
|
||||
if !group {
|
||||
typ = message.SourcePrivate
|
||||
}
|
||||
e, err := bot.uploadLocalImage(message.Source{SourceType: typ, PrimaryID: int64(r)}, local)
|
||||
if err != nil {
|
||||
log.Warnf("警告: 图片上传失败: %v", err)
|
||||
return nil, err
|
||||
|
97
coolq/cqcode/escape.go
Normal file
97
coolq/cqcode/escape.go
Normal file
@ -0,0 +1,97 @@
|
||||
// Package cqcode provides CQCode util functions.
|
||||
package cqcode
|
||||
|
||||
import "strings"
|
||||
|
||||
/*EscapeText 将字符串raw中部分字符转义
|
||||
|
||||
& -> &
|
||||
|
||||
[ -> [
|
||||
|
||||
] -> ]
|
||||
|
||||
*/
|
||||
func EscapeText(s string) string {
|
||||
count := strings.Count(s, "&")
|
||||
count += strings.Count(s, "[")
|
||||
count += strings.Count(s, "]")
|
||||
if count == 0 {
|
||||
return s
|
||||
}
|
||||
|
||||
// Apply replacements to buffer.
|
||||
var b strings.Builder
|
||||
b.Grow(len(s) + count*4)
|
||||
start := 0
|
||||
for i := 0; i < count; i++ {
|
||||
j := start
|
||||
for index, r := range s[start:] {
|
||||
if r == '&' || r == '[' || r == ']' {
|
||||
j += index
|
||||
break
|
||||
}
|
||||
}
|
||||
b.WriteString(s[start:j])
|
||||
switch s[j] {
|
||||
case '&':
|
||||
b.WriteString("&")
|
||||
case '[':
|
||||
b.WriteString("[")
|
||||
case ']':
|
||||
b.WriteString("]")
|
||||
}
|
||||
start = j + 1
|
||||
}
|
||||
b.WriteString(s[start:])
|
||||
return b.String()
|
||||
}
|
||||
|
||||
/*EscapeValue 将字符串value中部分字符转义
|
||||
|
||||
, -> ,
|
||||
|
||||
& -> &
|
||||
|
||||
[ -> [
|
||||
|
||||
] -> ]
|
||||
|
||||
*/
|
||||
func EscapeValue(value string) string {
|
||||
ret := EscapeText(value)
|
||||
return strings.ReplaceAll(ret, ",", ",")
|
||||
}
|
||||
|
||||
/*UnescapeText 将字符串content中部分字符反转义
|
||||
|
||||
& -> &
|
||||
|
||||
[ -> [
|
||||
|
||||
] -> ]
|
||||
|
||||
*/
|
||||
func UnescapeText(content string) string {
|
||||
ret := content
|
||||
ret = strings.ReplaceAll(ret, "[", "[")
|
||||
ret = strings.ReplaceAll(ret, "]", "]")
|
||||
ret = strings.ReplaceAll(ret, "&", "&")
|
||||
return ret
|
||||
}
|
||||
|
||||
/*UnescapeValue 将字符串content中部分字符反转义
|
||||
|
||||
, -> ,
|
||||
|
||||
& -> &
|
||||
|
||||
[ -> [
|
||||
|
||||
] -> ]
|
||||
|
||||
*/
|
||||
func UnescapeValue(content string) string {
|
||||
ret := strings.ReplaceAll(content, ",", ",")
|
||||
return UnescapeText(ret)
|
||||
}
|
@ -5,15 +5,18 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/Mrs4s/MiraiGo/message"
|
||||
"github.com/Mrs4s/MiraiGo/utils"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/tidwall/gjson"
|
||||
|
||||
"github.com/Mrs4s/go-cqhttp/coolq/cqcode"
|
||||
)
|
||||
|
||||
var bot = CQBot{}
|
||||
|
||||
func TestCQBot_ConvertStringMessage(t *testing.T) {
|
||||
for _, v := range bot.ConvertStringMessage(`[CQ:face,id=115,text=111][CQ:face,id=217]] [CQ:text,text=123] [`, MessageSourcePrivate) {
|
||||
for _, v := range bot.ConvertStringMessage(`[CQ:face,id=115,text=111][CQ:face,id=217]] [CQ:text,text=123] [`, message.SourcePrivate) {
|
||||
fmt.Println(v)
|
||||
}
|
||||
}
|
||||
@ -25,14 +28,14 @@ var (
|
||||
|
||||
func BenchmarkCQBot_ConvertStringMessage(b *testing.B) {
|
||||
for i := 0; i < b.N; i++ {
|
||||
bot.ConvertStringMessage(bench, MessageSourcePrivate)
|
||||
bot.ConvertStringMessage(bench, message.SourcePrivate)
|
||||
}
|
||||
b.SetBytes(int64(len(bench)))
|
||||
}
|
||||
|
||||
func BenchmarkCQBot_ConvertObjectMessage(b *testing.B) {
|
||||
for i := 0; i < b.N; i++ {
|
||||
bot.ConvertObjectMessage(benchArray, MessageSourcePrivate)
|
||||
bot.ConvertObjectMessage(benchArray, message.SourcePrivate)
|
||||
}
|
||||
}
|
||||
|
||||
@ -41,7 +44,7 @@ const bText = `123456789[]&987654321[]&987654321[]&987654321[]&987654321[]&98765
|
||||
func BenchmarkCQCodeEscapeText(b *testing.B) {
|
||||
for i := 0; i < b.N; i++ {
|
||||
ret := bText
|
||||
CQCodeEscapeText(ret)
|
||||
cqcode.EscapeText(ret)
|
||||
}
|
||||
}
|
||||
|
||||
@ -61,6 +64,6 @@ func TestCQCodeEscapeText(t *testing.T) {
|
||||
ret = strings.ReplaceAll(ret, "&", "&")
|
||||
ret = strings.ReplaceAll(ret, "[", "[")
|
||||
ret = strings.ReplaceAll(ret, "]", "]")
|
||||
assert.Equal(t, ret, CQCodeEscapeText(rs))
|
||||
assert.Equal(t, ret, cqcode.EscapeText(rs))
|
||||
}
|
||||
}
|
||||
|
@ -21,7 +21,7 @@ import (
|
||||
)
|
||||
|
||||
// ToFormattedMessage 将给定[]message.IMessageElement转换为通过coolq.SetMessageFormat所定义的消息上报格式
|
||||
func ToFormattedMessage(e []message.IMessageElement, source MessageSource, isRaw ...bool) (r interface{}) {
|
||||
func ToFormattedMessage(e []message.IMessageElement, source message.Source, isRaw ...bool) (r interface{}) {
|
||||
if base.PostFormat == "string" {
|
||||
r = ToStringMessage(e, source, isRaw...)
|
||||
} else if base.PostFormat == "array" {
|
||||
@ -32,9 +32,9 @@ func ToFormattedMessage(e []message.IMessageElement, source MessageSource, isRaw
|
||||
|
||||
func (bot *CQBot) privateMessageEvent(c *client.QQClient, m *message.PrivateMessage) {
|
||||
bot.checkMedia(m.Elements, m.Sender.Uin)
|
||||
source := MessageSource{
|
||||
SourceType: MessageSourcePrivate,
|
||||
PrimaryID: uint64(m.Sender.Uin),
|
||||
source := message.Source{
|
||||
SourceType: message.SourcePrivate,
|
||||
PrimaryID: m.Sender.Uin,
|
||||
}
|
||||
cqm := ToStringMessage(m.Elements, source, true)
|
||||
id := bot.InsertPrivateMessage(m)
|
||||
@ -89,9 +89,9 @@ func (bot *CQBot) groupMessageEvent(c *client.QQClient, m *message.GroupMessage)
|
||||
return
|
||||
}
|
||||
}
|
||||
source := MessageSource{
|
||||
SourceType: MessageSourceGroup,
|
||||
PrimaryID: uint64(m.GroupCode),
|
||||
source := message.Source{
|
||||
SourceType: message.SourceGroup,
|
||||
PrimaryID: m.GroupCode,
|
||||
}
|
||||
cqm := ToStringMessage(m.Elements, source, true)
|
||||
id := bot.InsertGroupMessage(m)
|
||||
@ -107,9 +107,9 @@ func (bot *CQBot) groupMessageEvent(c *client.QQClient, m *message.GroupMessage)
|
||||
func (bot *CQBot) tempMessageEvent(c *client.QQClient, e *client.TempMessageEvent) {
|
||||
m := e.Message
|
||||
bot.checkMedia(m.Elements, m.Sender.Uin)
|
||||
source := MessageSource{
|
||||
SourceType: MessageSourcePrivate,
|
||||
PrimaryID: uint64(e.Session.Sender),
|
||||
source := message.Source{
|
||||
SourceType: message.SourcePrivate,
|
||||
PrimaryID: e.Session.Sender,
|
||||
}
|
||||
cqm := ToStringMessage(m.Elements, source, true)
|
||||
bot.tempSessionCache.Store(m.Sender.Uin, e.Session)
|
||||
@ -149,10 +149,10 @@ func (bot *CQBot) guildChannelMessageEvent(c *client.QQClient, m *message.GuildC
|
||||
return
|
||||
}
|
||||
channel := guild.FindChannel(m.ChannelId)
|
||||
source := MessageSource{
|
||||
SourceType: MessageSourceGuildChannel,
|
||||
PrimaryID: m.GuildId,
|
||||
SubID: m.ChannelId,
|
||||
source := message.Source{
|
||||
SourceType: message.SourceGuildChannel,
|
||||
PrimaryID: int64(m.GuildId),
|
||||
SecondaryID: int64(m.ChannelId),
|
||||
}
|
||||
log.Infof("收到来自频道 %v(%v) 子频道 %v(%v) 内 %v(%v) 的消息: %v", guild.GuildName, guild.GuildId, channel.ChannelName, m.ChannelId, m.Sender.Nickname, m.Sender.TinyId, ToStringMessage(m.Elements, source, true))
|
||||
id := bot.InsertGuildChannelMessage(m)
|
||||
@ -181,7 +181,7 @@ func (bot *CQBot) guildMessageReactionsUpdatedEvent(c *client.QQClient, e *clien
|
||||
if guild == nil {
|
||||
return
|
||||
}
|
||||
msgID := encodeGuildMessageID(e.GuildId, e.ChannelId, e.MessageId, MessageSourceGuildChannel)
|
||||
msgID := encodeGuildMessageID(e.GuildId, e.ChannelId, e.MessageId, message.SourceGuildChannel)
|
||||
str := fmt.Sprintf("频道 %v(%v) 消息 %v 表情贴片已更新: ", guild.GuildName, guild.GuildId, msgID)
|
||||
currentReactions := make([]global.MSG, len(e.CurrentReactions))
|
||||
for i, r := range e.CurrentReactions {
|
||||
@ -228,7 +228,7 @@ func (bot *CQBot) guildChannelMessageRecalledEvent(c *client.QQClient, e *client
|
||||
log.Errorf("处理频道撤回事件时出现错误: 获取操作者资料时出现错误 %v", err)
|
||||
return
|
||||
}
|
||||
msgID := encodeGuildMessageID(e.GuildId, e.ChannelId, e.MessageId, MessageSourceGuildChannel)
|
||||
msgID := encodeGuildMessageID(e.GuildId, e.ChannelId, e.MessageId, message.SourceGuildChannel)
|
||||
log.Infof("用户 %v(%v) 撤回了频道 %v(%v) 子频道 %v(%v) 的消息 %v", operator.Nickname, operator.TinyId, guild.GuildName, guild.GuildId, channel.ChannelName, channel.ChannelId, msgID)
|
||||
bot.dispatchEventMessage(global.MSG{
|
||||
"post_type": "notice",
|
||||
|
@ -103,22 +103,14 @@ func ToGlobalID(code int64, msgID int32) int32 {
|
||||
return int32(crc32.ChecksumIEEE([]byte(fmt.Sprintf("%d-%d", code, msgID))))
|
||||
}
|
||||
|
||||
func (m *StoredGroupMessage) GetID() string { return m.ID }
|
||||
|
||||
func (m *StoredGroupMessage) GetType() string { return "group" }
|
||||
|
||||
func (m *StoredGroupMessage) GetGlobalID() int32 { return m.GlobalID }
|
||||
|
||||
func (m *StoredGroupMessage) GetID() string { return m.ID }
|
||||
func (m *StoredGroupMessage) GetType() string { return "group" }
|
||||
func (m *StoredGroupMessage) GetGlobalID() int32 { return m.GlobalID }
|
||||
func (m *StoredGroupMessage) GetAttribute() *StoredMessageAttribute { return m.Attribute }
|
||||
func (m *StoredGroupMessage) GetContent() []global.MSG { return m.Content }
|
||||
|
||||
func (m *StoredGroupMessage) GetContent() []global.MSG { return m.Content }
|
||||
|
||||
func (m *StoredPrivateMessage) GetID() string { return m.ID }
|
||||
|
||||
func (m *StoredPrivateMessage) GetType() string { return "private" }
|
||||
|
||||
func (m *StoredPrivateMessage) GetGlobalID() int32 { return m.GlobalID }
|
||||
|
||||
func (m *StoredPrivateMessage) GetID() string { return m.ID }
|
||||
func (m *StoredPrivateMessage) GetType() string { return "private" }
|
||||
func (m *StoredPrivateMessage) GetGlobalID() int32 { return m.GlobalID }
|
||||
func (m *StoredPrivateMessage) GetAttribute() *StoredMessageAttribute { return m.Attribute }
|
||||
|
||||
func (m *StoredPrivateMessage) GetContent() []global.MSG { return m.Content }
|
||||
func (m *StoredPrivateMessage) GetContent() []global.MSG { return m.Content }
|
||||
|
25
db/leveldb/const.go
Normal file
25
db/leveldb/const.go
Normal file
@ -0,0 +1,25 @@
|
||||
package leveldb
|
||||
|
||||
const dataVersion = 1
|
||||
|
||||
const (
|
||||
group = 0x0
|
||||
private = 0x1
|
||||
guildChannel = 0x2
|
||||
)
|
||||
|
||||
type coder byte
|
||||
|
||||
const (
|
||||
coderNil coder = iota
|
||||
coderInt
|
||||
coderUint
|
||||
coderInt32
|
||||
coderUint32
|
||||
coderInt64
|
||||
coderUint64
|
||||
coderString
|
||||
coderMSG // global.MSG
|
||||
coderArrayMSG // []global.MSG
|
||||
coderStruct // struct{}
|
||||
)
|
177
db/leveldb/database_gen.go
Normal file
177
db/leveldb/database_gen.go
Normal file
@ -0,0 +1,177 @@
|
||||
// Code generated by mkrw.go; DO NOT EDIT.
|
||||
|
||||
package leveldb
|
||||
|
||||
import "github.com/Mrs4s/go-cqhttp/db"
|
||||
|
||||
func (w *writer) writeStoredGroupMessage(x *db.StoredGroupMessage) {
|
||||
if x == nil {
|
||||
w.nil()
|
||||
return
|
||||
}
|
||||
w.coder(coderStruct)
|
||||
w.string(x.ID)
|
||||
w.int32(x.GlobalID)
|
||||
w.writeStoredMessageAttribute(x.Attribute)
|
||||
w.string(x.SubType)
|
||||
w.writeQuotedInfo(x.QuotedInfo)
|
||||
w.int64(x.GroupCode)
|
||||
w.string(x.AnonymousID)
|
||||
w.arrayMsg(x.Content)
|
||||
}
|
||||
|
||||
func (r *reader) readStoredGroupMessage() *db.StoredGroupMessage {
|
||||
coder := r.coder()
|
||||
if coder == coderNil {
|
||||
return nil
|
||||
}
|
||||
x := &db.StoredGroupMessage{}
|
||||
x.ID = r.string()
|
||||
x.GlobalID = r.int32()
|
||||
x.Attribute = r.readStoredMessageAttribute()
|
||||
x.SubType = r.string()
|
||||
x.QuotedInfo = r.readQuotedInfo()
|
||||
x.GroupCode = r.int64()
|
||||
x.AnonymousID = r.string()
|
||||
x.Content = r.arrayMsg()
|
||||
return x
|
||||
}
|
||||
|
||||
func (w *writer) writeStoredPrivateMessage(x *db.StoredPrivateMessage) {
|
||||
if x == nil {
|
||||
w.nil()
|
||||
return
|
||||
}
|
||||
w.coder(coderStruct)
|
||||
w.string(x.ID)
|
||||
w.int32(x.GlobalID)
|
||||
w.writeStoredMessageAttribute(x.Attribute)
|
||||
w.string(x.SubType)
|
||||
w.writeQuotedInfo(x.QuotedInfo)
|
||||
w.int64(x.SessionUin)
|
||||
w.int64(x.TargetUin)
|
||||
w.arrayMsg(x.Content)
|
||||
}
|
||||
|
||||
func (r *reader) readStoredPrivateMessage() *db.StoredPrivateMessage {
|
||||
coder := r.coder()
|
||||
if coder == coderNil {
|
||||
return nil
|
||||
}
|
||||
x := &db.StoredPrivateMessage{}
|
||||
x.ID = r.string()
|
||||
x.GlobalID = r.int32()
|
||||
x.Attribute = r.readStoredMessageAttribute()
|
||||
x.SubType = r.string()
|
||||
x.QuotedInfo = r.readQuotedInfo()
|
||||
x.SessionUin = r.int64()
|
||||
x.TargetUin = r.int64()
|
||||
x.Content = r.arrayMsg()
|
||||
return x
|
||||
}
|
||||
|
||||
func (w *writer) writeStoredGuildChannelMessage(x *db.StoredGuildChannelMessage) {
|
||||
if x == nil {
|
||||
w.nil()
|
||||
return
|
||||
}
|
||||
w.coder(coderStruct)
|
||||
w.string(x.ID)
|
||||
w.writeStoredGuildMessageAttribute(x.Attribute)
|
||||
w.uint64(x.GuildID)
|
||||
w.uint64(x.ChannelID)
|
||||
w.writeQuotedInfo(x.QuotedInfo)
|
||||
w.arrayMsg(x.Content)
|
||||
}
|
||||
|
||||
func (r *reader) readStoredGuildChannelMessage() *db.StoredGuildChannelMessage {
|
||||
coder := r.coder()
|
||||
if coder == coderNil {
|
||||
return nil
|
||||
}
|
||||
x := &db.StoredGuildChannelMessage{}
|
||||
x.ID = r.string()
|
||||
x.Attribute = r.readStoredGuildMessageAttribute()
|
||||
x.GuildID = r.uint64()
|
||||
x.ChannelID = r.uint64()
|
||||
x.QuotedInfo = r.readQuotedInfo()
|
||||
x.Content = r.arrayMsg()
|
||||
return x
|
||||
}
|
||||
|
||||
func (w *writer) writeStoredMessageAttribute(x *db.StoredMessageAttribute) {
|
||||
if x == nil {
|
||||
w.nil()
|
||||
return
|
||||
}
|
||||
w.coder(coderStruct)
|
||||
w.int32(x.MessageSeq)
|
||||
w.int32(x.InternalID)
|
||||
w.int64(x.SenderUin)
|
||||
w.string(x.SenderName)
|
||||
w.int64(x.Timestamp)
|
||||
}
|
||||
|
||||
func (r *reader) readStoredMessageAttribute() *db.StoredMessageAttribute {
|
||||
coder := r.coder()
|
||||
if coder == coderNil {
|
||||
return nil
|
||||
}
|
||||
x := &db.StoredMessageAttribute{}
|
||||
x.MessageSeq = r.int32()
|
||||
x.InternalID = r.int32()
|
||||
x.SenderUin = r.int64()
|
||||
x.SenderName = r.string()
|
||||
x.Timestamp = r.int64()
|
||||
return x
|
||||
}
|
||||
|
||||
func (w *writer) writeStoredGuildMessageAttribute(x *db.StoredGuildMessageAttribute) {
|
||||
if x == nil {
|
||||
w.nil()
|
||||
return
|
||||
}
|
||||
w.coder(coderStruct)
|
||||
w.uint64(x.MessageSeq)
|
||||
w.uint64(x.InternalID)
|
||||
w.uint64(x.SenderTinyID)
|
||||
w.string(x.SenderName)
|
||||
w.int64(x.Timestamp)
|
||||
}
|
||||
|
||||
func (r *reader) readStoredGuildMessageAttribute() *db.StoredGuildMessageAttribute {
|
||||
coder := r.coder()
|
||||
if coder == coderNil {
|
||||
return nil
|
||||
}
|
||||
x := &db.StoredGuildMessageAttribute{}
|
||||
x.MessageSeq = r.uint64()
|
||||
x.InternalID = r.uint64()
|
||||
x.SenderTinyID = r.uint64()
|
||||
x.SenderName = r.string()
|
||||
x.Timestamp = r.int64()
|
||||
return x
|
||||
}
|
||||
|
||||
func (w *writer) writeQuotedInfo(x *db.QuotedInfo) {
|
||||
if x == nil {
|
||||
w.nil()
|
||||
return
|
||||
}
|
||||
w.coder(coderStruct)
|
||||
w.string(x.PrevID)
|
||||
w.int32(x.PrevGlobalID)
|
||||
w.arrayMsg(x.QuotedContent)
|
||||
}
|
||||
|
||||
func (r *reader) readQuotedInfo() *db.QuotedInfo {
|
||||
coder := r.coder()
|
||||
if coder == coderNil {
|
||||
return nil
|
||||
}
|
||||
x := &db.QuotedInfo{}
|
||||
x.PrevID = r.string()
|
||||
x.PrevGlobalID = r.int32()
|
||||
x.QuotedContent = r.arrayMsg()
|
||||
return x
|
||||
}
|
@ -1,56 +1,42 @@
|
||||
package leveldb
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"encoding/gob"
|
||||
"path"
|
||||
|
||||
"github.com/Mrs4s/MiraiGo/utils"
|
||||
|
||||
"github.com/Mrs4s/MiraiGo/binary"
|
||||
"github.com/Mrs4s/MiraiGo/utils"
|
||||
"github.com/pkg/errors"
|
||||
"github.com/syndtr/goleveldb/leveldb"
|
||||
"github.com/syndtr/goleveldb/leveldb/opt"
|
||||
"gopkg.in/yaml.v3"
|
||||
|
||||
"github.com/Mrs4s/go-cqhttp/db"
|
||||
"github.com/Mrs4s/go-cqhttp/global"
|
||||
"github.com/Mrs4s/go-cqhttp/modules/config"
|
||||
)
|
||||
|
||||
type LevelDBImpl struct {
|
||||
type database struct {
|
||||
db *leveldb.DB
|
||||
}
|
||||
|
||||
const (
|
||||
group byte = 0x0
|
||||
private byte = 0x1
|
||||
guildChannel byte = 0x2
|
||||
)
|
||||
// config leveldb 相关配置
|
||||
type config struct {
|
||||
Enable bool `yaml:"enable"`
|
||||
}
|
||||
|
||||
func init() {
|
||||
gob.Register(db.StoredMessageAttribute{})
|
||||
gob.Register(db.StoredGuildMessageAttribute{})
|
||||
gob.Register(db.QuotedInfo{})
|
||||
gob.Register(global.MSG{})
|
||||
gob.Register(db.StoredGroupMessage{})
|
||||
gob.Register(db.StoredPrivateMessage{})
|
||||
gob.Register(db.StoredGuildChannelMessage{})
|
||||
|
||||
db.Register("leveldb", func(node yaml.Node) db.Database {
|
||||
conf := new(config.LevelDBConfig)
|
||||
conf := new(config)
|
||||
_ = node.Decode(conf)
|
||||
if !conf.Enable {
|
||||
return nil
|
||||
}
|
||||
return &LevelDBImpl{}
|
||||
return &database{}
|
||||
})
|
||||
}
|
||||
|
||||
func (ldb *LevelDBImpl) Open() error {
|
||||
p := path.Join("data", "leveldb-v2")
|
||||
func (ldb *database) Open() error {
|
||||
p := path.Join("data", "leveldb-v3")
|
||||
d, err := leveldb.OpenFile(p, &opt.Options{
|
||||
WriteBuffer: 128 * opt.KiB,
|
||||
WriteBuffer: 32 * opt.KiB,
|
||||
})
|
||||
if err != nil {
|
||||
return errors.Wrap(err, "open leveldb error")
|
||||
@ -59,31 +45,31 @@ func (ldb *LevelDBImpl) Open() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (ldb *LevelDBImpl) GetMessageByGlobalID(id int32) (db.StoredMessage, error) {
|
||||
func (ldb *database) GetMessageByGlobalID(id int32) (_ db.StoredMessage, err error) {
|
||||
v, err := ldb.db.Get(binary.ToBytes(id), nil)
|
||||
if err != nil {
|
||||
if err != nil || len(v) == 0 {
|
||||
return nil, errors.Wrap(err, "get value error")
|
||||
}
|
||||
r := binary.NewReader(v)
|
||||
switch r.ReadByte() {
|
||||
defer func() {
|
||||
if r := recover(); r != nil {
|
||||
err = errors.Errorf("%v", r)
|
||||
}
|
||||
}()
|
||||
r, err := newReader(utils.B2S(v))
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
switch r.uvarint() {
|
||||
case group:
|
||||
g := &db.StoredGroupMessage{}
|
||||
if err = gob.NewDecoder(bytes.NewReader(r.ReadAvailable())).Decode(g); err != nil {
|
||||
return nil, errors.Wrap(err, "decode message error")
|
||||
}
|
||||
return g, nil
|
||||
return r.readStoredGroupMessage(), nil
|
||||
case private:
|
||||
p := &db.StoredPrivateMessage{}
|
||||
if err = gob.NewDecoder(bytes.NewReader(r.ReadAvailable())).Decode(p); err != nil {
|
||||
return nil, errors.Wrap(err, "decode message error")
|
||||
}
|
||||
return p, nil
|
||||
return r.readStoredPrivateMessage(), nil
|
||||
default:
|
||||
return nil, errors.New("unknown message flag")
|
||||
}
|
||||
}
|
||||
|
||||
func (ldb *LevelDBImpl) GetGroupMessageByGlobalID(id int32) (*db.StoredGroupMessage, error) {
|
||||
func (ldb *database) GetGroupMessageByGlobalID(id int32) (*db.StoredGroupMessage, error) {
|
||||
i, err := ldb.GetMessageByGlobalID(id)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
@ -95,7 +81,7 @@ func (ldb *LevelDBImpl) GetGroupMessageByGlobalID(id int32) (*db.StoredGroupMess
|
||||
return g, nil
|
||||
}
|
||||
|
||||
func (ldb *LevelDBImpl) GetPrivateMessageByGlobalID(id int32) (*db.StoredPrivateMessage, error) {
|
||||
func (ldb *database) GetPrivateMessageByGlobalID(id int32) (*db.StoredPrivateMessage, error) {
|
||||
i, err := ldb.GetMessageByGlobalID(id)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
@ -107,59 +93,48 @@ func (ldb *LevelDBImpl) GetPrivateMessageByGlobalID(id int32) (*db.StoredPrivate
|
||||
return p, nil
|
||||
}
|
||||
|
||||
func (ldb *LevelDBImpl) GetGuildChannelMessageByID(id string) (*db.StoredGuildChannelMessage, error) {
|
||||
func (ldb *database) GetGuildChannelMessageByID(id string) (*db.StoredGuildChannelMessage, error) {
|
||||
v, err := ldb.db.Get([]byte(id), nil)
|
||||
if err != nil {
|
||||
return nil, errors.Wrap(err, "get value error")
|
||||
}
|
||||
r := binary.NewReader(v)
|
||||
switch r.ReadByte() {
|
||||
case guildChannel:
|
||||
g := &db.StoredGuildChannelMessage{}
|
||||
if err = gob.NewDecoder(bytes.NewReader(r.ReadAvailable())).Decode(g); err != nil {
|
||||
return nil, errors.Wrap(err, "decode message error")
|
||||
defer func() {
|
||||
if r := recover(); r != nil {
|
||||
err = errors.Errorf("%v", r)
|
||||
}
|
||||
return g, nil
|
||||
}()
|
||||
r, err := newReader(utils.B2S(v))
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
switch r.uvarint() {
|
||||
case guildChannel:
|
||||
return r.readStoredGuildChannelMessage(), nil
|
||||
default:
|
||||
return nil, errors.New("unknown message flag")
|
||||
}
|
||||
}
|
||||
|
||||
func (ldb *LevelDBImpl) InsertGroupMessage(msg *db.StoredGroupMessage) error {
|
||||
buf := global.NewBuffer()
|
||||
defer global.PutBuffer(buf)
|
||||
if err := gob.NewEncoder(buf).Encode(msg); err != nil {
|
||||
return errors.Wrap(err, "encode message error")
|
||||
}
|
||||
err := ldb.db.Put(binary.ToBytes(msg.GlobalID), binary.NewWriterF(func(w *binary.Writer) {
|
||||
w.WriteByte(group)
|
||||
w.Write(buf.Bytes())
|
||||
}), nil)
|
||||
func (ldb *database) InsertGroupMessage(msg *db.StoredGroupMessage) error {
|
||||
w := newWriter()
|
||||
w.uvarint(group)
|
||||
w.writeStoredGroupMessage(msg)
|
||||
err := ldb.db.Put(binary.ToBytes(msg.GlobalID), w.bytes(), nil)
|
||||
return errors.Wrap(err, "put data error")
|
||||
}
|
||||
|
||||
func (ldb *LevelDBImpl) InsertPrivateMessage(msg *db.StoredPrivateMessage) error {
|
||||
buf := global.NewBuffer()
|
||||
defer global.PutBuffer(buf)
|
||||
if err := gob.NewEncoder(buf).Encode(msg); err != nil {
|
||||
return errors.Wrap(err, "encode message error")
|
||||
}
|
||||
err := ldb.db.Put(binary.ToBytes(msg.GlobalID), binary.NewWriterF(func(w *binary.Writer) {
|
||||
w.WriteByte(private)
|
||||
w.Write(buf.Bytes())
|
||||
}), nil)
|
||||
func (ldb *database) InsertPrivateMessage(msg *db.StoredPrivateMessage) error {
|
||||
w := newWriter()
|
||||
w.uvarint(private)
|
||||
w.writeStoredPrivateMessage(msg)
|
||||
err := ldb.db.Put(binary.ToBytes(msg.GlobalID), w.bytes(), nil)
|
||||
return errors.Wrap(err, "put data error")
|
||||
}
|
||||
|
||||
func (ldb *LevelDBImpl) InsertGuildChannelMessage(msg *db.StoredGuildChannelMessage) error {
|
||||
buf := global.NewBuffer()
|
||||
defer global.PutBuffer(buf)
|
||||
if err := gob.NewEncoder(buf).Encode(msg); err != nil {
|
||||
return errors.Wrap(err, "encode message error")
|
||||
}
|
||||
err := ldb.db.Put(utils.S2B(msg.ID), binary.NewWriterF(func(w *binary.Writer) {
|
||||
w.WriteByte(guildChannel)
|
||||
w.Write(buf.Bytes())
|
||||
}), nil)
|
||||
func (ldb *database) InsertGuildChannelMessage(msg *db.StoredGuildChannelMessage) error {
|
||||
w := newWriter()
|
||||
w.uvarint(guildChannel)
|
||||
w.writeStoredGuildChannelMessage(msg)
|
||||
err := ldb.db.Put(utils.S2B(msg.ID), w.bytes(), nil)
|
||||
return errors.Wrap(err, "put data error")
|
||||
}
|
||||
|
129
db/leveldb/mkrw.go
Normal file
129
db/leveldb/mkrw.go
Normal file
@ -0,0 +1,129 @@
|
||||
//go:build ignore
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"fmt"
|
||||
"go/ast"
|
||||
"go/format"
|
||||
"go/parser"
|
||||
"go/token"
|
||||
"os"
|
||||
)
|
||||
|
||||
var output bytes.Buffer
|
||||
|
||||
func fprintf(format string, args ...interface{}) {
|
||||
_, _ = fmt.Fprintf(&output, format, args...)
|
||||
}
|
||||
|
||||
func main() {
|
||||
f, _ := parser.ParseFile(token.NewFileSet(), "./../database.go", nil, 0)
|
||||
fprintf("// Code generated by mkrw.go; DO NOT EDIT.\n\n")
|
||||
fprintf("package leveldb\n\n")
|
||||
fprintf("import \"github.com/Mrs4s/go-cqhttp/db\"\n\n")
|
||||
ast.Inspect(f, func(node ast.Node) bool {
|
||||
switch node := node.(type) {
|
||||
case *ast.FuncDecl:
|
||||
return false
|
||||
case *ast.TypeSpec:
|
||||
if !node.Name.IsExported() {
|
||||
return false
|
||||
}
|
||||
x, ok := node.Type.(*ast.StructType)
|
||||
if !ok {
|
||||
return false
|
||||
}
|
||||
if x.Fields != nil && x.Fields.List != nil {
|
||||
mkWrite(node)
|
||||
mkRead(node)
|
||||
}
|
||||
}
|
||||
return true
|
||||
})
|
||||
out, err := format.Source(output.Bytes())
|
||||
if err != nil {
|
||||
fmt.Println(string(output.Bytes()))
|
||||
panic(err)
|
||||
}
|
||||
os.WriteFile("database_gen.go", out, 0o644)
|
||||
}
|
||||
|
||||
func typeName(typ ast.Expr) string {
|
||||
switch typ := typ.(type) {
|
||||
case *ast.Ident:
|
||||
return typ.Name
|
||||
case *ast.ArrayType:
|
||||
if typ.Len != nil {
|
||||
panic("unexpected array type")
|
||||
}
|
||||
return "[]" + typeName(typ.Elt)
|
||||
case *ast.SelectorExpr:
|
||||
return typeName(typ.X) + "." + typ.Sel.Name
|
||||
}
|
||||
panic("unexpected type")
|
||||
}
|
||||
|
||||
func mkWrite(node *ast.TypeSpec) {
|
||||
typename := node.Name.String()
|
||||
structType := node.Type.(*ast.StructType)
|
||||
fprintf("func (w *writer) write%s(x *db.%s) {\n", typename, typename)
|
||||
fprintf("if x == nil {\n")
|
||||
fprintf("w.nil()\n")
|
||||
fprintf("return\n")
|
||||
fprintf("}\n")
|
||||
fprintf("w.coder(coderStruct)\n")
|
||||
for _, field := range structType.Fields.List {
|
||||
switch typ := field.Type.(type) {
|
||||
case *ast.Ident:
|
||||
for _, name := range field.Names {
|
||||
fprintf("w.%s(x.%s)\n", typ.Name, name.Name)
|
||||
}
|
||||
case *ast.ArrayType:
|
||||
if typeName(typ) != "[]global.MSG" {
|
||||
panic("unexpected array type")
|
||||
}
|
||||
for _, name := range field.Names {
|
||||
fprintf("w.arrayMsg(x.%s)\n", name.Name)
|
||||
}
|
||||
case *ast.StarExpr:
|
||||
for _, name := range field.Names {
|
||||
fprintf("w.write%s(x.%s)\n", typeName(typ.X), name.Name)
|
||||
}
|
||||
}
|
||||
}
|
||||
fprintf("}\n\n")
|
||||
}
|
||||
|
||||
func mkRead(node *ast.TypeSpec) {
|
||||
typename := node.Name.String()
|
||||
structType := node.Type.(*ast.StructType)
|
||||
fprintf(`func (r *reader) read%s() *db.%s {
|
||||
coder := r.coder()
|
||||
if coder == coderNil {
|
||||
return nil
|
||||
}`+"\n", typename, typename)
|
||||
fprintf("x := &db.%s{}\n", typename)
|
||||
for _, field := range structType.Fields.List {
|
||||
switch typ := field.Type.(type) {
|
||||
case *ast.Ident:
|
||||
for _, name := range field.Names {
|
||||
fprintf("x.%s = r.%s()\n", name.Name, typ.Name)
|
||||
}
|
||||
case *ast.ArrayType:
|
||||
if typeName(typ) != "[]global.MSG" {
|
||||
panic("unexpected array type")
|
||||
}
|
||||
for _, name := range field.Names {
|
||||
fprintf("x.%s = r.arrayMsg()\n", name.Name)
|
||||
}
|
||||
case *ast.StarExpr:
|
||||
for _, name := range field.Names {
|
||||
fprintf("x.%s = r.read%s()\n", name.Name, typeName(typ.X))
|
||||
}
|
||||
}
|
||||
}
|
||||
fprintf("return x\n")
|
||||
fprintf("}\n\n")
|
||||
}
|
131
db/leveldb/reader.go
Normal file
131
db/leveldb/reader.go
Normal file
@ -0,0 +1,131 @@
|
||||
package leveldb
|
||||
|
||||
import (
|
||||
"encoding/binary"
|
||||
"io"
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
"github.com/pkg/errors"
|
||||
|
||||
"github.com/Mrs4s/go-cqhttp/global"
|
||||
)
|
||||
|
||||
type intReader struct {
|
||||
data string
|
||||
*strings.Reader
|
||||
}
|
||||
|
||||
func newIntReader(s string) intReader {
|
||||
return intReader{
|
||||
data: s,
|
||||
Reader: strings.NewReader(s),
|
||||
}
|
||||
}
|
||||
|
||||
func (r *intReader) varint() int64 {
|
||||
i, _ := binary.ReadVarint(r)
|
||||
return i
|
||||
}
|
||||
|
||||
func (r *intReader) uvarint() uint64 {
|
||||
i, _ := binary.ReadUvarint(r)
|
||||
return i
|
||||
}
|
||||
|
||||
// reader implements the index read.
|
||||
// data format is the same as the writer's
|
||||
type reader struct {
|
||||
data intReader
|
||||
strings intReader
|
||||
stringIndex map[uint64]string
|
||||
}
|
||||
|
||||
func (r *reader) coder() coder { o, _ := r.data.ReadByte(); return coder(o) }
|
||||
func (r *reader) varint() int64 { return r.data.varint() }
|
||||
func (r *reader) uvarint() uint64 { return r.data.uvarint() }
|
||||
func (r *reader) int32() int32 { return int32(r.varint()) }
|
||||
func (r *reader) int64() int64 { return r.varint() }
|
||||
func (r *reader) uint64() uint64 { return r.uvarint() }
|
||||
|
||||
// func (r *reader) uint32() uint32 { return uint32(r.uvarint()) }
|
||||
// func (r *reader) int() int { return int(r.varint()) }
|
||||
// func (r *reader) uint() uint { return uint(r.uvarint()) }
|
||||
|
||||
func (r *reader) string() string {
|
||||
off := r.data.uvarint()
|
||||
if s, ok := r.stringIndex[off]; ok {
|
||||
return s
|
||||
}
|
||||
_, _ = r.strings.Seek(int64(off), io.SeekStart)
|
||||
l := int64(r.strings.uvarint())
|
||||
whence, _ := r.strings.Seek(0, io.SeekCurrent)
|
||||
s := r.strings.data[whence : whence+l]
|
||||
r.stringIndex[off] = s
|
||||
return s
|
||||
}
|
||||
|
||||
func (r *reader) msg() global.MSG {
|
||||
length := r.uvarint()
|
||||
msg := make(global.MSG, length)
|
||||
for i := uint64(0); i < length; i++ {
|
||||
s := r.string()
|
||||
msg[s] = r.obj()
|
||||
}
|
||||
return msg
|
||||
}
|
||||
|
||||
func (r *reader) arrayMsg() []global.MSG {
|
||||
length := r.uvarint()
|
||||
msgs := make([]global.MSG, length)
|
||||
for i := range msgs {
|
||||
msgs[i] = r.msg()
|
||||
}
|
||||
return msgs
|
||||
}
|
||||
|
||||
func (r *reader) obj() interface{} {
|
||||
switch coder := r.coder(); coder {
|
||||
case coderNil:
|
||||
return nil
|
||||
case coderInt:
|
||||
return int(r.varint())
|
||||
case coderUint:
|
||||
return uint(r.uvarint())
|
||||
case coderInt32:
|
||||
return int32(r.varint())
|
||||
case coderUint32:
|
||||
return uint32(r.uvarint())
|
||||
case coderInt64:
|
||||
return r.varint()
|
||||
case coderUint64:
|
||||
return r.uvarint()
|
||||
case coderString:
|
||||
return r.string()
|
||||
case coderMSG:
|
||||
return r.msg()
|
||||
case coderArrayMSG:
|
||||
return r.arrayMsg()
|
||||
default:
|
||||
panic("db/leveldb: invalid coder " + strconv.Itoa(int(coder)))
|
||||
}
|
||||
}
|
||||
|
||||
func newReader(data string) (*reader, error) {
|
||||
in := newIntReader(data)
|
||||
v := in.uvarint()
|
||||
if v != dataVersion {
|
||||
return nil, errors.Errorf("db/leveldb: invalid data version %d", v)
|
||||
}
|
||||
sl := int64(in.uvarint())
|
||||
dl := int64(in.uvarint())
|
||||
whence, _ := in.Seek(0, io.SeekCurrent)
|
||||
sData := data[whence : whence+sl]
|
||||
dData := data[whence+sl : whence+sl+dl]
|
||||
r := reader{
|
||||
data: newIntReader(dData),
|
||||
strings: newIntReader(sData),
|
||||
stringIndex: make(map[uint64]string),
|
||||
}
|
||||
return &r, nil
|
||||
}
|
131
db/leveldb/writer.go
Normal file
131
db/leveldb/writer.go
Normal file
@ -0,0 +1,131 @@
|
||||
package leveldb
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"io"
|
||||
|
||||
"github.com/Mrs4s/go-cqhttp/global"
|
||||
)
|
||||
|
||||
type intWriter struct {
|
||||
bytes.Buffer
|
||||
}
|
||||
|
||||
func (w *intWriter) varint(x int64) {
|
||||
w.uvarint(uint64(x)<<1 ^ uint64(x>>63))
|
||||
}
|
||||
|
||||
func (w *intWriter) uvarint(x uint64) {
|
||||
for x >= 0x80 {
|
||||
w.WriteByte(byte(x) | 0x80)
|
||||
x >>= 7
|
||||
}
|
||||
w.WriteByte(byte(x))
|
||||
}
|
||||
|
||||
// writer implements the index write.
|
||||
// data format(use uvarint to encode integers):
|
||||
// | version | string data length | index data length | string data | index data |
|
||||
// for string data part, each string is encoded as:
|
||||
// | string length | string |
|
||||
// for index data part, each value is encoded as:
|
||||
// | coder | value |
|
||||
// * coder is the identifier of value's type.
|
||||
// * specially for string, it's value is the offset in string data part.
|
||||
type writer struct {
|
||||
data intWriter
|
||||
strings intWriter
|
||||
stringIndex map[string]uint64
|
||||
}
|
||||
|
||||
func newWriter() *writer {
|
||||
return &writer{
|
||||
stringIndex: make(map[string]uint64),
|
||||
}
|
||||
}
|
||||
|
||||
func (w *writer) coder(o coder) { w.data.WriteByte(byte(o)) }
|
||||
func (w *writer) varint(x int64) { w.data.varint(x) }
|
||||
func (w *writer) uvarint(x uint64) { w.data.uvarint(x) }
|
||||
func (w *writer) nil() { w.coder(coderNil) }
|
||||
func (w *writer) int(i int) { w.varint(int64(i)) }
|
||||
func (w *writer) uint(i uint) { w.uvarint(uint64(i)) }
|
||||
func (w *writer) int32(i int32) { w.varint(int64(i)) }
|
||||
func (w *writer) uint32(i uint32) { w.uvarint(uint64(i)) }
|
||||
func (w *writer) int64(i int64) { w.varint(i) }
|
||||
func (w *writer) uint64(i uint64) { w.uvarint(i) }
|
||||
|
||||
func (w *writer) string(s string) {
|
||||
off, ok := w.stringIndex[s]
|
||||
if !ok {
|
||||
// not found write to string data part
|
||||
// | string length | string |
|
||||
off = uint64(w.strings.Len())
|
||||
w.strings.uvarint(uint64(len(s)))
|
||||
_, _ = w.strings.WriteString(s)
|
||||
w.stringIndex[s] = off
|
||||
}
|
||||
// write offset to index data part
|
||||
w.uvarint(off)
|
||||
}
|
||||
|
||||
func (w *writer) msg(m global.MSG) {
|
||||
w.uvarint(uint64(len(m)))
|
||||
for s, obj := range m {
|
||||
w.string(s)
|
||||
w.obj(obj)
|
||||
}
|
||||
}
|
||||
|
||||
func (w *writer) arrayMsg(a []global.MSG) {
|
||||
w.uvarint(uint64(len(a)))
|
||||
for _, v := range a {
|
||||
w.msg(v)
|
||||
}
|
||||
}
|
||||
|
||||
func (w *writer) obj(o interface{}) {
|
||||
switch x := o.(type) {
|
||||
case nil:
|
||||
w.nil()
|
||||
case int:
|
||||
w.coder(coderInt)
|
||||
w.int(x)
|
||||
case int32:
|
||||
w.coder(coderInt32)
|
||||
w.int32(x)
|
||||
case int64:
|
||||
w.coder(coderInt64)
|
||||
w.int64(x)
|
||||
case uint:
|
||||
w.coder(coderUint)
|
||||
w.uint(x)
|
||||
case uint32:
|
||||
w.coder(coderUint32)
|
||||
w.uint32(x)
|
||||
case uint64:
|
||||
w.coder(coderUint64)
|
||||
w.uint64(x)
|
||||
case string:
|
||||
w.coder(coderString)
|
||||
w.string(x)
|
||||
case global.MSG:
|
||||
w.coder(coderMSG)
|
||||
w.msg(x)
|
||||
case []global.MSG:
|
||||
w.coder(coderArrayMSG)
|
||||
w.arrayMsg(x)
|
||||
default:
|
||||
panic("unsupported type")
|
||||
}
|
||||
}
|
||||
|
||||
func (w *writer) bytes() []byte {
|
||||
var out intWriter
|
||||
out.uvarint(dataVersion)
|
||||
out.uvarint(uint64(w.strings.Len()))
|
||||
out.uvarint(uint64(w.data.Len()))
|
||||
_, _ = io.Copy(&out, &w.strings)
|
||||
_, _ = io.Copy(&out, &w.data)
|
||||
return out.Bytes()
|
||||
}
|
@ -10,15 +10,21 @@ import (
|
||||
"gopkg.in/yaml.v3"
|
||||
|
||||
"github.com/Mrs4s/go-cqhttp/db"
|
||||
"github.com/Mrs4s/go-cqhttp/modules/config"
|
||||
)
|
||||
|
||||
type MongoDBImpl struct {
|
||||
type database struct {
|
||||
uri string
|
||||
db string
|
||||
mongo *mongo.Database
|
||||
}
|
||||
|
||||
// config mongodb 相关配置
|
||||
type config struct {
|
||||
Enable bool `yaml:"enable"`
|
||||
URI string `yaml:"uri"`
|
||||
Database string `yaml:"database"`
|
||||
}
|
||||
|
||||
const (
|
||||
MongoGroupMessageCollection = "group-messages"
|
||||
MongoPrivateMessageCollection = "private-messages"
|
||||
@ -26,8 +32,8 @@ const (
|
||||
)
|
||||
|
||||
func init() {
|
||||
db.Register("mongodb", func(node yaml.Node) db.Database {
|
||||
conf := new(config.MongoDBConfig)
|
||||
db.Register("database", func(node yaml.Node) db.Database {
|
||||
conf := new(config)
|
||||
_ = node.Decode(conf)
|
||||
if conf.Database == "" {
|
||||
conf.Database = "gocq-database"
|
||||
@ -35,11 +41,11 @@ func init() {
|
||||
if !conf.Enable {
|
||||
return nil
|
||||
}
|
||||
return &MongoDBImpl{uri: conf.URI, db: conf.Database}
|
||||
return &database{uri: conf.URI, db: conf.Database}
|
||||
})
|
||||
}
|
||||
|
||||
func (m *MongoDBImpl) Open() error {
|
||||
func (m *database) Open() error {
|
||||
cli, err := mongo.Connect(context.Background(), options.Client().ApplyURI(m.uri))
|
||||
if err != nil {
|
||||
return errors.Wrap(err, "open mongo connection error")
|
||||
@ -48,14 +54,14 @@ func (m *MongoDBImpl) Open() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *MongoDBImpl) GetMessageByGlobalID(id int32) (db.StoredMessage, error) {
|
||||
func (m *database) GetMessageByGlobalID(id int32) (db.StoredMessage, error) {
|
||||
if r, err := m.GetGroupMessageByGlobalID(id); err == nil {
|
||||
return r, nil
|
||||
}
|
||||
return m.GetPrivateMessageByGlobalID(id)
|
||||
}
|
||||
|
||||
func (m *MongoDBImpl) GetGroupMessageByGlobalID(id int32) (*db.StoredGroupMessage, error) {
|
||||
func (m *database) GetGroupMessageByGlobalID(id int32) (*db.StoredGroupMessage, error) {
|
||||
coll := m.mongo.Collection(MongoGroupMessageCollection)
|
||||
var ret db.StoredGroupMessage
|
||||
if err := coll.FindOne(context.Background(), bson.D{{"globalId", id}}).Decode(&ret); err != nil {
|
||||
@ -64,7 +70,7 @@ func (m *MongoDBImpl) GetGroupMessageByGlobalID(id int32) (*db.StoredGroupMessag
|
||||
return &ret, nil
|
||||
}
|
||||
|
||||
func (m *MongoDBImpl) GetPrivateMessageByGlobalID(id int32) (*db.StoredPrivateMessage, error) {
|
||||
func (m *database) GetPrivateMessageByGlobalID(id int32) (*db.StoredPrivateMessage, error) {
|
||||
coll := m.mongo.Collection(MongoPrivateMessageCollection)
|
||||
var ret db.StoredPrivateMessage
|
||||
if err := coll.FindOne(context.Background(), bson.D{{"globalId", id}}).Decode(&ret); err != nil {
|
||||
@ -73,7 +79,7 @@ func (m *MongoDBImpl) GetPrivateMessageByGlobalID(id int32) (*db.StoredPrivateMe
|
||||
return &ret, nil
|
||||
}
|
||||
|
||||
func (m *MongoDBImpl) GetGuildChannelMessageByID(id string) (*db.StoredGuildChannelMessage, error) {
|
||||
func (m *database) GetGuildChannelMessageByID(id string) (*db.StoredGuildChannelMessage, error) {
|
||||
coll := m.mongo.Collection(MongoGuildChannelMessageCollection)
|
||||
var ret db.StoredGuildChannelMessage
|
||||
if err := coll.FindOne(context.Background(), bson.D{{"_id", id}}).Decode(&ret); err != nil {
|
||||
@ -82,19 +88,19 @@ func (m *MongoDBImpl) GetGuildChannelMessageByID(id string) (*db.StoredGuildChan
|
||||
return &ret, nil
|
||||
}
|
||||
|
||||
func (m *MongoDBImpl) InsertGroupMessage(msg *db.StoredGroupMessage) error {
|
||||
func (m *database) InsertGroupMessage(msg *db.StoredGroupMessage) error {
|
||||
coll := m.mongo.Collection(MongoGroupMessageCollection)
|
||||
_, err := coll.UpdateOne(context.Background(), bson.D{{"_id", msg.ID}}, bson.D{{"$set", msg}}, options.Update().SetUpsert(true))
|
||||
return errors.Wrap(err, "insert error")
|
||||
}
|
||||
|
||||
func (m *MongoDBImpl) InsertPrivateMessage(msg *db.StoredPrivateMessage) error {
|
||||
func (m *database) InsertPrivateMessage(msg *db.StoredPrivateMessage) error {
|
||||
coll := m.mongo.Collection(MongoPrivateMessageCollection)
|
||||
_, err := coll.UpdateOne(context.Background(), bson.D{{"_id", msg.ID}}, bson.D{{"$set", msg}}, options.Update().SetUpsert(true))
|
||||
return errors.Wrap(err, "insert error")
|
||||
}
|
||||
|
||||
func (m *MongoDBImpl) InsertGuildChannelMessage(msg *db.StoredGuildChannelMessage) error {
|
||||
func (m *database) InsertGuildChannelMessage(msg *db.StoredGuildChannelMessage) error {
|
||||
coll := m.mongo.Collection(MongoGuildChannelMessageCollection)
|
||||
_, err := coll.UpdateOne(context.Background(), bson.D{{"_id", msg.ID}}, bson.D{{"$set", msg}}, options.Update().SetUpsert(true))
|
||||
return errors.Wrap(err, "insert error")
|
||||
|
@ -45,6 +45,7 @@ func Open() error {
|
||||
return errors.Wrap(err, "open backend error")
|
||||
}
|
||||
}
|
||||
base.Database = nil
|
||||
return nil
|
||||
}
|
||||
|
||||
|
@ -79,13 +79,6 @@ default-middlewares: &default
|
||||
frequency: 1 # 令牌回复频率, 单位秒
|
||||
bucket: 1 # 令牌桶大小
|
||||
|
||||
database: # 数据库相关设置
|
||||
leveldb:
|
||||
# 是否启用内置leveldb数据库
|
||||
# 启用将会增加10-20MB的内存占用和一定的磁盘空间
|
||||
# 关闭将无法使用 撤回 回复 get_msg 等上下文相关功能
|
||||
enable: true
|
||||
|
||||
# 连接服务列表
|
||||
servers:
|
||||
# HTTP 通信设置
|
||||
|
@ -244,7 +244,7 @@ Type: `node`
|
||||
| `seq` | message | 具体消息 | 用于自定义消息 |
|
||||
|
||||
特殊说明: **需要使用单独的API `/send_group_forward_msg` 发送,并且由于消息段较为复杂,仅支持Array形式入参。 如果引用消息和自定义消息同时出现,实际查看顺序将取消息段顺序.
|
||||
另外按 [CQHTTP](https://git.io/JtxtN) 文档说明, `data` 应全为字符串, 但由于需要接收`message` 类型的消息, 所以 *仅限此Type的content字段* 支持Array套娃**
|
||||
另外按 [Onebot v11](https://github.com/botuniverse/onebot-11/blob/master/message/array.md) 文档说明, `data` 应全为字符串, 但由于需要接收`message` 类型的消息, 所以 *仅限此Type的content字段* 支持Array套娃**
|
||||
|
||||
示例:
|
||||
|
||||
|
25
go.mod
25
go.mod
@ -1,28 +1,23 @@
|
||||
module github.com/Mrs4s/go-cqhttp
|
||||
|
||||
go 1.17
|
||||
go 1.18
|
||||
|
||||
require (
|
||||
github.com/Baozisoftware/qrcode-terminal-go v0.0.0-20170407111555-c0650d8dff0f
|
||||
github.com/Microsoft/go-winio v0.5.1
|
||||
github.com/Mrs4s/MiraiGo v0.0.0-20220209092529-5d071b034c17
|
||||
github.com/Mrs4s/MiraiGo v0.0.0-20220317085721-6d84141b8dd3
|
||||
github.com/RomiChan/websocket v1.4.3-0.20220123145318-307a86b127bc
|
||||
github.com/dustin/go-humanize v1.0.0
|
||||
github.com/fumiama/go-hide-param v0.1.4
|
||||
github.com/gabriel-vasile/mimetype v1.4.0
|
||||
github.com/gocq/qrcode v0.0.0-20211114040510-366b953fcd98
|
||||
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0
|
||||
github.com/klauspost/compress v1.13.6
|
||||
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible
|
||||
github.com/mattn/go-colorable v0.1.12
|
||||
github.com/pkg/errors v0.9.1
|
||||
github.com/segmentio/asm v1.1.3
|
||||
github.com/sirupsen/logrus v1.8.1
|
||||
github.com/stretchr/testify v1.7.0
|
||||
github.com/syndtr/goleveldb v1.0.0
|
||||
github.com/tidwall/gjson v1.12.1
|
||||
github.com/wdvxdr1123/go-silk v0.0.0-20210316130616-d47b553def60
|
||||
go.mongodb.org/mongo-driver v1.8.1
|
||||
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
|
||||
github.com/tidwall/gjson v1.14.0
|
||||
github.com/wdvxdr1123/go-silk v0.0.0-20220304095002-f67345df09ea
|
||||
go.mongodb.org/mongo-driver v1.8.3
|
||||
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3
|
||||
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
|
||||
golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11
|
||||
@ -30,21 +25,19 @@ require (
|
||||
)
|
||||
|
||||
require (
|
||||
github.com/RomiChan/protobuf v0.0.0-20211223055824-048df49a8956 // indirect
|
||||
github.com/RomiChan/protobuf v0.0.0-20220227114948-643565fff248 // indirect
|
||||
github.com/davecgh/go-spew v1.1.1 // indirect
|
||||
github.com/fumiama/imgsz v0.0.2 // indirect
|
||||
github.com/go-stack/stack v1.8.0 // indirect
|
||||
github.com/gocq/rs v1.0.1 // indirect
|
||||
github.com/golang/snappy v0.0.1 // indirect
|
||||
github.com/golang/snappy v0.0.4 // indirect
|
||||
github.com/google/go-cmp v0.5.5 // indirect
|
||||
github.com/google/uuid v1.1.0 // indirect
|
||||
github.com/jonboulle/clockwork v0.2.2 // indirect
|
||||
github.com/klauspost/compress v1.13.6 // indirect
|
||||
github.com/lestrrat-go/strftime v1.0.5 // indirect
|
||||
github.com/mattn/go-isatty v0.0.14 // indirect
|
||||
github.com/pierrec/lz4/v4 v4.1.11 // indirect
|
||||
github.com/pmezard/go-difflib v1.0.0 // indirect
|
||||
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
|
||||
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e // indirect
|
||||
github.com/tidwall/match v1.1.1 // indirect
|
||||
github.com/tidwall/pretty v1.2.0 // indirect
|
||||
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
|
||||
|
102
go.sum
102
go.sum
@ -1,21 +1,17 @@
|
||||
github.com/Baozisoftware/qrcode-terminal-go v0.0.0-20170407111555-c0650d8dff0f h1:2dk3eOnYllh+wUOuDhOoC2vUVoJF/5z478ryJ+wzEII=
|
||||
github.com/Baozisoftware/qrcode-terminal-go v0.0.0-20170407111555-c0650d8dff0f/go.mod h1:4a58ifQTEe2uwwsaqbh3i2un5/CBPg+At/qHpt18Tmk=
|
||||
github.com/Microsoft/go-winio v0.5.1 h1:aPJp2QD7OOrhO5tQXqQoGSJc+DjDtWTGLOmNyAm6FgY=
|
||||
github.com/Microsoft/go-winio v0.5.1/go.mod h1:JPGBdM1cNvN/6ISo+n8V5iA4v8pBzdOpzfwIujj1a84=
|
||||
github.com/Mrs4s/MiraiGo v0.0.0-20220209092529-5d071b034c17 h1:OQVnlWt5if0TOFoNGDjILazBjVTncSlPxGXabD+4MvE=
|
||||
github.com/Mrs4s/MiraiGo v0.0.0-20220209092529-5d071b034c17/go.mod h1:rtKLkhMEi2YjsrXaNztT4uagUOPBxf6a+TNREkG097I=
|
||||
github.com/RomiChan/protobuf v0.0.0-20211223055824-048df49a8956 h1:hnaAkKz4t+xpSNVp5mnuloRMd3Rj2Lfg5biZ3emv//c=
|
||||
github.com/RomiChan/protobuf v0.0.0-20211223055824-048df49a8956/go.mod h1:CKKOWC7mBxd36zxsCB1V8DTrwlTNRQvkSVbYqyUiGEE=
|
||||
github.com/Mrs4s/MiraiGo v0.0.0-20220317085721-6d84141b8dd3 h1:U3UumMt052Ii1gGrkKM1MbX1uxCzxKhlfuNQ42LtIRQ=
|
||||
github.com/Mrs4s/MiraiGo v0.0.0-20220317085721-6d84141b8dd3/go.mod h1:qJWkRO5vry/sUHthX5kh6go2llYIVAJ+Mq8p+N/FW+8=
|
||||
github.com/RomiChan/protobuf v0.0.0-20220227114948-643565fff248 h1:1jRB6xuBKwfgZrg0bA7XJin0VeNwG9iJKx9RXwDobt4=
|
||||
github.com/RomiChan/protobuf v0.0.0-20220227114948-643565fff248/go.mod h1:CKKOWC7mBxd36zxsCB1V8DTrwlTNRQvkSVbYqyUiGEE=
|
||||
github.com/RomiChan/websocket v1.4.3-0.20220123145318-307a86b127bc h1:AAx50/fb/xS4lvsdQg+bFbGvqSDhyV1MF+p2PLCamZ0=
|
||||
github.com/RomiChan/websocket v1.4.3-0.20220123145318-307a86b127bc/go.mod h1:OMmITAib6POA37xCichWM0aRnoVpSMZO1rB/G01wrr0=
|
||||
github.com/bits-and-blooms/bitset v1.2.1 h1:M+/hrU9xlMp7t4TyTDQW97d3tRPVuKFC6zBEK16QnXY=
|
||||
github.com/bits-and-blooms/bitset v1.2.1/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA=
|
||||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
||||
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||
github.com/dustin/go-humanize v1.0.0 h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=
|
||||
github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk=
|
||||
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
|
||||
github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=
|
||||
github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=
|
||||
github.com/fumiama/go-hide-param v0.1.4 h1:y7TRTzZMdCH9GOXnIzU3B+1BSkcmvejVGmGsz4t0DGU=
|
||||
github.com/fumiama/go-hide-param v0.1.4/go.mod h1:vJkQlJIEI56nIyp7tCQu1/2QOyKtZpudsnJkGk9U1aY=
|
||||
github.com/fumiama/imgsz v0.0.2 h1:fAkC0FnIscdKOXwAxlyw3EUba5NzxZdSxGaq3Uyfxak=
|
||||
@ -24,26 +20,25 @@ github.com/gabriel-vasile/mimetype v1.4.0 h1:Cn9dkdYsMIu56tGho+fqzh7XmvY2YyGU0Fn
|
||||
github.com/gabriel-vasile/mimetype v1.4.0/go.mod h1:fA8fi6KUiG7MgQQ+mEWotXoEOvmxRtOJlERCzSmRvr8=
|
||||
github.com/go-stack/stack v1.8.0 h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=
|
||||
github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=
|
||||
github.com/gocq/qrcode v0.0.0-20211114040510-366b953fcd98 h1:NJDZEa7gibUa0w4tie8qKeQFKdeKFUbecWyQDPdRx40=
|
||||
github.com/gocq/qrcode v0.0.0-20211114040510-366b953fcd98/go.mod h1:E5TBHc60dsWtOL7sbXCb3P9i4xrj2J7Zm5sEJftIc1w=
|
||||
github.com/gocq/rs v1.0.1 h1:ng7nhXmnx3SnfM0DOqmbP6GmQp1xGwRG9XmBiLFDWuM=
|
||||
github.com/gocq/rs v1.0.1/go.mod h1:8oaQnRvqn1fMh8i5zsetgQo03OUXksJV1k+dpmExxcY=
|
||||
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
|
||||
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
|
||||
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
|
||||
github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4=
|
||||
github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8=
|
||||
github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA=
|
||||
github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs=
|
||||
github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w=
|
||||
github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0=
|
||||
github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
|
||||
github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
|
||||
github.com/golang/snappy v0.0.4 h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM=
|
||||
github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
|
||||
github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
|
||||
github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
|
||||
github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
|
||||
github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
|
||||
github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU=
|
||||
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
|
||||
github.com/google/uuid v1.1.0 h1:Jf4mxPC/ziBnoPIdpQdPJ9OeiomAUHLvxmPRSPH9m4s=
|
||||
github.com/google/uuid v1.1.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
||||
github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=
|
||||
github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
|
||||
github.com/jonboulle/clockwork v0.2.2 h1:UOGuzwb1PwsrDAObMuhUnj0p5ULPj8V/xJ7Kx9qUBdQ=
|
||||
github.com/jonboulle/clockwork v0.2.2/go.mod h1:Pkfl5aHPm1nk2H9h0bjmnJD/BcgbGXUBGnn1kMkgxc8=
|
||||
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 h1:iQTw/8FWTuc7uiaSepXwyf3o52HaUYcV+Tu66S3F5GA=
|
||||
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0/go.mod h1:1NbS8ALrpOvjt0rHPNLyCIeMtbizbir8U//inJ+zuB8=
|
||||
github.com/klauspost/compress v1.13.6 h1:P76CopJELS0TiO2mebmnzgWaajssP/EszplttgQxcgc=
|
||||
github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk=
|
||||
github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=
|
||||
@ -63,11 +58,15 @@ github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Ky
|
||||
github.com/mattn/go-isatty v0.0.14 h1:yVuAays6BHfxijgZPzw+3Zlu5yQgKGP2/hcQbHb7S9Y=
|
||||
github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94=
|
||||
github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe/go.mod h1:wL8QJuTMNUDYhXwkmfOly8iTdp5TEcJFWZD2D7SIkUc=
|
||||
github.com/nxadm/tail v1.4.4 h1:DQuhQpB1tVlglWS2hLQ5OV6B5r8aGxSrPc5Qo6uTN78=
|
||||
github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A=
|
||||
github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
|
||||
github.com/onsi/ginkgo v1.7.0 h1:WSHQ+IS43OoUrWtD1/bbclrwK8TTH5hzp+umCiuxHgs=
|
||||
github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
|
||||
github.com/onsi/gomega v1.4.3 h1:RE1xgDvH7imwFD45h+u2SgIfERHlS2yNG4DObb5BSKU=
|
||||
github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY=
|
||||
github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk=
|
||||
github.com/onsi/ginkgo v1.14.0 h1:2mOpI4JVVPBN+WQRa0WKH2eXR+Ey+uK4n7Zj0aYpIQA=
|
||||
github.com/onsi/ginkgo v1.14.0/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY=
|
||||
github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY=
|
||||
github.com/onsi/gomega v1.10.1 h1:o0+MgICZLuZ7xjH7Vx6zS/zcu93/BEp1VwkIW1mEXCE=
|
||||
github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo=
|
||||
github.com/pierrec/lz4/v4 v4.1.11 h1:LVs17FAZJFOjgmJXl9Tf13WfLUvZq7/RjfEJrnwZ9OE=
|
||||
github.com/pierrec/lz4/v4 v4.1.11/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4=
|
||||
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
|
||||
@ -82,26 +81,23 @@ github.com/segmentio/asm v1.1.3/go.mod h1:Ld3L4ZXGNcSLRg4JBsZ3//1+f/TjYl0Mzen/DQ
|
||||
github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0=
|
||||
github.com/sirupsen/logrus v1.8.1 h1:dJKuHgqk1NNQlqoA6BTlM1Wf9DOH3NBjQyu0h9+AZZE=
|
||||
github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0=
|
||||
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e h1:MRM5ITcdelLK2j1vwZ3Je0FKVCfqOLp5zO6trqMLYs0=
|
||||
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e/go.mod h1:XV66xRDqSt+GTGFMVlhk3ULuV0y9ZmzeVGR4mloJI3M=
|
||||
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
|
||||
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
|
||||
github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||
github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
|
||||
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||
github.com/syndtr/goleveldb v1.0.0 h1:fBdIW9lB4Iz0n9khmH8w27SJ3QEJ7+IgjPEwGSZiFdE=
|
||||
github.com/syndtr/goleveldb v1.0.0/go.mod h1:ZVVdQEZoIme9iO1Ch2Jdy24qqXrMMOU6lpPAyBWyWuQ=
|
||||
github.com/tidwall/gjson v1.11.0/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=
|
||||
github.com/tidwall/gjson v1.12.1 h1:ikuZsLdhr8Ws0IdROXUS1Gi4v9Z4pGqpX/CvJkxvfpo=
|
||||
github.com/tidwall/gjson v1.12.1/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=
|
||||
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 h1:epCh84lMvA70Z7CTTCmYQn2CKbY8j86K7/FAIr141uY=
|
||||
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7/go.mod h1:q4W45IWZaF22tdD+VEXcAWRA037jwmWEB5VWYORlTpc=
|
||||
github.com/tidwall/gjson v1.14.0 h1:6aeJ0bzojgWLa82gDQHcx3S0Lr/O51I9bJ5nv6JFx5w=
|
||||
github.com/tidwall/gjson v1.14.0/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=
|
||||
github.com/tidwall/match v1.1.1 h1:+Ho715JplO36QYgwN9PGYNhgZvoUSc9X2c80KVTi+GA=
|
||||
github.com/tidwall/match v1.1.1/go.mod h1:eRSPERbgtNPcGhD8UCthc6PmLEQXEWd3PRB5JTxsfmM=
|
||||
github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk=
|
||||
github.com/tidwall/pretty v1.2.0 h1:RWIZEg2iJ8/g6fDDYzMpobmaoGh5OLl4AXtGUGPcqCs=
|
||||
github.com/tidwall/pretty v1.2.0/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU=
|
||||
github.com/wdvxdr1123/go-silk v0.0.0-20210316130616-d47b553def60 h1:lRKf10iIOW0VsH5WDF621ihzR+R2wEBZVtNRHuLLCb4=
|
||||
github.com/wdvxdr1123/go-silk v0.0.0-20210316130616-d47b553def60/go.mod h1:ecFKZPX81BaB70I6ruUgEwYcDOtuNgJGnjdK+MIl5ko=
|
||||
github.com/wdvxdr1123/go-silk v0.0.0-20220304095002-f67345df09ea h1:sl1pYm1kHtIndckTY8YDt+QFt77vI0JnKHP0U8rZtKc=
|
||||
github.com/wdvxdr1123/go-silk v0.0.0-20220304095002-f67345df09ea/go.mod h1:ecFKZPX81BaB70I6ruUgEwYcDOtuNgJGnjdK+MIl5ko=
|
||||
github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c=
|
||||
github.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI=
|
||||
github.com/xdg-go/scram v1.0.2 h1:akYIkZ28e6A96dkWNJQu3nmCzH3YfwMPQExUYDaRv7w=
|
||||
@ -110,19 +106,21 @@ github.com/xdg-go/stringprep v1.0.2 h1:6iq84/ryjjeRmMJwxutI51F2GIPlP5BfTvXHeYjyh
|
||||
github.com/xdg-go/stringprep v1.0.2/go.mod h1:8F9zXuvzgwmyT5DUm4GUfZGDdT3W+LCvS6+da4O5kxM=
|
||||
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d h1:splanxYIlg+5LfHAM6xpdFEAYOk8iySO56hMFq6uLyA=
|
||||
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d/go.mod h1:rHwXgn7JulP+udvsHwJoVG1YGAP6VLg4y9I5dyZdqmA=
|
||||
go.mongodb.org/mongo-driver v1.8.1 h1:OZE4Wni/SJlrcmSIBRYNzunX5TKxjrTS4jKSnA99oKU=
|
||||
go.mongodb.org/mongo-driver v1.8.1/go.mod h1:0sQWfOeY63QTntERDJJ/0SuKK0T1uVSgKCuAROlKEPY=
|
||||
go.mongodb.org/mongo-driver v1.8.3 h1:TDKlTkGDKm9kkJVUOAXDK5/fkqKHJVwYQSpoRfB43R4=
|
||||
go.mongodb.org/mongo-driver v1.8.3/go.mod h1:0sQWfOeY63QTntERDJJ/0SuKK0T1uVSgKCuAROlKEPY=
|
||||
go.uber.org/atomic v1.9.0 h1:ECmE8Bn/WFTYwEW/bpKD3M8VtR/zQVbavAoalC1PYyE=
|
||||
go.uber.org/atomic v1.9.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=
|
||||
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
||||
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
|
||||
golang.org/x/crypto v0.0.0-20201216223049-8b5274cf687f/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I=
|
||||
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3 h1:0es+/5331RGQPcXlMfP+WrnIIS6dNnNRe0WB02W0F4M=
|
||||
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
|
||||
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
||||
golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
|
||||
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
|
||||
golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
|
||||
golang.org/x/net v0.0.0-20200813134508-3edf25e44fcc/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=
|
||||
golang.org/x/net v0.0.0-20210505024714-0287a6fb4125/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
|
||||
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
|
||||
golang.org/x/net v0.0.0-20211123203042-d83791d6bcd9 h1:0qxwC5n+ttVOINCBeRHO0nq9X7uy8SDsPoi5OaCdIEI=
|
||||
golang.org/x/net v0.0.0-20211123203042-d83791d6bcd9/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
|
||||
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||
@ -132,16 +130,21 @@ golang.org/x/sync v0.0.0-20210220032951-036812b2e83c h1:5KslGYwFpkhGh+Q16bwMP3cO
|
||||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||
golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.0.0-20200519105757-fe76b779f299/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.0.0-20200814200057-3d37ad5750ed/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.0.0-20201126233918-771906719818/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.0.0-20211110154304-99a53858aa08/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.0.0-20220111092808-5a964db01320 h1:0jf+tOCoZ3LyutmCOWpVni1chK4VfFLhRsDK7MhqGRY=
|
||||
golang.org/x/sys v0.0.0-20220111092808-5a964db01320/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw=
|
||||
@ -149,6 +152,8 @@ golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9sn
|
||||
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 h1:JGgROgKl9N8DuW20oFS5gxc+lE67/N3FcwmBPMe7ArY=
|
||||
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
|
||||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
|
||||
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||
golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||
golang.org/x/text v0.3.6 h1:aRYxNxv6iGQlyVaZmk6ZgYEDa+Jg18DxebPSrd6bg1M=
|
||||
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||
@ -156,19 +161,24 @@ golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11 h1:GZokNIeuVkl3aZHJchRrr13W
|
||||
golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
|
||||
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
|
||||
golang.org/x/tools v0.0.0-20190531172133-b3315ee88b7d/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=
|
||||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=
|
||||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
|
||||
google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
|
||||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE=
|
||||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||
google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8=
|
||||
google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0=
|
||||
google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM=
|
||||
google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE=
|
||||
google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo=
|
||||
google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
|
||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY=
|
||||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||
gopkg.in/fsnotify.v1 v1.4.7 h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=
|
||||
gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys=
|
||||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=
|
||||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw=
|
||||
gopkg.in/yaml.v2 v2.2.1 h1:mUhvW9EsL+naU5Q3cakzfE91YhliOondGd6ZrsDBHQE=
|
||||
gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
|
||||
gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
|
||||
gopkg.in/yaml.v2 v2.3.0 h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU=
|
||||
gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
|
||||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo=
|
||||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||
|
@ -11,6 +11,7 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/pkg/errors"
|
||||
log "github.com/sirupsen/logrus"
|
||||
"gopkg.in/yaml.v3"
|
||||
|
||||
@ -140,12 +141,16 @@ func ResetWorkingDir() {
|
||||
}
|
||||
}
|
||||
p, _ := filepath.Abs(os.Args[0])
|
||||
_, err := os.Stat(p)
|
||||
if !(err == nil || errors.Is(err, os.ErrExist)) {
|
||||
log.Fatalf("重置工作目录时出现错误: 无法找到路径 %v", p)
|
||||
}
|
||||
proc := exec.Command(p, args...)
|
||||
proc.Stdin = os.Stdin
|
||||
proc.Stdout = os.Stdout
|
||||
proc.Stderr = os.Stderr
|
||||
proc.Dir = wd
|
||||
err := proc.Run()
|
||||
err = proc.Run()
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
@ -18,6 +18,10 @@ const (
|
||||
tableStructSize = int(unsafe.Sizeof(table{}))
|
||||
)
|
||||
|
||||
type fileLock interface {
|
||||
release() error
|
||||
}
|
||||
|
||||
type item struct {
|
||||
hash [hashSize]byte
|
||||
offset int64
|
||||
@ -48,6 +52,7 @@ type DB struct {
|
||||
alloc int64
|
||||
cache [cacheSlots]cache
|
||||
|
||||
flock fileLock
|
||||
inAllocator bool
|
||||
deleteLarger bool
|
||||
fqueue [freeQueueLen]chunk
|
||||
@ -108,6 +113,10 @@ func (d *DB) flushSuper() {
|
||||
|
||||
// Open opens an existed btree file
|
||||
func Open(name string) (*DB, error) {
|
||||
lock, err := newFileLock(name + ".lock")
|
||||
if err != nil {
|
||||
return nil, errors.New("文件被其他进程占用")
|
||||
}
|
||||
btree := new(DB)
|
||||
fd, err := os.OpenFile(name, os.O_RDWR, 0o644)
|
||||
if err != nil {
|
||||
@ -120,17 +129,23 @@ func Open(name string) (*DB, error) {
|
||||
btree.top = super.top
|
||||
btree.freeTop = super.freeTop
|
||||
btree.alloc = super.alloc
|
||||
btree.flock = lock
|
||||
return btree, errors.Wrap(err, "btree read meta info failed")
|
||||
}
|
||||
|
||||
// Create creates a database
|
||||
func Create(name string) (*DB, error) {
|
||||
lock, err := newFileLock(name + ".lock")
|
||||
if err != nil {
|
||||
return nil, errors.New("文件被其他进程占用")
|
||||
}
|
||||
btree := new(DB)
|
||||
fd, err := os.OpenFile(name, os.O_RDWR|os.O_TRUNC|os.O_CREATE, 0o644)
|
||||
if err != nil {
|
||||
return nil, errors.Wrap(err, "btree open file failed")
|
||||
}
|
||||
|
||||
btree.flock = lock
|
||||
btree.fd = fd
|
||||
btree.alloc = int64(superSize)
|
||||
btree.flushSuper()
|
||||
@ -140,6 +155,9 @@ func Create(name string) (*DB, error) {
|
||||
// Close closes the database
|
||||
func (d *DB) Close() error {
|
||||
_ = d.fd.Sync()
|
||||
if err := d.flock.release(); err != nil {
|
||||
return err
|
||||
}
|
||||
err := d.fd.Close()
|
||||
for i := 0; i < cacheSlots; i++ {
|
||||
d.cache[i] = cache{}
|
||||
|
@ -16,16 +16,21 @@ func tempfile(t *testing.T) string {
|
||||
return temp.Name()
|
||||
}
|
||||
|
||||
func removedb(name string) {
|
||||
os.Remove(name)
|
||||
os.Remove(name + ".lock")
|
||||
}
|
||||
|
||||
func TestCreate(t *testing.T) {
|
||||
f := tempfile(t)
|
||||
_, err := Create(f)
|
||||
assert2.NoError(t, err)
|
||||
defer os.Remove(f)
|
||||
defer removedb(f)
|
||||
}
|
||||
|
||||
func TestBtree(t *testing.T) {
|
||||
f := tempfile(t)
|
||||
defer os.Remove(f)
|
||||
defer removedb(f)
|
||||
bt, err := Create(f)
|
||||
assert := assert2.New(t)
|
||||
assert.NoError(err)
|
||||
@ -73,7 +78,7 @@ func testForeach(t *testing.T, elemSize int) {
|
||||
expected[i] = utils.RandomString(20)
|
||||
}
|
||||
f := tempfile(t)
|
||||
defer os.Remove(f)
|
||||
defer removedb(f)
|
||||
bt, err := Create(f)
|
||||
assert2.NoError(t, err)
|
||||
for _, v := range expected {
|
||||
|
45
internal/btree/file_lock_unix.go
Normal file
45
internal/btree/file_lock_unix.go
Normal file
@ -0,0 +1,45 @@
|
||||
//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd
|
||||
|
||||
package btree
|
||||
|
||||
import (
|
||||
"os"
|
||||
"syscall"
|
||||
)
|
||||
|
||||
type unixFileLock struct {
|
||||
f *os.File
|
||||
}
|
||||
|
||||
func (fl *unixFileLock) release() error {
|
||||
if err := setFileLock(fl.f, false); err != nil {
|
||||
return err
|
||||
}
|
||||
return fl.f.Close()
|
||||
}
|
||||
|
||||
func newFileLock(path string) (fl fileLock, err error) {
|
||||
flag := os.O_RDWR
|
||||
f, err := os.OpenFile(path, flag, 0)
|
||||
if os.IsNotExist(err) {
|
||||
f, err = os.OpenFile(path, flag|os.O_CREATE, 0644)
|
||||
}
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
err = setFileLock(f, true)
|
||||
if err != nil {
|
||||
f.Close()
|
||||
return
|
||||
}
|
||||
fl = &unixFileLock{f: f}
|
||||
return
|
||||
}
|
||||
|
||||
func setFileLock(f *os.File, lock bool) error {
|
||||
how := syscall.LOCK_UN
|
||||
if lock {
|
||||
how = syscall.LOCK_EX
|
||||
}
|
||||
return syscall.Flock(int(f.Fd()), how|syscall.LOCK_NB)
|
||||
}
|
28
internal/btree/file_lock_windows.go
Normal file
28
internal/btree/file_lock_windows.go
Normal file
@ -0,0 +1,28 @@
|
||||
package btree
|
||||
|
||||
import "syscall"
|
||||
|
||||
type windowsFileLock struct {
|
||||
fd syscall.Handle
|
||||
}
|
||||
|
||||
func (fl *windowsFileLock) release() error {
|
||||
return syscall.Close(fl.fd)
|
||||
}
|
||||
|
||||
func newFileLock(path string) (fileLock, error) {
|
||||
pathp, err := syscall.UTF16PtrFromString(path)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
const access uint32 = syscall.GENERIC_READ | syscall.GENERIC_WRITE
|
||||
fd, err := syscall.CreateFile(pathp, access, 0, nil, syscall.OPEN_EXISTING, syscall.FILE_ATTRIBUTE_NORMAL, 0)
|
||||
if err == syscall.ERROR_FILE_NOT_FOUND {
|
||||
fd, err = syscall.CreateFile(pathp, access, 0, nil, syscall.OPEN_ALWAYS, syscall.FILE_ATTRIBUTE_NORMAL, 0)
|
||||
}
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return &windowsFileLock{fd: fd}, nil
|
||||
}
|
@ -30,7 +30,7 @@ func EnsureBool(p interface{}, defaultVal bool) bool {
|
||||
if !j.Exists() {
|
||||
return defaultVal
|
||||
}
|
||||
switch j.Type { // nolint
|
||||
switch j.Type { // nolint: exhaustive
|
||||
case gjson.True:
|
||||
return true
|
||||
case gjson.False:
|
||||
|
@ -7,13 +7,12 @@ import (
|
||||
"fmt"
|
||||
"hash"
|
||||
"io"
|
||||
"math"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"runtime"
|
||||
"strings"
|
||||
|
||||
"github.com/dustin/go-humanize"
|
||||
"github.com/kardianos/osext"
|
||||
"github.com/sirupsen/logrus"
|
||||
"github.com/tidwall/gjson"
|
||||
|
||||
@ -147,13 +146,33 @@ func (wc *writeSumCounter) Write(p []byte) (int, error) {
|
||||
wc.total += uint64(n)
|
||||
wc.hash.Write(p)
|
||||
fmt.Printf("\r ")
|
||||
fmt.Printf("\rDownloading... %s complete", humanize.Bytes(wc.total))
|
||||
fmt.Printf("\rDownloading... %s complete", humanBytes(wc.total))
|
||||
return n, nil
|
||||
}
|
||||
|
||||
func logn(n, b float64) float64 {
|
||||
return math.Log(n) / math.Log(b)
|
||||
}
|
||||
|
||||
func humanBytes(s uint64) string {
|
||||
sizes := []string{"B", "kB", "MB", "GB"} // GB对于go-cqhttp来说已经够用了
|
||||
if s < 10 {
|
||||
return fmt.Sprintf("%d B", s)
|
||||
}
|
||||
e := math.Floor(logn(float64(s), 1000))
|
||||
suffix := sizes[int(e)]
|
||||
val := math.Floor(float64(s)/math.Pow(1000, e)*10+0.5) / 10
|
||||
f := "%.0f %s"
|
||||
if val < 10 {
|
||||
f = "%.1f %s"
|
||||
}
|
||||
return fmt.Sprintf(f, val, suffix)
|
||||
}
|
||||
|
||||
// FromStream copy form getlantern/go-update
|
||||
func fromStream(updateWith io.Reader) (err error, errRecover error) {
|
||||
updatePath, err := osext.Executable()
|
||||
updatePath, err := os.Executable()
|
||||
updatePath = filepath.Clean(updatePath)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
|
@ -6,12 +6,11 @@ package selfupdate
|
||||
import (
|
||||
"archive/tar"
|
||||
"bytes"
|
||||
"compress/gzip"
|
||||
"crypto/sha256"
|
||||
"errors"
|
||||
"io"
|
||||
"net/http"
|
||||
|
||||
"github.com/klauspost/compress/gzip"
|
||||
)
|
||||
|
||||
// update go-cqhttp自我更新
|
||||
|
@ -1,13 +1,12 @@
|
||||
package selfupdate
|
||||
|
||||
import (
|
||||
"archive/zip"
|
||||
"bytes"
|
||||
"crypto/sha256"
|
||||
"errors"
|
||||
"io"
|
||||
"net/http"
|
||||
|
||||
"github.com/klauspost/compress/zip"
|
||||
)
|
||||
|
||||
// update go-cqhttp自我更新
|
||||
|
10
main.go
10
main.go
@ -3,10 +3,12 @@ package main
|
||||
import (
|
||||
"github.com/Mrs4s/go-cqhttp/cmd/gocq"
|
||||
|
||||
_ "github.com/Mrs4s/go-cqhttp/db/leveldb" // leveldb
|
||||
_ "github.com/Mrs4s/go-cqhttp/modules/mime" // mime检查模块
|
||||
_ "github.com/Mrs4s/go-cqhttp/modules/pprof" // pprof 性能分析
|
||||
_ "github.com/Mrs4s/go-cqhttp/modules/silk" // silk编码模块
|
||||
_ "github.com/Mrs4s/go-cqhttp/db/leveldb" // leveldb
|
||||
_ "github.com/Mrs4s/go-cqhttp/modules/mime" // mime检查模块
|
||||
_ "github.com/Mrs4s/go-cqhttp/modules/silk" // silk编码模块
|
||||
// 其他模块
|
||||
// _ "github.com/Mrs4s/go-cqhttp/db/mongodb" // mongodb 数据库支持
|
||||
// _ "github.com/Mrs4s/go-cqhttp/modules/pprof" // pprof 性能分析
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
@ -304,6 +304,13 @@ func (c *Caller) call(action string, p Getter) global.MSG {
|
||||
p2 := p.Get("role_id").Uint()
|
||||
p3 := p.Get("users")
|
||||
return c.bot.CQSetGuildMemberRole(p0, p1, p2, p3)
|
||||
case "set_qq_profile":
|
||||
p0 := p.Get("nickname")
|
||||
p1 := p.Get("company")
|
||||
p2 := p.Get("email")
|
||||
p3 := p.Get("college")
|
||||
p4 := p.Get("personal_note")
|
||||
return c.bot.CQSetQQProfile(p0, p1, p2, p3, p4)
|
||||
case "update_guild_role":
|
||||
p0 := p.Get("guild_id").Uint()
|
||||
p1 := p.Get("role_id").Uint()
|
||||
|
@ -8,7 +8,6 @@ import (
|
||||
"os"
|
||||
"regexp"
|
||||
"strings"
|
||||
"sync"
|
||||
|
||||
log "github.com/sirupsen/logrus"
|
||||
"gopkg.in/yaml.v3"
|
||||
@ -75,18 +74,6 @@ type Server struct {
|
||||
Default string
|
||||
}
|
||||
|
||||
// LevelDBConfig leveldb 相关配置
|
||||
type LevelDBConfig struct {
|
||||
Enable bool `yaml:"enable"`
|
||||
}
|
||||
|
||||
// MongoDBConfig mongodb 相关配置
|
||||
type MongoDBConfig struct {
|
||||
Enable bool `yaml:"enable"`
|
||||
URI string `yaml:"uri"`
|
||||
Database string `yaml:"database"`
|
||||
}
|
||||
|
||||
// Parse 从默认配置文件路径中获取
|
||||
func Parse(path string) *Config {
|
||||
file, err := os.ReadFile(path)
|
||||
@ -103,16 +90,11 @@ func Parse(path string) *Config {
|
||||
return config
|
||||
}
|
||||
|
||||
var (
|
||||
serverconfs []*Server
|
||||
mu sync.Mutex
|
||||
)
|
||||
var serverconfs []*Server
|
||||
|
||||
// AddServer 添加该服务的简介和默认配置
|
||||
func AddServer(s *Server) {
|
||||
mu.Lock()
|
||||
serverconfs = append(serverconfs, s)
|
||||
mu.Unlock()
|
||||
}
|
||||
|
||||
// generateConfig 生成配置文件
|
||||
|
@ -43,4 +43,5 @@ func Run(bot *coolq.CQBot) {
|
||||
for _, fn := range nocfgsvr {
|
||||
go fn(bot)
|
||||
}
|
||||
base.Servers = nil
|
||||
}
|
||||
|
@ -51,7 +51,6 @@ type httpServerPost struct {
|
||||
}
|
||||
|
||||
type httpServer struct {
|
||||
HTTP *http.Server
|
||||
api *api.Caller
|
||||
accessToken string
|
||||
}
|
||||
@ -87,11 +86,11 @@ const httpDefault = `
|
||||
post: # 反向HTTP POST地址列表
|
||||
#- url: '' # 地址
|
||||
# secret: '' # 密钥
|
||||
# max-retries: 3 # 最大重试,0 时禁用
|
||||
# max-retries: 3 # 最大重试,0 时禁用
|
||||
# retries-interval: 1500 # 重试时间,单位毫秒,0 时立即
|
||||
#- url: http://127.0.0.1:5701/ # 地址
|
||||
# secret: '' # 密钥
|
||||
# max-retries: 10 # 最大重试,0 时禁用
|
||||
# max-retries: 10 # 最大重试,0 时禁用
|
||||
# retries-interval: 1000 # 重试时间,单位毫秒,0 时立即
|
||||
`
|
||||
|
||||
@ -259,11 +258,11 @@ func runHTTP(bot *coolq.CQBot, node yaml.Node) {
|
||||
|
||||
go func() {
|
||||
log.Infof("CQ HTTP 服务器已启动: %v", addr)
|
||||
s.HTTP = &http.Server{
|
||||
server := &http.Server{
|
||||
Addr: addr,
|
||||
Handler: s,
|
||||
}
|
||||
if err := s.HTTP.ListenAndServe(); err != nil && err != http.ErrServerClosed {
|
||||
if err := server.ListenAndServe(); err != nil && err != http.ErrServerClosed {
|
||||
log.Error(err)
|
||||
log.Infof("HTTP 服务启动失败, 请检查端口是否被占用.")
|
||||
log.Warnf("将在五秒后退出.")
|
||||
|
@ -190,9 +190,9 @@ func (c *lambdaClient) next() *http.Request {
|
||||
if resp.StatusCode != http.StatusOK {
|
||||
return nil
|
||||
}
|
||||
req := new(http.Request)
|
||||
invoke := new(lambdaInvoke)
|
||||
_ = json.NewDecoder(resp.Body).Decode(invoke)
|
||||
var req http.Request
|
||||
var invoke lambdaInvoke
|
||||
_ = json.NewDecoder(resp.Body).Decode(&invoke)
|
||||
if invoke.HTTPMethod == "" { // 不是 api 网关
|
||||
return nil
|
||||
}
|
||||
@ -211,5 +211,5 @@ func (c *lambdaClient) next() *http.Request {
|
||||
query[k] = []string{v}
|
||||
}
|
||||
req.URL.RawQuery = query.Encode()
|
||||
return req
|
||||
return &req
|
||||
}
|
||||
|
Reference in New Issue
Block a user