mirror of
https://github.com/Mrs4s/go-cqhttp.git
synced 2025-06-30 20:03:24 +00:00
Compare commits
48 Commits
stream-api
...
v1.0.0-bet
Author | SHA1 | Date | |
---|---|---|---|
efdd6bd16a | |||
6d19f07eb4 | |||
760bb175c7 | |||
4da5d9ebfb | |||
a6f82d85be | |||
c62f193005 | |||
f386a9b94e | |||
48afb44287 | |||
75fe0294ac | |||
1290a3dd10 | |||
59209068bf | |||
757661bcf7 | |||
b8bf3f9711 | |||
eadd688e5a | |||
8c89d3c432 | |||
cfaa18b131 | |||
c975975e30 | |||
ec4ecb1093 | |||
b01ea99d1a | |||
8c94c810d6 | |||
7485b51c48 | |||
449ae96c8f | |||
7f26df3ac7 | |||
bfea93312a | |||
f8dfa8db2c | |||
74fd4bbf35 | |||
16db68e054 | |||
346e01c4e9 | |||
a69d52821f | |||
d70c2a0b70 | |||
46d0d58865 | |||
d1ca68ed32 | |||
c8958b2a42 | |||
d98ad55826 | |||
8ac460dde9 | |||
520cdd90bb | |||
5fb3233a44 | |||
c61a913c49 | |||
24c1192fa6 | |||
8773e19d2c | |||
8d6978a60d | |||
385443ee2d | |||
7f0826b594 | |||
dc48958292 | |||
e820a2a152 | |||
022eb9fd3b | |||
11a5dbb64a | |||
78d76f55e2 |
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -22,15 +22,13 @@ jobs:
|
|||||||
goarch: arm
|
goarch: arm
|
||||||
- goos: darwin
|
- goos: darwin
|
||||||
goarch: "386"
|
goarch: "386"
|
||||||
- goos: windows
|
|
||||||
goarch: arm64
|
|
||||||
fail-fast: true
|
fail-fast: true
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Setup Go environment
|
- name: Setup Go environment
|
||||||
uses: actions/setup-go@v2.1.3
|
uses: actions/setup-go@v2.1.3
|
||||||
with:
|
with:
|
||||||
go-version: 1.16
|
go-version: 1.17
|
||||||
- name: Cache downloaded module
|
- name: Cache downloaded module
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
|
2
.github/workflows/golint.yml
vendored
2
.github/workflows/golint.yml
vendored
@ -12,7 +12,7 @@ jobs:
|
|||||||
- name: Setup Go environment
|
- name: Setup Go environment
|
||||||
uses: actions/setup-go@v2.1.3
|
uses: actions/setup-go@v2.1.3
|
||||||
with:
|
with:
|
||||||
go-version: 1.16
|
go-version: 1.17
|
||||||
|
|
||||||
- name: golangci-lint
|
- name: golangci-lint
|
||||||
uses: golangci/golangci-lint-action@v2
|
uses: golangci/golangci-lint-action@v2
|
||||||
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -17,7 +17,7 @@ jobs:
|
|||||||
- name: Set up Go
|
- name: Set up Go
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: '1.16.2'
|
go-version: '1.17'
|
||||||
|
|
||||||
- name: Run GoReleaser
|
- name: Run GoReleaser
|
||||||
uses: goreleaser/goreleaser-action@v2
|
uses: goreleaser/goreleaser-action@v2
|
||||||
|
@ -38,6 +38,7 @@ builds:
|
|||||||
- 386
|
- 386
|
||||||
- amd64
|
- amd64
|
||||||
- arm
|
- arm
|
||||||
|
- arm64
|
||||||
goarm:
|
goarm:
|
||||||
- 7
|
- 7
|
||||||
mod_timestamp: "{{ .CommitTimestamp }}"
|
mod_timestamp: "{{ .CommitTimestamp }}"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM golang:1.16-alpine AS builder
|
FROM golang:1.17-alpine AS builder
|
||||||
|
|
||||||
RUN go env -w GO111MODULE=auto \
|
RUN go env -w GO111MODULE=auto \
|
||||||
&& go env -w CGO_ENABLED=0 \
|
&& go env -w CGO_ENABLED=0 \
|
||||||
|
344
coolq/api.go
344
coolq/api.go
@ -3,6 +3,7 @@ package coolq
|
|||||||
import (
|
import (
|
||||||
"crypto/md5"
|
"crypto/md5"
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"math"
|
"math"
|
||||||
"os"
|
"os"
|
||||||
@ -17,6 +18,7 @@ import (
|
|||||||
"github.com/Mrs4s/MiraiGo/binary"
|
"github.com/Mrs4s/MiraiGo/binary"
|
||||||
"github.com/Mrs4s/MiraiGo/client"
|
"github.com/Mrs4s/MiraiGo/client"
|
||||||
"github.com/Mrs4s/MiraiGo/message"
|
"github.com/Mrs4s/MiraiGo/message"
|
||||||
|
"github.com/Mrs4s/MiraiGo/utils"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
"github.com/tidwall/gjson"
|
"github.com/tidwall/gjson"
|
||||||
|
|
||||||
@ -39,16 +41,16 @@ func init() {
|
|||||||
// CQGetLoginInfo 获取登录号信息
|
// CQGetLoginInfo 获取登录号信息
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz1I
|
// https://git.io/Jtz1I
|
||||||
func (bot *CQBot) CQGetLoginInfo() MSG {
|
func (bot *CQBot) CQGetLoginInfo() global.MSG {
|
||||||
return OK(MSG{"user_id": bot.Client.Uin, "nickname": bot.Client.Nickname})
|
return OK(global.MSG{"user_id": bot.Client.Uin, "nickname": bot.Client.Nickname})
|
||||||
}
|
}
|
||||||
|
|
||||||
// CQGetQiDianAccountInfo 获取企点账号信息
|
// CQGetQiDianAccountInfo 获取企点账号信息
|
||||||
func (bot *CQBot) CQGetQiDianAccountInfo() MSG {
|
func (bot *CQBot) CQGetQiDianAccountInfo() global.MSG {
|
||||||
if bot.Client.QiDian == nil {
|
if bot.Client.QiDian == nil {
|
||||||
return Failed(100, "QIDIAN_PROTOCOL_REQUEST", "请使用企点协议")
|
return Failed(100, "QIDIAN_PROTOCOL_REQUEST", "请使用企点协议")
|
||||||
}
|
}
|
||||||
return OK(MSG{
|
return OK(global.MSG{
|
||||||
"master_id": bot.Client.QiDian.MasterUin,
|
"master_id": bot.Client.QiDian.MasterUin,
|
||||||
"ext_name": bot.Client.QiDian.ExtName,
|
"ext_name": bot.Client.QiDian.ExtName,
|
||||||
"create_time": bot.Client.QiDian.CreateTime,
|
"create_time": bot.Client.QiDian.CreateTime,
|
||||||
@ -58,10 +60,10 @@ func (bot *CQBot) CQGetQiDianAccountInfo() MSG {
|
|||||||
// CQGetFriendList 获取好友列表
|
// CQGetFriendList 获取好友列表
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz1L
|
// https://git.io/Jtz1L
|
||||||
func (bot *CQBot) CQGetFriendList() MSG {
|
func (bot *CQBot) CQGetFriendList() global.MSG {
|
||||||
fs := make([]MSG, 0, len(bot.Client.FriendList))
|
fs := make([]global.MSG, 0, len(bot.Client.FriendList))
|
||||||
for _, f := range bot.Client.FriendList {
|
for _, f := range bot.Client.FriendList {
|
||||||
fs = append(fs, MSG{
|
fs = append(fs, global.MSG{
|
||||||
"nickname": f.Nickname,
|
"nickname": f.Nickname,
|
||||||
"remark": f.Remark,
|
"remark": f.Remark,
|
||||||
"user_id": f.Uin,
|
"user_id": f.Uin,
|
||||||
@ -70,10 +72,51 @@ func (bot *CQBot) CQGetFriendList() MSG {
|
|||||||
return OK(fs)
|
return OK(fs)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// CQGetUnidirectionalFriendList 获取单向好友列表
|
||||||
|
//
|
||||||
|
//
|
||||||
|
func (bot *CQBot) CQGetUnidirectionalFriendList() global.MSG {
|
||||||
|
list, err := bot.Client.GetUnidirectionalFriendList()
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("获取单向好友列表时出现错误: %v", err)
|
||||||
|
return Failed(100, "API_ERROR", err.Error())
|
||||||
|
}
|
||||||
|
fs := make([]global.MSG, 0, len(list))
|
||||||
|
for _, f := range list {
|
||||||
|
fs = append(fs, global.MSG{
|
||||||
|
"nickname": f.Nickname,
|
||||||
|
"user_id": f.Uin,
|
||||||
|
"source": f.Source,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return OK(fs)
|
||||||
|
}
|
||||||
|
|
||||||
|
// CQDeleteUnidirectionalFriend 删除单向好友
|
||||||
|
//
|
||||||
|
//
|
||||||
|
func (bot *CQBot) CQDeleteUnidirectionalFriend(uin int64) global.MSG {
|
||||||
|
list, err := bot.Client.GetUnidirectionalFriendList()
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("获取单向好友列表时出现错误: %v", err)
|
||||||
|
return Failed(100, "API_ERROR", err.Error())
|
||||||
|
}
|
||||||
|
for _, f := range list {
|
||||||
|
if f.Uin == uin {
|
||||||
|
if err = bot.Client.DeleteUnidirectionalFriend(uin); err != nil {
|
||||||
|
log.Errorf("删除单向好友时出现错误: %v", err)
|
||||||
|
return Failed(100, "API_ERROR", err.Error())
|
||||||
|
}
|
||||||
|
return OK(nil)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Failed(100, "FRIEND_NOT_FOUND", "好友不存在")
|
||||||
|
}
|
||||||
|
|
||||||
// CQDeleteFriend 删除好友
|
// CQDeleteFriend 删除好友
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
func (bot *CQBot) CQDeleteFriend(uin int64) MSG {
|
func (bot *CQBot) CQDeleteFriend(uin int64) global.MSG {
|
||||||
if bot.Client.FindFriend(uin) == nil {
|
if bot.Client.FindFriend(uin) == nil {
|
||||||
return Failed(100, "FRIEND_NOT_FOUND", "好友不存在")
|
return Failed(100, "FRIEND_NOT_FOUND", "好友不存在")
|
||||||
}
|
}
|
||||||
@ -87,13 +130,13 @@ func (bot *CQBot) CQDeleteFriend(uin int64) MSG {
|
|||||||
// CQGetGroupList 获取群列表
|
// CQGetGroupList 获取群列表
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz1t
|
// https://git.io/Jtz1t
|
||||||
func (bot *CQBot) CQGetGroupList(noCache bool) MSG {
|
func (bot *CQBot) CQGetGroupList(noCache bool) global.MSG {
|
||||||
gs := make([]MSG, 0, len(bot.Client.GroupList))
|
gs := make([]global.MSG, 0, len(bot.Client.GroupList))
|
||||||
if noCache {
|
if noCache {
|
||||||
_ = bot.Client.ReloadGroupList()
|
_ = bot.Client.ReloadGroupList()
|
||||||
}
|
}
|
||||||
for _, g := range bot.Client.GroupList {
|
for _, g := range bot.Client.GroupList {
|
||||||
gs = append(gs, MSG{
|
gs = append(gs, global.MSG{
|
||||||
"group_id": g.Code,
|
"group_id": g.Code,
|
||||||
"group_name": g.Name,
|
"group_name": g.Name,
|
||||||
"group_memo": g.Memo,
|
"group_memo": g.Memo,
|
||||||
@ -109,7 +152,7 @@ func (bot *CQBot) CQGetGroupList(noCache bool) MSG {
|
|||||||
// CQGetGroupInfo 获取群信息
|
// CQGetGroupInfo 获取群信息
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz1O
|
// https://git.io/Jtz1O
|
||||||
func (bot *CQBot) CQGetGroupInfo(groupID int64, noCache bool) MSG {
|
func (bot *CQBot) CQGetGroupInfo(groupID int64, noCache bool) global.MSG {
|
||||||
group := bot.Client.FindGroup(groupID)
|
group := bot.Client.FindGroup(groupID)
|
||||||
if group == nil || noCache {
|
if group == nil || noCache {
|
||||||
group, _ = bot.Client.GetGroupInfo(groupID)
|
group, _ = bot.Client.GetGroupInfo(groupID)
|
||||||
@ -122,7 +165,7 @@ func (bot *CQBot) CQGetGroupInfo(groupID int64, noCache bool) MSG {
|
|||||||
}
|
}
|
||||||
for _, g := range info {
|
for _, g := range info {
|
||||||
if g.Code == groupID {
|
if g.Code == groupID {
|
||||||
return OK(MSG{
|
return OK(global.MSG{
|
||||||
"group_id": g.Code,
|
"group_id": g.Code,
|
||||||
"group_name": g.Name,
|
"group_name": g.Name,
|
||||||
"group_memo": g.Memo,
|
"group_memo": g.Memo,
|
||||||
@ -134,7 +177,7 @@ func (bot *CQBot) CQGetGroupInfo(groupID int64, noCache bool) MSG {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return OK(MSG{
|
return OK(global.MSG{
|
||||||
"group_id": group.Code,
|
"group_id": group.Code,
|
||||||
"group_name": group.Name,
|
"group_name": group.Name,
|
||||||
"group_memo": group.Memo,
|
"group_memo": group.Memo,
|
||||||
@ -150,7 +193,7 @@ func (bot *CQBot) CQGetGroupInfo(groupID int64, noCache bool) MSG {
|
|||||||
// CQGetGroupMemberList 获取群成员列表
|
// CQGetGroupMemberList 获取群成员列表
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz13
|
// https://git.io/Jtz13
|
||||||
func (bot *CQBot) CQGetGroupMemberList(groupID int64, noCache bool) MSG {
|
func (bot *CQBot) CQGetGroupMemberList(groupID int64, noCache bool) global.MSG {
|
||||||
group := bot.Client.FindGroup(groupID)
|
group := bot.Client.FindGroup(groupID)
|
||||||
if group == nil {
|
if group == nil {
|
||||||
return Failed(100, "GROUP_NOT_FOUND", "群聊不存在")
|
return Failed(100, "GROUP_NOT_FOUND", "群聊不存在")
|
||||||
@ -163,7 +206,7 @@ func (bot *CQBot) CQGetGroupMemberList(groupID int64, noCache bool) MSG {
|
|||||||
}
|
}
|
||||||
group.Members = t
|
group.Members = t
|
||||||
}
|
}
|
||||||
members := make([]MSG, 0, len(group.Members))
|
members := make([]global.MSG, 0, len(group.Members))
|
||||||
for _, m := range group.Members {
|
for _, m := range group.Members {
|
||||||
members = append(members, convertGroupMemberInfo(groupID, m))
|
members = append(members, convertGroupMemberInfo(groupID, m))
|
||||||
}
|
}
|
||||||
@ -173,7 +216,7 @@ func (bot *CQBot) CQGetGroupMemberList(groupID int64, noCache bool) MSG {
|
|||||||
// CQGetGroupMemberInfo 获取群成员信息
|
// CQGetGroupMemberInfo 获取群成员信息
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz1s
|
// https://git.io/Jtz1s
|
||||||
func (bot *CQBot) CQGetGroupMemberInfo(groupID, userID int64, noCache bool) MSG {
|
func (bot *CQBot) CQGetGroupMemberInfo(groupID, userID int64, noCache bool) global.MSG {
|
||||||
group := bot.Client.FindGroup(groupID)
|
group := bot.Client.FindGroup(groupID)
|
||||||
if group == nil {
|
if group == nil {
|
||||||
return Failed(100, "GROUP_NOT_FOUND", "群聊不存在")
|
return Failed(100, "GROUP_NOT_FOUND", "群聊不存在")
|
||||||
@ -198,7 +241,7 @@ func (bot *CQBot) CQGetGroupMemberInfo(groupID, userID int64, noCache bool) MSG
|
|||||||
// CQGetGroupFileSystemInfo 扩展API-获取群文件系统信息
|
// CQGetGroupFileSystemInfo 扩展API-获取群文件系统信息
|
||||||
//
|
//
|
||||||
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96%E7%BE%A4%E6%96%87%E4%BB%B6%E7%B3%BB%E7%BB%9F%E4%BF%A1%E6%81%AF
|
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96%E7%BE%A4%E6%96%87%E4%BB%B6%E7%B3%BB%E7%BB%9F%E4%BF%A1%E6%81%AF
|
||||||
func (bot *CQBot) CQGetGroupFileSystemInfo(groupID int64) MSG {
|
func (bot *CQBot) CQGetGroupFileSystemInfo(groupID int64) global.MSG {
|
||||||
fs, err := bot.Client.GetGroupFileSystem(groupID)
|
fs, err := bot.Client.GetGroupFileSystem(groupID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Errorf("获取群 %v 文件系统信息失败: %v", groupID, err)
|
log.Errorf("获取群 %v 文件系统信息失败: %v", groupID, err)
|
||||||
@ -210,7 +253,7 @@ func (bot *CQBot) CQGetGroupFileSystemInfo(groupID int64) MSG {
|
|||||||
// CQGetGroupRootFiles 扩展API-获取群根目录文件列表
|
// CQGetGroupRootFiles 扩展API-获取群根目录文件列表
|
||||||
//
|
//
|
||||||
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96%E7%BE%A4%E6%A0%B9%E7%9B%AE%E5%BD%95%E6%96%87%E4%BB%B6%E5%88%97%E8%A1%A8
|
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96%E7%BE%A4%E6%A0%B9%E7%9B%AE%E5%BD%95%E6%96%87%E4%BB%B6%E5%88%97%E8%A1%A8
|
||||||
func (bot *CQBot) CQGetGroupRootFiles(groupID int64) MSG {
|
func (bot *CQBot) CQGetGroupRootFiles(groupID int64) global.MSG {
|
||||||
fs, err := bot.Client.GetGroupFileSystem(groupID)
|
fs, err := bot.Client.GetGroupFileSystem(groupID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Errorf("获取群 %v 文件系统信息失败: %v", groupID, err)
|
log.Errorf("获取群 %v 文件系统信息失败: %v", groupID, err)
|
||||||
@ -221,7 +264,7 @@ func (bot *CQBot) CQGetGroupRootFiles(groupID int64) MSG {
|
|||||||
log.Errorf("获取群 %v 根目录文件失败: %v", groupID, err)
|
log.Errorf("获取群 %v 根目录文件失败: %v", groupID, err)
|
||||||
return Failed(100, "FILE_SYSTEM_API_ERROR", err.Error())
|
return Failed(100, "FILE_SYSTEM_API_ERROR", err.Error())
|
||||||
}
|
}
|
||||||
return OK(MSG{
|
return OK(global.MSG{
|
||||||
"files": files,
|
"files": files,
|
||||||
"folders": folders,
|
"folders": folders,
|
||||||
})
|
})
|
||||||
@ -230,7 +273,7 @@ func (bot *CQBot) CQGetGroupRootFiles(groupID int64) MSG {
|
|||||||
// CQGetGroupFilesByFolderID 扩展API-获取群子目录文件列表
|
// CQGetGroupFilesByFolderID 扩展API-获取群子目录文件列表
|
||||||
//
|
//
|
||||||
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96%E7%BE%A4%E5%AD%90%E7%9B%AE%E5%BD%95%E6%96%87%E4%BB%B6%E5%88%97%E8%A1%A8
|
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96%E7%BE%A4%E5%AD%90%E7%9B%AE%E5%BD%95%E6%96%87%E4%BB%B6%E5%88%97%E8%A1%A8
|
||||||
func (bot *CQBot) CQGetGroupFilesByFolderID(groupID int64, folderID string) MSG {
|
func (bot *CQBot) CQGetGroupFilesByFolderID(groupID int64, folderID string) global.MSG {
|
||||||
fs, err := bot.Client.GetGroupFileSystem(groupID)
|
fs, err := bot.Client.GetGroupFileSystem(groupID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Errorf("获取群 %v 文件系统信息失败: %v", groupID, err)
|
log.Errorf("获取群 %v 文件系统信息失败: %v", groupID, err)
|
||||||
@ -241,7 +284,7 @@ func (bot *CQBot) CQGetGroupFilesByFolderID(groupID int64, folderID string) MSG
|
|||||||
log.Errorf("获取群 %v 根目录 %v 子文件失败: %v", groupID, folderID, err)
|
log.Errorf("获取群 %v 根目录 %v 子文件失败: %v", groupID, folderID, err)
|
||||||
return Failed(100, "FILE_SYSTEM_API_ERROR", err.Error())
|
return Failed(100, "FILE_SYSTEM_API_ERROR", err.Error())
|
||||||
}
|
}
|
||||||
return OK(MSG{
|
return OK(global.MSG{
|
||||||
"files": files,
|
"files": files,
|
||||||
"folders": folders,
|
"folders": folders,
|
||||||
})
|
})
|
||||||
@ -250,12 +293,12 @@ func (bot *CQBot) CQGetGroupFilesByFolderID(groupID int64, folderID string) MSG
|
|||||||
// CQGetGroupFileURL 扩展API-获取群文件资源链接
|
// CQGetGroupFileURL 扩展API-获取群文件资源链接
|
||||||
//
|
//
|
||||||
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96%E7%BE%A4%E6%96%87%E4%BB%B6%E8%B5%84%E6%BA%90%E9%93%BE%E6%8E%A5
|
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96%E7%BE%A4%E6%96%87%E4%BB%B6%E8%B5%84%E6%BA%90%E9%93%BE%E6%8E%A5
|
||||||
func (bot *CQBot) CQGetGroupFileURL(groupID int64, fileID string, busID int32) MSG {
|
func (bot *CQBot) CQGetGroupFileURL(groupID int64, fileID string, busID int32) global.MSG {
|
||||||
url := bot.Client.GetGroupFileUrl(groupID, fileID, busID)
|
url := bot.Client.GetGroupFileUrl(groupID, fileID, busID)
|
||||||
if url == "" {
|
if url == "" {
|
||||||
return Failed(100, "FILE_SYSTEM_API_ERROR")
|
return Failed(100, "FILE_SYSTEM_API_ERROR")
|
||||||
}
|
}
|
||||||
return OK(MSG{
|
return OK(global.MSG{
|
||||||
"url": url,
|
"url": url,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -263,7 +306,7 @@ func (bot *CQBot) CQGetGroupFileURL(groupID int64, fileID string, busID int32) M
|
|||||||
// CQUploadGroupFile 扩展API-上传群文件
|
// CQUploadGroupFile 扩展API-上传群文件
|
||||||
//
|
//
|
||||||
// https://docs.go-cqhttp.org/api/#%E4%B8%8A%E4%BC%A0%E7%BE%A4%E6%96%87%E4%BB%B6
|
// https://docs.go-cqhttp.org/api/#%E4%B8%8A%E4%BC%A0%E7%BE%A4%E6%96%87%E4%BB%B6
|
||||||
func (bot *CQBot) CQUploadGroupFile(groupID int64, file, name, folder string) MSG {
|
func (bot *CQBot) CQUploadGroupFile(groupID int64, file, name, folder string) global.MSG {
|
||||||
if !global.PathExists(file) {
|
if !global.PathExists(file) {
|
||||||
log.Errorf("上传群文件 %v 失败: 文件不存在", file)
|
log.Errorf("上传群文件 %v 失败: 文件不存在", file)
|
||||||
return Failed(100, "FILE_NOT_FOUND", "文件不存在")
|
return Failed(100, "FILE_NOT_FOUND", "文件不存在")
|
||||||
@ -286,7 +329,7 @@ func (bot *CQBot) CQUploadGroupFile(groupID int64, file, name, folder string) MS
|
|||||||
// CQGroupFileCreateFolder 拓展API-创建群文件文件夹
|
// CQGroupFileCreateFolder 拓展API-创建群文件文件夹
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
func (bot *CQBot) CQGroupFileCreateFolder(groupID int64, parentID, name string) MSG {
|
func (bot *CQBot) CQGroupFileCreateFolder(groupID int64, parentID, name string) global.MSG {
|
||||||
fs, err := bot.Client.GetGroupFileSystem(groupID)
|
fs, err := bot.Client.GetGroupFileSystem(groupID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Errorf("获取群 %v 文件系统信息失败: %v", groupID, err)
|
log.Errorf("获取群 %v 文件系统信息失败: %v", groupID, err)
|
||||||
@ -302,7 +345,7 @@ func (bot *CQBot) CQGroupFileCreateFolder(groupID int64, parentID, name string)
|
|||||||
// CQGroupFileDeleteFolder 拓展API-删除群文件文件夹
|
// CQGroupFileDeleteFolder 拓展API-删除群文件文件夹
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
func (bot *CQBot) CQGroupFileDeleteFolder(groupID int64, id string) MSG {
|
func (bot *CQBot) CQGroupFileDeleteFolder(groupID int64, id string) global.MSG {
|
||||||
fs, err := bot.Client.GetGroupFileSystem(groupID)
|
fs, err := bot.Client.GetGroupFileSystem(groupID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Errorf("获取群 %v 文件系统信息失败: %v", groupID, err)
|
log.Errorf("获取群 %v 文件系统信息失败: %v", groupID, err)
|
||||||
@ -318,7 +361,7 @@ func (bot *CQBot) CQGroupFileDeleteFolder(groupID int64, id string) MSG {
|
|||||||
// CQGroupFileDeleteFile 拓展API-删除群文件
|
// CQGroupFileDeleteFile 拓展API-删除群文件
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
func (bot *CQBot) CQGroupFileDeleteFile(groupID int64, id string, busID int32) MSG {
|
func (bot *CQBot) CQGroupFileDeleteFile(groupID int64, id string, busID int32) global.MSG {
|
||||||
fs, err := bot.Client.GetGroupFileSystem(groupID)
|
fs, err := bot.Client.GetGroupFileSystem(groupID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Errorf("获取群 %v 文件系统信息失败: %v", groupID, err)
|
log.Errorf("获取群 %v 文件系统信息失败: %v", groupID, err)
|
||||||
@ -334,7 +377,7 @@ func (bot *CQBot) CQGroupFileDeleteFile(groupID int64, id string, busID int32) M
|
|||||||
// CQGetWordSlices 隐藏API-获取中文分词
|
// CQGetWordSlices 隐藏API-获取中文分词
|
||||||
//
|
//
|
||||||
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96%E4%B8%AD%E6%96%87%E5%88%86%E8%AF%8D-%E9%9A%90%E8%97%8F-api
|
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96%E4%B8%AD%E6%96%87%E5%88%86%E8%AF%8D-%E9%9A%90%E8%97%8F-api
|
||||||
func (bot *CQBot) CQGetWordSlices(content string) MSG {
|
func (bot *CQBot) CQGetWordSlices(content string) global.MSG {
|
||||||
slices, err := bot.Client.GetWordSegmentation(content)
|
slices, err := bot.Client.GetWordSegmentation(content)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return Failed(100, "WORD_SEGMENTATION_API_ERROR", err.Error())
|
return Failed(100, "WORD_SEGMENTATION_API_ERROR", err.Error())
|
||||||
@ -342,13 +385,13 @@ func (bot *CQBot) CQGetWordSlices(content string) MSG {
|
|||||||
for i := 0; i < len(slices); i++ {
|
for i := 0; i < len(slices); i++ {
|
||||||
slices[i] = strings.ReplaceAll(slices[i], "\u0000", "")
|
slices[i] = strings.ReplaceAll(slices[i], "\u0000", "")
|
||||||
}
|
}
|
||||||
return OK(MSG{"slices": slices})
|
return OK(global.MSG{"slices": slices})
|
||||||
}
|
}
|
||||||
|
|
||||||
// CQSendGroupMessage 发送群消息
|
// CQSendGroupMessage 发送群消息
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz1c
|
// https://git.io/Jtz1c
|
||||||
func (bot *CQBot) CQSendGroupMessage(groupID int64, m gjson.Result, autoEscape bool) MSG {
|
func (bot *CQBot) CQSendGroupMessage(groupID int64, m gjson.Result, autoEscape bool) global.MSG {
|
||||||
group := bot.Client.FindGroup(groupID)
|
group := bot.Client.FindGroup(groupID)
|
||||||
if group == nil {
|
if group == nil {
|
||||||
return Failed(100, "GROUP_NOT_FOUND", "群聊不存在")
|
return Failed(100, "GROUP_NOT_FOUND", "群聊不存在")
|
||||||
@ -366,40 +409,34 @@ func (bot *CQBot) CQSendGroupMessage(groupID int64, m gjson.Result, autoEscape b
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if m.Type == gjson.JSON {
|
|
||||||
elem := bot.ConvertObjectMessage(m, true)
|
|
||||||
fixAt(elem)
|
|
||||||
mid := bot.SendGroupMessage(groupID, &message.SendingMessage{Elements: elem})
|
|
||||||
if mid == -1 {
|
|
||||||
return Failed(100, "SEND_MSG_API_ERROR", "请参考 go-cqhttp 端输出")
|
|
||||||
}
|
|
||||||
log.Infof("发送群 %v(%v) 的消息: %v (%v)", group.Name, groupID, limitedString(ToStringMessage(elem, groupID)), mid)
|
|
||||||
return OK(MSG{"message_id": mid})
|
|
||||||
}
|
|
||||||
str := m.String()
|
|
||||||
if str == "" {
|
|
||||||
log.Warn("群消息发送失败: 信息为空.")
|
|
||||||
return Failed(100, "EMPTY_MSG_ERROR", "消息为空")
|
|
||||||
}
|
|
||||||
var elem []message.IMessageElement
|
var elem []message.IMessageElement
|
||||||
if autoEscape {
|
if m.Type == gjson.JSON {
|
||||||
elem = append(elem, message.NewText(str))
|
elem = bot.ConvertObjectMessage(m, true)
|
||||||
} else {
|
} else {
|
||||||
elem = bot.ConvertStringMessage(str, true)
|
str := m.String()
|
||||||
|
if str == "" {
|
||||||
|
log.Warn("群消息发送失败: 信息为空.")
|
||||||
|
return Failed(100, "EMPTY_MSG_ERROR", "消息为空")
|
||||||
|
}
|
||||||
|
if autoEscape {
|
||||||
|
elem = []message.IMessageElement{message.NewText(str)}
|
||||||
|
} else {
|
||||||
|
elem = bot.ConvertStringMessage(str, true)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
fixAt(elem)
|
fixAt(elem)
|
||||||
mid := bot.SendGroupMessage(groupID, &message.SendingMessage{Elements: elem})
|
mid := bot.SendGroupMessage(groupID, &message.SendingMessage{Elements: elem})
|
||||||
if mid == -1 {
|
if mid == -1 {
|
||||||
return Failed(100, "SEND_MSG_API_ERROR", "请参考 go-cqhttp 端输出")
|
return Failed(100, "SEND_MSG_API_ERROR", "请参考 go-cqhttp 端输出")
|
||||||
}
|
}
|
||||||
log.Infof("发送群 %v(%v) 的消息: %v (%v)", group.Name, groupID, limitedString(str), mid)
|
log.Infof("发送群 %v(%v) 的消息: %v (%v)", group.Name, groupID, limitedString(m.String()), mid)
|
||||||
return OK(MSG{"message_id": mid})
|
return OK(global.MSG{"message_id": mid})
|
||||||
}
|
}
|
||||||
|
|
||||||
// CQSendGroupForwardMessage 扩展API-发送合并转发(群)
|
// CQSendGroupForwardMessage 扩展API-发送合并转发(群)
|
||||||
//
|
//
|
||||||
// https://docs.go-cqhttp.org/api/#%E5%8F%91%E9%80%81%E5%90%88%E5%B9%B6%E8%BD%AC%E5%8F%91-%E7%BE%A4
|
// https://docs.go-cqhttp.org/api/#%E5%8F%91%E9%80%81%E5%90%88%E5%B9%B6%E8%BD%AC%E5%8F%91-%E7%BE%A4
|
||||||
func (bot *CQBot) CQSendGroupForwardMessage(groupID int64, m gjson.Result) MSG {
|
func (bot *CQBot) CQSendGroupForwardMessage(groupID int64, m gjson.Result) global.MSG {
|
||||||
if m.Type != gjson.JSON {
|
if m.Type != gjson.JSON {
|
||||||
return Failed(100)
|
return Failed(100)
|
||||||
}
|
}
|
||||||
@ -414,7 +451,7 @@ func (bot *CQBot) CQSendGroupForwardMessage(groupID int64, m gjson.Result) MSG {
|
|||||||
return true
|
return true
|
||||||
})
|
})
|
||||||
|
|
||||||
var resolveElement = func(elems []message.IMessageElement) []message.IMessageElement {
|
resolveElement := func(elems []message.IMessageElement) []message.IMessageElement {
|
||||||
for i, elem := range elems {
|
for i, elem := range elems {
|
||||||
switch elem.(type) {
|
switch elem.(type) {
|
||||||
case *LocalImageElement, *LocalVideoElement:
|
case *LocalImageElement, *LocalVideoElement:
|
||||||
@ -521,7 +558,7 @@ func (bot *CQBot) CQSendGroupForwardMessage(groupID int64, m gjson.Result) MSG {
|
|||||||
log.Warnf("合并转发(群)消息发送失败: 账号可能被风控.")
|
log.Warnf("合并转发(群)消息发送失败: 账号可能被风控.")
|
||||||
return Failed(100, "SEND_MSG_API_ERROR", "请参考 go-cqhttp 端输出")
|
return Failed(100, "SEND_MSG_API_ERROR", "请参考 go-cqhttp 端输出")
|
||||||
}
|
}
|
||||||
return OK(MSG{
|
return OK(global.MSG{
|
||||||
"message_id": bot.InsertGroupMessage(ret),
|
"message_id": bot.InsertGroupMessage(ret),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -531,38 +568,33 @@ func (bot *CQBot) CQSendGroupForwardMessage(groupID int64, m gjson.Result) MSG {
|
|||||||
// CQSendPrivateMessage 发送私聊消息
|
// CQSendPrivateMessage 发送私聊消息
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz1l
|
// https://git.io/Jtz1l
|
||||||
func (bot *CQBot) CQSendPrivateMessage(userID int64, groupID int64, m gjson.Result, autoEscape bool) MSG {
|
func (bot *CQBot) CQSendPrivateMessage(userID int64, groupID int64, m gjson.Result, autoEscape bool) global.MSG {
|
||||||
if m.Type == gjson.JSON {
|
|
||||||
elem := bot.ConvertObjectMessage(m, false)
|
|
||||||
mid := bot.SendPrivateMessage(userID, groupID, &message.SendingMessage{Elements: elem})
|
|
||||||
if mid == -1 {
|
|
||||||
return Failed(100, "SEND_MSG_API_ERROR", "请参考 go-cqhttp 端输出")
|
|
||||||
}
|
|
||||||
log.Infof("发送好友 %v(%v) 的消息: %v (%v)", userID, userID, limitedString(m.String()), mid)
|
|
||||||
return OK(MSG{"message_id": mid})
|
|
||||||
}
|
|
||||||
str := m.String()
|
|
||||||
if str == "" {
|
|
||||||
return Failed(100, "EMPTY_MSG_ERROR", "消息为空")
|
|
||||||
}
|
|
||||||
var elem []message.IMessageElement
|
var elem []message.IMessageElement
|
||||||
if autoEscape {
|
if m.Type == gjson.JSON {
|
||||||
elem = append(elem, message.NewText(str))
|
elem = bot.ConvertObjectMessage(m, false)
|
||||||
} else {
|
} else {
|
||||||
elem = bot.ConvertStringMessage(str, false)
|
str := m.String()
|
||||||
|
if str == "" {
|
||||||
|
return Failed(100, "EMPTY_MSG_ERROR", "消息为空")
|
||||||
|
}
|
||||||
|
if autoEscape {
|
||||||
|
elem = []message.IMessageElement{message.NewText(str)}
|
||||||
|
} else {
|
||||||
|
elem = bot.ConvertStringMessage(str, false)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
mid := bot.SendPrivateMessage(userID, groupID, &message.SendingMessage{Elements: elem})
|
mid := bot.SendPrivateMessage(userID, groupID, &message.SendingMessage{Elements: elem})
|
||||||
if mid == -1 {
|
if mid == -1 {
|
||||||
return Failed(100, "SEND_MSG_API_ERROR", "请参考 go-cqhttp 端输出")
|
return Failed(100, "SEND_MSG_API_ERROR", "请参考 go-cqhttp 端输出")
|
||||||
}
|
}
|
||||||
log.Infof("发送好友 %v(%v) 的消息: %v (%v)", userID, userID, limitedString(str), mid)
|
log.Infof("发送好友 %v(%v) 的消息: %v (%v)", userID, userID, limitedString(m.String()), mid)
|
||||||
return OK(MSG{"message_id": mid})
|
return OK(global.MSG{"message_id": mid})
|
||||||
}
|
}
|
||||||
|
|
||||||
// CQSetGroupCard 设置群名片(群备注)
|
// CQSetGroupCard 设置群名片(群备注)
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz1B
|
// https://git.io/Jtz1B
|
||||||
func (bot *CQBot) CQSetGroupCard(groupID, userID int64, card string) MSG {
|
func (bot *CQBot) CQSetGroupCard(groupID, userID int64, card string) global.MSG {
|
||||||
if g := bot.Client.FindGroup(groupID); g != nil {
|
if g := bot.Client.FindGroup(groupID); g != nil {
|
||||||
if m := g.FindMember(userID); m != nil {
|
if m := g.FindMember(userID); m != nil {
|
||||||
m.EditCard(card)
|
m.EditCard(card)
|
||||||
@ -575,7 +607,7 @@ func (bot *CQBot) CQSetGroupCard(groupID, userID int64, card string) MSG {
|
|||||||
// CQSetGroupSpecialTitle 设置群组专属头衔
|
// CQSetGroupSpecialTitle 设置群组专属头衔
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz10
|
// https://git.io/Jtz10
|
||||||
func (bot *CQBot) CQSetGroupSpecialTitle(groupID, userID int64, title string) MSG {
|
func (bot *CQBot) CQSetGroupSpecialTitle(groupID, userID int64, title string) global.MSG {
|
||||||
if g := bot.Client.FindGroup(groupID); g != nil {
|
if g := bot.Client.FindGroup(groupID); g != nil {
|
||||||
if m := g.FindMember(userID); m != nil {
|
if m := g.FindMember(userID); m != nil {
|
||||||
m.EditSpecialTitle(title)
|
m.EditSpecialTitle(title)
|
||||||
@ -588,7 +620,7 @@ func (bot *CQBot) CQSetGroupSpecialTitle(groupID, userID int64, title string) MS
|
|||||||
// CQSetGroupName 设置群名
|
// CQSetGroupName 设置群名
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz12
|
// https://git.io/Jtz12
|
||||||
func (bot *CQBot) CQSetGroupName(groupID int64, name string) MSG {
|
func (bot *CQBot) CQSetGroupName(groupID int64, name string) global.MSG {
|
||||||
if g := bot.Client.FindGroup(groupID); g != nil {
|
if g := bot.Client.FindGroup(groupID); g != nil {
|
||||||
g.UpdateName(name)
|
g.UpdateName(name)
|
||||||
return OK(nil)
|
return OK(nil)
|
||||||
@ -599,7 +631,7 @@ func (bot *CQBot) CQSetGroupName(groupID int64, name string) MSG {
|
|||||||
// CQSetGroupMemo 扩展API-发送群公告
|
// CQSetGroupMemo 扩展API-发送群公告
|
||||||
//
|
//
|
||||||
// https://docs.go-cqhttp.org/api/#%E5%8F%91%E9%80%81%E7%BE%A4%E5%85%AC%E5%91%8A
|
// https://docs.go-cqhttp.org/api/#%E5%8F%91%E9%80%81%E7%BE%A4%E5%85%AC%E5%91%8A
|
||||||
func (bot *CQBot) CQSetGroupMemo(groupID int64, msg string, img string) MSG {
|
func (bot *CQBot) CQSetGroupMemo(groupID int64, msg string, img string) global.MSG {
|
||||||
if g := bot.Client.FindGroup(groupID); g != nil {
|
if g := bot.Client.FindGroup(groupID); g != nil {
|
||||||
if g.SelfPermission() == client.Member {
|
if g.SelfPermission() == client.Member {
|
||||||
return Failed(100, "PERMISSION_DENIED", "权限不足")
|
return Failed(100, "PERMISSION_DENIED", "权限不足")
|
||||||
@ -627,7 +659,7 @@ func (bot *CQBot) CQSetGroupMemo(groupID int64, msg string, img string) MSG {
|
|||||||
// CQSetGroupKick 群组踢人
|
// CQSetGroupKick 群组踢人
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz1V
|
// https://git.io/Jtz1V
|
||||||
func (bot *CQBot) CQSetGroupKick(groupID, userID int64, msg string, block bool) MSG {
|
func (bot *CQBot) CQSetGroupKick(groupID, userID int64, msg string, block bool) global.MSG {
|
||||||
if g := bot.Client.FindGroup(groupID); g != nil {
|
if g := bot.Client.FindGroup(groupID); g != nil {
|
||||||
if m := g.FindMember(userID); m != nil {
|
if m := g.FindMember(userID); m != nil {
|
||||||
err := m.Kick(msg, block)
|
err := m.Kick(msg, block)
|
||||||
@ -643,7 +675,7 @@ func (bot *CQBot) CQSetGroupKick(groupID, userID int64, msg string, block bool)
|
|||||||
// CQSetGroupBan 群组单人禁言
|
// CQSetGroupBan 群组单人禁言
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz1w
|
// https://git.io/Jtz1w
|
||||||
func (bot *CQBot) CQSetGroupBan(groupID, userID int64, duration uint32) MSG {
|
func (bot *CQBot) CQSetGroupBan(groupID, userID int64, duration uint32) global.MSG {
|
||||||
if g := bot.Client.FindGroup(groupID); g != nil {
|
if g := bot.Client.FindGroup(groupID); g != nil {
|
||||||
if m := g.FindMember(userID); m != nil {
|
if m := g.FindMember(userID); m != nil {
|
||||||
err := m.Mute(duration)
|
err := m.Mute(duration)
|
||||||
@ -662,7 +694,7 @@ func (bot *CQBot) CQSetGroupBan(groupID, userID int64, duration uint32) MSG {
|
|||||||
// CQSetGroupWholeBan 群组全员禁言
|
// CQSetGroupWholeBan 群组全员禁言
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz1o
|
// https://git.io/Jtz1o
|
||||||
func (bot *CQBot) CQSetGroupWholeBan(groupID int64, enable bool) MSG {
|
func (bot *CQBot) CQSetGroupWholeBan(groupID int64, enable bool) global.MSG {
|
||||||
if g := bot.Client.FindGroup(groupID); g != nil {
|
if g := bot.Client.FindGroup(groupID); g != nil {
|
||||||
g.MuteAll(enable)
|
g.MuteAll(enable)
|
||||||
return OK(nil)
|
return OK(nil)
|
||||||
@ -673,7 +705,7 @@ func (bot *CQBot) CQSetGroupWholeBan(groupID int64, enable bool) MSG {
|
|||||||
// CQSetGroupLeave 退出群组
|
// CQSetGroupLeave 退出群组
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz1K
|
// https://git.io/Jtz1K
|
||||||
func (bot *CQBot) CQSetGroupLeave(groupID int64) MSG {
|
func (bot *CQBot) CQSetGroupLeave(groupID int64) global.MSG {
|
||||||
if g := bot.Client.FindGroup(groupID); g != nil {
|
if g := bot.Client.FindGroup(groupID); g != nil {
|
||||||
g.Quit()
|
g.Quit()
|
||||||
return OK(nil)
|
return OK(nil)
|
||||||
@ -684,7 +716,7 @@ func (bot *CQBot) CQSetGroupLeave(groupID int64) MSG {
|
|||||||
// CQGetAtAllRemain 扩展API-获取群 @全体成员 剩余次数
|
// CQGetAtAllRemain 扩展API-获取群 @全体成员 剩余次数
|
||||||
//
|
//
|
||||||
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96%E7%BE%A4-%E5%85%A8%E4%BD%93%E6%88%90%E5%91%98-%E5%89%A9%E4%BD%99%E6%AC%A1%E6%95%B0
|
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96%E7%BE%A4-%E5%85%A8%E4%BD%93%E6%88%90%E5%91%98-%E5%89%A9%E4%BD%99%E6%AC%A1%E6%95%B0
|
||||||
func (bot *CQBot) CQGetAtAllRemain(groupID int64) MSG {
|
func (bot *CQBot) CQGetAtAllRemain(groupID int64) global.MSG {
|
||||||
if g := bot.Client.FindGroup(groupID); g != nil {
|
if g := bot.Client.FindGroup(groupID); g != nil {
|
||||||
i, err := bot.Client.GetAtAllRemain(groupID)
|
i, err := bot.Client.GetAtAllRemain(groupID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -698,7 +730,7 @@ func (bot *CQBot) CQGetAtAllRemain(groupID int64) MSG {
|
|||||||
// CQProcessFriendRequest 处理加好友请求
|
// CQProcessFriendRequest 处理加好友请求
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz11
|
// https://git.io/Jtz11
|
||||||
func (bot *CQBot) CQProcessFriendRequest(flag string, approve bool) MSG {
|
func (bot *CQBot) CQProcessFriendRequest(flag string, approve bool) global.MSG {
|
||||||
req, ok := bot.friendReqCache.Load(flag)
|
req, ok := bot.friendReqCache.Load(flag)
|
||||||
if !ok {
|
if !ok {
|
||||||
return Failed(100, "FLAG_NOT_FOUND", "FLAG不存在")
|
return Failed(100, "FLAG_NOT_FOUND", "FLAG不存在")
|
||||||
@ -714,7 +746,7 @@ func (bot *CQBot) CQProcessFriendRequest(flag string, approve bool) MSG {
|
|||||||
// CQProcessGroupRequest 处理加群请求/邀请
|
// CQProcessGroupRequest 处理加群请求/邀请
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz1D
|
// https://git.io/Jtz1D
|
||||||
func (bot *CQBot) CQProcessGroupRequest(flag, subType, reason string, approve bool) MSG {
|
func (bot *CQBot) CQProcessGroupRequest(flag, subType, reason string, approve bool) global.MSG {
|
||||||
msgs, err := bot.Client.GetGroupSystemMessages()
|
msgs, err := bot.Client.GetGroupSystemMessages()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Errorf("获取群系统消息失败: %v", err)
|
log.Errorf("获取群系统消息失败: %v", err)
|
||||||
@ -758,7 +790,7 @@ func (bot *CQBot) CQProcessGroupRequest(flag, subType, reason string, approve bo
|
|||||||
// CQDeleteMessage 撤回消息
|
// CQDeleteMessage 撤回消息
|
||||||
//
|
//
|
||||||
// https:// git.io/Jtz1y
|
// https:// git.io/Jtz1y
|
||||||
func (bot *CQBot) CQDeleteMessage(messageID int32) MSG {
|
func (bot *CQBot) CQDeleteMessage(messageID int32) global.MSG {
|
||||||
msg := bot.GetMessage(messageID)
|
msg := bot.GetMessage(messageID)
|
||||||
if msg == nil {
|
if msg == nil {
|
||||||
return Failed(100, "MESSAGE_NOT_FOUND", "消息不存在")
|
return Failed(100, "MESSAGE_NOT_FOUND", "消息不存在")
|
||||||
@ -789,7 +821,7 @@ func (bot *CQBot) CQDeleteMessage(messageID int32) MSG {
|
|||||||
// CQSetGroupAdmin 群组设置管理员
|
// CQSetGroupAdmin 群组设置管理员
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz1S
|
// https://git.io/Jtz1S
|
||||||
func (bot *CQBot) CQSetGroupAdmin(groupID, userID int64, enable bool) MSG {
|
func (bot *CQBot) CQSetGroupAdmin(groupID, userID int64, enable bool) global.MSG {
|
||||||
group := bot.Client.FindGroup(groupID)
|
group := bot.Client.FindGroup(groupID)
|
||||||
if group == nil || group.OwnerUin != bot.Client.Uin {
|
if group == nil || group.OwnerUin != bot.Client.Uin {
|
||||||
return Failed(100, "PERMISSION_DENIED", "群不存在或权限不足")
|
return Failed(100, "PERMISSION_DENIED", "群不存在或权限不足")
|
||||||
@ -811,12 +843,12 @@ func (bot *CQBot) CQSetGroupAdmin(groupID, userID int64, enable bool) MSG {
|
|||||||
// CQGetVipInfo 扩展API-获取VIP信息
|
// CQGetVipInfo 扩展API-获取VIP信息
|
||||||
//
|
//
|
||||||
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96vip%E4%BF%A1%E6%81%AF
|
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96vip%E4%BF%A1%E6%81%AF
|
||||||
func (bot *CQBot) CQGetVipInfo(userID int64) MSG {
|
func (bot *CQBot) CQGetVipInfo(userID int64) global.MSG {
|
||||||
vip, err := bot.Client.GetVipInfo(userID)
|
vip, err := bot.Client.GetVipInfo(userID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return Failed(100, "VIP_API_ERROR", err.Error())
|
return Failed(100, "VIP_API_ERROR", err.Error())
|
||||||
}
|
}
|
||||||
msg := MSG{
|
msg := global.MSG{
|
||||||
"user_id": vip.Uin,
|
"user_id": vip.Uin,
|
||||||
"nickname": vip.Name,
|
"nickname": vip.Name,
|
||||||
"level": vip.Level,
|
"level": vip.Level,
|
||||||
@ -831,11 +863,11 @@ func (bot *CQBot) CQGetVipInfo(userID int64) MSG {
|
|||||||
// CQGetGroupHonorInfo 获取群荣誉信息
|
// CQGetGroupHonorInfo 获取群荣誉信息
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz1H
|
// https://git.io/Jtz1H
|
||||||
func (bot *CQBot) CQGetGroupHonorInfo(groupID int64, t string) MSG {
|
func (bot *CQBot) CQGetGroupHonorInfo(groupID int64, t string) global.MSG {
|
||||||
msg := MSG{"group_id": groupID}
|
msg := global.MSG{"group_id": groupID}
|
||||||
convertMem := func(memList []client.HonorMemberInfo) (ret []MSG) {
|
convertMem := func(memList []client.HonorMemberInfo) (ret []global.MSG) {
|
||||||
for _, mem := range memList {
|
for _, mem := range memList {
|
||||||
ret = append(ret, MSG{
|
ret = append(ret, global.MSG{
|
||||||
"user_id": mem.Uin,
|
"user_id": mem.Uin,
|
||||||
"nickname": mem.Name,
|
"nickname": mem.Name,
|
||||||
"avatar": mem.Avatar,
|
"avatar": mem.Avatar,
|
||||||
@ -847,7 +879,7 @@ func (bot *CQBot) CQGetGroupHonorInfo(groupID int64, t string) MSG {
|
|||||||
if t == "talkative" || t == "all" {
|
if t == "talkative" || t == "all" {
|
||||||
if honor, err := bot.Client.GetGroupHonorInfo(groupID, client.Talkative); err == nil {
|
if honor, err := bot.Client.GetGroupHonorInfo(groupID, client.Talkative); err == nil {
|
||||||
if honor.CurrentTalkative.Uin != 0 {
|
if honor.CurrentTalkative.Uin != 0 {
|
||||||
msg["current_talkative"] = MSG{
|
msg["current_talkative"] = global.MSG{
|
||||||
"user_id": honor.CurrentTalkative.Uin,
|
"user_id": honor.CurrentTalkative.Uin,
|
||||||
"nickname": honor.CurrentTalkative.Name,
|
"nickname": honor.CurrentTalkative.Name,
|
||||||
"avatar": honor.CurrentTalkative.Avatar,
|
"avatar": honor.CurrentTalkative.Avatar,
|
||||||
@ -888,12 +920,12 @@ func (bot *CQBot) CQGetGroupHonorInfo(groupID int64, t string) MSG {
|
|||||||
// CQGetStrangerInfo 获取陌生人信息
|
// CQGetStrangerInfo 获取陌生人信息
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz17
|
// https://git.io/Jtz17
|
||||||
func (bot *CQBot) CQGetStrangerInfo(userID int64) MSG {
|
func (bot *CQBot) CQGetStrangerInfo(userID int64) global.MSG {
|
||||||
info, err := bot.Client.GetSummaryInfo(userID)
|
info, err := bot.Client.GetSummaryInfo(userID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return Failed(100, "SUMMARY_API_ERROR", err.Error())
|
return Failed(100, "SUMMARY_API_ERROR", err.Error())
|
||||||
}
|
}
|
||||||
return OK(MSG{
|
return OK(global.MSG{
|
||||||
"user_id": info.Uin,
|
"user_id": info.Uin,
|
||||||
"nickname": info.Nickname,
|
"nickname": info.Nickname,
|
||||||
"qid": info.Qid,
|
"qid": info.Qid,
|
||||||
@ -915,7 +947,7 @@ func (bot *CQBot) CQGetStrangerInfo(userID int64) MSG {
|
|||||||
// CQHandleQuickOperation 隐藏API-对事件执行快速操作
|
// CQHandleQuickOperation 隐藏API-对事件执行快速操作
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz15
|
// https://git.io/Jtz15
|
||||||
func (bot *CQBot) CQHandleQuickOperation(context, operation gjson.Result) MSG {
|
func (bot *CQBot) CQHandleQuickOperation(context, operation gjson.Result) global.MSG {
|
||||||
postType := context.Get("post_type").Str
|
postType := context.Get("post_type").Str
|
||||||
|
|
||||||
switch postType {
|
switch postType {
|
||||||
@ -930,16 +962,16 @@ func (bot *CQBot) CQHandleQuickOperation(context, operation gjson.Result) MSG {
|
|||||||
at := operation.Get("at_sender").Bool() && !isAnonymous && msgType == "group"
|
at := operation.Get("at_sender").Bool() && !isAnonymous && msgType == "group"
|
||||||
if at && reply.IsArray() {
|
if at && reply.IsArray() {
|
||||||
// 在 reply 数组头部插入CQ码
|
// 在 reply 数组头部插入CQ码
|
||||||
replySegments := make([]MSG, 0)
|
replySegments := make([]global.MSG, 0)
|
||||||
segments := make([]MSG, 0)
|
segments := make([]global.MSG, 0)
|
||||||
segments = append(segments, MSG{
|
segments = append(segments, global.MSG{
|
||||||
"type": "at",
|
"type": "at",
|
||||||
"data": MSG{
|
"data": global.MSG{
|
||||||
"qq": context.Get("sender.user_id").Int(),
|
"qq": context.Get("sender.user_id").Int(),
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
err := json.UnmarshalFromString(reply.Raw, &replySegments)
|
err := json.Unmarshal(utils.S2B(reply.Raw), &replySegments)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.WithError(err).Warnf("处理 at_sender 过程中发生错误")
|
log.WithError(err).Warnf("处理 at_sender 过程中发生错误")
|
||||||
return Failed(-1, "处理 at_sender 过程中发生错误", err.Error())
|
return Failed(-1, "处理 at_sender 过程中发生错误", err.Error())
|
||||||
@ -947,13 +979,13 @@ func (bot *CQBot) CQHandleQuickOperation(context, operation gjson.Result) MSG {
|
|||||||
|
|
||||||
segments = append(segments, replySegments...)
|
segments = append(segments, replySegments...)
|
||||||
|
|
||||||
modified, err := json.MarshalToString(segments)
|
modified, err := json.Marshal(segments)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.WithError(err).Warnf("处理 at_sender 过程中发生错误")
|
log.WithError(err).Warnf("处理 at_sender 过程中发生错误")
|
||||||
return Failed(-1, "处理 at_sender 过程中发生错误", err.Error())
|
return Failed(-1, "处理 at_sender 过程中发生错误", err.Error())
|
||||||
}
|
}
|
||||||
|
|
||||||
reply = gjson.Parse(modified)
|
reply = gjson.Parse(utils.B2S(modified))
|
||||||
} else if at && reply.Type == gjson.String {
|
} else if at && reply.Type == gjson.String {
|
||||||
reply = gjson.Parse(fmt.Sprintf(
|
reply = gjson.Parse(fmt.Sprintf(
|
||||||
"\"[CQ:at,qq=%d]%s\"",
|
"\"[CQ:at,qq=%d]%s\"",
|
||||||
@ -991,10 +1023,10 @@ func (bot *CQBot) CQHandleQuickOperation(context, operation gjson.Result) MSG {
|
|||||||
reqType := context.Get("request_type").Str
|
reqType := context.Get("request_type").Str
|
||||||
if operation.Get("approve").Exists() {
|
if operation.Get("approve").Exists() {
|
||||||
if reqType == "friend" {
|
if reqType == "friend" {
|
||||||
bot.CQProcessFriendRequest(context.Get("flag").Str, operation.Get("approve").Bool())
|
bot.CQProcessFriendRequest(context.Get("flag").String(), operation.Get("approve").Bool())
|
||||||
}
|
}
|
||||||
if reqType == "group" {
|
if reqType == "group" {
|
||||||
bot.CQProcessGroupRequest(context.Get("flag").Str, context.Get("sub_type").Str, operation.Get("reason").Str, operation.Get("approve").Bool())
|
bot.CQProcessGroupRequest(context.Get("flag").String(), context.Get("sub_type").Str, operation.Get("reason").Str, operation.Get("approve").Bool())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1004,7 +1036,7 @@ func (bot *CQBot) CQHandleQuickOperation(context, operation gjson.Result) MSG {
|
|||||||
// CQGetImage 获取图片(修改自OneBot)
|
// CQGetImage 获取图片(修改自OneBot)
|
||||||
//
|
//
|
||||||
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96%E5%9B%BE%E7%89%87%E4%BF%A1%E6%81%AF
|
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96%E5%9B%BE%E7%89%87%E4%BF%A1%E6%81%AF
|
||||||
func (bot *CQBot) CQGetImage(file string) MSG {
|
func (bot *CQBot) CQGetImage(file string) global.MSG {
|
||||||
if !global.PathExists(path.Join(global.ImagePath, file)) {
|
if !global.PathExists(path.Join(global.ImagePath, file)) {
|
||||||
return Failed(100)
|
return Failed(100)
|
||||||
}
|
}
|
||||||
@ -1012,7 +1044,7 @@ func (bot *CQBot) CQGetImage(file string) MSG {
|
|||||||
if err == nil {
|
if err == nil {
|
||||||
r := binary.NewReader(b)
|
r := binary.NewReader(b)
|
||||||
r.ReadBytes(16)
|
r.ReadBytes(16)
|
||||||
msg := MSG{
|
msg := global.MSG{
|
||||||
"size": r.ReadInt32(),
|
"size": r.ReadInt32(),
|
||||||
"filename": r.ReadString(),
|
"filename": r.ReadString(),
|
||||||
"url": r.ReadString(),
|
"url": r.ReadString(),
|
||||||
@ -1035,7 +1067,7 @@ func (bot *CQBot) CQGetImage(file string) MSG {
|
|||||||
// CQDownloadFile 扩展API-下载文件到缓存目录
|
// CQDownloadFile 扩展API-下载文件到缓存目录
|
||||||
//
|
//
|
||||||
// https://docs.go-cqhttp.org/api/#%E4%B8%8B%E8%BD%BD%E6%96%87%E4%BB%B6%E5%88%B0%E7%BC%93%E5%AD%98%E7%9B%AE%E5%BD%95
|
// https://docs.go-cqhttp.org/api/#%E4%B8%8B%E8%BD%BD%E6%96%87%E4%BB%B6%E5%88%B0%E7%BC%93%E5%AD%98%E7%9B%AE%E5%BD%95
|
||||||
func (bot *CQBot) CQDownloadFile(url string, headers map[string]string, threadCount int) MSG {
|
func (bot *CQBot) CQDownloadFile(url string, headers map[string]string, threadCount int) global.MSG {
|
||||||
hash := md5.Sum([]byte(url))
|
hash := md5.Sum([]byte(url))
|
||||||
file := path.Join(global.CachePath, hex.EncodeToString(hash[:])+".cache")
|
file := path.Join(global.CachePath, hex.EncodeToString(hash[:])+".cache")
|
||||||
if global.PathExists(file) {
|
if global.PathExists(file) {
|
||||||
@ -1049,7 +1081,7 @@ func (bot *CQBot) CQDownloadFile(url string, headers map[string]string, threadCo
|
|||||||
return Failed(100, "DOWNLOAD_FILE_ERROR", err.Error())
|
return Failed(100, "DOWNLOAD_FILE_ERROR", err.Error())
|
||||||
}
|
}
|
||||||
abs, _ := filepath.Abs(file)
|
abs, _ := filepath.Abs(file)
|
||||||
return OK(MSG{
|
return OK(global.MSG{
|
||||||
"file": abs,
|
"file": abs,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -1057,16 +1089,16 @@ func (bot *CQBot) CQDownloadFile(url string, headers map[string]string, threadCo
|
|||||||
// CQGetForwardMessage 获取合并转发消息
|
// CQGetForwardMessage 获取合并转发消息
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz1F
|
// https://git.io/Jtz1F
|
||||||
func (bot *CQBot) CQGetForwardMessage(resID string) MSG {
|
func (bot *CQBot) CQGetForwardMessage(resID string) global.MSG {
|
||||||
m := bot.Client.GetForwardMessage(resID)
|
m := bot.Client.GetForwardMessage(resID)
|
||||||
if m == nil {
|
if m == nil {
|
||||||
return Failed(100, "MSG_NOT_FOUND", "消息不存在")
|
return Failed(100, "MSG_NOT_FOUND", "消息不存在")
|
||||||
}
|
}
|
||||||
r := make([]MSG, 0, len(m.Nodes))
|
r := make([]global.MSG, 0, len(m.Nodes))
|
||||||
for _, n := range m.Nodes {
|
for _, n := range m.Nodes {
|
||||||
bot.checkMedia(n.Message)
|
bot.checkMedia(n.Message)
|
||||||
r = append(r, MSG{
|
r = append(r, global.MSG{
|
||||||
"sender": MSG{
|
"sender": global.MSG{
|
||||||
"user_id": n.SenderId,
|
"user_id": n.SenderId,
|
||||||
"nickname": n.SenderName,
|
"nickname": n.SenderName,
|
||||||
},
|
},
|
||||||
@ -1074,7 +1106,7 @@ func (bot *CQBot) CQGetForwardMessage(resID string) MSG {
|
|||||||
"content": ToFormattedMessage(n.Message, 0, false),
|
"content": ToFormattedMessage(n.Message, 0, false),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
return OK(MSG{
|
return OK(global.MSG{
|
||||||
"messages": r,
|
"messages": r,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -1082,7 +1114,7 @@ func (bot *CQBot) CQGetForwardMessage(resID string) MSG {
|
|||||||
// CQGetMessage 获取消息
|
// CQGetMessage 获取消息
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz1b
|
// https://git.io/Jtz1b
|
||||||
func (bot *CQBot) CQGetMessage(messageID int32) MSG {
|
func (bot *CQBot) CQGetMessage(messageID int32) global.MSG {
|
||||||
msg := bot.GetMessage(messageID)
|
msg := bot.GetMessage(messageID)
|
||||||
if msg == nil {
|
if msg == nil {
|
||||||
return Failed(100, "MSG_NOT_FOUND", "消息不存在")
|
return Failed(100, "MSG_NOT_FOUND", "消息不存在")
|
||||||
@ -1090,7 +1122,7 @@ func (bot *CQBot) CQGetMessage(messageID int32) MSG {
|
|||||||
sender := msg["sender"].(message.Sender)
|
sender := msg["sender"].(message.Sender)
|
||||||
gid, isGroup := msg["group"]
|
gid, isGroup := msg["group"]
|
||||||
raw := msg["message"].(string)
|
raw := msg["message"].(string)
|
||||||
return OK(MSG{
|
return OK(global.MSG{
|
||||||
"message_id": messageID,
|
"message_id": messageID,
|
||||||
"real_id": msg["message-id"],
|
"real_id": msg["message-id"],
|
||||||
"message_seq": msg["message-id"],
|
"message_seq": msg["message-id"],
|
||||||
@ -1102,7 +1134,7 @@ func (bot *CQBot) CQGetMessage(messageID int32) MSG {
|
|||||||
}
|
}
|
||||||
return "private"
|
return "private"
|
||||||
}(),
|
}(),
|
||||||
"sender": MSG{
|
"sender": global.MSG{
|
||||||
"user_id": sender.Uin,
|
"user_id": sender.Uin,
|
||||||
"nickname": sender.Nickname,
|
"nickname": sender.Nickname,
|
||||||
},
|
},
|
||||||
@ -1120,7 +1152,7 @@ func (bot *CQBot) CQGetMessage(messageID int32) MSG {
|
|||||||
// CQGetGroupSystemMessages 扩展API-获取群文件系统消息
|
// CQGetGroupSystemMessages 扩展API-获取群文件系统消息
|
||||||
//
|
//
|
||||||
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96%E7%BE%A4%E7%B3%BB%E7%BB%9F%E6%B6%88%E6%81%AF
|
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96%E7%BE%A4%E7%B3%BB%E7%BB%9F%E6%B6%88%E6%81%AF
|
||||||
func (bot *CQBot) CQGetGroupSystemMessages() MSG {
|
func (bot *CQBot) CQGetGroupSystemMessages() global.MSG {
|
||||||
msg, err := bot.Client.GetGroupSystemMessages()
|
msg, err := bot.Client.GetGroupSystemMessages()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Warnf("获取群系统消息失败: %v", err)
|
log.Warnf("获取群系统消息失败: %v", err)
|
||||||
@ -1132,7 +1164,7 @@ func (bot *CQBot) CQGetGroupSystemMessages() MSG {
|
|||||||
// CQGetGroupMessageHistory 获取群消息历史记录
|
// CQGetGroupMessageHistory 获取群消息历史记录
|
||||||
//
|
//
|
||||||
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96%E7%BE%A4%E6%B6%88%E6%81%AF%E5%8E%86%E5%8F%B2%E8%AE%B0%E5%BD%95
|
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96%E7%BE%A4%E6%B6%88%E6%81%AF%E5%8E%86%E5%8F%B2%E8%AE%B0%E5%BD%95
|
||||||
func (bot *CQBot) CQGetGroupMessageHistory(groupID int64, seq int64) MSG {
|
func (bot *CQBot) CQGetGroupMessageHistory(groupID int64, seq int64) global.MSG {
|
||||||
if g := bot.Client.FindGroup(groupID); g == nil {
|
if g := bot.Client.FindGroup(groupID); g == nil {
|
||||||
return Failed(100, "GROUP_NOT_FOUND", "群聊不存在")
|
return Failed(100, "GROUP_NOT_FOUND", "群聊不存在")
|
||||||
}
|
}
|
||||||
@ -1148,7 +1180,7 @@ func (bot *CQBot) CQGetGroupMessageHistory(groupID int64, seq int64) MSG {
|
|||||||
log.Warnf("获取群历史消息失败: %v", err)
|
log.Warnf("获取群历史消息失败: %v", err)
|
||||||
return Failed(100, "MESSAGES_API_ERROR", err.Error())
|
return Failed(100, "MESSAGES_API_ERROR", err.Error())
|
||||||
}
|
}
|
||||||
ms := make([]MSG, 0, len(msg))
|
ms := make([]global.MSG, 0, len(msg))
|
||||||
for _, m := range msg {
|
for _, m := range msg {
|
||||||
id := m.Id
|
id := m.Id
|
||||||
bot.checkMedia(m.Elements)
|
bot.checkMedia(m.Elements)
|
||||||
@ -1159,7 +1191,7 @@ func (bot *CQBot) CQGetGroupMessageHistory(groupID int64, seq int64) MSG {
|
|||||||
t["message_id"] = id
|
t["message_id"] = id
|
||||||
ms = append(ms, t)
|
ms = append(ms, t)
|
||||||
}
|
}
|
||||||
return OK(MSG{
|
return OK(global.MSG{
|
||||||
"messages": ms,
|
"messages": ms,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -1167,22 +1199,22 @@ func (bot *CQBot) CQGetGroupMessageHistory(groupID int64, seq int64) MSG {
|
|||||||
// CQGetOnlineClients 扩展API-获取当前账号在线客户端列表
|
// CQGetOnlineClients 扩展API-获取当前账号在线客户端列表
|
||||||
//
|
//
|
||||||
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96%E5%BD%93%E5%89%8D%E8%B4%A6%E5%8F%B7%E5%9C%A8%E7%BA%BF%E5%AE%A2%E6%88%B7%E7%AB%AF%E5%88%97%E8%A1%A8
|
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96%E5%BD%93%E5%89%8D%E8%B4%A6%E5%8F%B7%E5%9C%A8%E7%BA%BF%E5%AE%A2%E6%88%B7%E7%AB%AF%E5%88%97%E8%A1%A8
|
||||||
func (bot *CQBot) CQGetOnlineClients(noCache bool) MSG {
|
func (bot *CQBot) CQGetOnlineClients(noCache bool) global.MSG {
|
||||||
if noCache {
|
if noCache {
|
||||||
if err := bot.Client.RefreshStatus(); err != nil {
|
if err := bot.Client.RefreshStatus(); err != nil {
|
||||||
log.Warnf("刷新客户端状态时出现问题 %v", err)
|
log.Warnf("刷新客户端状态时出现问题 %v", err)
|
||||||
return Failed(100, "REFRESH_STATUS_ERROR", err.Error())
|
return Failed(100, "REFRESH_STATUS_ERROR", err.Error())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
d := make([]MSG, 0, len(bot.Client.OnlineClients))
|
d := make([]global.MSG, 0, len(bot.Client.OnlineClients))
|
||||||
for _, oc := range bot.Client.OnlineClients {
|
for _, oc := range bot.Client.OnlineClients {
|
||||||
d = append(d, MSG{
|
d = append(d, global.MSG{
|
||||||
"app_id": oc.AppId,
|
"app_id": oc.AppId,
|
||||||
"device_name": oc.DeviceName,
|
"device_name": oc.DeviceName,
|
||||||
"device_kind": oc.DeviceKind,
|
"device_kind": oc.DeviceKind,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
return OK(MSG{
|
return OK(global.MSG{
|
||||||
"clients": d,
|
"clients": d,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -1190,21 +1222,21 @@ func (bot *CQBot) CQGetOnlineClients(noCache bool) MSG {
|
|||||||
// CQCanSendImage 检查是否可以发送图片(此处永远返回true)
|
// CQCanSendImage 检查是否可以发送图片(此处永远返回true)
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz1N
|
// https://git.io/Jtz1N
|
||||||
func (bot *CQBot) CQCanSendImage() MSG {
|
func (bot *CQBot) CQCanSendImage() global.MSG {
|
||||||
return OK(MSG{"yes": true})
|
return OK(global.MSG{"yes": true})
|
||||||
}
|
}
|
||||||
|
|
||||||
// CQCanSendRecord 检查是否可以发送语音(此处永远返回true)
|
// CQCanSendRecord 检查是否可以发送语音(此处永远返回true)
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz1x
|
// https://git.io/Jtz1x
|
||||||
func (bot *CQBot) CQCanSendRecord() MSG {
|
func (bot *CQBot) CQCanSendRecord() global.MSG {
|
||||||
return OK(MSG{"yes": true})
|
return OK(global.MSG{"yes": true})
|
||||||
}
|
}
|
||||||
|
|
||||||
// CQOcrImage 扩展API-图片OCR
|
// CQOcrImage 扩展API-图片OCR
|
||||||
//
|
//
|
||||||
// https://docs.go-cqhttp.org/api/#%E5%9B%BE%E7%89%87-ocr
|
// https://docs.go-cqhttp.org/api/#%E5%9B%BE%E7%89%87-ocr
|
||||||
func (bot *CQBot) CQOcrImage(imageID string) MSG {
|
func (bot *CQBot) CQOcrImage(imageID string) global.MSG {
|
||||||
img, err := bot.makeImageOrVideoElem(map[string]string{"file": imageID}, false, true)
|
img, err := bot.makeImageOrVideoElem(map[string]string{"file": imageID}, false, true)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Warnf("load image error: %v", err)
|
log.Warnf("load image error: %v", err)
|
||||||
@ -1221,7 +1253,7 @@ func (bot *CQBot) CQOcrImage(imageID string) MSG {
|
|||||||
// CQSetGroupPortrait 扩展API-设置群头像
|
// CQSetGroupPortrait 扩展API-设置群头像
|
||||||
//
|
//
|
||||||
// https://docs.go-cqhttp.org/api/#%E8%AE%BE%E7%BD%AE%E7%BE%A4%E5%A4%B4%E5%83%8F
|
// https://docs.go-cqhttp.org/api/#%E8%AE%BE%E7%BD%AE%E7%BE%A4%E5%A4%B4%E5%83%8F
|
||||||
func (bot *CQBot) CQSetGroupPortrait(groupID int64, file, cache string) MSG {
|
func (bot *CQBot) CQSetGroupPortrait(groupID int64, file, cache string) global.MSG {
|
||||||
if g := bot.Client.FindGroup(groupID); g != nil {
|
if g := bot.Client.FindGroup(groupID); g != nil {
|
||||||
img, err := global.FindFile(file, cache, global.ImagePath)
|
img, err := global.FindFile(file, cache, global.ImagePath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -1237,7 +1269,7 @@ func (bot *CQBot) CQSetGroupPortrait(groupID int64, file, cache string) MSG {
|
|||||||
// CQSetGroupAnonymousBan 群组匿名用户禁言
|
// CQSetGroupAnonymousBan 群组匿名用户禁言
|
||||||
//
|
//
|
||||||
// https://git.io/Jtz1p
|
// https://git.io/Jtz1p
|
||||||
func (bot *CQBot) CQSetGroupAnonymousBan(groupID int64, flag string, duration int32) MSG {
|
func (bot *CQBot) CQSetGroupAnonymousBan(groupID int64, flag string, duration int32) global.MSG {
|
||||||
if flag == "" {
|
if flag == "" {
|
||||||
return Failed(100, "INVALID_FLAG", "无效的flag")
|
return Failed(100, "INVALID_FLAG", "无效的flag")
|
||||||
}
|
}
|
||||||
@ -1260,8 +1292,8 @@ func (bot *CQBot) CQSetGroupAnonymousBan(groupID int64, flag string, duration in
|
|||||||
// CQGetStatus 获取运行状态
|
// CQGetStatus 获取运行状态
|
||||||
//
|
//
|
||||||
// https://git.io/JtzMe
|
// https://git.io/JtzMe
|
||||||
func (bot *CQBot) CQGetStatus() MSG {
|
func (bot *CQBot) CQGetStatus() global.MSG {
|
||||||
return OK(MSG{
|
return OK(global.MSG{
|
||||||
"app_initialized": true,
|
"app_initialized": true,
|
||||||
"app_enabled": true,
|
"app_enabled": true,
|
||||||
"plugins_good": nil,
|
"plugins_good": nil,
|
||||||
@ -1275,7 +1307,7 @@ func (bot *CQBot) CQGetStatus() MSG {
|
|||||||
// CQSetEssenceMessage 扩展API-设置精华消息
|
// CQSetEssenceMessage 扩展API-设置精华消息
|
||||||
//
|
//
|
||||||
// https://docs.go-cqhttp.org/api/#%E8%AE%BE%E7%BD%AE%E7%B2%BE%E5%8D%8E%E6%B6%88%E6%81%AF
|
// https://docs.go-cqhttp.org/api/#%E8%AE%BE%E7%BD%AE%E7%B2%BE%E5%8D%8E%E6%B6%88%E6%81%AF
|
||||||
func (bot *CQBot) CQSetEssenceMessage(messageID int32) MSG {
|
func (bot *CQBot) CQSetEssenceMessage(messageID int32) global.MSG {
|
||||||
msg := bot.GetMessage(messageID)
|
msg := bot.GetMessage(messageID)
|
||||||
if msg == nil {
|
if msg == nil {
|
||||||
return Failed(100, "MESSAGE_NOT_FOUND", "消息不存在")
|
return Failed(100, "MESSAGE_NOT_FOUND", "消息不存在")
|
||||||
@ -1295,7 +1327,7 @@ func (bot *CQBot) CQSetEssenceMessage(messageID int32) MSG {
|
|||||||
// CQDeleteEssenceMessage 扩展API-移出精华消息
|
// CQDeleteEssenceMessage 扩展API-移出精华消息
|
||||||
//
|
//
|
||||||
// https://docs.go-cqhttp.org/api/#%E7%A7%BB%E5%87%BA%E7%B2%BE%E5%8D%8E%E6%B6%88%E6%81%AF
|
// https://docs.go-cqhttp.org/api/#%E7%A7%BB%E5%87%BA%E7%B2%BE%E5%8D%8E%E6%B6%88%E6%81%AF
|
||||||
func (bot *CQBot) CQDeleteEssenceMessage(messageID int32) MSG {
|
func (bot *CQBot) CQDeleteEssenceMessage(messageID int32) global.MSG {
|
||||||
msg := bot.GetMessage(messageID)
|
msg := bot.GetMessage(messageID)
|
||||||
if msg == nil {
|
if msg == nil {
|
||||||
return Failed(100, "MESSAGE_NOT_FOUND", "消息不存在")
|
return Failed(100, "MESSAGE_NOT_FOUND", "消息不存在")
|
||||||
@ -1315,7 +1347,7 @@ func (bot *CQBot) CQDeleteEssenceMessage(messageID int32) MSG {
|
|||||||
// CQGetEssenceMessageList 扩展API-获取精华消息列表
|
// CQGetEssenceMessageList 扩展API-获取精华消息列表
|
||||||
//
|
//
|
||||||
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96%E7%B2%BE%E5%8D%8E%E6%B6%88%E6%81%AF%E5%88%97%E8%A1%A8
|
// https://docs.go-cqhttp.org/api/#%E8%8E%B7%E5%8F%96%E7%B2%BE%E5%8D%8E%E6%B6%88%E6%81%AF%E5%88%97%E8%A1%A8
|
||||||
func (bot *CQBot) CQGetEssenceMessageList(groupCode int64) MSG {
|
func (bot *CQBot) CQGetEssenceMessageList(groupCode int64) global.MSG {
|
||||||
g := bot.Client.FindGroup(groupCode)
|
g := bot.Client.FindGroup(groupCode)
|
||||||
if g == nil {
|
if g == nil {
|
||||||
return Failed(100, "GROUP_NOT_FOUND", "群聊不存在")
|
return Failed(100, "GROUP_NOT_FOUND", "群聊不存在")
|
||||||
@ -1324,9 +1356,9 @@ func (bot *CQBot) CQGetEssenceMessageList(groupCode int64) MSG {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return Failed(100, "GET_ESSENCE_LIST_FOUND", err.Error())
|
return Failed(100, "GET_ESSENCE_LIST_FOUND", err.Error())
|
||||||
}
|
}
|
||||||
list := make([]MSG, 0, len(msgList))
|
list := make([]global.MSG, 0, len(msgList))
|
||||||
for _, m := range msgList {
|
for _, m := range msgList {
|
||||||
msg := MSG{
|
msg := global.MSG{
|
||||||
"sender_nick": m.SenderNick,
|
"sender_nick": m.SenderNick,
|
||||||
"sender_time": m.SenderTime,
|
"sender_time": m.SenderTime,
|
||||||
"operator_time": m.AddDigestTime,
|
"operator_time": m.AddDigestTime,
|
||||||
@ -1343,8 +1375,8 @@ func (bot *CQBot) CQGetEssenceMessageList(groupCode int64) MSG {
|
|||||||
// CQCheckURLSafely 扩展API-检查链接安全性
|
// CQCheckURLSafely 扩展API-检查链接安全性
|
||||||
//
|
//
|
||||||
// https://docs.go-cqhttp.org/api/#%E6%A3%80%E6%9F%A5%E9%93%BE%E6%8E%A5%E5%AE%89%E5%85%A8%E6%80%A7
|
// https://docs.go-cqhttp.org/api/#%E6%A3%80%E6%9F%A5%E9%93%BE%E6%8E%A5%E5%AE%89%E5%85%A8%E6%80%A7
|
||||||
func (bot *CQBot) CQCheckURLSafely(url string) MSG {
|
func (bot *CQBot) CQCheckURLSafely(url string) global.MSG {
|
||||||
return OK(MSG{
|
return OK(global.MSG{
|
||||||
"level": bot.Client.CheckUrlSafely(url),
|
"level": bot.Client.CheckUrlSafely(url),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -1352,9 +1384,9 @@ func (bot *CQBot) CQCheckURLSafely(url string) MSG {
|
|||||||
// CQGetVersionInfo 获取版本信息
|
// CQGetVersionInfo 获取版本信息
|
||||||
//
|
//
|
||||||
// https://git.io/JtwUs
|
// https://git.io/JtwUs
|
||||||
func (bot *CQBot) CQGetVersionInfo() MSG {
|
func (bot *CQBot) CQGetVersionInfo() global.MSG {
|
||||||
wd, _ := os.Getwd()
|
wd, _ := os.Getwd()
|
||||||
return OK(MSG{
|
return OK(global.MSG{
|
||||||
"app_name": "go-cqhttp",
|
"app_name": "go-cqhttp",
|
||||||
"app_version": Version,
|
"app_version": Version,
|
||||||
"app_full_name": fmt.Sprintf("go-cqhttp-%s_%s_%s-%s", Version, runtime.GOOS, runtime.GOARCH, runtime.Version()),
|
"app_full_name": fmt.Sprintf("go-cqhttp-%s_%s_%s-%s", Version, runtime.GOOS, runtime.GOARCH, runtime.Version()),
|
||||||
@ -1390,19 +1422,19 @@ func (bot *CQBot) CQGetVersionInfo() MSG {
|
|||||||
// CQGetModelShow 获取在线机型
|
// CQGetModelShow 获取在线机型
|
||||||
//
|
//
|
||||||
// https://club.vip.qq.com/onlinestatus/set
|
// https://club.vip.qq.com/onlinestatus/set
|
||||||
func (bot *CQBot) CQGetModelShow(modelName string) MSG {
|
func (bot *CQBot) CQGetModelShow(modelName string) global.MSG {
|
||||||
variants, err := bot.Client.GetModelShow(modelName)
|
variants, err := bot.Client.GetModelShow(modelName)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return Failed(100, "GET_MODEL_SHOW_API_ERROR", "无法获取在线机型")
|
return Failed(100, "GET_MODEL_SHOW_API_ERROR", "无法获取在线机型")
|
||||||
}
|
}
|
||||||
a := make([]MSG, 0, len(variants))
|
a := make([]global.MSG, 0, len(variants))
|
||||||
for _, v := range variants {
|
for _, v := range variants {
|
||||||
a = append(a, MSG{
|
a = append(a, global.MSG{
|
||||||
"model_show": v.ModelShow,
|
"model_show": v.ModelShow,
|
||||||
"need_pay": v.NeedPay,
|
"need_pay": v.NeedPay,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
return OK(MSG{
|
return OK(global.MSG{
|
||||||
"variants": a,
|
"variants": a,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -1410,7 +1442,7 @@ func (bot *CQBot) CQGetModelShow(modelName string) MSG {
|
|||||||
// CQSetModelShow 设置在线机型
|
// CQSetModelShow 设置在线机型
|
||||||
//
|
//
|
||||||
// https://club.vip.qq.com/onlinestatus/set
|
// https://club.vip.qq.com/onlinestatus/set
|
||||||
func (bot *CQBot) CQSetModelShow(modelName string, modelShow string) MSG {
|
func (bot *CQBot) CQSetModelShow(modelName string, modelShow string) global.MSG {
|
||||||
err := bot.Client.SetModelShow(modelName, modelShow)
|
err := bot.Client.SetModelShow(modelName, modelShow)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return Failed(100, "SET_MODEL_SHOW_API_ERROR", "无法设置在线机型")
|
return Failed(100, "SET_MODEL_SHOW_API_ERROR", "无法设置在线机型")
|
||||||
@ -1419,7 +1451,7 @@ func (bot *CQBot) CQSetModelShow(modelName string, modelShow string) MSG {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// CQMarkMessageAsRead 标记消息已读
|
// CQMarkMessageAsRead 标记消息已读
|
||||||
func (bot *CQBot) CQMarkMessageAsRead(msgID int32) MSG {
|
func (bot *CQBot) CQMarkMessageAsRead(msgID int32) global.MSG {
|
||||||
m := bot.GetMessage(msgID)
|
m := bot.GetMessage(msgID)
|
||||||
if m == nil {
|
if m == nil {
|
||||||
return Failed(100, "MSG_NOT_FOUND", "消息不存在")
|
return Failed(100, "MSG_NOT_FOUND", "消息不存在")
|
||||||
@ -1431,17 +1463,17 @@ func (bot *CQBot) CQMarkMessageAsRead(msgID int32) MSG {
|
|||||||
if _, ok := m["from-group"]; ok {
|
if _, ok := m["from-group"]; ok {
|
||||||
return Failed(100, "MSG_TYPE_ERROR", "不支持标记临时会话")
|
return Failed(100, "MSG_TYPE_ERROR", "不支持标记临时会话")
|
||||||
}
|
}
|
||||||
bot.Client.MarkPrivateMessageReaded(m["sender"].(*message.Sender).Uin, m["time"].(int64))
|
bot.Client.MarkPrivateMessageReaded(m["sender"].(message.Sender).Uin, int64(m["time"].(int32)))
|
||||||
return OK(nil)
|
return OK(nil)
|
||||||
}
|
}
|
||||||
|
|
||||||
// OK 生成成功返回值
|
// OK 生成成功返回值
|
||||||
func OK(data interface{}) MSG {
|
func OK(data interface{}) global.MSG {
|
||||||
return MSG{"data": data, "retcode": 0, "status": "ok"}
|
return global.MSG{"data": data, "retcode": 0, "status": "ok"}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Failed 生成失败返回值
|
// Failed 生成失败返回值
|
||||||
func Failed(code int, msg ...string) MSG {
|
func Failed(code int, msg ...string) global.MSG {
|
||||||
m := ""
|
m := ""
|
||||||
w := ""
|
w := ""
|
||||||
if len(msg) > 0 {
|
if len(msg) > 0 {
|
||||||
@ -1450,11 +1482,11 @@ func Failed(code int, msg ...string) MSG {
|
|||||||
if len(msg) > 1 {
|
if len(msg) > 1 {
|
||||||
w = msg[1]
|
w = msg[1]
|
||||||
}
|
}
|
||||||
return MSG{"data": nil, "retcode": code, "msg": m, "wording": w, "status": "failed"}
|
return global.MSG{"data": nil, "retcode": code, "msg": m, "wording": w, "status": "failed"}
|
||||||
}
|
}
|
||||||
|
|
||||||
func convertGroupMemberInfo(groupID int64, m *client.GroupMemberInfo) MSG {
|
func convertGroupMemberInfo(groupID int64, m *client.GroupMemberInfo) global.MSG {
|
||||||
return MSG{
|
return global.MSG{
|
||||||
"group_id": groupID,
|
"group_id": groupID,
|
||||||
"user_id": m.Uin,
|
"user_id": m.Uin,
|
||||||
"nickname": m.Nickname,
|
"nickname": m.Nickname,
|
||||||
|
89
coolq/bot.go
89
coolq/bot.go
@ -4,6 +4,7 @@ import (
|
|||||||
"bytes"
|
"bytes"
|
||||||
"encoding/gob"
|
"encoding/gob"
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"hash/crc32"
|
"hash/crc32"
|
||||||
"io"
|
"io"
|
||||||
@ -19,7 +20,6 @@ import (
|
|||||||
"github.com/Mrs4s/MiraiGo/client"
|
"github.com/Mrs4s/MiraiGo/client"
|
||||||
"github.com/Mrs4s/MiraiGo/message"
|
"github.com/Mrs4s/MiraiGo/message"
|
||||||
"github.com/Mrs4s/MiraiGo/utils"
|
"github.com/Mrs4s/MiraiGo/utils"
|
||||||
jsoniter "github.com/json-iterator/go"
|
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
"github.com/syndtr/goleveldb/leveldb"
|
"github.com/syndtr/goleveldb/leveldb"
|
||||||
@ -29,8 +29,6 @@ import (
|
|||||||
"github.com/Mrs4s/go-cqhttp/global/config"
|
"github.com/Mrs4s/go-cqhttp/global/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
var json = jsoniter.ConfigCompatibleWithStandardLibrary
|
|
||||||
|
|
||||||
// CQBot CQBot结构体,存储Bot实例相关配置
|
// CQBot CQBot结构体,存储Bot实例相关配置
|
||||||
type CQBot struct {
|
type CQBot struct {
|
||||||
Client *client.QQClient
|
Client *client.QQClient
|
||||||
@ -41,15 +39,11 @@ type CQBot struct {
|
|||||||
db *leveldb.DB
|
db *leveldb.DB
|
||||||
friendReqCache sync.Map
|
friendReqCache sync.Map
|
||||||
tempSessionCache sync.Map
|
tempSessionCache sync.Map
|
||||||
oneWayMsgCache sync.Map
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// MSG 消息Map
|
|
||||||
type MSG map[string]interface{}
|
|
||||||
|
|
||||||
// Event 事件
|
// Event 事件
|
||||||
type Event struct {
|
type Event struct {
|
||||||
RawMsg MSG
|
RawMsg global.MSG
|
||||||
|
|
||||||
once sync.Once
|
once sync.Once
|
||||||
buffer *bytes.Buffer
|
buffer *bytes.Buffer
|
||||||
@ -81,12 +75,27 @@ var ForceFragmented = false
|
|||||||
// SkipMimeScan 是否跳过Mime扫描
|
// SkipMimeScan 是否跳过Mime扫描
|
||||||
var SkipMimeScan bool
|
var SkipMimeScan bool
|
||||||
|
|
||||||
var lawfulImageTypes = [...]string{"image/png", "image/jpeg", "image/gif", "image/bmp", "image/webp"}
|
// keep sync with /docs/file.md#MINE
|
||||||
|
var lawfulImageTypes = [...]string{
|
||||||
|
"image/bmp",
|
||||||
|
"image/gif",
|
||||||
|
"image/jpeg",
|
||||||
|
"image/png",
|
||||||
|
"image/webp",
|
||||||
|
}
|
||||||
|
|
||||||
var lawfulAudioTypes = [...]string{
|
var lawfulAudioTypes = [...]string{
|
||||||
"audio/mpeg", "audio/flac", "audio/midi", "audio/ogg",
|
"audio/aac",
|
||||||
"audio/ape", "audio/amr", "audio/wav", "audio/aiff",
|
"audio/aiff",
|
||||||
"audio/mp4", "audio/aac", "audio/x-m4a",
|
"audio/amr",
|
||||||
|
"audio/ape",
|
||||||
|
"audio/flac",
|
||||||
|
"audio/midi",
|
||||||
|
"audio/mp4",
|
||||||
|
"audio/mpeg",
|
||||||
|
"audio/ogg",
|
||||||
|
"audio/wav",
|
||||||
|
"audio/x-m4a",
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewQQBot 初始化一个QQBot实例
|
// NewQQBot 初始化一个QQBot实例
|
||||||
@ -153,7 +162,7 @@ func NewQQBot(cli *client.QQClient, conf *config.Config) *CQBot {
|
|||||||
t := time.NewTicker(time.Second * time.Duration(i))
|
t := time.NewTicker(time.Second * time.Duration(i))
|
||||||
for {
|
for {
|
||||||
<-t.C
|
<-t.C
|
||||||
bot.dispatchEventMessage(MSG{
|
bot.dispatchEventMessage(global.MSG{
|
||||||
"time": time.Now().Unix(),
|
"time": time.Now().Unix(),
|
||||||
"self_id": bot.Client.Uin,
|
"self_id": bot.Client.Uin,
|
||||||
"post_type": "meta_event",
|
"post_type": "meta_event",
|
||||||
@ -174,9 +183,9 @@ func (bot *CQBot) OnEventPush(f func(e *Event)) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// GetMessage 获取给定消息id对应的消息
|
// GetMessage 获取给定消息id对应的消息
|
||||||
func (bot *CQBot) GetMessage(mid int32) MSG {
|
func (bot *CQBot) GetMessage(mid int32) global.MSG {
|
||||||
if bot.db != nil {
|
if bot.db != nil {
|
||||||
m := MSG{}
|
m := global.MSG{}
|
||||||
data, err := bot.db.Get(binary.ToBytes(mid), nil)
|
data, err := bot.db.Get(binary.ToBytes(mid), nil)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
err = gob.NewDecoder(bytes.NewReader(data)).Decode(&m)
|
err = gob.NewDecoder(bytes.NewReader(data)).Decode(&m)
|
||||||
@ -301,7 +310,7 @@ func (bot *CQBot) SendPrivateMessage(target int64, groupID int64, m *message.Sen
|
|||||||
for _, e := range m.Elements {
|
for _, e := range m.Elements {
|
||||||
switch i := e.(type) {
|
switch i := e.(type) {
|
||||||
case *LocalImageElement, *message.VoiceElement, *LocalVideoElement:
|
case *LocalImageElement, *message.VoiceElement, *LocalVideoElement:
|
||||||
i, err := bot.uploadMedia(i, groupID, false)
|
i, err := bot.uploadMedia(i, target, false)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Warnf("警告: 私聊 %d 消息%s上传失败: %v", target, e.Type().String(), err)
|
log.Warnf("警告: 私聊 %d 消息%s上传失败: %v", target, e.Type().String(), err)
|
||||||
continue
|
continue
|
||||||
@ -311,7 +320,7 @@ func (bot *CQBot) SendPrivateMessage(target int64, groupID int64, m *message.Sen
|
|||||||
bot.Client.SendFriendPoke(i.Target)
|
bot.Client.SendFriendPoke(i.Target)
|
||||||
return 0
|
return 0
|
||||||
case *message.MusicShareElement:
|
case *message.MusicShareElement:
|
||||||
bot.Client.SendFriendMusicShare(groupID, i)
|
bot.Client.SendFriendMusicShare(target, i)
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
newElem = append(newElem, e)
|
newElem = append(newElem, e)
|
||||||
@ -322,13 +331,31 @@ func (bot *CQBot) SendPrivateMessage(target int64, groupID int64, m *message.Sen
|
|||||||
}
|
}
|
||||||
m.Elements = newElem
|
m.Elements = newElem
|
||||||
bot.checkMedia(newElem)
|
bot.checkMedia(newElem)
|
||||||
|
|
||||||
|
// 单向好友是否存在
|
||||||
|
unidirectionalFriendExists := func() bool {
|
||||||
|
list, err := bot.Client.GetUnidirectionalFriendList()
|
||||||
|
if err != nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
for _, f := range list {
|
||||||
|
if f.Uin == target {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
session, ok := bot.tempSessionCache.Load(target)
|
||||||
var id int32 = -1
|
var id int32 = -1
|
||||||
if bot.Client.FindFriend(target) != nil { // 双向好友
|
|
||||||
|
switch {
|
||||||
|
case bot.Client.FindFriend(target) != nil: // 双向好友
|
||||||
msg := bot.Client.SendPrivateMessage(target, m)
|
msg := bot.Client.SendPrivateMessage(target, m)
|
||||||
if msg != nil {
|
if msg != nil {
|
||||||
id = bot.InsertPrivateMessage(msg)
|
id = bot.InsertPrivateMessage(msg)
|
||||||
}
|
}
|
||||||
} else if session, ok := bot.tempSessionCache.Load(target); ok || groupID != 0 { // 临时会话
|
case ok || groupID != 0: // 临时会话
|
||||||
switch {
|
switch {
|
||||||
case groupID != 0 && bot.Client.FindGroup(groupID) == nil:
|
case groupID != 0 && bot.Client.FindGroup(groupID) == nil:
|
||||||
log.Errorf("错误: 找不到群(%v)", groupID)
|
log.Errorf("错误: 找不到群(%v)", groupID)
|
||||||
@ -353,12 +380,12 @@ func (bot *CQBot) SendPrivateMessage(target int64, groupID int64, m *message.Sen
|
|||||||
id = bot.InsertTempMessage(target, msg)
|
id = bot.InsertTempMessage(target, msg)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if _, ok := bot.oneWayMsgCache.Load(target); ok { // 单向好友
|
case unidirectionalFriendExists(): // 单向好友
|
||||||
msg := bot.Client.SendPrivateMessage(target, m)
|
msg := bot.Client.SendPrivateMessage(target, m)
|
||||||
if msg != nil {
|
if msg != nil {
|
||||||
id = bot.InsertPrivateMessage(msg)
|
id = bot.InsertPrivateMessage(msg)
|
||||||
}
|
}
|
||||||
} else {
|
default:
|
||||||
nickname := "Unknown"
|
nickname := "Unknown"
|
||||||
if summaryInfo, _ := bot.Client.GetSummaryInfo(target); summaryInfo != nil {
|
if summaryInfo, _ := bot.Client.GetSummaryInfo(target); summaryInfo != nil {
|
||||||
nickname = summaryInfo.Nickname
|
nickname = summaryInfo.Nickname
|
||||||
@ -370,7 +397,7 @@ func (bot *CQBot) SendPrivateMessage(target int64, groupID int64, m *message.Sen
|
|||||||
|
|
||||||
// InsertGroupMessage 群聊消息入数据库
|
// InsertGroupMessage 群聊消息入数据库
|
||||||
func (bot *CQBot) InsertGroupMessage(m *message.GroupMessage) int32 {
|
func (bot *CQBot) InsertGroupMessage(m *message.GroupMessage) int32 {
|
||||||
val := MSG{
|
val := global.MSG{
|
||||||
"message-id": m.Id,
|
"message-id": m.Id,
|
||||||
"internal-id": m.InternalId,
|
"internal-id": m.InternalId,
|
||||||
"group": m.GroupCode,
|
"group": m.GroupCode,
|
||||||
@ -397,7 +424,7 @@ func (bot *CQBot) InsertGroupMessage(m *message.GroupMessage) int32 {
|
|||||||
|
|
||||||
// InsertPrivateMessage 私聊消息入数据库
|
// InsertPrivateMessage 私聊消息入数据库
|
||||||
func (bot *CQBot) InsertPrivateMessage(m *message.PrivateMessage) int32 {
|
func (bot *CQBot) InsertPrivateMessage(m *message.PrivateMessage) int32 {
|
||||||
val := MSG{
|
val := global.MSG{
|
||||||
"message-id": m.Id,
|
"message-id": m.Id,
|
||||||
"internal-id": m.InternalId,
|
"internal-id": m.InternalId,
|
||||||
"target": m.Target,
|
"target": m.Target,
|
||||||
@ -423,7 +450,7 @@ func (bot *CQBot) InsertPrivateMessage(m *message.PrivateMessage) int32 {
|
|||||||
|
|
||||||
// InsertTempMessage 临时消息入数据库
|
// InsertTempMessage 临时消息入数据库
|
||||||
func (bot *CQBot) InsertTempMessage(target int64, m *message.TempMessage) int32 {
|
func (bot *CQBot) InsertTempMessage(target int64, m *message.TempMessage) int32 {
|
||||||
val := MSG{
|
val := global.MSG{
|
||||||
"message-id": m.Id,
|
"message-id": m.Id,
|
||||||
// FIXME(InsertTempMessage) InternalId missing
|
// FIXME(InsertTempMessage) InternalId missing
|
||||||
"from-group": m.GroupCode,
|
"from-group": m.GroupCode,
|
||||||
@ -461,7 +488,7 @@ func (bot *CQBot) Release() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (bot *CQBot) dispatchEventMessage(m MSG) {
|
func (bot *CQBot) dispatchEventMessage(m global.MSG) {
|
||||||
bot.lock.RLock()
|
bot.lock.RLock()
|
||||||
defer bot.lock.RUnlock()
|
defer bot.lock.RUnlock()
|
||||||
|
|
||||||
@ -489,9 +516,9 @@ func (bot *CQBot) dispatchEventMessage(m MSG) {
|
|||||||
global.PutBuffer(event.buffer)
|
global.PutBuffer(event.buffer)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (bot *CQBot) formatGroupMessage(m *message.GroupMessage) MSG {
|
func (bot *CQBot) formatGroupMessage(m *message.GroupMessage) global.MSG {
|
||||||
cqm := ToStringMessage(m.Elements, m.GroupCode, true)
|
cqm := ToStringMessage(m.Elements, m.GroupCode, true)
|
||||||
gm := MSG{
|
gm := global.MSG{
|
||||||
"anonymous": nil,
|
"anonymous": nil,
|
||||||
"font": 0,
|
"font": 0,
|
||||||
"group_id": m.GroupCode,
|
"group_id": m.GroupCode,
|
||||||
@ -506,7 +533,7 @@ func (bot *CQBot) formatGroupMessage(m *message.GroupMessage) MSG {
|
|||||||
}(),
|
}(),
|
||||||
"raw_message": cqm,
|
"raw_message": cqm,
|
||||||
"self_id": bot.Client.Uin,
|
"self_id": bot.Client.Uin,
|
||||||
"sender": MSG{
|
"sender": global.MSG{
|
||||||
"age": 0,
|
"age": 0,
|
||||||
"area": "",
|
"area": "",
|
||||||
"level": "",
|
"level": "",
|
||||||
@ -518,12 +545,12 @@ func (bot *CQBot) formatGroupMessage(m *message.GroupMessage) MSG {
|
|||||||
"user_id": m.Sender.Uin,
|
"user_id": m.Sender.Uin,
|
||||||
}
|
}
|
||||||
if m.Sender.IsAnonymous() {
|
if m.Sender.IsAnonymous() {
|
||||||
gm["anonymous"] = MSG{
|
gm["anonymous"] = global.MSG{
|
||||||
"flag": m.Sender.AnonymousInfo.AnonymousId + "|" + m.Sender.AnonymousInfo.AnonymousNick,
|
"flag": m.Sender.AnonymousInfo.AnonymousId + "|" + m.Sender.AnonymousInfo.AnonymousNick,
|
||||||
"id": m.Sender.Uin,
|
"id": m.Sender.Uin,
|
||||||
"name": m.Sender.AnonymousInfo.AnonymousNick,
|
"name": m.Sender.AnonymousInfo.AnonymousNick,
|
||||||
}
|
}
|
||||||
gm["sender"].(MSG)["nickname"] = "匿名消息"
|
gm["sender"].(global.MSG)["nickname"] = "匿名消息"
|
||||||
gm["sub_type"] = "anonymous"
|
gm["sub_type"] = "anonymous"
|
||||||
} else {
|
} else {
|
||||||
group := bot.Client.FindGroup(m.GroupCode)
|
group := bot.Client.FindGroup(m.GroupCode)
|
||||||
@ -541,7 +568,7 @@ func (bot *CQBot) formatGroupMessage(m *message.GroupMessage) MSG {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ms := gm["sender"].(MSG)
|
ms := gm["sender"].(global.MSG)
|
||||||
switch mem.Permission {
|
switch mem.Permission {
|
||||||
case client.Owner:
|
case client.Owner:
|
||||||
ms["role"] = "owner"
|
ms["role"] = "owner"
|
||||||
|
@ -3,7 +3,6 @@ package coolq
|
|||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"crypto/md5"
|
"crypto/md5"
|
||||||
"encoding/base64"
|
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
xml2 "encoding/xml"
|
xml2 "encoding/xml"
|
||||||
"errors"
|
"errors"
|
||||||
@ -18,11 +17,10 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/gabriel-vasile/mimetype"
|
|
||||||
|
|
||||||
"github.com/Mrs4s/MiraiGo/binary"
|
"github.com/Mrs4s/MiraiGo/binary"
|
||||||
"github.com/Mrs4s/MiraiGo/message"
|
"github.com/Mrs4s/MiraiGo/message"
|
||||||
"github.com/Mrs4s/MiraiGo/utils"
|
"github.com/Mrs4s/MiraiGo/utils"
|
||||||
|
"github.com/gabriel-vasile/mimetype"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
"github.com/tidwall/gjson"
|
"github.com/tidwall/gjson"
|
||||||
|
|
||||||
@ -126,8 +124,8 @@ func (e *PokeElement) Type() message.ElementType {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ToArrayMessage 将消息元素数组转为MSG数组以用于消息上报
|
// ToArrayMessage 将消息元素数组转为MSG数组以用于消息上报
|
||||||
func ToArrayMessage(e []message.IMessageElement, groupID int64) (r []MSG) {
|
func ToArrayMessage(e []message.IMessageElement, groupID int64) (r []global.MSG) {
|
||||||
r = make([]MSG, 0, len(e))
|
r = make([]global.MSG, 0, len(e))
|
||||||
m := &message.SendingMessage{Elements: e}
|
m := &message.SendingMessage{Elements: e}
|
||||||
reply := m.FirstOrNil(func(e message.IMessageElement) bool {
|
reply := m.FirstOrNil(func(e message.IMessageElement) bool {
|
||||||
_, ok := e.(*message.ReplyElement)
|
_, ok := e.(*message.ReplyElement)
|
||||||
@ -140,7 +138,7 @@ func ToArrayMessage(e []message.IMessageElement, groupID int64) (r []MSG) {
|
|||||||
rid = replyElem.Sender
|
rid = replyElem.Sender
|
||||||
}
|
}
|
||||||
if ExtraReplyData {
|
if ExtraReplyData {
|
||||||
r = append(r, MSG{
|
r = append(r, global.MSG{
|
||||||
"type": "reply",
|
"type": "reply",
|
||||||
"data": map[string]string{
|
"data": map[string]string{
|
||||||
"id": strconv.FormatInt(int64(toGlobalID(rid, replyElem.ReplySeq)), 10),
|
"id": strconv.FormatInt(int64(toGlobalID(rid, replyElem.ReplySeq)), 10),
|
||||||
@ -151,71 +149,71 @@ func ToArrayMessage(e []message.IMessageElement, groupID int64) (r []MSG) {
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
r = append(r, MSG{
|
r = append(r, global.MSG{
|
||||||
"type": "reply",
|
"type": "reply",
|
||||||
"data": map[string]string{"id": strconv.FormatInt(int64(toGlobalID(rid, replyElem.ReplySeq)), 10)},
|
"data": map[string]string{"id": strconv.FormatInt(int64(toGlobalID(rid, replyElem.ReplySeq)), 10)},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for i, elem := range e {
|
for i, elem := range e {
|
||||||
var m MSG
|
var m global.MSG
|
||||||
switch o := elem.(type) {
|
switch o := elem.(type) {
|
||||||
case *message.ReplyElement:
|
case *message.ReplyElement:
|
||||||
if RemoveReplyAt && i+1 < len(e) && e[i+1].Type() == message.At {
|
if RemoveReplyAt && i+1 < len(e) {
|
||||||
elem, ok := e[i+1].(*message.AtElement)
|
elem, ok := e[i+1].(*message.AtElement)
|
||||||
if ok && elem.Target == o.Sender {
|
if ok && elem.Target == o.Sender {
|
||||||
e[i+1] = nil
|
e[i+1] = nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
case *message.TextElement:
|
case *message.TextElement:
|
||||||
m = MSG{
|
m = global.MSG{
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"data": map[string]string{"text": o.Content},
|
"data": map[string]string{"text": o.Content},
|
||||||
}
|
}
|
||||||
case *message.LightAppElement:
|
case *message.LightAppElement:
|
||||||
m = MSG{
|
m = global.MSG{
|
||||||
"type": "json",
|
"type": "json",
|
||||||
"data": map[string]string{"data": o.Content},
|
"data": map[string]string{"data": o.Content},
|
||||||
}
|
}
|
||||||
case *message.AtElement:
|
case *message.AtElement:
|
||||||
if o.Target == 0 {
|
if o.Target == 0 {
|
||||||
m = MSG{
|
m = global.MSG{
|
||||||
"type": "at",
|
"type": "at",
|
||||||
"data": map[string]string{"qq": "all"},
|
"data": map[string]string{"qq": "all"},
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
m = MSG{
|
m = global.MSG{
|
||||||
"type": "at",
|
"type": "at",
|
||||||
"data": map[string]string{"qq": strconv.FormatInt(o.Target, 10)},
|
"data": map[string]string{"qq": strconv.FormatInt(o.Target, 10)},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
case *message.RedBagElement:
|
case *message.RedBagElement:
|
||||||
m = MSG{
|
m = global.MSG{
|
||||||
"type": "redbag",
|
"type": "redbag",
|
||||||
"data": map[string]string{"title": o.Title},
|
"data": map[string]string{"title": o.Title},
|
||||||
}
|
}
|
||||||
case *message.ForwardElement:
|
case *message.ForwardElement:
|
||||||
m = MSG{
|
m = global.MSG{
|
||||||
"type": "forward",
|
"type": "forward",
|
||||||
"data": map[string]string{"id": o.ResId},
|
"data": map[string]string{"id": o.ResId},
|
||||||
}
|
}
|
||||||
case *message.FaceElement:
|
case *message.FaceElement:
|
||||||
m = MSG{
|
m = global.MSG{
|
||||||
"type": "face",
|
"type": "face",
|
||||||
"data": map[string]string{"id": strconv.FormatInt(int64(o.Index), 10)},
|
"data": map[string]string{"id": strconv.FormatInt(int64(o.Index), 10)},
|
||||||
}
|
}
|
||||||
case *message.VoiceElement:
|
case *message.VoiceElement:
|
||||||
m = MSG{
|
m = global.MSG{
|
||||||
"type": "record",
|
"type": "record",
|
||||||
"data": map[string]string{"file": o.Name, "url": o.Url},
|
"data": map[string]string{"file": o.Name, "url": o.Url},
|
||||||
}
|
}
|
||||||
case *message.ShortVideoElement:
|
case *message.ShortVideoElement:
|
||||||
m = MSG{
|
m = global.MSG{
|
||||||
"type": "video",
|
"type": "video",
|
||||||
"data": map[string]string{"file": o.Name, "url": o.Url},
|
"data": map[string]string{"file": o.Name, "url": o.Url},
|
||||||
}
|
}
|
||||||
case *message.GroupImageElement:
|
case *message.GroupImageElement:
|
||||||
data := map[string]string{"file": hex.EncodeToString(o.Md5) + ".image", "url": o.Url}
|
data := map[string]string{"file": hex.EncodeToString(o.Md5) + ".image", "url": o.Url, "subType": strconv.FormatInt(int64(o.ImageBizType), 10)}
|
||||||
switch {
|
switch {
|
||||||
case o.Flash:
|
case o.Flash:
|
||||||
data["type"] = "flash"
|
data["type"] = "flash"
|
||||||
@ -223,7 +221,7 @@ func ToArrayMessage(e []message.IMessageElement, groupID int64) (r []MSG) {
|
|||||||
data["type"] = "show"
|
data["type"] = "show"
|
||||||
data["id"] = strconv.FormatInt(int64(o.EffectID), 10)
|
data["id"] = strconv.FormatInt(int64(o.EffectID), 10)
|
||||||
}
|
}
|
||||||
m = MSG{
|
m = global.MSG{
|
||||||
"type": "image",
|
"type": "image",
|
||||||
"data": data,
|
"data": data,
|
||||||
}
|
}
|
||||||
@ -232,18 +230,18 @@ func ToArrayMessage(e []message.IMessageElement, groupID int64) (r []MSG) {
|
|||||||
if o.Flash {
|
if o.Flash {
|
||||||
data["type"] = "flash"
|
data["type"] = "flash"
|
||||||
}
|
}
|
||||||
m = MSG{
|
m = global.MSG{
|
||||||
"type": "image",
|
"type": "image",
|
||||||
"data": data,
|
"data": data,
|
||||||
}
|
}
|
||||||
case *message.ServiceElement:
|
case *message.ServiceElement:
|
||||||
if isOk := strings.Contains(o.Content, "<?xml"); isOk {
|
if isOk := strings.Contains(o.Content, "<?xml"); isOk {
|
||||||
m = MSG{
|
m = global.MSG{
|
||||||
"type": "xml",
|
"type": "xml",
|
||||||
"data": map[string]string{"data": o.Content, "resid": strconv.FormatInt(int64(o.Id), 10)},
|
"data": map[string]string{"data": o.Content, "resid": strconv.FormatInt(int64(o.Id), 10)},
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
m = MSG{
|
m = global.MSG{
|
||||||
"type": "json",
|
"type": "json",
|
||||||
"data": map[string]string{"data": o.Content, "resid": strconv.FormatInt(int64(o.Id), 10)},
|
"data": map[string]string{"data": o.Content, "resid": strconv.FormatInt(int64(o.Id), 10)},
|
||||||
}
|
}
|
||||||
@ -332,6 +330,7 @@ func ToStringMessage(e []message.IMessageElement, groupID int64, isRaw ...bool)
|
|||||||
} else if o.EffectID != 0 {
|
} else if o.EffectID != 0 {
|
||||||
arg = ",type=show,id=" + strconv.FormatInt(int64(o.EffectID), 10)
|
arg = ",type=show,id=" + strconv.FormatInt(int64(o.EffectID), 10)
|
||||||
}
|
}
|
||||||
|
arg += ",subType=" + strconv.FormatInt(int64(o.ImageBizType), 10)
|
||||||
if ur {
|
if ur {
|
||||||
write("[CQ:image,file=%s%s]", hex.EncodeToString(o.Md5)+".image", arg)
|
write("[CQ:image,file=%s%s]", hex.EncodeToString(o.Md5)+".image", arg)
|
||||||
} else {
|
} else {
|
||||||
@ -380,7 +379,7 @@ func (bot *CQBot) ConvertStringMessage(raw string, isGroup bool) (r []message.IM
|
|||||||
switch {
|
switch {
|
||||||
case customText != "":
|
case customText != "":
|
||||||
var elem *message.ReplyElement
|
var elem *message.ReplyElement
|
||||||
var org MSG
|
var org global.MSG
|
||||||
sender, senderErr := strconv.ParseInt(d["qq"], 10, 64)
|
sender, senderErr := strconv.ParseInt(d["qq"], 10, 64)
|
||||||
if senderErr != nil && err != nil {
|
if senderErr != nil && err != nil {
|
||||||
log.Warnf("警告: 自定义 Reply 元素中必须包含 Uin 或 id")
|
log.Warnf("警告: 自定义 Reply 元素中必须包含 Uin 或 id")
|
||||||
@ -552,7 +551,7 @@ func (bot *CQBot) ConvertObjectMessage(m gjson.Result, isGroup bool) (r []messag
|
|||||||
switch {
|
switch {
|
||||||
case customText != "":
|
case customText != "":
|
||||||
var elem *message.ReplyElement
|
var elem *message.ReplyElement
|
||||||
var org MSG
|
var org global.MSG
|
||||||
sender, senderErr := strconv.ParseInt(e.Get("data.[user_id,qq]").String(), 10, 64)
|
sender, senderErr := strconv.ParseInt(e.Get("data.[user_id,qq]").String(), 10, 64)
|
||||||
if senderErr != nil && err != nil {
|
if senderErr != nil && err != nil {
|
||||||
log.Warnf("警告: 自定义 Reply 元素中必须包含 user_id 或 id")
|
log.Warnf("警告: 自定义 Reply 元素中必须包含 user_id 或 id")
|
||||||
@ -696,6 +695,8 @@ func (bot *CQBot) ToElement(t string, d map[string]string, isGroup bool) (m inte
|
|||||||
case *message.GroupImageElement:
|
case *message.GroupImageElement:
|
||||||
img.Flash = flash
|
img.Flash = flash
|
||||||
img.EffectID = int32(id)
|
img.EffectID = int32(id)
|
||||||
|
i, _ := strconv.ParseInt(d["subType"], 10, 64)
|
||||||
|
img.ImageBizType = message.ImageBizType(i)
|
||||||
case *message.FriendImageElement:
|
case *message.FriendImageElement:
|
||||||
img.Flash = flash
|
img.Flash = flash
|
||||||
}
|
}
|
||||||
@ -1116,7 +1117,7 @@ func (bot *CQBot) makeImageOrVideoElem(d map[string]string, video, group bool) (
|
|||||||
return &LocalImageElement{File: fu.Path}, nil
|
return &LocalImageElement{File: fu.Path}, nil
|
||||||
}
|
}
|
||||||
if strings.HasPrefix(f, "base64") && !video {
|
if strings.HasPrefix(f, "base64") && !video {
|
||||||
b, err := base64.StdEncoding.DecodeString(strings.TrimPrefix(f, "base64://"))
|
b, err := global.Base64DecodeString(strings.TrimPrefix(f, "base64://"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -18,8 +18,10 @@ func TestCQBot_ConvertStringMessage(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var bench = `asdfqwerqwerqwer[CQ:face,id=115,text=111]asdfasdfasdfasdfasdfasdfasd[CQ:face,id=217]] 123 [`
|
var (
|
||||||
var benchArray = gjson.Parse(`[{"type":"text","data":{"text":"asdfqwerqwerqwer"}},{"type":"face","data":{"id":"115","text":"111"}},{"type":"text","data":{"text":"asdfasdfasdfasdfasdfasdfasd"}},{"type":"face","data":{"id":"217"}},{"type":"text","data":{"text":"] "}},{"type":"text","data":{"text":"123"}},{"type":"text","data":{"text":" ["}}]`)
|
bench = `asdfqwerqwerqwer[CQ:face,id=115,text=111]asdfasdfasdfasdfasdfasdfasd[CQ:face,id=217]] 123 [`
|
||||||
|
benchArray = gjson.Parse(`[{"type":"text","data":{"text":"asdfqwerqwerqwer"}},{"type":"face","data":{"id":"115","text":"111"}},{"type":"text","data":{"text":"asdfasdfasdfasdfasdfasdfasd"}},{"type":"face","data":{"id":"217"}},{"type":"text","data":{"text":"] "}},{"type":"text","data":{"text":"123"}},{"type":"text","data":{"text":" ["}}]`)
|
||||||
|
)
|
||||||
|
|
||||||
func BenchmarkCQBot_ConvertStringMessage(b *testing.B) {
|
func BenchmarkCQBot_ConvertStringMessage(b *testing.B) {
|
||||||
for i := 0; i < b.N; i++ {
|
for i := 0; i < b.N; i++ {
|
||||||
|
@ -36,15 +36,12 @@ func ToFormattedMessage(e []message.IMessageElement, groupID int64, isRaw ...boo
|
|||||||
func (bot *CQBot) privateMessageEvent(c *client.QQClient, m *message.PrivateMessage) {
|
func (bot *CQBot) privateMessageEvent(c *client.QQClient, m *message.PrivateMessage) {
|
||||||
bot.checkMedia(m.Elements)
|
bot.checkMedia(m.Elements)
|
||||||
cqm := ToStringMessage(m.Elements, 0, true)
|
cqm := ToStringMessage(m.Elements, 0, true)
|
||||||
if !m.Sender.IsFriend {
|
|
||||||
bot.oneWayMsgCache.Store(m.Sender.Uin, "")
|
|
||||||
}
|
|
||||||
id := m.Id
|
id := m.Id
|
||||||
if bot.db != nil {
|
if bot.db != nil {
|
||||||
id = bot.InsertPrivateMessage(m)
|
id = bot.InsertPrivateMessage(m)
|
||||||
}
|
}
|
||||||
log.Infof("收到好友 %v(%v) 的消息: %v (%v)", m.Sender.DisplayName(), m.Sender.Uin, cqm, id)
|
log.Infof("收到好友 %v(%v) 的消息: %v (%v)", m.Sender.DisplayName(), m.Sender.Uin, cqm, id)
|
||||||
fm := MSG{
|
fm := global.MSG{
|
||||||
"post_type": func() string {
|
"post_type": func() string {
|
||||||
if m.Sender.Uin == bot.Client.Uin {
|
if m.Sender.Uin == bot.Client.Uin {
|
||||||
return "message_sent"
|
return "message_sent"
|
||||||
@ -61,7 +58,7 @@ func (bot *CQBot) privateMessageEvent(c *client.QQClient, m *message.PrivateMess
|
|||||||
"font": 0,
|
"font": 0,
|
||||||
"self_id": c.Uin,
|
"self_id": c.Uin,
|
||||||
"time": time.Now().Unix(),
|
"time": time.Now().Unix(),
|
||||||
"sender": MSG{
|
"sender": global.MSG{
|
||||||
"user_id": m.Sender.Uin,
|
"user_id": m.Sender.Uin,
|
||||||
"nickname": m.Sender.Nickname,
|
"nickname": m.Sender.Nickname,
|
||||||
"sex": "unknown",
|
"sex": "unknown",
|
||||||
@ -76,12 +73,12 @@ func (bot *CQBot) groupMessageEvent(c *client.QQClient, m *message.GroupMessage)
|
|||||||
for _, elem := range m.Elements {
|
for _, elem := range m.Elements {
|
||||||
if file, ok := elem.(*message.GroupFileElement); ok {
|
if file, ok := elem.(*message.GroupFileElement); ok {
|
||||||
log.Infof("群 %v(%v) 内 %v(%v) 上传了文件: %v", m.GroupName, m.GroupCode, m.Sender.DisplayName(), m.Sender.Uin, file.Name)
|
log.Infof("群 %v(%v) 内 %v(%v) 上传了文件: %v", m.GroupName, m.GroupCode, m.Sender.DisplayName(), m.Sender.Uin, file.Name)
|
||||||
bot.dispatchEventMessage(MSG{
|
bot.dispatchEventMessage(global.MSG{
|
||||||
"post_type": "notice",
|
"post_type": "notice",
|
||||||
"notice_type": "group_upload",
|
"notice_type": "group_upload",
|
||||||
"group_id": m.GroupCode,
|
"group_id": m.GroupCode,
|
||||||
"user_id": m.Sender.Uin,
|
"user_id": m.Sender.Uin,
|
||||||
"file": MSG{
|
"file": global.MSG{
|
||||||
"id": file.Path,
|
"id": file.Path,
|
||||||
"name": file.Name,
|
"name": file.Name,
|
||||||
"size": file.Size,
|
"size": file.Size,
|
||||||
@ -118,7 +115,7 @@ func (bot *CQBot) tempMessageEvent(c *client.QQClient, e *client.TempMessageEven
|
|||||||
id = bot.InsertTempMessage(m.Sender.Uin, m)
|
id = bot.InsertTempMessage(m.Sender.Uin, m)
|
||||||
}
|
}
|
||||||
log.Infof("收到来自群 %v(%v) 内 %v(%v) 的临时会话消息: %v", m.GroupName, m.GroupCode, m.Sender.DisplayName(), m.Sender.Uin, cqm)
|
log.Infof("收到来自群 %v(%v) 内 %v(%v) 的临时会话消息: %v", m.GroupName, m.GroupCode, m.Sender.DisplayName(), m.Sender.Uin, cqm)
|
||||||
tm := MSG{
|
tm := global.MSG{
|
||||||
"post_type": "message",
|
"post_type": "message",
|
||||||
"message_type": "private",
|
"message_type": "private",
|
||||||
"sub_type": "group",
|
"sub_type": "group",
|
||||||
@ -130,7 +127,7 @@ func (bot *CQBot) tempMessageEvent(c *client.QQClient, e *client.TempMessageEven
|
|||||||
"font": 0,
|
"font": 0,
|
||||||
"self_id": c.Uin,
|
"self_id": c.Uin,
|
||||||
"time": time.Now().Unix(),
|
"time": time.Now().Unix(),
|
||||||
"sender": MSG{
|
"sender": global.MSG{
|
||||||
"user_id": m.Sender.Uin,
|
"user_id": m.Sender.Uin,
|
||||||
"group_id": m.GroupCode,
|
"group_id": m.GroupCode,
|
||||||
"nickname": m.Sender.Nickname,
|
"nickname": m.Sender.Nickname,
|
||||||
@ -161,7 +158,7 @@ func (bot *CQBot) groupMutedEvent(c *client.QQClient, e *client.GroupMuteEvent)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bot.dispatchEventMessage(MSG{
|
bot.dispatchEventMessage(global.MSG{
|
||||||
"post_type": "notice",
|
"post_type": "notice",
|
||||||
"duration": e.Time,
|
"duration": e.Time,
|
||||||
"group_id": e.GroupCode,
|
"group_id": e.GroupCode,
|
||||||
@ -184,7 +181,7 @@ func (bot *CQBot) groupRecallEvent(c *client.QQClient, e *client.GroupMessageRec
|
|||||||
gid := toGlobalID(e.GroupCode, e.MessageId)
|
gid := toGlobalID(e.GroupCode, e.MessageId)
|
||||||
log.Infof("群 %v 内 %v 撤回了 %v 的消息: %v.",
|
log.Infof("群 %v 内 %v 撤回了 %v 的消息: %v.",
|
||||||
formatGroupName(g), formatMemberName(g.FindMember(e.OperatorUin)), formatMemberName(g.FindMember(e.AuthorUin)), gid)
|
formatGroupName(g), formatMemberName(g.FindMember(e.OperatorUin)), formatMemberName(g.FindMember(e.AuthorUin)), gid)
|
||||||
bot.dispatchEventMessage(MSG{
|
bot.dispatchEventMessage(global.MSG{
|
||||||
"post_type": "notice",
|
"post_type": "notice",
|
||||||
"group_id": e.GroupCode,
|
"group_id": e.GroupCode,
|
||||||
"notice_type": "group_recall",
|
"notice_type": "group_recall",
|
||||||
@ -203,7 +200,7 @@ func (bot *CQBot) groupNotifyEvent(c *client.QQClient, e client.INotifyEvent) {
|
|||||||
sender := group.FindMember(notify.Sender)
|
sender := group.FindMember(notify.Sender)
|
||||||
receiver := group.FindMember(notify.Receiver)
|
receiver := group.FindMember(notify.Receiver)
|
||||||
log.Infof("群 %v 内 %v 戳了戳 %v", formatGroupName(group), formatMemberName(sender), formatMemberName(receiver))
|
log.Infof("群 %v 内 %v 戳了戳 %v", formatGroupName(group), formatMemberName(sender), formatMemberName(receiver))
|
||||||
bot.dispatchEventMessage(MSG{
|
bot.dispatchEventMessage(global.MSG{
|
||||||
"post_type": "notice",
|
"post_type": "notice",
|
||||||
"group_id": group.Code,
|
"group_id": group.Code,
|
||||||
"notice_type": "notify",
|
"notice_type": "notify",
|
||||||
@ -218,7 +215,7 @@ func (bot *CQBot) groupNotifyEvent(c *client.QQClient, e client.INotifyEvent) {
|
|||||||
sender := group.FindMember(notify.Sender)
|
sender := group.FindMember(notify.Sender)
|
||||||
luckyKing := group.FindMember(notify.LuckyKing)
|
luckyKing := group.FindMember(notify.LuckyKing)
|
||||||
log.Infof("群 %v 内 %v 的红包被抢完, %v 是运气王", formatGroupName(group), formatMemberName(sender), formatMemberName(luckyKing))
|
log.Infof("群 %v 内 %v 的红包被抢完, %v 是运气王", formatGroupName(group), formatMemberName(sender), formatMemberName(luckyKing))
|
||||||
bot.dispatchEventMessage(MSG{
|
bot.dispatchEventMessage(global.MSG{
|
||||||
"post_type": "notice",
|
"post_type": "notice",
|
||||||
"group_id": group.Code,
|
"group_id": group.Code,
|
||||||
"notice_type": "notify",
|
"notice_type": "notify",
|
||||||
@ -231,7 +228,7 @@ func (bot *CQBot) groupNotifyEvent(c *client.QQClient, e client.INotifyEvent) {
|
|||||||
})
|
})
|
||||||
case *client.MemberHonorChangedNotifyEvent:
|
case *client.MemberHonorChangedNotifyEvent:
|
||||||
log.Info(notify.Content())
|
log.Info(notify.Content())
|
||||||
bot.dispatchEventMessage(MSG{
|
bot.dispatchEventMessage(global.MSG{
|
||||||
"post_type": "notice",
|
"post_type": "notice",
|
||||||
"group_id": group.Code,
|
"group_id": group.Code,
|
||||||
"notice_type": "notify",
|
"notice_type": "notify",
|
||||||
@ -267,7 +264,7 @@ func (bot *CQBot) friendNotifyEvent(c *client.QQClient, e client.INotifyEvent) {
|
|||||||
} else {
|
} else {
|
||||||
log.Infof("好友 %v 戳了戳你.", friend.Nickname)
|
log.Infof("好友 %v 戳了戳你.", friend.Nickname)
|
||||||
}
|
}
|
||||||
bot.dispatchEventMessage(MSG{
|
bot.dispatchEventMessage(global.MSG{
|
||||||
"post_type": "notice",
|
"post_type": "notice",
|
||||||
"notice_type": "notify",
|
"notice_type": "notify",
|
||||||
"sub_type": "poke",
|
"sub_type": "poke",
|
||||||
@ -284,7 +281,7 @@ func (bot *CQBot) memberTitleUpdatedEvent(c *client.QQClient, e *client.MemberSp
|
|||||||
group := c.FindGroup(e.GroupCode)
|
group := c.FindGroup(e.GroupCode)
|
||||||
mem := group.FindMember(e.Uin)
|
mem := group.FindMember(e.Uin)
|
||||||
log.Infof("群 %v(%v) 内成员 %v(%v) 获得了新的头衔: %v", group.Name, group.Code, mem.DisplayName(), mem.Uin, e.NewTitle)
|
log.Infof("群 %v(%v) 内成员 %v(%v) 获得了新的头衔: %v", group.Name, group.Code, mem.DisplayName(), mem.Uin, e.NewTitle)
|
||||||
bot.dispatchEventMessage(MSG{
|
bot.dispatchEventMessage(global.MSG{
|
||||||
"post_type": "notice",
|
"post_type": "notice",
|
||||||
"notice_type": "notify",
|
"notice_type": "notify",
|
||||||
"sub_type": "title",
|
"sub_type": "title",
|
||||||
@ -304,7 +301,7 @@ func (bot *CQBot) friendRecallEvent(c *client.QQClient, e *client.FriendMessageR
|
|||||||
} else {
|
} else {
|
||||||
log.Infof("好友 %v 撤回了消息: %v", e.FriendUin, gid)
|
log.Infof("好友 %v 撤回了消息: %v", e.FriendUin, gid)
|
||||||
}
|
}
|
||||||
bot.dispatchEventMessage(MSG{
|
bot.dispatchEventMessage(global.MSG{
|
||||||
"post_type": "notice",
|
"post_type": "notice",
|
||||||
"notice_type": "friend_recall",
|
"notice_type": "friend_recall",
|
||||||
"self_id": c.Uin,
|
"self_id": c.Uin,
|
||||||
@ -320,11 +317,11 @@ func (bot *CQBot) offlineFileEvent(c *client.QQClient, e *client.OfflineFileEven
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
log.Infof("好友 %v(%v) 发送了离线文件 %v", f.Nickname, f.Uin, e.FileName)
|
log.Infof("好友 %v(%v) 发送了离线文件 %v", f.Nickname, f.Uin, e.FileName)
|
||||||
bot.dispatchEventMessage(MSG{
|
bot.dispatchEventMessage(global.MSG{
|
||||||
"post_type": "notice",
|
"post_type": "notice",
|
||||||
"notice_type": "offline_file",
|
"notice_type": "offline_file",
|
||||||
"user_id": e.Sender,
|
"user_id": e.Sender,
|
||||||
"file": MSG{
|
"file": global.MSG{
|
||||||
"name": e.FileName,
|
"name": e.FileName,
|
||||||
"size": e.FileSize,
|
"size": e.FileSize,
|
||||||
"url": e.DownloadUrl,
|
"url": e.DownloadUrl,
|
||||||
@ -355,7 +352,7 @@ func (bot *CQBot) memberPermissionChangedEvent(c *client.QQClient, e *client.Mem
|
|||||||
}
|
}
|
||||||
return "unset"
|
return "unset"
|
||||||
}()
|
}()
|
||||||
bot.dispatchEventMessage(MSG{
|
bot.dispatchEventMessage(global.MSG{
|
||||||
"post_type": "notice",
|
"post_type": "notice",
|
||||||
"notice_type": "group_admin",
|
"notice_type": "group_admin",
|
||||||
"sub_type": st,
|
"sub_type": st,
|
||||||
@ -368,7 +365,7 @@ func (bot *CQBot) memberPermissionChangedEvent(c *client.QQClient, e *client.Mem
|
|||||||
|
|
||||||
func (bot *CQBot) memberCardUpdatedEvent(c *client.QQClient, e *client.MemberCardUpdatedEvent) {
|
func (bot *CQBot) memberCardUpdatedEvent(c *client.QQClient, e *client.MemberCardUpdatedEvent) {
|
||||||
log.Infof("群 %v 的 %v 更新了名片 %v -> %v", formatGroupName(e.Group), formatMemberName(e.Member), e.OldCard, e.Member.CardName)
|
log.Infof("群 %v 的 %v 更新了名片 %v -> %v", formatGroupName(e.Group), formatMemberName(e.Member), e.OldCard, e.Member.CardName)
|
||||||
bot.dispatchEventMessage(MSG{
|
bot.dispatchEventMessage(global.MSG{
|
||||||
"post_type": "notice",
|
"post_type": "notice",
|
||||||
"notice_type": "group_card",
|
"notice_type": "group_card",
|
||||||
"group_id": e.Group.Code,
|
"group_id": e.Group.Code,
|
||||||
@ -398,7 +395,7 @@ func (bot *CQBot) friendRequestEvent(c *client.QQClient, e *client.NewFriendRequ
|
|||||||
log.Infof("收到来自 %v(%v) 的好友请求: %v", e.RequesterNick, e.RequesterUin, e.Message)
|
log.Infof("收到来自 %v(%v) 的好友请求: %v", e.RequesterNick, e.RequesterUin, e.Message)
|
||||||
flag := strconv.FormatInt(e.RequestId, 10)
|
flag := strconv.FormatInt(e.RequestId, 10)
|
||||||
bot.friendReqCache.Store(flag, e)
|
bot.friendReqCache.Store(flag, e)
|
||||||
bot.dispatchEventMessage(MSG{
|
bot.dispatchEventMessage(global.MSG{
|
||||||
"post_type": "request",
|
"post_type": "request",
|
||||||
"request_type": "friend",
|
"request_type": "friend",
|
||||||
"user_id": e.RequesterUin,
|
"user_id": e.RequesterUin,
|
||||||
@ -412,7 +409,7 @@ func (bot *CQBot) friendRequestEvent(c *client.QQClient, e *client.NewFriendRequ
|
|||||||
func (bot *CQBot) friendAddedEvent(c *client.QQClient, e *client.NewFriendEvent) {
|
func (bot *CQBot) friendAddedEvent(c *client.QQClient, e *client.NewFriendEvent) {
|
||||||
log.Infof("添加了新好友: %v(%v)", e.Friend.Nickname, e.Friend.Uin)
|
log.Infof("添加了新好友: %v(%v)", e.Friend.Nickname, e.Friend.Uin)
|
||||||
bot.tempSessionCache.Delete(e.Friend.Uin)
|
bot.tempSessionCache.Delete(e.Friend.Uin)
|
||||||
bot.dispatchEventMessage(MSG{
|
bot.dispatchEventMessage(global.MSG{
|
||||||
"post_type": "notice",
|
"post_type": "notice",
|
||||||
"notice_type": "friend_add",
|
"notice_type": "friend_add",
|
||||||
"self_id": c.Uin,
|
"self_id": c.Uin,
|
||||||
@ -424,7 +421,7 @@ func (bot *CQBot) friendAddedEvent(c *client.QQClient, e *client.NewFriendEvent)
|
|||||||
func (bot *CQBot) groupInvitedEvent(c *client.QQClient, e *client.GroupInvitedRequest) {
|
func (bot *CQBot) groupInvitedEvent(c *client.QQClient, e *client.GroupInvitedRequest) {
|
||||||
log.Infof("收到来自群 %v(%v) 内用户 %v(%v) 的加群邀请.", e.GroupName, e.GroupCode, e.InvitorNick, e.InvitorUin)
|
log.Infof("收到来自群 %v(%v) 内用户 %v(%v) 的加群邀请.", e.GroupName, e.GroupCode, e.InvitorNick, e.InvitorUin)
|
||||||
flag := strconv.FormatInt(e.RequestId, 10)
|
flag := strconv.FormatInt(e.RequestId, 10)
|
||||||
bot.dispatchEventMessage(MSG{
|
bot.dispatchEventMessage(global.MSG{
|
||||||
"post_type": "request",
|
"post_type": "request",
|
||||||
"request_type": "group",
|
"request_type": "group",
|
||||||
"sub_type": "invite",
|
"sub_type": "invite",
|
||||||
@ -440,7 +437,7 @@ func (bot *CQBot) groupInvitedEvent(c *client.QQClient, e *client.GroupInvitedRe
|
|||||||
func (bot *CQBot) groupJoinReqEvent(c *client.QQClient, e *client.UserJoinGroupRequest) {
|
func (bot *CQBot) groupJoinReqEvent(c *client.QQClient, e *client.UserJoinGroupRequest) {
|
||||||
log.Infof("群 %v(%v) 收到来自用户 %v(%v) 的加群请求.", e.GroupName, e.GroupCode, e.RequesterNick, e.RequesterUin)
|
log.Infof("群 %v(%v) 收到来自用户 %v(%v) 的加群请求.", e.GroupName, e.GroupCode, e.RequesterNick, e.RequesterUin)
|
||||||
flag := strconv.FormatInt(e.RequestId, 10)
|
flag := strconv.FormatInt(e.RequestId, 10)
|
||||||
bot.dispatchEventMessage(MSG{
|
bot.dispatchEventMessage(global.MSG{
|
||||||
"post_type": "request",
|
"post_type": "request",
|
||||||
"request_type": "group",
|
"request_type": "group",
|
||||||
"sub_type": "add",
|
"sub_type": "add",
|
||||||
@ -459,11 +456,11 @@ func (bot *CQBot) otherClientStatusChangedEvent(c *client.QQClient, e *client.Ot
|
|||||||
} else {
|
} else {
|
||||||
log.Infof("Bot 账号在客户端 %v (%v) 登出.", e.Client.DeviceName, e.Client.DeviceKind)
|
log.Infof("Bot 账号在客户端 %v (%v) 登出.", e.Client.DeviceName, e.Client.DeviceKind)
|
||||||
}
|
}
|
||||||
bot.dispatchEventMessage(MSG{
|
bot.dispatchEventMessage(global.MSG{
|
||||||
"post_type": "notice",
|
"post_type": "notice",
|
||||||
"notice_type": "client_status",
|
"notice_type": "client_status",
|
||||||
"online": e.Online,
|
"online": e.Online,
|
||||||
"client": MSG{
|
"client": global.MSG{
|
||||||
"app_id": e.Client.AppId,
|
"app_id": e.Client.AppId,
|
||||||
"device_name": e.Client.DeviceName,
|
"device_name": e.Client.DeviceName,
|
||||||
"device_kind": e.Client.DeviceKind,
|
"device_kind": e.Client.DeviceKind,
|
||||||
@ -496,7 +493,7 @@ func (bot *CQBot) groupEssenceMsg(c *client.QQClient, e *client.GroupDigestEvent
|
|||||||
if e.OperatorUin == bot.Client.Uin {
|
if e.OperatorUin == bot.Client.Uin {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
bot.dispatchEventMessage(MSG{
|
bot.dispatchEventMessage(global.MSG{
|
||||||
"post_type": "notice",
|
"post_type": "notice",
|
||||||
"group_id": e.GroupCode,
|
"group_id": e.GroupCode,
|
||||||
"notice_type": "essence",
|
"notice_type": "essence",
|
||||||
@ -514,8 +511,8 @@ func (bot *CQBot) groupEssenceMsg(c *client.QQClient, e *client.GroupDigestEvent
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func (bot *CQBot) groupIncrease(groupCode, operatorUin, userUin int64) MSG {
|
func (bot *CQBot) groupIncrease(groupCode, operatorUin, userUin int64) global.MSG {
|
||||||
return MSG{
|
return global.MSG{
|
||||||
"post_type": "notice",
|
"post_type": "notice",
|
||||||
"notice_type": "group_increase",
|
"notice_type": "group_increase",
|
||||||
"group_id": groupCode,
|
"group_id": groupCode,
|
||||||
@ -527,8 +524,8 @@ func (bot *CQBot) groupIncrease(groupCode, operatorUin, userUin int64) MSG {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (bot *CQBot) groupDecrease(groupCode, userUin int64, operator *client.GroupMemberInfo) MSG {
|
func (bot *CQBot) groupDecrease(groupCode, userUin int64, operator *client.GroupMemberInfo) global.MSG {
|
||||||
return MSG{
|
return global.MSG{
|
||||||
"post_type": "notice",
|
"post_type": "notice",
|
||||||
"notice_type": "group_decrease",
|
"notice_type": "group_decrease",
|
||||||
"group_id": groupCode,
|
"group_id": groupCode,
|
||||||
|
@ -32,7 +32,6 @@ heartbeat:
|
|||||||
# -1 为关闭心跳
|
# -1 为关闭心跳
|
||||||
interval: 5
|
interval: 5
|
||||||
|
|
||||||
message:
|
|
||||||
# 上报数据类型
|
# 上报数据类型
|
||||||
# 可选: string,array
|
# 可选: string,array
|
||||||
post-format: string
|
post-format: string
|
||||||
@ -48,6 +47,12 @@ message:
|
|||||||
proxy-rewrite: ''
|
proxy-rewrite: ''
|
||||||
# 是否上报自身消息
|
# 是否上报自身消息
|
||||||
report-self-message: false
|
report-self-message: false
|
||||||
|
# 移除服务端的Reply附带的At
|
||||||
|
remove-reply-at: false
|
||||||
|
# 为Reply附加更多信息
|
||||||
|
extra-reply-data: false
|
||||||
|
# 跳过 Mime 扫描, 忽略错误数据
|
||||||
|
skip-mime-scan: false
|
||||||
|
|
||||||
output:
|
output:
|
||||||
# 日志等级 trace,debug,info,warn,error
|
# 日志等级 trace,debug,info,warn,error
|
||||||
@ -149,6 +154,8 @@ database: # 数据库相关设置
|
|||||||
|
|
||||||
> 注4:关闭心跳服务可能引起断线,请谨慎关闭
|
> 注4:关闭心跳服务可能引起断线,请谨慎关闭
|
||||||
|
|
||||||
|
> 注5:关于MINE扫描, 详见[MINE](file.md#MINE)
|
||||||
|
|
||||||
## 在线状态
|
## 在线状态
|
||||||
|
|
||||||
| 状态 | 值 |
|
| 状态 | 值 |
|
||||||
|
@ -75,12 +75,13 @@ Type : `image`
|
|||||||
|
|
||||||
| 参数名 | 可能的值 | 说明 |
|
| 参数名 | 可能的值 | 说明 |
|
||||||
| ------- | --------------- | ---------------------------------------------------------------------- |
|
| ------- | --------------- | ---------------------------------------------------------------------- |
|
||||||
| `file` | - | 图片文件名 |
|
| `file` | - | 图片文件名 |
|
||||||
| `type` | `flash`,`show` | 图片类型,`flash` 表示闪照,`show` 表示秀图,默认普通图片 |
|
| `type` | `flash`,`show` | 图片类型,`flash` 表示闪照,`show` 表示秀图,默认普通图片 |
|
||||||
| `url` | - | 图片 URL |
|
| `subType`| - | 图片子类型, 只出现在群聊. |
|
||||||
| `cache` | `0` `1` | 只在通过网络 URL 发送时有效,表示是否使用已缓存的文件,默认 `1` |
|
| `url` | - | 图片 URL |
|
||||||
| `id` | - | 发送秀图时的特效id,默认为40000 |
|
| `cache` | `0` `1` | 只在通过网络 URL 发送时有效,表示是否使用已缓存的文件,默认 `1` |
|
||||||
| `c` | `2` `3` | 通过网络下载图片时的线程数, 默认单线程. (在资源不支持并发时会自动处理) |
|
| `id` | - | 发送秀图时的特效id,默认为40000 |
|
||||||
|
| `c` | `2` `3` | 通过网络下载图片时的线程数, 默认单线程. (在资源不支持并发时会自动处理) |
|
||||||
|
|
||||||
可用的特效ID:
|
可用的特效ID:
|
||||||
|
|
||||||
@ -93,6 +94,21 @@ Type : `image`
|
|||||||
| 40004 | 爱你 |
|
| 40004 | 爱你 |
|
||||||
| 40005 | 征友 |
|
| 40005 | 征友 |
|
||||||
|
|
||||||
|
子类型列表:
|
||||||
|
|
||||||
|
| value | 说明 |
|
||||||
|
| ----- | ---- |
|
||||||
|
| 0 | 正常图片 |
|
||||||
|
| 1 | 表情包, 在客户端会被分类到表情包图片并缩放显示 |
|
||||||
|
| 2 | 热图 |
|
||||||
|
| 3 | 斗图 |
|
||||||
|
| 4 | 智图? |
|
||||||
|
| 7 | 贴图 |
|
||||||
|
| 8 | 自拍 |
|
||||||
|
| 9 | 贴图广告? |
|
||||||
|
| 10 | 有待测试 |
|
||||||
|
| 13 | 热搜图 |
|
||||||
|
|
||||||
示例: `[CQ:image,file=http://baidu.com/1.jpg,type=show,id=40004]`
|
示例: `[CQ:image,file=http://baidu.com/1.jpg,type=show,id=40004]`
|
||||||
|
|
||||||
> 注意:图片总大小不能超过30MB,gif总帧数不能超过300帧
|
> 注意:图片总大小不能超过30MB,gif总帧数不能超过300帧
|
||||||
@ -1086,6 +1102,34 @@ JSON数组:
|
|||||||
|
|
||||||
`该 API 没有响应数据`
|
`该 API 没有响应数据`
|
||||||
|
|
||||||
|
### 获取单向好友列表
|
||||||
|
|
||||||
|
终结点: `/get_unidirectional_friend_list`
|
||||||
|
|
||||||
|
**响应数据**
|
||||||
|
|
||||||
|
数组信息:
|
||||||
|
|
||||||
|
| 字段 | 类型 | 说明 |
|
||||||
|
| ------------- | ------ | -------- |
|
||||||
|
| `nickname` | string | 昵称 |
|
||||||
|
| `user_id` | int64 | 用户QQ号 |
|
||||||
|
| `source` | string | 添加途径 |
|
||||||
|
|
||||||
|
> 添加途径为用户显示内容, 如 `精确查找` `QQ群 - xxxx`
|
||||||
|
|
||||||
|
### 删除单向好友
|
||||||
|
|
||||||
|
终结点: `/delete_unidirectional_friend`
|
||||||
|
|
||||||
|
**参数**
|
||||||
|
|
||||||
|
| 字段名 | 数据类型 | 默认值 | 说明 |
|
||||||
|
| ---------- | -------- | ------ | -------- |
|
||||||
|
| `user_id` | int64 | | 好友ID |
|
||||||
|
|
||||||
|
`该 API 没有响应数据`
|
||||||
|
|
||||||
### 删除好友
|
### 删除好友
|
||||||
|
|
||||||
终结点: `/delete_friend`
|
终结点: `/delete_friend`
|
||||||
@ -1094,7 +1138,7 @@ JSON数组:
|
|||||||
|
|
||||||
| 字段名 | 数据类型 | 默认值 | 说明 |
|
| 字段名 | 数据类型 | 默认值 | 说明 |
|
||||||
| ---------- | -------- | ------ | -------- |
|
| ---------- | -------- | ------ | -------- |
|
||||||
| `id` | int64 | | 好友ID |
|
| `user_id` | int64 | | 好友ID |
|
||||||
|
|
||||||
`该 API 没有响应数据`
|
`该 API 没有响应数据`
|
||||||
|
|
||||||
|
28
docs/file.md
28
docs/file.md
@ -38,3 +38,31 @@ go-cqhttp 默认生成的文件树如下所示:
|
|||||||
| 0x10 | uint32 | 图片源文件大小 |
|
| 0x10 | uint32 | 图片源文件大小 |
|
||||||
| 0x14 | string | 图片原名(QQ内部ID) |
|
| 0x14 | string | 图片原名(QQ内部ID) |
|
||||||
| 0x14 + 原名长度 | string | 图片下载链接 |
|
| 0x14 + 原名长度 | string | 图片下载链接 |
|
||||||
|
|
||||||
|
# MINE
|
||||||
|
|
||||||
|
启用MINE检查可以及时发现媒体资源格式错误引起的上传失败(通常表现为,请求网页图片,但服务端返回404.html)
|
||||||
|
|
||||||
|
在配置文件中设置 `skip-mine-scan: false`后 ,go-cqhttp 会在上传媒体资源(视频暂不支持)前对MINE进行检查,
|
||||||
|
详细允许类型如下所示:
|
||||||
|
|
||||||
|
图片:
|
||||||
|
> image/bmp
|
||||||
|
> image/gif
|
||||||
|
> image/jpeg
|
||||||
|
> image/png
|
||||||
|
> image/webp
|
||||||
|
|
||||||
|
语音:
|
||||||
|
> audio/aac
|
||||||
|
> audio/aiff
|
||||||
|
> audio/amr
|
||||||
|
> audio/ape
|
||||||
|
> audio/flac
|
||||||
|
> audio/midi
|
||||||
|
> audio/mp4
|
||||||
|
> audio/mpeg
|
||||||
|
> audio/ogg
|
||||||
|
> audio/wav
|
||||||
|
> audio/x-m4a
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func TestVersionNameCompare(t *testing.T) {
|
func TestVersionNameCompare(t *testing.T) {
|
||||||
var tests = [...]struct {
|
tests := [...]struct {
|
||||||
current string
|
current string
|
||||||
remote string
|
remote string
|
||||||
expected bool
|
expected bool
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
//go:build (linux || (windows && !arm) || darwin) && (386 || amd64 || arm || arm64) && !race
|
//go:build (linux || (windows && !arm && !arm64) || darwin) && (386 || amd64 || arm || arm64) && !race && !nosilk
|
||||||
// +build linux windows,!arm darwin
|
// +build linux windows,!arm,!arm64 darwin
|
||||||
// +build 386 amd64 arm arm64
|
// +build 386 amd64 arm arm64
|
||||||
// +build !race
|
// +build !race
|
||||||
|
// +build !nosilk
|
||||||
|
|
||||||
package codec
|
package codec
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
//go:build (!arm && !arm64 && !amd64 && !386) || race || (!windows && !linux && !darwin) || (windows && arm)
|
//go:build (!arm && !arm64 && !amd64 && !386) || (!windows && !linux && !darwin) || (windows && arm) || (windows && arm64) || race || nosilk
|
||||||
// +build !arm,!arm64,!amd64,!386 race !windows,!linux,!darwin windows,arm
|
// +build !arm,!arm64,!amd64,!386 !windows,!linux,!darwin windows,arm windows,arm64 race nosilk
|
||||||
|
|
||||||
package codec
|
package codec
|
||||||
|
|
||||||
|
@ -160,76 +160,80 @@ func Get() *Config {
|
|||||||
generateConfig()
|
generateConfig()
|
||||||
os.Exit(0)
|
os.Exit(0)
|
||||||
}
|
}
|
||||||
|
if hasEnvironmentConf {
|
||||||
|
// type convert tools
|
||||||
|
toInt64 := func(str string) int64 {
|
||||||
|
i, _ := strconv.ParseInt(str, 10, 64)
|
||||||
|
return i
|
||||||
|
}
|
||||||
|
|
||||||
// type convert tools
|
// load config from environment variable
|
||||||
toInt64 := func(str string) int64 {
|
global.SetAtDefault(&config.Account.Uin, toInt64(os.Getenv("GCQ_UIN")), int64(0))
|
||||||
i, _ := strconv.ParseInt(str, 10, 64)
|
global.SetAtDefault(&config.Account.Password, os.Getenv("GCQ_PWD"), "")
|
||||||
return i
|
global.SetAtDefault(&config.Account.Status, int32(toInt64(os.Getenv("GCQ_STATUS"))), int32(0))
|
||||||
}
|
global.SetAtDefault(&config.Account.ReLogin.Disabled, !global.EnsureBool(os.Getenv("GCQ_RELOGIN_DISABLED"), true), false)
|
||||||
|
global.SetAtDefault(&config.Account.ReLogin.Delay, uint(toInt64(os.Getenv("GCQ_RELOGIN_DELAY"))), uint(0))
|
||||||
// load config from environment variable
|
global.SetAtDefault(&config.Account.ReLogin.MaxTimes, uint(toInt64(os.Getenv("GCQ_RELOGIN_MAX_TIMES"))), uint(0))
|
||||||
global.SetAtDefault(&config.Account.Uin, toInt64(os.Getenv("GCQ_UIN")), int64(0))
|
dbConf := &LevelDBConfig{Enable: global.EnsureBool(os.Getenv("GCQ_LEVELDB"), true)}
|
||||||
global.SetAtDefault(&config.Account.Password, os.Getenv("GCQ_PWD"), "")
|
if config.Database == nil {
|
||||||
global.SetAtDefault(&config.Account.Status, int32(toInt64(os.Getenv("GCQ_STATUS"))), int32(0))
|
config.Database = make(map[string]yaml.Node)
|
||||||
global.SetAtDefault(&config.Account.ReLogin.Disabled, !global.EnsureBool(os.Getenv("GCQ_RELOGIN"), false), false)
|
|
||||||
global.SetAtDefault(&config.Account.ReLogin.Delay, uint(toInt64(os.Getenv("GCQ_RELOGIN_DELAY"))), uint(0))
|
|
||||||
global.SetAtDefault(&config.Account.ReLogin.MaxTimes, uint(toInt64(os.Getenv("GCQ_RELOGIN_MAX_TIMES"))), uint(0))
|
|
||||||
dbConf := &LevelDBConfig{Enable: global.EnsureBool(os.Getenv("GCQ_LEVELDB"), true)}
|
|
||||||
config.Database["leveldb"] = func() yaml.Node {
|
|
||||||
n := &yaml.Node{}
|
|
||||||
_ = n.Encode(dbConf)
|
|
||||||
return *n
|
|
||||||
}()
|
|
||||||
accessTokenEnv := os.Getenv("GCQ_ACCESS_TOKEN")
|
|
||||||
if os.Getenv("GCQ_HTTP_PORT") != "" {
|
|
||||||
node := &yaml.Node{}
|
|
||||||
httpConf := &HTTPServer{
|
|
||||||
Host: "0.0.0.0",
|
|
||||||
Port: 5700,
|
|
||||||
MiddleWares: MiddleWares{
|
|
||||||
AccessToken: accessTokenEnv,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
global.SetExcludeDefault(&httpConf.Disabled, global.EnsureBool(os.Getenv("GCQ_HTTP_DISABLE"), false), false)
|
config.Database["leveldb"] = func() yaml.Node {
|
||||||
global.SetExcludeDefault(&httpConf.Host, os.Getenv("GCQ_HTTP_HOST"), "")
|
n := &yaml.Node{}
|
||||||
global.SetExcludeDefault(&httpConf.Port, int(toInt64(os.Getenv("GCQ_HTTP_PORT"))), 0)
|
_ = n.Encode(dbConf)
|
||||||
if os.Getenv("GCQ_HTTP_POST_URL") != "" {
|
return *n
|
||||||
httpConf.Post = append(httpConf.Post, struct {
|
}()
|
||||||
URL string `yaml:"url"`
|
accessTokenEnv := os.Getenv("GCQ_ACCESS_TOKEN")
|
||||||
Secret string `yaml:"secret"`
|
if os.Getenv("GCQ_HTTP_PORT") != "" {
|
||||||
}{os.Getenv("GCQ_HTTP_POST_URL"), os.Getenv("GCQ_HTTP_POST_SECRET")})
|
node := &yaml.Node{}
|
||||||
|
httpConf := &HTTPServer{
|
||||||
|
Host: "0.0.0.0",
|
||||||
|
Port: 5700,
|
||||||
|
MiddleWares: MiddleWares{
|
||||||
|
AccessToken: accessTokenEnv,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
global.SetExcludeDefault(&httpConf.Disabled, global.EnsureBool(os.Getenv("GCQ_HTTP_DISABLE"), false), false)
|
||||||
|
global.SetExcludeDefault(&httpConf.Host, os.Getenv("GCQ_HTTP_HOST"), "")
|
||||||
|
global.SetExcludeDefault(&httpConf.Port, int(toInt64(os.Getenv("GCQ_HTTP_PORT"))), 0)
|
||||||
|
if os.Getenv("GCQ_HTTP_POST_URL") != "" {
|
||||||
|
httpConf.Post = append(httpConf.Post, struct {
|
||||||
|
URL string `yaml:"url"`
|
||||||
|
Secret string `yaml:"secret"`
|
||||||
|
}{os.Getenv("GCQ_HTTP_POST_URL"), os.Getenv("GCQ_HTTP_POST_SECRET")})
|
||||||
|
}
|
||||||
|
_ = node.Encode(httpConf)
|
||||||
|
config.Servers = append(config.Servers, map[string]yaml.Node{"http": *node})
|
||||||
}
|
}
|
||||||
_ = node.Encode(httpConf)
|
if os.Getenv("GCQ_WS_PORT") != "" {
|
||||||
config.Servers = append(config.Servers, map[string]yaml.Node{"http": *node})
|
node := &yaml.Node{}
|
||||||
}
|
wsServerConf := &WebsocketServer{
|
||||||
if os.Getenv("GCQ_WS_PORT") != "" {
|
Host: "0.0.0.0",
|
||||||
node := &yaml.Node{}
|
Port: 6700,
|
||||||
wsServerConf := &WebsocketServer{
|
MiddleWares: MiddleWares{
|
||||||
Host: "0.0.0.0",
|
AccessToken: accessTokenEnv,
|
||||||
Port: 6700,
|
},
|
||||||
MiddleWares: MiddleWares{
|
}
|
||||||
AccessToken: accessTokenEnv,
|
global.SetExcludeDefault(&wsServerConf.Disabled, global.EnsureBool(os.Getenv("GCQ_WS_DISABLE"), false), false)
|
||||||
},
|
global.SetExcludeDefault(&wsServerConf.Host, os.Getenv("GCQ_WS_HOST"), "")
|
||||||
|
global.SetExcludeDefault(&wsServerConf.Port, int(toInt64(os.Getenv("GCQ_WS_PORT"))), 0)
|
||||||
|
_ = node.Encode(wsServerConf)
|
||||||
|
config.Servers = append(config.Servers, map[string]yaml.Node{"ws": *node})
|
||||||
}
|
}
|
||||||
global.SetExcludeDefault(&wsServerConf.Disabled, global.EnsureBool(os.Getenv("GCQ_WS_DISABLE"), false), false)
|
if os.Getenv("GCQ_RWS_API") != "" || os.Getenv("GCQ_RWS_EVENT") != "" || os.Getenv("GCQ_RWS_UNIVERSAL") != "" {
|
||||||
global.SetExcludeDefault(&wsServerConf.Host, os.Getenv("GCQ_WS_HOST"), "")
|
node := &yaml.Node{}
|
||||||
global.SetExcludeDefault(&wsServerConf.Port, int(toInt64(os.Getenv("GCQ_WS_PORT"))), 0)
|
rwsConf := &WebsocketReverse{
|
||||||
_ = node.Encode(wsServerConf)
|
MiddleWares: MiddleWares{
|
||||||
config.Servers = append(config.Servers, map[string]yaml.Node{"ws": *node})
|
AccessToken: accessTokenEnv,
|
||||||
}
|
},
|
||||||
if os.Getenv("GCQ_RWS_API") != "" || os.Getenv("GCQ_RWS_EVENT") != "" || os.Getenv("GCQ_RWS_UNIVERSAL") != "" {
|
}
|
||||||
node := &yaml.Node{}
|
global.SetExcludeDefault(&rwsConf.Disabled, global.EnsureBool(os.Getenv("GCQ_RWS_DISABLE"), false), false)
|
||||||
rwsConf := &WebsocketReverse{
|
global.SetExcludeDefault(&rwsConf.API, os.Getenv("GCQ_RWS_API"), "")
|
||||||
MiddleWares: MiddleWares{
|
global.SetExcludeDefault(&rwsConf.Event, os.Getenv("GCQ_RWS_EVENT"), "")
|
||||||
AccessToken: accessTokenEnv,
|
global.SetExcludeDefault(&rwsConf.Universal, os.Getenv("GCQ_RWS_UNIVERSAL"), "")
|
||||||
},
|
_ = node.Encode(rwsConf)
|
||||||
|
config.Servers = append(config.Servers, map[string]yaml.Node{"ws-reverse": *node})
|
||||||
}
|
}
|
||||||
global.SetExcludeDefault(&rwsConf.Disabled, global.EnsureBool(os.Getenv("GCQ_RWS_DISABLE"), false), false)
|
|
||||||
global.SetExcludeDefault(&rwsConf.API, os.Getenv("GCQ_RWS_API"), "")
|
|
||||||
global.SetExcludeDefault(&rwsConf.Event, os.Getenv("GCQ_RWS_EVENT"), "")
|
|
||||||
global.SetExcludeDefault(&rwsConf.Universal, os.Getenv("GCQ_RWS_UNIVERSAL"), "")
|
|
||||||
_ = node.Encode(rwsConf)
|
|
||||||
config.Servers = append(config.Servers, map[string]yaml.Node{"ws-reverse": *node})
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
return config
|
return config
|
||||||
|
@ -3,7 +3,6 @@ package global
|
|||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"crypto/md5"
|
"crypto/md5"
|
||||||
"encoding/base64"
|
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
"errors"
|
"errors"
|
||||||
"net"
|
"net"
|
||||||
@ -45,7 +44,7 @@ var (
|
|||||||
// PathExists 判断给定path是否存在
|
// PathExists 判断给定path是否存在
|
||||||
func PathExists(path string) bool {
|
func PathExists(path string) bool {
|
||||||
_, err := os.Stat(path)
|
_, err := os.Stat(path)
|
||||||
return err == nil || os.IsExist(err)
|
return err == nil || errors.Is(err, os.ErrExist)
|
||||||
}
|
}
|
||||||
|
|
||||||
// ReadAllText 读取给定path对应文件,无法读取时返回空值
|
// ReadAllText 读取给定path对应文件,无法读取时返回空值
|
||||||
@ -98,7 +97,7 @@ func FindFile(file, cache, p string) (data []byte, err error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
case strings.HasPrefix(file, "base64"):
|
case strings.HasPrefix(file, "base64"):
|
||||||
data, err = base64.StdEncoding.DecodeString(strings.TrimPrefix(file, "base64://"))
|
data, err = Base64DecodeString(strings.TrimPrefix(file, "base64://"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -8,10 +8,15 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/MiraiGo/utils"
|
||||||
|
"github.com/segmentio/asm/base64"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
"github.com/tidwall/gjson"
|
"github.com/tidwall/gjson"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// MSG 消息Map
|
||||||
|
type MSG map[string]interface{}
|
||||||
|
|
||||||
// EnsureBool 判断给定的p是否可表示为合法Bool类型,否则返回defaultVal
|
// EnsureBool 判断给定的p是否可表示为合法Bool类型,否则返回defaultVal
|
||||||
//
|
//
|
||||||
// 支持的合法类型有
|
// 支持的合法类型有
|
||||||
@ -152,3 +157,13 @@ func SplitURL(s string) []string {
|
|||||||
result = append(result, s[last:])
|
result = append(result, s[last:])
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Base64DecodeString decode base64 with avx2
|
||||||
|
// see https://github.com/segmentio/asm/issues/50
|
||||||
|
// avoid incorrect unsafe usage in origin library
|
||||||
|
func Base64DecodeString(s string) ([]byte, error) {
|
||||||
|
e := base64.StdEncoding
|
||||||
|
dst := make([]byte, e.DecodedLen(len(s)))
|
||||||
|
n, err := e.Decode(dst, utils.S2B(s))
|
||||||
|
return dst[:n], err
|
||||||
|
}
|
||||||
|
@ -18,11 +18,9 @@ import (
|
|||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var validTasks = map[string]func(){
|
||||||
validTasks = map[string]func(){
|
"dumpstack": dumpStack,
|
||||||
"dumpstack": dumpStack,
|
}
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
// SetupMainSignalHandler is for main to use at last
|
// SetupMainSignalHandler is for main to use at last
|
||||||
func SetupMainSignalHandler() <-chan struct{} {
|
func SetupMainSignalHandler() <-chan struct{} {
|
||||||
|
@ -7,3 +7,8 @@ package terminal
|
|||||||
func RunningByDoubleClick() bool {
|
func RunningByDoubleClick() bool {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NoMoreDoubleClick 提示用户不要双击运行,非Windows系统永远返回nil
|
||||||
|
func NoMoreDoubleClick() error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
@ -4,8 +4,11 @@
|
|||||||
package terminal
|
package terminal
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"os"
|
||||||
"syscall"
|
"syscall"
|
||||||
"unsafe"
|
"unsafe"
|
||||||
|
|
||||||
|
"github.com/pkg/errors"
|
||||||
)
|
)
|
||||||
|
|
||||||
// RunningByDoubleClick 检查是否通过双击直接运行
|
// RunningByDoubleClick 检查是否通过双击直接运行
|
||||||
@ -22,3 +25,43 @@ func RunningByDoubleClick() bool {
|
|||||||
}
|
}
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NoMoreDoubleClick 提示用户不要双击运行,并生成安全启动脚本
|
||||||
|
func NoMoreDoubleClick() error {
|
||||||
|
r := boxW(0, "请勿通过双击直接运行本程序, 这将导致一些非预料的后果.\n请在shell中运行./go-cqhttp.exe\n点击确认将释出安全启动脚本,点击取消则关闭程序", "警告", 0x00000030|0x00000001)
|
||||||
|
if r == 2 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
r = boxW(0, "点击确认将覆盖go-cqhttp.bat,点击取消则关闭程序", "警告", 0x00000030|0x00000001)
|
||||||
|
if r == 2 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
f, err := os.OpenFile("go-cqhttp.bat", os.O_CREATE|os.O_RDWR, 0o666)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err != nil {
|
||||||
|
return errors.Errorf("打开go-cqhttp.bat失败: %v", err)
|
||||||
|
}
|
||||||
|
_ = f.Truncate(0)
|
||||||
|
_, err = f.WriteString("%Created by go-cqhttp. DO NOT EDIT ME!%\nstart cmd /K go-cqhttp.exe")
|
||||||
|
if err != nil {
|
||||||
|
return errors.Errorf("写入go-cqhttp.bat失败: %v", err)
|
||||||
|
}
|
||||||
|
f.Close()
|
||||||
|
boxW(0, "安全启动脚本已生成,请双击go-cqhttp.bat启动", "提示", 0x00000040|0x00000000)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// BoxW of Win32 API. Check https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-messageboxw for more detail.
|
||||||
|
func boxW(hwnd uintptr, caption, title string, flags uint) int {
|
||||||
|
captionPtr, _ := syscall.UTF16PtrFromString(caption)
|
||||||
|
titlePtr, _ := syscall.UTF16PtrFromString(title)
|
||||||
|
ret, _, _ := syscall.NewLazyDLL("user32.dll").NewProc("MessageBoxW").Call(
|
||||||
|
hwnd,
|
||||||
|
uintptr(unsafe.Pointer(captionPtr)),
|
||||||
|
uintptr(unsafe.Pointer(titlePtr)),
|
||||||
|
uintptr(flags))
|
||||||
|
|
||||||
|
return int(ret)
|
||||||
|
}
|
||||||
|
47
go.mod
47
go.mod
@ -1,35 +1,56 @@
|
|||||||
module github.com/Mrs4s/go-cqhttp
|
module github.com/Mrs4s/go-cqhttp
|
||||||
|
|
||||||
go 1.16
|
go 1.17
|
||||||
|
|
||||||
|
replace github.com/willf/bitset v1.2.0 => github.com/bits-and-blooms/bitset v1.2.0
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/Baozisoftware/qrcode-terminal-go v0.0.0-20170407111555-c0650d8dff0f
|
github.com/Baozisoftware/qrcode-terminal-go v0.0.0-20170407111555-c0650d8dff0f
|
||||||
github.com/Microsoft/go-winio v0.5.0
|
github.com/Microsoft/go-winio v0.5.0
|
||||||
github.com/Mrs4s/MiraiGo v0.0.0-20210810070836-6614d2383adb
|
github.com/Mrs4s/MiraiGo v0.0.0-20210916113136-0238b2382b82
|
||||||
github.com/dustin/go-humanize v1.0.0
|
github.com/dustin/go-humanize v1.0.0
|
||||||
github.com/gabriel-vasile/mimetype v1.3.1
|
github.com/gabriel-vasile/mimetype v1.3.1
|
||||||
github.com/gorilla/websocket v1.4.2
|
github.com/gorilla/websocket v1.4.2
|
||||||
github.com/guonaihong/gout v0.2.1
|
github.com/guonaihong/gout v0.2.4
|
||||||
github.com/jonboulle/clockwork v0.2.2 // indirect
|
|
||||||
github.com/json-iterator/go v1.1.11
|
|
||||||
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0
|
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0
|
||||||
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible
|
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible
|
||||||
github.com/lestrrat-go/strftime v1.0.4 // indirect
|
|
||||||
github.com/mattn/go-colorable v0.1.8 // indirect
|
|
||||||
github.com/pkg/errors v0.9.1
|
github.com/pkg/errors v0.9.1
|
||||||
|
github.com/segmentio/asm v1.0.0
|
||||||
github.com/sirupsen/logrus v1.8.1
|
github.com/sirupsen/logrus v1.8.1
|
||||||
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e // indirect
|
|
||||||
github.com/stretchr/testify v1.7.0
|
github.com/stretchr/testify v1.7.0
|
||||||
github.com/syndtr/goleveldb v1.0.0
|
github.com/syndtr/goleveldb v1.0.0
|
||||||
github.com/tidwall/gjson v1.8.1
|
github.com/tidwall/gjson v1.8.1
|
||||||
github.com/tuotoo/qrcode v0.0.0-20190222102259-ac9c44189bf2
|
github.com/tuotoo/qrcode v0.0.0-20190222102259-ac9c44189bf2
|
||||||
github.com/wdvxdr1123/go-silk v0.0.0-20210316130616-d47b553def60
|
github.com/wdvxdr1123/go-silk v0.0.0-20210316130616-d47b553def60
|
||||||
github.com/willf/bitset v1.2.0 // indirect
|
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5
|
||||||
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e
|
|
||||||
golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d // indirect
|
|
||||||
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b
|
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b
|
||||||
golang.org/x/time v0.0.0-20210611083556-38a9dc6acbc6
|
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac
|
||||||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
|
||||||
)
|
)
|
||||||
|
|
||||||
replace github.com/willf/bitset v1.2.0 => github.com/bits-and-blooms/bitset v1.2.0
|
require (
|
||||||
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
||||||
|
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db // indirect
|
||||||
|
github.com/google/uuid v1.1.1 // indirect
|
||||||
|
github.com/jonboulle/clockwork v0.2.2 // indirect
|
||||||
|
github.com/klauspost/cpuid/v2 v2.0.6 // indirect
|
||||||
|
github.com/lestrrat-go/strftime v1.0.5 // indirect
|
||||||
|
github.com/maruel/rs v0.0.0-20150922171536-2c81c4312fe4 // indirect
|
||||||
|
github.com/mattn/go-colorable v0.1.8 // indirect
|
||||||
|
github.com/mattn/go-isatty v0.0.12 // 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.0.3 // indirect
|
||||||
|
github.com/tidwall/pretty v1.1.0 // indirect
|
||||||
|
github.com/willf/bitset v1.2.0 // indirect
|
||||||
|
golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d // indirect
|
||||||
|
golang.org/x/net v0.0.0-20210505024714-0287a6fb4125 // indirect
|
||||||
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
|
||||||
|
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect
|
||||||
|
google.golang.org/protobuf v1.27.1 // indirect
|
||||||
|
gopkg.in/yaml.v2 v2.2.8 // indirect
|
||||||
|
modernc.org/libc v1.8.1 // indirect
|
||||||
|
modernc.org/mathutil v1.2.2 // indirect
|
||||||
|
modernc.org/memory v1.0.4 // indirect
|
||||||
|
)
|
||||||
|
50
go.sum
50
go.sum
@ -4,8 +4,8 @@ github.com/Baozisoftware/qrcode-terminal-go v0.0.0-20170407111555-c0650d8dff0f/g
|
|||||||
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
|
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
|
||||||
github.com/Microsoft/go-winio v0.5.0 h1:Elr9Wn+sGKPlkaBvwu4mTrxtmOp3F3yV9qhaHbXGjwU=
|
github.com/Microsoft/go-winio v0.5.0 h1:Elr9Wn+sGKPlkaBvwu4mTrxtmOp3F3yV9qhaHbXGjwU=
|
||||||
github.com/Microsoft/go-winio v0.5.0/go.mod h1:JPGBdM1cNvN/6ISo+n8V5iA4v8pBzdOpzfwIujj1a84=
|
github.com/Microsoft/go-winio v0.5.0/go.mod h1:JPGBdM1cNvN/6ISo+n8V5iA4v8pBzdOpzfwIujj1a84=
|
||||||
github.com/Mrs4s/MiraiGo v0.0.0-20210810070836-6614d2383adb h1:agCxYd/ZemDwrEYKpnpKqA0cubxfpkQ/b+GpIlIJK0U=
|
github.com/Mrs4s/MiraiGo v0.0.0-20210916113136-0238b2382b82 h1:VAav2Z5n41cp2bjskooPXAg9W39qQeEEj3FmYlnS3+E=
|
||||||
github.com/Mrs4s/MiraiGo v0.0.0-20210810070836-6614d2383adb/go.mod h1:5V3f/+mTYtrI/+hLqbdzZQXuLMl2RyLfx0XYYjCQ90Q=
|
github.com/Mrs4s/MiraiGo v0.0.0-20210916113136-0238b2382b82/go.mod h1:EpB6wQ+iaIqLRxVrs6si2J3XGv6wHXMrRXNUnJFaoww=
|
||||||
github.com/bits-and-blooms/bitset v1.2.0 h1:Kn4yilvwNtMACtf1eYDlG8H77R07mZSPbMjLyS07ChA=
|
github.com/bits-and-blooms/bitset v1.2.0 h1:Kn4yilvwNtMACtf1eYDlG8H77R07mZSPbMjLyS07ChA=
|
||||||
github.com/bits-and-blooms/bitset v1.2.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA=
|
github.com/bits-and-blooms/bitset v1.2.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA=
|
||||||
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
|
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
|
||||||
@ -22,15 +22,15 @@ github.com/gabriel-vasile/mimetype v1.3.1 h1:qevA6c2MtE1RorlScnixeG0VA1H4xrXyhyX
|
|||||||
github.com/gabriel-vasile/mimetype v1.3.1/go.mod h1:fA8fi6KUiG7MgQQ+mEWotXoEOvmxRtOJlERCzSmRvr8=
|
github.com/gabriel-vasile/mimetype v1.3.1/go.mod h1:fA8fi6KUiG7MgQQ+mEWotXoEOvmxRtOJlERCzSmRvr8=
|
||||||
github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE=
|
github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE=
|
||||||
github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI=
|
github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI=
|
||||||
github.com/gin-gonic/gin v1.6.0 h1:Lb3veSYoGaNck69fV2+Vf2juLSsHpMTf3Vk5+X+EDJg=
|
github.com/gin-gonic/gin v1.7.0 h1:jGB9xAJQ12AIGNB4HguylppmDK1Am9ppF7XnGXXJuoU=
|
||||||
github.com/gin-gonic/gin v1.6.0/go.mod h1:75u5sXoLsGZoRN5Sgbi1eraJ4GU3++wFwWzhwvtwp4M=
|
github.com/gin-gonic/gin v1.7.0/go.mod h1:jD2toBW3GZUr5UMcdrwQA10I7RuaFOl/SGeDjXkfUtY=
|
||||||
github.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4=
|
github.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4=
|
||||||
github.com/go-playground/locales v0.13.0 h1:HyWk6mgj5qFqCT5fjGBuRArbVDfE4hi8+e8ceBS/t7Q=
|
github.com/go-playground/locales v0.13.0 h1:HyWk6mgj5qFqCT5fjGBuRArbVDfE4hi8+e8ceBS/t7Q=
|
||||||
github.com/go-playground/locales v0.13.0/go.mod h1:taPMhCMXrRLJO55olJkUXHZBHCxTMfnGwq/HNwmWNS8=
|
github.com/go-playground/locales v0.13.0/go.mod h1:taPMhCMXrRLJO55olJkUXHZBHCxTMfnGwq/HNwmWNS8=
|
||||||
github.com/go-playground/universal-translator v0.17.0 h1:icxd5fm+REJzpZx7ZfpaD876Lmtgy7VtROAbHHXk8no=
|
github.com/go-playground/universal-translator v0.17.0 h1:icxd5fm+REJzpZx7ZfpaD876Lmtgy7VtROAbHHXk8no=
|
||||||
github.com/go-playground/universal-translator v0.17.0/go.mod h1:UkSxE5sNxxRwHyU+Scu5vgOQjsIJAF8j9muTVoKLVtA=
|
github.com/go-playground/universal-translator v0.17.0/go.mod h1:UkSxE5sNxxRwHyU+Scu5vgOQjsIJAF8j9muTVoKLVtA=
|
||||||
github.com/go-playground/validator/v10 v10.2.0 h1:KgJ0snyC2R9VXYN2rneOtQcw5aHQB1Vv0sFl1UcHBOY=
|
github.com/go-playground/validator/v10 v10.4.1 h1:pH2c5ADXtd66mxoE0Zm9SUhxE20r7aM3F26W0hOn+GE=
|
||||||
github.com/go-playground/validator/v10 v10.2.0/go.mod h1:uOYAAleCW8F/7oMFd6aG0GOhaH6EGOAJShg8Id5JGkI=
|
github.com/go-playground/validator/v10 v10.4.1/go.mod h1:nlOn6nFhuKACm19sB/8EGNn9GlaMV7XkbRSipzJ0Ii4=
|
||||||
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
|
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
|
||||||
github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
|
github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
|
||||||
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
|
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
|
||||||
@ -42,15 +42,15 @@ github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrU
|
|||||||
github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w=
|
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.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0=
|
||||||
github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8=
|
github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8=
|
||||||
github.com/golang/protobuf v1.5.0 h1:LUVKkCeviFUMKqHa4tXIIij/lbhnMbP7Fn5wKdKkRh4=
|
|
||||||
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
|
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
|
||||||
|
github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw=
|
||||||
|
github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
|
||||||
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db h1:woRePGFeVFfLKN/pOkfl+p/TAqKOfFu+7KPlMVpok/w=
|
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db h1:woRePGFeVFfLKN/pOkfl+p/TAqKOfFu+7KPlMVpok/w=
|
||||||
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
|
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
|
||||||
github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=
|
github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=
|
||||||
github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
|
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.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.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
|
||||||
github.com/google/go-cmp v0.5.0/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 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU=
|
||||||
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
|
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
|
||||||
github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
|
github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
|
||||||
@ -59,26 +59,26 @@ github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=
|
|||||||
github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
||||||
github.com/gorilla/websocket v1.4.2 h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc=
|
github.com/gorilla/websocket v1.4.2 h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc=
|
||||||
github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
|
github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
|
||||||
github.com/guonaihong/gout v0.2.1 h1:XnaS92y/Mpcu4MOQU5cx4hTKhbqFznbIE/uUI5sMY9E=
|
github.com/guonaihong/gout v0.2.4 h1:BlWpWWay/Q1LkyIwupEWBZE3PMl4xzzAgMHw+OrZxBs=
|
||||||
github.com/guonaihong/gout v0.2.1/go.mod h1:JkjNv1G2oRWvFgP/r4DUbYhoeIBB0zMP2j1ID+5CYpU=
|
github.com/guonaihong/gout v0.2.4/go.mod h1:ISabiAAj0z1h3bOFUKzfRqPMvX0wmcYzIh6i4xIxMPo=
|
||||||
github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=
|
github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=
|
||||||
github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
|
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 h1:UOGuzwb1PwsrDAObMuhUnj0p5ULPj8V/xJ7Kx9qUBdQ=
|
||||||
github.com/jonboulle/clockwork v0.2.2/go.mod h1:Pkfl5aHPm1nk2H9h0bjmnJD/BcgbGXUBGnn1kMkgxc8=
|
github.com/jonboulle/clockwork v0.2.2/go.mod h1:Pkfl5aHPm1nk2H9h0bjmnJD/BcgbGXUBGnn1kMkgxc8=
|
||||||
|
github.com/json-iterator/go v1.1.9 h1:9yzud/Ht36ygwatGx56VwCZtlI/2AD15T1X2sjSuGns=
|
||||||
github.com/json-iterator/go v1.1.9/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=
|
github.com/json-iterator/go v1.1.9/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=
|
||||||
github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=
|
|
||||||
github.com/json-iterator/go v1.1.11 h1:uVUAXhF2To8cbw/3xN3pxj6kk7TYKs98NIrTqPlMWAQ=
|
|
||||||
github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=
|
|
||||||
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 h1:iQTw/8FWTuc7uiaSepXwyf3o52HaUYcV+Tu66S3F5GA=
|
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/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0/go.mod h1:1NbS8ALrpOvjt0rHPNLyCIeMtbizbir8U//inJ+zuB8=
|
||||||
|
github.com/klauspost/cpuid/v2 v2.0.6 h1:dQ5ueTiftKxp0gyjKSx5+8BtPWkyQbd95m8Gys/RarI=
|
||||||
|
github.com/klauspost/cpuid/v2 v2.0.6/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg=
|
||||||
github.com/leodido/go-urn v1.2.0 h1:hpXL4XnriNwQ/ABnpepYM/1vCLWNDfUNts8dX3xTG6Y=
|
github.com/leodido/go-urn v1.2.0 h1:hpXL4XnriNwQ/ABnpepYM/1vCLWNDfUNts8dX3xTG6Y=
|
||||||
github.com/leodido/go-urn v1.2.0/go.mod h1:+8+nEpDfqqsY+g338gtMEUOtuK+4dEMhiQEgxpxOKII=
|
github.com/leodido/go-urn v1.2.0/go.mod h1:+8+nEpDfqqsY+g338gtMEUOtuK+4dEMhiQEgxpxOKII=
|
||||||
github.com/lestrrat-go/envload v0.0.0-20180220234015-a3eb8ddeffcc h1:RKf14vYWi2ttpEmkA4aQ3j4u9dStX2t4M8UM6qqNsG8=
|
github.com/lestrrat-go/envload v0.0.0-20180220234015-a3eb8ddeffcc h1:RKf14vYWi2ttpEmkA4aQ3j4u9dStX2t4M8UM6qqNsG8=
|
||||||
github.com/lestrrat-go/envload v0.0.0-20180220234015-a3eb8ddeffcc/go.mod h1:kopuH9ugFRkIXf3YoqHKyrJ9YfUFsckUU9S7B+XP+is=
|
github.com/lestrrat-go/envload v0.0.0-20180220234015-a3eb8ddeffcc/go.mod h1:kopuH9ugFRkIXf3YoqHKyrJ9YfUFsckUU9S7B+XP+is=
|
||||||
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible h1:Y6sqxHMyB1D2YSzWkLibYKgg+SwmyFU9dF2hn6MdTj4=
|
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible h1:Y6sqxHMyB1D2YSzWkLibYKgg+SwmyFU9dF2hn6MdTj4=
|
||||||
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible/go.mod h1:ZQnN8lSECaebrkQytbHj4xNgtg8CR7RYXnPok8e0EHA=
|
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible/go.mod h1:ZQnN8lSECaebrkQytbHj4xNgtg8CR7RYXnPok8e0EHA=
|
||||||
github.com/lestrrat-go/strftime v1.0.4 h1:T1Rb9EPkAhgxKqbcMIPguPq8glqXTA1koF8n9BHElA8=
|
github.com/lestrrat-go/strftime v1.0.5 h1:A7H3tT8DhTz8u65w+JRpiBxM4dINQhUXAZnhBa2xeOE=
|
||||||
github.com/lestrrat-go/strftime v1.0.4/go.mod h1:E1nN3pCbtMSu1yjSVeyuRFVm/U0xoR76fd03sz+Qz4g=
|
github.com/lestrrat-go/strftime v1.0.5/go.mod h1:E1nN3pCbtMSu1yjSVeyuRFVm/U0xoR76fd03sz+Qz4g=
|
||||||
github.com/maruel/rs v0.0.0-20150922171536-2c81c4312fe4 h1:u9jwvcKbQpghIXgNl/EOL8hzhAFXh4ePrEP493W3tNA=
|
github.com/maruel/rs v0.0.0-20150922171536-2c81c4312fe4 h1:u9jwvcKbQpghIXgNl/EOL8hzhAFXh4ePrEP493W3tNA=
|
||||||
github.com/maruel/rs v0.0.0-20150922171536-2c81c4312fe4/go.mod h1:kcRFpEzolcEklV6rD7W95mG49/sbdX/PlFmd7ni3RvA=
|
github.com/maruel/rs v0.0.0-20150922171536-2c81c4312fe4/go.mod h1:kcRFpEzolcEklV6rD7W95mG49/sbdX/PlFmd7ni3RvA=
|
||||||
github.com/mattn/go-colorable v0.1.8 h1:c1ghPdyEDarC70ftn0y+A/Ee++9zz8ljHG1b13eJ0s8=
|
github.com/mattn/go-colorable v0.1.8 h1:c1ghPdyEDarC70ftn0y+A/Ee++9zz8ljHG1b13eJ0s8=
|
||||||
@ -87,9 +87,8 @@ github.com/mattn/go-isatty v0.0.12 h1:wuysRhFDzyxgEmMf5xjvJ2M9dZoWAXNNr5LSBS7uHX
|
|||||||
github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU=
|
github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU=
|
||||||
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 h1:ZqeYNhU3OHLH3mGKHDcjJRFFRrJa6eAM5H+CtDdOsPc=
|
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 h1:ZqeYNhU3OHLH3mGKHDcjJRFFRrJa6eAM5H+CtDdOsPc=
|
||||||
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
|
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
|
||||||
|
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 h1:Esafd1046DLDQ0W1YjYsBW+p8U2u7vzgW2SQVmlNazg=
|
||||||
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=
|
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=
|
||||||
github.com/modern-go/reflect2 v1.0.1 h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI=
|
|
||||||
github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=
|
|
||||||
github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
|
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 h1:WSHQ+IS43OoUrWtD1/bbclrwK8TTH5hzp+umCiuxHgs=
|
||||||
github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
|
github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
|
||||||
@ -103,6 +102,8 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN
|
|||||||
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
|
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
|
||||||
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 h1:OdAsTTz6OkFY5QxjkYwrChwuRruF69c169dPK26NUlk=
|
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 h1:OdAsTTz6OkFY5QxjkYwrChwuRruF69c169dPK26NUlk=
|
||||||
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo=
|
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo=
|
||||||
|
github.com/segmentio/asm v1.0.0 h1:GMF7/2eLkte13LERSOmPI766AJXJDRlsqqiN8T7Mfmk=
|
||||||
|
github.com/segmentio/asm v1.0.0/go.mod h1:4EUJGaKsB8ImLUwOGORVsNd9vTRDeh44JGsY4aKp5I4=
|
||||||
github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0=
|
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 h1:dJKuHgqk1NNQlqoA6BTlM1Wf9DOH3NBjQyu0h9+AZZE=
|
||||||
github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0=
|
github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0=
|
||||||
@ -131,8 +132,9 @@ github.com/ugorji/go/codec v1.1.7/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLY
|
|||||||
github.com/wdvxdr1123/go-silk v0.0.0-20210316130616-d47b553def60 h1:lRKf10iIOW0VsH5WDF621ihzR+R2wEBZVtNRHuLLCb4=
|
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-20210316130616-d47b553def60/go.mod h1:ecFKZPX81BaB70I6ruUgEwYcDOtuNgJGnjdK+MIl5ko=
|
||||||
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
||||||
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e h1:gsTQYXdTw2Gq7RBsWvlQ91b+aEQ6bXFUngBGuR8sPpI=
|
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
|
||||||
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
|
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 h1:HWj/xjIHfjYU5nVXpTM0s39J9CbLn7Cc5a7IC5rwsMQ=
|
||||||
|
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
|
||||||
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
|
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
|
||||||
golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d h1:RNPAfi2nHY7C2srAV8A49jpsYr0ADedCk1wq6fTMTvs=
|
golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d h1:RNPAfi2nHY7C2srAV8A49jpsYr0ADedCk1wq6fTMTvs=
|
||||||
golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM=
|
golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM=
|
||||||
@ -144,6 +146,7 @@ golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73r
|
|||||||
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
||||||
golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/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-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-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
|
golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
|
||||||
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
||||||
golang.org/x/net v0.0.0-20210505024714-0287a6fb4125 h1:Ugb8sMTWuWRC3+sz5WeN/4kejDx9BvIwnPUiJBjJE+8=
|
golang.org/x/net v0.0.0-20210505024714-0287a6fb4125 h1:Ugb8sMTWuWRC3+sz5WeN/4kejDx9BvIwnPUiJBjJE+8=
|
||||||
@ -157,6 +160,7 @@ golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJ
|
|||||||
golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||||
golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
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-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-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
@ -174,8 +178,8 @@ 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.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||||
golang.org/x/text v0.3.6 h1:aRYxNxv6iGQlyVaZmk6ZgYEDa+Jg18DxebPSrd6bg1M=
|
golang.org/x/text v0.3.6 h1:aRYxNxv6iGQlyVaZmk6ZgYEDa+Jg18DxebPSrd6bg1M=
|
||||||
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||||
golang.org/x/time v0.0.0-20210611083556-38a9dc6acbc6 h1:Vv0JUPWTyeqUq42B2WJ1FeIDjjvGKoA2Ss+Ts0lAVbs=
|
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac h1:7zkz7BUtwNFFqcowJ+RIgu2MaV/MapERkDIy+mwPyjs=
|
||||||
golang.org/x/time v0.0.0-20210611083556-38a9dc6acbc6/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
|
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac/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-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
|
||||||
golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
|
golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
|
||||||
golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY=
|
golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY=
|
||||||
@ -198,10 +202,10 @@ google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miE
|
|||||||
google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo=
|
google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo=
|
||||||
google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
|
google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
|
||||||
google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
|
google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
|
||||||
google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
|
|
||||||
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
|
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
|
||||||
google.golang.org/protobuf v1.26.0 h1:bxAC2xTBsZGibn2RTntX0oH50xLsqy1OxA9tTL3p/lk=
|
|
||||||
google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
|
google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
|
||||||
|
google.golang.org/protobuf v1.27.1 h1:SnqbnDw1V7RiZcXPx5MEeqPv2s79L9i7BJUlG/+RurQ=
|
||||||
|
google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
|
||||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
|
||||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
gopkg.in/fsnotify.v1 v1.4.7 h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=
|
gopkg.in/fsnotify.v1 v1.4.7 h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=
|
||||||
|
20
main.go
20
main.go
@ -55,7 +55,7 @@ var (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
c := flag.String("c", config.DefaultConfigFile, "configuration filename default is config.hjson")
|
c := flag.String("c", config.DefaultConfigFile, "configuration filename")
|
||||||
d := flag.Bool("d", false, "running as a daemon")
|
d := flag.Bool("d", false, "running as a daemon")
|
||||||
h := flag.Bool("h", false, "this help")
|
h := flag.Bool("h", false, "this help")
|
||||||
wd := flag.String("w", "", "cover the working directory")
|
wd := flag.String("w", "", "cover the working directory")
|
||||||
@ -88,6 +88,8 @@ func main() {
|
|||||||
|
|
||||||
if conf.Output.LogAging > 0 {
|
if conf.Output.LogAging > 0 {
|
||||||
rotateOptions = append(rotateOptions, rotatelogs.WithMaxAge(time.Hour*24*time.Duration(conf.Output.LogAging)))
|
rotateOptions = append(rotateOptions, rotatelogs.WithMaxAge(time.Hour*24*time.Duration(conf.Output.LogAging)))
|
||||||
|
} else {
|
||||||
|
rotateOptions = append(rotateOptions, rotatelogs.WithMaxAge(time.Hour*24*365*10))
|
||||||
}
|
}
|
||||||
if conf.Output.LogForceNew {
|
if conf.Output.LogForceNew {
|
||||||
rotateOptions = append(rotateOptions, rotatelogs.ForceNewFile())
|
rotateOptions = append(rotateOptions, rotatelogs.ForceNewFile())
|
||||||
@ -134,9 +136,12 @@ func main() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if terminal.RunningByDoubleClick() && !isFastStart {
|
if terminal.RunningByDoubleClick() && !isFastStart {
|
||||||
log.Warning("警告: 强烈不推荐通过双击直接运行本程序, 这将导致一些非预料的后果.")
|
err := terminal.NoMoreDoubleClick()
|
||||||
log.Warning("将等待10s后启动")
|
if err != nil {
|
||||||
time.Sleep(time.Second * 10)
|
log.Errorf("遇到错误: %v", err)
|
||||||
|
time.Sleep(time.Second * 5)
|
||||||
|
}
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if (conf.Account.Uin == 0 || (conf.Account.Password == "" && !conf.Account.Encrypt)) && !global.PathExists("session.token") {
|
if (conf.Account.Uin == 0 || (conf.Account.Password == "" && !conf.Account.Encrypt)) && !global.PathExists("session.token") {
|
||||||
@ -305,6 +310,7 @@ func main() {
|
|||||||
time.Sleep(time.Second * time.Duration(conf.Account.ReLogin.Delay))
|
time.Sleep(time.Second * time.Duration(conf.Account.ReLogin.Delay))
|
||||||
for {
|
for {
|
||||||
if conf.Account.ReLogin.Disabled {
|
if conf.Account.ReLogin.Disabled {
|
||||||
|
log.Warnf("未启用自动重连, 将退出.")
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
if times > conf.Account.ReLogin.MaxTimes && conf.Account.ReLogin.MaxTimes != 0 {
|
if times > conf.Account.ReLogin.MaxTimes && conf.Account.ReLogin.MaxTimes != 0 {
|
||||||
@ -317,6 +323,10 @@ func main() {
|
|||||||
} else {
|
} else {
|
||||||
time.Sleep(time.Second)
|
time.Sleep(time.Second)
|
||||||
}
|
}
|
||||||
|
if cli.Online {
|
||||||
|
log.Infof("登录已完成")
|
||||||
|
break
|
||||||
|
}
|
||||||
log.Warnf("尝试重连...")
|
log.Warnf("尝试重连...")
|
||||||
err := cli.TokenLogin(AccountToken)
|
err := cli.TokenLogin(AccountToken)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
@ -627,7 +637,7 @@ func newClient() *client.QQClient {
|
|||||||
log.Infof("检测到 address.txt 文件. 将覆盖目标IP.")
|
log.Infof("检测到 address.txt 文件. 将覆盖目标IP.")
|
||||||
addr := global.ReadAddrFile("address.txt")
|
addr := global.ReadAddrFile("address.txt")
|
||||||
if len(addr) > 0 {
|
if len(addr) > 0 {
|
||||||
cli.SetCustomServer(addr)
|
c.SetCustomServer(addr)
|
||||||
}
|
}
|
||||||
log.Infof("读取到 %v 个自定义地址.", len(addr))
|
log.Infof("读取到 %v 个自定义地址.", len(addr))
|
||||||
}
|
}
|
||||||
|
268
server/api.go
268
server/api.go
@ -13,48 +13,56 @@ type resultGetter interface {
|
|||||||
Get(string) gjson.Result
|
Get(string) gjson.Result
|
||||||
}
|
}
|
||||||
|
|
||||||
type handler func(action string, p resultGetter) coolq.MSG
|
type handler func(action string, p resultGetter) global.MSG
|
||||||
|
|
||||||
type apiCaller struct {
|
type apiCaller struct {
|
||||||
bot *coolq.CQBot
|
bot *coolq.CQBot
|
||||||
handlers []handler
|
handlers []handler
|
||||||
}
|
}
|
||||||
|
|
||||||
func getLoginInfo(bot *coolq.CQBot, _ resultGetter) coolq.MSG {
|
func getLoginInfo(bot *coolq.CQBot, _ resultGetter) global.MSG {
|
||||||
return bot.CQGetLoginInfo()
|
return bot.CQGetLoginInfo()
|
||||||
}
|
}
|
||||||
|
|
||||||
func getQiDianAccountInfo(bot *coolq.CQBot, _ resultGetter) coolq.MSG {
|
func getQiDianAccountInfo(bot *coolq.CQBot, _ resultGetter) global.MSG {
|
||||||
return bot.CQGetQiDianAccountInfo()
|
return bot.CQGetQiDianAccountInfo()
|
||||||
}
|
}
|
||||||
|
|
||||||
func getFriendList(bot *coolq.CQBot, _ resultGetter) coolq.MSG {
|
func getFriendList(bot *coolq.CQBot, _ resultGetter) global.MSG {
|
||||||
return bot.CQGetFriendList()
|
return bot.CQGetFriendList()
|
||||||
}
|
}
|
||||||
|
|
||||||
func deleteFriend(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func getUnidirectionalFriendList(bot *coolq.CQBot, _ resultGetter) global.MSG {
|
||||||
return bot.CQDeleteFriend(p.Get("id").Int())
|
return bot.CQGetUnidirectionalFriendList()
|
||||||
}
|
}
|
||||||
|
|
||||||
func getGroupList(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func deleteFriend(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
|
return bot.CQDeleteFriend(p.Get("[user_id,id].0").Int())
|
||||||
|
}
|
||||||
|
|
||||||
|
func deleteUnidirectionalFriend(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
|
return bot.CQDeleteUnidirectionalFriend(p.Get("user_id").Int())
|
||||||
|
}
|
||||||
|
|
||||||
|
func getGroupList(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQGetGroupList(p.Get("no_cache").Bool())
|
return bot.CQGetGroupList(p.Get("no_cache").Bool())
|
||||||
}
|
}
|
||||||
|
|
||||||
func getGroupInfo(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func getGroupInfo(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQGetGroupInfo(p.Get("group_id").Int(), p.Get("no_cache").Bool())
|
return bot.CQGetGroupInfo(p.Get("group_id").Int(), p.Get("no_cache").Bool())
|
||||||
}
|
}
|
||||||
|
|
||||||
func getGroupMemberList(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func getGroupMemberList(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQGetGroupMemberList(p.Get("group_id").Int(), p.Get("no_cache").Bool())
|
return bot.CQGetGroupMemberList(p.Get("group_id").Int(), p.Get("no_cache").Bool())
|
||||||
}
|
}
|
||||||
|
|
||||||
func getGroupMemberInfo(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func getGroupMemberInfo(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQGetGroupMemberInfo(
|
return bot.CQGetGroupMemberInfo(
|
||||||
p.Get("group_id").Int(), p.Get("user_id").Int(), p.Get("no_cache").Bool(),
|
p.Get("group_id").Int(), p.Get("user_id").Int(), p.Get("no_cache").Bool(),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
func sendMSG(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func sendMSG(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
autoEscape := global.EnsureBool(p.Get("auto_escape"), false)
|
autoEscape := global.EnsureBool(p.Get("auto_escape"), false)
|
||||||
if p.Get("message_type").Str == "private" {
|
if p.Get("message_type").Str == "private" {
|
||||||
return bot.CQSendPrivateMessage(p.Get("user_id").Int(), p.Get("group_id").Int(), p.Get("message"), autoEscape)
|
return bot.CQSendPrivateMessage(p.Get("user_id").Int(), p.Get("group_id").Int(), p.Get("message"), autoEscape)
|
||||||
@ -68,28 +76,28 @@ func sendMSG(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
|||||||
if p.Get("group_id").Int() != 0 {
|
if p.Get("group_id").Int() != 0 {
|
||||||
return bot.CQSendGroupMessage(p.Get("group_id").Int(), p.Get("message"), autoEscape)
|
return bot.CQSendGroupMessage(p.Get("group_id").Int(), p.Get("message"), autoEscape)
|
||||||
}
|
}
|
||||||
return coolq.MSG{}
|
return global.MSG{}
|
||||||
}
|
}
|
||||||
|
|
||||||
func sendGroupMSG(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func sendGroupMSG(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQSendGroupMessage(p.Get("group_id").Int(), p.Get("message"),
|
return bot.CQSendGroupMessage(p.Get("group_id").Int(), p.Get("message"),
|
||||||
global.EnsureBool(p.Get("auto_escape"), false))
|
global.EnsureBool(p.Get("auto_escape"), false))
|
||||||
}
|
}
|
||||||
|
|
||||||
func sendGroupForwardMSG(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func sendGroupForwardMSG(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQSendGroupForwardMessage(p.Get("group_id").Int(), p.Get("messages"))
|
return bot.CQSendGroupForwardMessage(p.Get("group_id").Int(), p.Get("messages"))
|
||||||
}
|
}
|
||||||
|
|
||||||
func sendPrivateMSG(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func sendPrivateMSG(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQSendPrivateMessage(p.Get("user_id").Int(), p.Get("group_id").Int(), p.Get("message"),
|
return bot.CQSendPrivateMessage(p.Get("user_id").Int(), p.Get("group_id").Int(), p.Get("message"),
|
||||||
global.EnsureBool(p.Get("auto_escape"), false))
|
global.EnsureBool(p.Get("auto_escape"), false))
|
||||||
}
|
}
|
||||||
|
|
||||||
func deleteMSG(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func deleteMSG(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQDeleteMessage(int32(p.Get("message_id").Int()))
|
return bot.CQDeleteMessage(int32(p.Get("message_id").Int()))
|
||||||
}
|
}
|
||||||
|
|
||||||
func setFriendAddRequest(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func setFriendAddRequest(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
apr := true
|
apr := true
|
||||||
if p.Get("approve").Exists() {
|
if p.Get("approve").Exists() {
|
||||||
apr = p.Get("approve").Bool()
|
apr = p.Get("approve").Bool()
|
||||||
@ -97,7 +105,7 @@ func setFriendAddRequest(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
|||||||
return bot.CQProcessFriendRequest(p.Get("flag").Str, apr)
|
return bot.CQProcessFriendRequest(p.Get("flag").Str, apr)
|
||||||
}
|
}
|
||||||
|
|
||||||
func setGroupAddRequest(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func setGroupAddRequest(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
subType := p.Get("sub_type").Str
|
subType := p.Get("sub_type").Str
|
||||||
apr := true
|
apr := true
|
||||||
if subType == "" {
|
if subType == "" {
|
||||||
@ -109,19 +117,19 @@ func setGroupAddRequest(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
|||||||
return bot.CQProcessGroupRequest(p.Get("flag").Str, subType, p.Get("reason").Str, apr)
|
return bot.CQProcessGroupRequest(p.Get("flag").Str, subType, p.Get("reason").Str, apr)
|
||||||
}
|
}
|
||||||
|
|
||||||
func setGroupCard(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func setGroupCard(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQSetGroupCard(p.Get("group_id").Int(), p.Get("user_id").Int(), p.Get("card").Str)
|
return bot.CQSetGroupCard(p.Get("group_id").Int(), p.Get("user_id").Int(), p.Get("card").Str)
|
||||||
}
|
}
|
||||||
|
|
||||||
func setGroupSpecialTitle(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func setGroupSpecialTitle(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQSetGroupSpecialTitle(p.Get("group_id").Int(), p.Get("user_id").Int(), p.Get("special_title").Str)
|
return bot.CQSetGroupSpecialTitle(p.Get("group_id").Int(), p.Get("user_id").Int(), p.Get("special_title").Str)
|
||||||
}
|
}
|
||||||
|
|
||||||
func setGroupKick(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func setGroupKick(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQSetGroupKick(p.Get("group_id").Int(), p.Get("user_id").Int(), p.Get("message").Str, p.Get("reject_add_request").Bool())
|
return bot.CQSetGroupKick(p.Get("group_id").Int(), p.Get("user_id").Int(), p.Get("message").Str, p.Get("reject_add_request").Bool())
|
||||||
}
|
}
|
||||||
|
|
||||||
func setGroupBan(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func setGroupBan(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQSetGroupBan(p.Get("group_id").Int(), p.Get("user_id").Int(), func() uint32 {
|
return bot.CQSetGroupBan(p.Get("group_id").Int(), p.Get("user_id").Int(), func() uint32 {
|
||||||
if p.Get("duration").Exists() {
|
if p.Get("duration").Exists() {
|
||||||
return uint32(p.Get("duration").Int())
|
return uint32(p.Get("duration").Int())
|
||||||
@ -130,7 +138,7 @@ func setGroupBan(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
|||||||
}())
|
}())
|
||||||
}
|
}
|
||||||
|
|
||||||
func setGroupWholeBan(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func setGroupWholeBan(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQSetGroupWholeBan(p.Get("group_id").Int(), func() bool {
|
return bot.CQSetGroupWholeBan(p.Get("group_id").Int(), func() bool {
|
||||||
if p.Get("enable").Exists() {
|
if p.Get("enable").Exists() {
|
||||||
return p.Get("enable").Bool()
|
return p.Get("enable").Bool()
|
||||||
@ -139,11 +147,11 @@ func setGroupWholeBan(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
|||||||
}())
|
}())
|
||||||
}
|
}
|
||||||
|
|
||||||
func setGroupName(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func setGroupName(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQSetGroupName(p.Get("group_id").Int(), p.Get("group_name").Str)
|
return bot.CQSetGroupName(p.Get("group_id").Int(), p.Get("group_name").Str)
|
||||||
}
|
}
|
||||||
|
|
||||||
func setGroupAdmin(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func setGroupAdmin(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQSetGroupAdmin(p.Get("group_id").Int(), p.Get("user_id").Int(), func() bool {
|
return bot.CQSetGroupAdmin(p.Get("group_id").Int(), p.Get("user_id").Int(), func() bool {
|
||||||
if p.Get("enable").Exists() {
|
if p.Get("enable").Exists() {
|
||||||
return p.Get("enable").Bool()
|
return p.Get("enable").Bool()
|
||||||
@ -152,19 +160,19 @@ func setGroupAdmin(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
|||||||
}())
|
}())
|
||||||
}
|
}
|
||||||
|
|
||||||
func sendGroupNotice(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func sendGroupNotice(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQSetGroupMemo(p.Get("group_id").Int(), p.Get("content").Str, p.Get("image").String())
|
return bot.CQSetGroupMemo(p.Get("group_id").Int(), p.Get("content").Str, p.Get("image").String())
|
||||||
}
|
}
|
||||||
|
|
||||||
func setGroupLeave(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func setGroupLeave(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQSetGroupLeave(p.Get("group_id").Int())
|
return bot.CQSetGroupLeave(p.Get("group_id").Int())
|
||||||
}
|
}
|
||||||
|
|
||||||
func getImage(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func getImage(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQGetImage(p.Get("file").Str)
|
return bot.CQGetImage(p.Get("file").Str)
|
||||||
}
|
}
|
||||||
|
|
||||||
func getForwardMSG(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func getForwardMSG(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
id := p.Get("message_id").Str
|
id := p.Get("message_id").Str
|
||||||
if id == "" {
|
if id == "" {
|
||||||
id = p.Get("id").Str
|
id = p.Get("id").Str
|
||||||
@ -172,11 +180,11 @@ func getForwardMSG(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
|||||||
return bot.CQGetForwardMessage(id)
|
return bot.CQGetForwardMessage(id)
|
||||||
}
|
}
|
||||||
|
|
||||||
func getMSG(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func getMSG(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQGetMessage(int32(p.Get("message_id").Int()))
|
return bot.CQGetMessage(int32(p.Get("message_id").Int()))
|
||||||
}
|
}
|
||||||
|
|
||||||
func downloadFile(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func downloadFile(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
headers := map[string]string{}
|
headers := map[string]string{}
|
||||||
headersToken := p.Get("headers")
|
headersToken := p.Get("headers")
|
||||||
if headersToken.IsArray() {
|
if headersToken.IsArray() {
|
||||||
@ -199,11 +207,11 @@ func downloadFile(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
|||||||
return bot.CQDownloadFile(p.Get("url").Str, headers, int(p.Get("thread_count").Int()))
|
return bot.CQDownloadFile(p.Get("url").Str, headers, int(p.Get("thread_count").Int()))
|
||||||
}
|
}
|
||||||
|
|
||||||
func getGroupHonorInfo(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func getGroupHonorInfo(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQGetGroupHonorInfo(p.Get("group_id").Int(), p.Get("type").Str)
|
return bot.CQGetGroupHonorInfo(p.Get("group_id").Int(), p.Get("type").Str)
|
||||||
}
|
}
|
||||||
|
|
||||||
func setRestart(_ *coolq.CQBot, _ resultGetter) coolq.MSG {
|
func setRestart(_ *coolq.CQBot, _ resultGetter) global.MSG {
|
||||||
/*
|
/*
|
||||||
var delay int64
|
var delay int64
|
||||||
delay = p.Get("delay").Int()
|
delay = p.Get("delay").Int()
|
||||||
@ -215,115 +223,115 @@ func setRestart(_ *coolq.CQBot, _ resultGetter) coolq.MSG {
|
|||||||
Restart <- struct{}{}
|
Restart <- struct{}{}
|
||||||
}(delay)
|
}(delay)
|
||||||
*/
|
*/
|
||||||
return coolq.MSG{"data": nil, "retcode": 99, "msg": "restart un-supported now", "wording": "restart函数暂不兼容", "status": "failed"}
|
return global.MSG{"data": nil, "retcode": 99, "msg": "restart un-supported now", "wording": "restart函数暂不兼容", "status": "failed"}
|
||||||
}
|
}
|
||||||
|
|
||||||
func canSendImage(bot *coolq.CQBot, _ resultGetter) coolq.MSG {
|
func canSendImage(bot *coolq.CQBot, _ resultGetter) global.MSG {
|
||||||
return bot.CQCanSendImage()
|
return bot.CQCanSendImage()
|
||||||
}
|
}
|
||||||
|
|
||||||
func canSendRecord(bot *coolq.CQBot, _ resultGetter) coolq.MSG {
|
func canSendRecord(bot *coolq.CQBot, _ resultGetter) global.MSG {
|
||||||
return bot.CQCanSendRecord()
|
return bot.CQCanSendRecord()
|
||||||
}
|
}
|
||||||
|
|
||||||
func getStrangerInfo(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func getStrangerInfo(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQGetStrangerInfo(p.Get("user_id").Int())
|
return bot.CQGetStrangerInfo(p.Get("user_id").Int())
|
||||||
}
|
}
|
||||||
|
|
||||||
func getStatus(bot *coolq.CQBot, _ resultGetter) coolq.MSG {
|
func getStatus(bot *coolq.CQBot, _ resultGetter) global.MSG {
|
||||||
return bot.CQGetStatus()
|
return bot.CQGetStatus()
|
||||||
}
|
}
|
||||||
|
|
||||||
func getVersionInfo(bot *coolq.CQBot, _ resultGetter) coolq.MSG {
|
func getVersionInfo(bot *coolq.CQBot, _ resultGetter) global.MSG {
|
||||||
return bot.CQGetVersionInfo()
|
return bot.CQGetVersionInfo()
|
||||||
}
|
}
|
||||||
|
|
||||||
func getGroupSystemMSG(bot *coolq.CQBot, _ resultGetter) coolq.MSG {
|
func getGroupSystemMSG(bot *coolq.CQBot, _ resultGetter) global.MSG {
|
||||||
return bot.CQGetGroupSystemMessages()
|
return bot.CQGetGroupSystemMessages()
|
||||||
}
|
}
|
||||||
|
|
||||||
func getGroupFileSystemInfo(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func getGroupFileSystemInfo(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQGetGroupFileSystemInfo(p.Get("group_id").Int())
|
return bot.CQGetGroupFileSystemInfo(p.Get("group_id").Int())
|
||||||
}
|
}
|
||||||
|
|
||||||
func getGroupRootFiles(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func getGroupRootFiles(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQGetGroupRootFiles(p.Get("group_id").Int())
|
return bot.CQGetGroupRootFiles(p.Get("group_id").Int())
|
||||||
}
|
}
|
||||||
|
|
||||||
func getGroupFilesByFolder(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func getGroupFilesByFolder(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQGetGroupFilesByFolderID(p.Get("group_id").Int(), p.Get("folder_id").Str)
|
return bot.CQGetGroupFilesByFolderID(p.Get("group_id").Int(), p.Get("folder_id").Str)
|
||||||
}
|
}
|
||||||
|
|
||||||
func getGroupFileURL(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func getGroupFileURL(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQGetGroupFileURL(p.Get("group_id").Int(), p.Get("file_id").Str, int32(p.Get("busid").Int()))
|
return bot.CQGetGroupFileURL(p.Get("group_id").Int(), p.Get("file_id").Str, int32(p.Get("busid").Int()))
|
||||||
}
|
}
|
||||||
|
|
||||||
func uploadGroupFile(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func uploadGroupFile(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQUploadGroupFile(p.Get("group_id").Int(), p.Get("file").Str, p.Get("name").Str, p.Get("folder").Str)
|
return bot.CQUploadGroupFile(p.Get("group_id").Int(), p.Get("file").Str, p.Get("name").Str, p.Get("folder").Str)
|
||||||
}
|
}
|
||||||
|
|
||||||
func groupFileCreateFolder(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func groupFileCreateFolder(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQGroupFileCreateFolder(p.Get("group_id").Int(), p.Get("folder_id").Str, p.Get("name").Str)
|
return bot.CQGroupFileCreateFolder(p.Get("group_id").Int(), p.Get("folder_id").Str, p.Get("name").Str)
|
||||||
}
|
}
|
||||||
|
|
||||||
func deleteGroupFolder(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func deleteGroupFolder(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQGroupFileDeleteFolder(p.Get("group_id").Int(), p.Get("folder_id").Str)
|
return bot.CQGroupFileDeleteFolder(p.Get("group_id").Int(), p.Get("folder_id").Str)
|
||||||
}
|
}
|
||||||
|
|
||||||
func deleteGroupFile(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func deleteGroupFile(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQGroupFileDeleteFile(p.Get("group_id").Int(), p.Get("file_id").Str, int32(p.Get("bus_id").Int()))
|
return bot.CQGroupFileDeleteFile(p.Get("group_id").Int(), p.Get("file_id").Str, int32(p.Get("bus_id").Int()))
|
||||||
}
|
}
|
||||||
|
|
||||||
func getGroupMsgHistory(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func getGroupMsgHistory(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQGetGroupMessageHistory(p.Get("group_id").Int(), p.Get("message_seq").Int())
|
return bot.CQGetGroupMessageHistory(p.Get("group_id").Int(), p.Get("message_seq").Int())
|
||||||
}
|
}
|
||||||
|
|
||||||
func getVipInfo(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func getVipInfo(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQGetVipInfo(p.Get("user_id").Int())
|
return bot.CQGetVipInfo(p.Get("user_id").Int())
|
||||||
}
|
}
|
||||||
|
|
||||||
func reloadEventFilter(_ *coolq.CQBot, p resultGetter) coolq.MSG {
|
func reloadEventFilter(_ *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
addFilter(p.Get("file").String())
|
addFilter(p.Get("file").String())
|
||||||
return coolq.OK(nil)
|
return coolq.OK(nil)
|
||||||
}
|
}
|
||||||
|
|
||||||
func getGroupAtAllRemain(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func getGroupAtAllRemain(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQGetAtAllRemain(p.Get("group_id").Int())
|
return bot.CQGetAtAllRemain(p.Get("group_id").Int())
|
||||||
}
|
}
|
||||||
|
|
||||||
func ocrImage(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func ocrImage(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQOcrImage(p.Get("image").Str)
|
return bot.CQOcrImage(p.Get("image").Str)
|
||||||
}
|
}
|
||||||
|
|
||||||
func getOnlineClients(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func getOnlineClients(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQGetOnlineClients(p.Get("no_cache").Bool())
|
return bot.CQGetOnlineClients(p.Get("no_cache").Bool())
|
||||||
}
|
}
|
||||||
|
|
||||||
func getWordSlices(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func getWordSlices(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQGetWordSlices(p.Get("content").Str)
|
return bot.CQGetWordSlices(p.Get("content").Str)
|
||||||
}
|
}
|
||||||
|
|
||||||
func setGroupPortrait(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func setGroupPortrait(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQSetGroupPortrait(p.Get("group_id").Int(), p.Get("file").String(), p.Get("cache").String())
|
return bot.CQSetGroupPortrait(p.Get("group_id").Int(), p.Get("file").String(), p.Get("cache").String())
|
||||||
}
|
}
|
||||||
|
|
||||||
func setEssenceMSG(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func setEssenceMSG(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQSetEssenceMessage(int32(p.Get("message_id").Int()))
|
return bot.CQSetEssenceMessage(int32(p.Get("message_id").Int()))
|
||||||
}
|
}
|
||||||
|
|
||||||
func deleteEssenceMSG(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func deleteEssenceMSG(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQDeleteEssenceMessage(int32(p.Get("message_id").Int()))
|
return bot.CQDeleteEssenceMessage(int32(p.Get("message_id").Int()))
|
||||||
}
|
}
|
||||||
|
|
||||||
func getEssenceMsgList(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func getEssenceMsgList(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQGetEssenceMessageList(p.Get("group_id").Int())
|
return bot.CQGetEssenceMessageList(p.Get("group_id").Int())
|
||||||
}
|
}
|
||||||
|
|
||||||
func checkURLSafely(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func checkURLSafely(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQCheckURLSafely(p.Get("url").String())
|
return bot.CQCheckURLSafely(p.Get("url").String())
|
||||||
}
|
}
|
||||||
|
|
||||||
func setGroupAnonymousBan(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func setGroupAnonymousBan(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
obj := p.Get("anonymous")
|
obj := p.Get("anonymous")
|
||||||
flag := p.Get("anonymous_flag")
|
flag := p.Get("anonymous_flag")
|
||||||
if !flag.Exists() {
|
if !flag.Exists() {
|
||||||
@ -338,89 +346,91 @@ func setGroupAnonymousBan(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
|||||||
return bot.CQSetGroupAnonymousBan(p.Get("group_id").Int(), flag.String(), int32(p.Get("duration").Int()))
|
return bot.CQSetGroupAnonymousBan(p.Get("group_id").Int(), flag.String(), int32(p.Get("duration").Int()))
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleQuickOperation(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func handleQuickOperation(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQHandleQuickOperation(p.Get("context"), p.Get("operation"))
|
return bot.CQHandleQuickOperation(p.Get("context"), p.Get("operation"))
|
||||||
}
|
}
|
||||||
|
|
||||||
func getModelShow(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func getModelShow(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQGetModelShow(p.Get("model").String())
|
return bot.CQGetModelShow(p.Get("model").String())
|
||||||
}
|
}
|
||||||
|
|
||||||
func setModelShow(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func setModelShow(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQSetModelShow(p.Get("model").String(), p.Get("model_show").String())
|
return bot.CQSetModelShow(p.Get("model").String(), p.Get("model_show").String())
|
||||||
}
|
}
|
||||||
|
|
||||||
func markMSGAsRead(bot *coolq.CQBot, p resultGetter) coolq.MSG {
|
func markMSGAsRead(bot *coolq.CQBot, p resultGetter) global.MSG {
|
||||||
return bot.CQMarkMessageAsRead(int32(p.Get("message_id").Int()))
|
return bot.CQMarkMessageAsRead(int32(p.Get("message_id").Int()))
|
||||||
}
|
}
|
||||||
|
|
||||||
// API 是go-cqhttp当前支持的所有api的映射表
|
// API 是go-cqhttp当前支持的所有api的映射表
|
||||||
var API = map[string]func(*coolq.CQBot, resultGetter) coolq.MSG{
|
var API = map[string]func(*coolq.CQBot, resultGetter) global.MSG{
|
||||||
"get_login_info": getLoginInfo,
|
"get_login_info": getLoginInfo,
|
||||||
"get_friend_list": getFriendList,
|
"get_friend_list": getFriendList,
|
||||||
"delete_friend": deleteFriend,
|
"get_unidirectional_friend_list": getUnidirectionalFriendList,
|
||||||
"get_group_list": getGroupList,
|
"delete_friend": deleteFriend,
|
||||||
"get_group_info": getGroupInfo,
|
"delete_unidirectional_friend": deleteUnidirectionalFriend,
|
||||||
"get_group_member_list": getGroupMemberList,
|
"get_group_list": getGroupList,
|
||||||
"get_group_member_info": getGroupMemberInfo,
|
"get_group_info": getGroupInfo,
|
||||||
"send_msg": sendMSG,
|
"get_group_member_list": getGroupMemberList,
|
||||||
"send_group_msg": sendGroupMSG,
|
"get_group_member_info": getGroupMemberInfo,
|
||||||
"send_group_forward_msg": sendGroupForwardMSG,
|
"send_msg": sendMSG,
|
||||||
"send_private_msg": sendPrivateMSG,
|
"send_group_msg": sendGroupMSG,
|
||||||
"delete_msg": deleteMSG,
|
"send_group_forward_msg": sendGroupForwardMSG,
|
||||||
"set_friend_add_request": setFriendAddRequest,
|
"send_private_msg": sendPrivateMSG,
|
||||||
"set_group_add_request": setGroupAddRequest,
|
"delete_msg": deleteMSG,
|
||||||
"set_group_card": setGroupCard,
|
"set_friend_add_request": setFriendAddRequest,
|
||||||
"set_group_special_title": setGroupSpecialTitle,
|
"set_group_add_request": setGroupAddRequest,
|
||||||
"set_group_kick": setGroupKick,
|
"set_group_card": setGroupCard,
|
||||||
"set_group_ban": setGroupBan,
|
"set_group_special_title": setGroupSpecialTitle,
|
||||||
"set_group_whole_ban": setGroupWholeBan,
|
"set_group_kick": setGroupKick,
|
||||||
"set_group_name": setGroupName,
|
"set_group_ban": setGroupBan,
|
||||||
"set_group_admin": setGroupAdmin,
|
"set_group_whole_ban": setGroupWholeBan,
|
||||||
"_send_group_notice": sendGroupNotice,
|
"set_group_name": setGroupName,
|
||||||
"set_group_leave": setGroupLeave,
|
"set_group_admin": setGroupAdmin,
|
||||||
"get_image": getImage,
|
"_send_group_notice": sendGroupNotice,
|
||||||
"get_forward_msg": getForwardMSG,
|
"set_group_leave": setGroupLeave,
|
||||||
"get_msg": getMSG,
|
"get_image": getImage,
|
||||||
"download_file": downloadFile,
|
"get_forward_msg": getForwardMSG,
|
||||||
"get_group_honor_info": getGroupHonorInfo,
|
"get_msg": getMSG,
|
||||||
"set_restart": setRestart,
|
"download_file": downloadFile,
|
||||||
"can_send_image": canSendImage,
|
"get_group_honor_info": getGroupHonorInfo,
|
||||||
"can_send_record": canSendRecord,
|
"set_restart": setRestart,
|
||||||
"get_stranger_info": getStrangerInfo,
|
"can_send_image": canSendImage,
|
||||||
"get_status": getStatus,
|
"can_send_record": canSendRecord,
|
||||||
"get_version_info": getVersionInfo,
|
"get_stranger_info": getStrangerInfo,
|
||||||
"get_group_system_msg": getGroupSystemMSG,
|
"get_status": getStatus,
|
||||||
"get_group_file_system_info": getGroupFileSystemInfo,
|
"get_version_info": getVersionInfo,
|
||||||
"get_group_root_files": getGroupRootFiles,
|
"get_group_system_msg": getGroupSystemMSG,
|
||||||
"get_group_files_by_folder": getGroupFilesByFolder,
|
"get_group_file_system_info": getGroupFileSystemInfo,
|
||||||
"get_group_file_url": getGroupFileURL,
|
"get_group_root_files": getGroupRootFiles,
|
||||||
"create_group_file_folder": groupFileCreateFolder,
|
"get_group_files_by_folder": getGroupFilesByFolder,
|
||||||
"delete_group_folder": deleteGroupFolder,
|
"get_group_file_url": getGroupFileURL,
|
||||||
"delete_group_file": deleteGroupFile,
|
"create_group_file_folder": groupFileCreateFolder,
|
||||||
"upload_group_file": uploadGroupFile,
|
"delete_group_folder": deleteGroupFolder,
|
||||||
"get_group_msg_history": getGroupMsgHistory,
|
"delete_group_file": deleteGroupFile,
|
||||||
"_get_vip_info": getVipInfo,
|
"upload_group_file": uploadGroupFile,
|
||||||
"reload_event_filter": reloadEventFilter,
|
"get_group_msg_history": getGroupMsgHistory,
|
||||||
".ocr_image": ocrImage,
|
"_get_vip_info": getVipInfo,
|
||||||
"ocr_image": ocrImage,
|
"reload_event_filter": reloadEventFilter,
|
||||||
"get_group_at_all_remain": getGroupAtAllRemain,
|
".ocr_image": ocrImage,
|
||||||
"get_online_clients": getOnlineClients,
|
"ocr_image": ocrImage,
|
||||||
".get_word_slices": getWordSlices,
|
"get_group_at_all_remain": getGroupAtAllRemain,
|
||||||
"set_group_portrait": setGroupPortrait,
|
"get_online_clients": getOnlineClients,
|
||||||
"set_essence_msg": setEssenceMSG,
|
".get_word_slices": getWordSlices,
|
||||||
"delete_essence_msg": deleteEssenceMSG,
|
"set_group_portrait": setGroupPortrait,
|
||||||
"get_essence_msg_list": getEssenceMsgList,
|
"set_essence_msg": setEssenceMSG,
|
||||||
"check_url_safely": checkURLSafely,
|
"delete_essence_msg": deleteEssenceMSG,
|
||||||
"set_group_anonymous_ban": setGroupAnonymousBan,
|
"get_essence_msg_list": getEssenceMsgList,
|
||||||
".handle_quick_operation": handleQuickOperation,
|
"check_url_safely": checkURLSafely,
|
||||||
"qidian_get_account_info": getQiDianAccountInfo,
|
"set_group_anonymous_ban": setGroupAnonymousBan,
|
||||||
"_get_model_show": getModelShow,
|
".handle_quick_operation": handleQuickOperation,
|
||||||
"_set_model_show": setModelShow,
|
"qidian_get_account_info": getQiDianAccountInfo,
|
||||||
"mark_msg_as_read": markMSGAsRead,
|
"_get_model_show": getModelShow,
|
||||||
|
"_set_model_show": setModelShow,
|
||||||
|
"mark_msg_as_read": markMSGAsRead,
|
||||||
}
|
}
|
||||||
|
|
||||||
func (api *apiCaller) callAPI(action string, p resultGetter) coolq.MSG {
|
func (api *apiCaller) callAPI(action string, p resultGetter) global.MSG {
|
||||||
for _, fn := range api.handlers {
|
for _, fn := range api.handlers {
|
||||||
if ret := fn(action, p); ret != nil {
|
if ret := fn(action, p); ret != nil {
|
||||||
return ret
|
return ret
|
||||||
|
@ -5,6 +5,7 @@ import (
|
|||||||
"crypto/hmac"
|
"crypto/hmac"
|
||||||
"crypto/sha1"
|
"crypto/sha1"
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"net/http"
|
"net/http"
|
||||||
@ -16,7 +17,6 @@ import (
|
|||||||
"github.com/Mrs4s/MiraiGo/utils"
|
"github.com/Mrs4s/MiraiGo/utils"
|
||||||
"github.com/guonaihong/gout"
|
"github.com/guonaihong/gout"
|
||||||
"github.com/guonaihong/gout/dataflow"
|
"github.com/guonaihong/gout/dataflow"
|
||||||
jsoniter "github.com/json-iterator/go"
|
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
"github.com/tidwall/gjson"
|
"github.com/tidwall/gjson"
|
||||||
|
|
||||||
@ -30,8 +30,6 @@ type httpServer struct {
|
|||||||
accessToken string
|
accessToken string
|
||||||
}
|
}
|
||||||
|
|
||||||
var json = jsoniter.ConfigCompatibleWithStandardLibrary
|
|
||||||
|
|
||||||
// HTTPClient 反向HTTP上报客户端
|
// HTTPClient 反向HTTP上报客户端
|
||||||
type HTTPClient struct {
|
type HTTPClient struct {
|
||||||
bot *coolq.CQBot
|
bot *coolq.CQBot
|
||||||
@ -53,13 +51,22 @@ func (h *httpCtx) Get(s string) gjson.Result {
|
|||||||
if j.Exists() {
|
if j.Exists() {
|
||||||
return j
|
return j
|
||||||
}
|
}
|
||||||
|
validJSONParam := func(p string) bool {
|
||||||
|
return (strings.HasPrefix(p, "{") || strings.HasPrefix(p, "[")) && gjson.Valid(p)
|
||||||
|
}
|
||||||
if h.postForm != nil {
|
if h.postForm != nil {
|
||||||
if form := h.postForm.Get(s); form != "" {
|
if form := h.postForm.Get(s); form != "" {
|
||||||
|
if validJSONParam(form) {
|
||||||
|
return gjson.Result{Type: gjson.JSON, Raw: form}
|
||||||
|
}
|
||||||
return gjson.Result{Type: gjson.String, Str: form}
|
return gjson.Result{Type: gjson.String, Str: form}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if h.query != nil {
|
if h.query != nil {
|
||||||
if query := h.query.Get(s); query != "" {
|
if query := h.query.Get(s); query != "" {
|
||||||
|
if validJSONParam(query) {
|
||||||
|
return gjson.Result{Type: gjson.JSON, Raw: query}
|
||||||
|
}
|
||||||
return gjson.Result{Type: gjson.String, Str: query}
|
return gjson.Result{Type: gjson.String, Str: query}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,6 +5,8 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"os"
|
"os"
|
||||||
"sync"
|
"sync"
|
||||||
|
"sync/atomic"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/Mrs4s/go-cqhttp/coolq"
|
"github.com/Mrs4s/go-cqhttp/coolq"
|
||||||
"github.com/Mrs4s/go-cqhttp/global"
|
"github.com/Mrs4s/go-cqhttp/global"
|
||||||
@ -21,7 +23,7 @@ var (
|
|||||||
|
|
||||||
func rateLimit(frequency float64, bucketSize int) handler {
|
func rateLimit(frequency float64, bucketSize int) handler {
|
||||||
limiter := rate.NewLimiter(rate.Limit(frequency), bucketSize)
|
limiter := rate.NewLimiter(rate.Limit(frequency), bucketSize)
|
||||||
return func(_ string, _ resultGetter) coolq.MSG {
|
return func(_ string, _ resultGetter) global.MSG {
|
||||||
_ = limiter.Wait(context.Background())
|
_ = limiter.Wait(context.Background())
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
@ -69,23 +71,43 @@ func longPolling(bot *coolq.CQBot, maxSize int) handler {
|
|||||||
}
|
}
|
||||||
cond.Signal()
|
cond.Signal()
|
||||||
})
|
})
|
||||||
return func(action string, p resultGetter) coolq.MSG {
|
return func(action string, p resultGetter) global.MSG {
|
||||||
if action != "get_updates" {
|
if action != "get_updates" {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
mutex.Lock()
|
var (
|
||||||
defer mutex.Unlock()
|
ok int32
|
||||||
if queue.Len() == 0 {
|
ch = make(chan []interface{}, 1)
|
||||||
cond.Wait()
|
timeout = time.Duration(p.Get("timeout").Int()) * time.Second
|
||||||
|
)
|
||||||
|
defer close(ch)
|
||||||
|
go func() {
|
||||||
|
mutex.Lock()
|
||||||
|
defer mutex.Unlock()
|
||||||
|
if queue.Len() == 0 {
|
||||||
|
cond.Wait()
|
||||||
|
}
|
||||||
|
if atomic.CompareAndSwapInt32(&ok, 0, 1) {
|
||||||
|
limit := int(p.Get("limit").Int())
|
||||||
|
if limit <= 0 || queue.Len() < limit {
|
||||||
|
limit = queue.Len()
|
||||||
|
}
|
||||||
|
ret := make([]interface{}, limit)
|
||||||
|
for i := 0; i < limit; i++ {
|
||||||
|
ret[i] = queue.Remove(queue.Front())
|
||||||
|
}
|
||||||
|
ch <- ret
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
if timeout != 0 {
|
||||||
|
select {
|
||||||
|
case <-time.After(timeout):
|
||||||
|
atomic.StoreInt32(&ok, 1)
|
||||||
|
return coolq.OK([]interface{}{})
|
||||||
|
case ret := <-ch:
|
||||||
|
return coolq.OK(ret)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
limit := int(p.Get("limit").Int())
|
return coolq.OK(<-ch)
|
||||||
if limit <= 0 || queue.Len() < limit {
|
|
||||||
limit = queue.Len()
|
|
||||||
}
|
|
||||||
ret := make([]interface{}, limit)
|
|
||||||
for i := 0; i < limit; i++ {
|
|
||||||
ret[i] = queue.Remove(queue.Front())
|
|
||||||
}
|
|
||||||
return coolq.OK(ret)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@ package server
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"net/http"
|
"net/http"
|
||||||
@ -86,8 +87,7 @@ func RunLambdaClient(bot *coolq.CQBot, conf *config.LambdaServer) {
|
|||||||
case "scf": // tencent serverless function
|
case "scf": // tencent serverless function
|
||||||
base := fmt.Sprintf("http://%s:%s/runtime/",
|
base := fmt.Sprintf("http://%s:%s/runtime/",
|
||||||
os.Getenv("SCF_RUNTIME_API"),
|
os.Getenv("SCF_RUNTIME_API"),
|
||||||
os.Getenv("SCF_RUNTIME_API_PORT"),
|
os.Getenv("SCF_RUNTIME_API_PORT"))
|
||||||
)
|
|
||||||
cli.nextURL = base + "invocation/next"
|
cli.nextURL = base + "invocation/next"
|
||||||
cli.responseURL = base + "invocation/response"
|
cli.responseURL = base + "invocation/response"
|
||||||
post, err := http.Post(base+"init/ready", "", nil)
|
post, err := http.Post(base+"init/ready", "", nil)
|
||||||
@ -116,23 +116,20 @@ func RunLambdaClient(bot *coolq.CQBot, conf *config.LambdaServer) {
|
|||||||
|
|
||||||
for {
|
for {
|
||||||
req := cli.next()
|
req := cli.next()
|
||||||
if req == nil {
|
writer := lambdaResponseWriter{statusCode: 200, header: make(http.Header)}
|
||||||
writer := lambdaResponseWriter{statusCode: 200}
|
|
||||||
_, _ = writer.Write(nil)
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
func() {
|
func() {
|
||||||
defer func() {
|
defer func() {
|
||||||
if e := recover(); e != nil {
|
if e := recover(); e != nil {
|
||||||
log.Warnf("Lambda 出现不可恢复错误: %v\n%s", e, debug.Stack())
|
log.Warnf("Lambda 出现不可恢复错误: %v\n%s", e, debug.Stack())
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
writer := lambdaResponseWriter{header: make(http.Header)}
|
if req != nil {
|
||||||
server.ServeHTTP(&writer, req)
|
server.ServeHTTP(&writer, req)
|
||||||
if err := writer.flush(); err != nil {
|
|
||||||
log.Warnf("Lambda 发送响应失败: %v", err)
|
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
if err := writer.flush(); err != nil {
|
||||||
|
log.Warnf("Lambda 发送响应失败: %v", err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -160,8 +157,8 @@ func (c *lambdaClient) next() *http.Request {
|
|||||||
if resp.StatusCode != http.StatusOK {
|
if resp.StatusCode != http.StatusOK {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
var req = new(http.Request)
|
req := new(http.Request)
|
||||||
var invoke = new(lambdaInvoke)
|
invoke := new(lambdaInvoke)
|
||||||
_ = json.NewDecoder(resp.Body).Decode(invoke)
|
_ = json.NewDecoder(resp.Body).Decode(invoke)
|
||||||
if invoke.HTTPMethod == "" { // 不是 api 网关
|
if invoke.HTTPMethod == "" { // 不是 api 网关
|
||||||
return nil
|
return nil
|
||||||
|
Reference in New Issue
Block a user