mirror of
https://github.com/Mrs4s/go-cqhttp.git
synced 2025-06-30 11:53:25 +00:00
Compare commits
127 Commits
v1.0.0-bet
...
v1.0.0-bet
Author | SHA1 | Date | |
---|---|---|---|
295b89b702 | |||
c8d46d575f | |||
c180246720 | |||
300a60fe9e | |||
4de5efc813 | |||
77580ae8ef | |||
e924fc5281 | |||
9c0519f8c8 | |||
c3aa812848 | |||
d25f5c4b30 | |||
adec1d1c1b | |||
b480a5d0b3 | |||
42fc7ca8f1 | |||
f420c8982e | |||
cc8f2b5a7a | |||
1906d92a91 | |||
08e59f0394 | |||
508fc019ab | |||
2395abe783 | |||
1e751cd9fe | |||
8eecba72e2 | |||
56b6957d63 | |||
4607024214 | |||
e8ac7ca81c | |||
96e0411c97 | |||
7751aa942e | |||
530e2c24d2 | |||
2ed99b48f4 | |||
df6b914414 | |||
cbecd43f4c | |||
8e0d336032 | |||
1a2658ef72 | |||
22d264c773 | |||
52e7ea5bbe | |||
4d328358e3 | |||
ea036c5d05 | |||
9f9db54192 | |||
f0ca636c54 | |||
51854fc6f3 | |||
498602fbca | |||
45ccc0a1b5 | |||
f316278c57 | |||
0ea826f0a2 | |||
15b396251c | |||
6e03ef771c | |||
422d0aeadc | |||
7a001faf2f | |||
0ad74c6f2c | |||
82bb37c7e6 | |||
817d712c75 | |||
a3c6ba1c4e | |||
625322d7e7 | |||
18944198ae | |||
208563d4c9 | |||
4837b9677e | |||
c499389e66 | |||
a19baec013 | |||
71835a286b | |||
5e70c8115e | |||
4e69ef4c2f | |||
ad9bccda5e | |||
549226921a | |||
ef095ec64e | |||
024fe7ba05 | |||
a0b156d054 | |||
47391e0a06 | |||
952f7ab5fb | |||
5fbb427615 | |||
2eec74ee09 | |||
6317e6c853 | |||
20fd8a9619 | |||
47cdc20d45 | |||
029d3a2c18 | |||
250c96f2c9 | |||
a82eaf7411 | |||
fcc9962b15 | |||
e4bd30d000 | |||
69a187ddd7 | |||
560bd5a0cf | |||
0b04ec9adb | |||
1771cda11c | |||
67f0ea914d | |||
446f624a37 | |||
19fd331c46 | |||
cd5c6c6a72 | |||
931e9220da | |||
e0bd2a74f4 | |||
f784e94a4a | |||
2eadcb151e | |||
b8c7941dc8 | |||
69e5247bde | |||
58a17c65a1 | |||
41e33fdb3d | |||
63e950bb83 | |||
ce944539c1 | |||
4b99f64b56 | |||
ce6b65ddb5 | |||
7c4be95c19 | |||
4da6584f10 | |||
d620fce1ae | |||
83b4206b15 | |||
d464236573 | |||
2927c2214f | |||
4625c785dd | |||
f767213681 | |||
c4d34fa14f | |||
1337d3f1f3 | |||
c2166699e4 | |||
ddd51e6ca3 | |||
a691ee8115 | |||
35b7b8909e | |||
cf21e81016 | |||
cd141d7d37 | |||
1a195278cf | |||
5acb01c1a3 | |||
883fca089d | |||
110982651d | |||
2cf136d031 | |||
f2ed46d6ce | |||
87754111ce | |||
1db219fce0 | |||
5cafaea082 | |||
f629eee7f2 | |||
a56e70d07c | |||
28078d9c8e | |||
66266f0d5e | |||
60d5f4d386 |
78
.github/workflows/build_docker_image.yml
vendored
Normal file
78
.github/workflows/build_docker_image.yml
vendored
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
name: Build And Push Docker Image
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'master'
|
||||||
|
# Sequence of patterns matched against refs/tags
|
||||||
|
tags:
|
||||||
|
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
|
||||||
|
schedule:
|
||||||
|
# 每晚十点生成 nightly 镜像
|
||||||
|
- cron: '00 14 * * *' # GMT 14:00 => 北京时间 22:00
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
packages: write
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Set time zone
|
||||||
|
uses: szenius/set-timezone@v1.0
|
||||||
|
with:
|
||||||
|
timezoneLinux: "Asia/Shanghai"
|
||||||
|
timezoneMacos: "Asia/Shanghai"
|
||||||
|
timezoneWindows: "China Standard Time"
|
||||||
|
|
||||||
|
# # 如果有 dockerhub 账户,可以在github的secrets中配置下面两个,然后取消下面注释的这几行,并在meta步骤的images增加一行 ${{ github.repository }}
|
||||||
|
# - name: Login to DockerHub
|
||||||
|
# uses: docker/login-action@v1
|
||||||
|
# with:
|
||||||
|
# username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
|
# password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Login to GHCR
|
||||||
|
uses: docker/login-action@v1
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ github.repository_owner }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Extract metadata (tags, labels) for Docker
|
||||||
|
id: meta
|
||||||
|
uses: docker/metadata-action@v3
|
||||||
|
with:
|
||||||
|
images: |
|
||||||
|
ghcr.io/${{ github.repository }}
|
||||||
|
# generate Docker tags based on the following events/attributes
|
||||||
|
# nightly, master, pr-2, 1.2.3, 1.2, 1
|
||||||
|
tags: |
|
||||||
|
type=schedule,pattern=nightly
|
||||||
|
type=edge
|
||||||
|
type=ref,event=branch
|
||||||
|
type=ref,event=pr
|
||||||
|
type=semver,pattern={{version}}
|
||||||
|
type=semver,pattern={{major}}.{{minor}}
|
||||||
|
type=semver,pattern={{major}}
|
||||||
|
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v1
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v1
|
||||||
|
|
||||||
|
- name: Build and push
|
||||||
|
id: docker_build
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
push: true
|
||||||
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
|
labels: ${{ steps.meta.outputs.labels }}
|
@ -25,7 +25,6 @@ linters:
|
|||||||
- deadcode
|
- deadcode
|
||||||
- depguard
|
- depguard
|
||||||
- dogsled
|
- dogsled
|
||||||
- dupl
|
|
||||||
- errcheck
|
- errcheck
|
||||||
- exportloopref
|
- exportloopref
|
||||||
- exhaustive
|
- exhaustive
|
||||||
@ -58,27 +57,16 @@ linters:
|
|||||||
- revive
|
- revive
|
||||||
- forbidigo
|
- forbidigo
|
||||||
- makezero
|
- makezero
|
||||||
#- interfacer
|
|
||||||
|
|
||||||
# don't enable:
|
|
||||||
# - scopelint
|
|
||||||
# - gochecknoglobals
|
|
||||||
# - gocognit
|
|
||||||
# - godot
|
|
||||||
# - godox
|
|
||||||
# - goerr113
|
|
||||||
# - interfacer
|
|
||||||
# - maligned
|
|
||||||
# - nestif
|
|
||||||
# - testpackage
|
|
||||||
# - wsl
|
|
||||||
|
|
||||||
run:
|
run:
|
||||||
# default concurrency is a available CPU number.
|
# default concurrency is a available CPU number.
|
||||||
# concurrency: 4 # explicitly omit this value to fully utilize available resources.
|
# concurrency: 4 # explicitly omit this value to fully utilize available resources.
|
||||||
deadline: 5m
|
deadline: 5m
|
||||||
issues-exit-code: 1
|
issues-exit-code: 1
|
||||||
tests: false
|
skip-dirs:
|
||||||
|
- db
|
||||||
|
- cmd/api-generator
|
||||||
|
tests: true
|
||||||
|
|
||||||
# output configuration options
|
# output configuration options
|
||||||
output:
|
output:
|
||||||
@ -92,4 +80,4 @@ issues:
|
|||||||
fix: true
|
fix: true
|
||||||
exclude-use-default: false
|
exclude-use-default: false
|
||||||
exclude:
|
exclude:
|
||||||
- "Error return value of .((os.)?std(out|err)..*|.*Close|.*Flush|os.Remove(All)?|.*print(f|ln)?|os.(Un)?Setenv). is not check"
|
- "Error return value of .((os.)?std(out|err)..*|.*Close|.*Seek|.*Flush|os.Remove(All)?|.*print(f|ln)?|os.(Un)?Setenv). is not check"
|
||||||
|
@ -12,22 +12,22 @@ builds:
|
|||||||
- linux
|
- linux
|
||||||
- darwin
|
- darwin
|
||||||
goarch:
|
goarch:
|
||||||
- 386
|
- '386'
|
||||||
- amd64
|
- amd64
|
||||||
- arm
|
- arm
|
||||||
- arm64
|
- arm64
|
||||||
goarm:
|
goarm:
|
||||||
- 7
|
- '7'
|
||||||
ignore:
|
ignore:
|
||||||
- goos: darwin
|
- goos: darwin
|
||||||
goarch: arm
|
goarch: arm
|
||||||
- goos: darwin
|
- goos: darwin
|
||||||
goarch: 386
|
goarch: '386'
|
||||||
mod_timestamp: "{{ .CommitTimestamp }}"
|
mod_timestamp: "{{ .CommitTimestamp }}"
|
||||||
flags:
|
flags:
|
||||||
- -trimpath
|
- -trimpath
|
||||||
ldflags:
|
ldflags:
|
||||||
- -s -w -X github.com/Mrs4s/go-cqhttp/coolq.Version=v{{.Version}}
|
- -s -w -X github.com/Mrs4s/go-cqhttp/internal/base.Version=v{{.Version}}
|
||||||
- id: win
|
- id: win
|
||||||
env:
|
env:
|
||||||
- CGO_ENABLED=0
|
- CGO_ENABLED=0
|
||||||
@ -35,17 +35,17 @@ builds:
|
|||||||
goos:
|
goos:
|
||||||
- windows
|
- windows
|
||||||
goarch:
|
goarch:
|
||||||
- 386
|
- '386'
|
||||||
- amd64
|
- amd64
|
||||||
- arm
|
- arm
|
||||||
- arm64
|
- arm64
|
||||||
goarm:
|
goarm:
|
||||||
- 7
|
- '7'
|
||||||
mod_timestamp: "{{ .CommitTimestamp }}"
|
mod_timestamp: "{{ .CommitTimestamp }}"
|
||||||
flags:
|
flags:
|
||||||
- -trimpath
|
- -trimpath
|
||||||
ldflags:
|
ldflags:
|
||||||
- -s -w -X github.com/Mrs4s/go-cqhttp/coolq.Version=v{{.Version}}
|
- -s -w -X github.com/Mrs4s/go-cqhttp/internal/base.Version=v{{.Version}}
|
||||||
|
|
||||||
checksum:
|
checksum:
|
||||||
name_template: "{{ .ProjectName }}_checksums.txt"
|
name_template: "{{ .ProjectName }}_checksums.txt"
|
||||||
|
@ -14,6 +14,8 @@ RUN set -ex \
|
|||||||
|
|
||||||
FROM alpine:latest
|
FROM alpine:latest
|
||||||
|
|
||||||
|
RUN apk add --no-cache ffmpeg
|
||||||
|
|
||||||
COPY --from=builder /build/cqhttp /usr/bin/cqhttp
|
COPY --from=builder /build/cqhttp /usr/bin/cqhttp
|
||||||
RUN chmod +x /usr/bin/cqhttp
|
RUN chmod +x /usr/bin/cqhttp
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@ _✨ 基于 [Mirai](https://github.com/mamoe/mirai) 以及 [MiraiGo](https://git
|
|||||||
|
|
||||||
|
|
||||||
## 兼容性
|
## 兼容性
|
||||||
go-cqhttp 兼容 [OneBot-v11](https://github.com/howmanybots/onebot/tree/master/v11/specs) 绝大多数内容,并在其基础上做了一些扩展,详情请看 go-cqhttp 的文档。
|
go-cqhttp 兼容 [OneBot-v11](https://github.com/botuniverse/onebot-11) 绝大多数内容,并在其基础上做了一些扩展,详情请看 go-cqhttp 的文档。
|
||||||
|
|
||||||
### 接口
|
### 接口
|
||||||
|
|
||||||
@ -106,7 +106,6 @@ go-cqhttp 兼容 [OneBot-v11](https://github.com/howmanybots/onebot/tree/master/
|
|||||||
| [CQ:image] | [图片] |
|
| [CQ:image] | [图片] |
|
||||||
| [CQ:redbag] | [红包] |
|
| [CQ:redbag] | [红包] |
|
||||||
| [CQ:poke] | [戳一戳] |
|
| [CQ:poke] | [戳一戳] |
|
||||||
| [CQ:gift] | [礼物] |
|
|
||||||
| [CQ:node] | [合并转发消息节点] |
|
| [CQ:node] | [合并转发消息节点] |
|
||||||
| [CQ:cardimage] | [一种 xml 的图片消息(装逼大图)] |
|
| [CQ:cardimage] | [一种 xml 的图片消息(装逼大图)] |
|
||||||
| [CQ:tts] | [文本转语音] |
|
| [CQ:tts] | [文本转语音] |
|
||||||
@ -114,7 +113,6 @@ go-cqhttp 兼容 [OneBot-v11](https://github.com/howmanybots/onebot/tree/master/
|
|||||||
[图片]: https://docs.go-cqhttp.org/cqcode/#%E5%9B%BE%E7%89%87
|
[图片]: https://docs.go-cqhttp.org/cqcode/#%E5%9B%BE%E7%89%87
|
||||||
[红包]: https://docs.go-cqhttp.org/cqcode/#%E7%BA%A2%E5%8C%85
|
[红包]: https://docs.go-cqhttp.org/cqcode/#%E7%BA%A2%E5%8C%85
|
||||||
[戳一戳]: https://docs.go-cqhttp.org/cqcode/#%E6%88%B3%E4%B8%80%E6%88%B3
|
[戳一戳]: https://docs.go-cqhttp.org/cqcode/#%E6%88%B3%E4%B8%80%E6%88%B3
|
||||||
[礼物]: https://docs.go-cqhttp.org/cqcode/#%E7%A4%BC%E7%89%A9
|
|
||||||
[合并转发消息节点]: https://docs.go-cqhttp.org/cqcode/#%E5%90%88%E5%B9%B6%E8%BD%AC%E5%8F%91%E6%B6%88%E6%81%AF%E8%8A%82%E7%82%B9
|
[合并转发消息节点]: https://docs.go-cqhttp.org/cqcode/#%E5%90%88%E5%B9%B6%E8%BD%AC%E5%8F%91%E6%B6%88%E6%81%AF%E8%8A%82%E7%82%B9
|
||||||
[一种 xml 的图片消息(装逼大图)]: https://docs.go-cqhttp.org/cqcode/#cardimage
|
[一种 xml 的图片消息(装逼大图)]: https://docs.go-cqhttp.org/cqcode/#cardimage
|
||||||
[文本转语音]: https://docs.go-cqhttp.org/cqcode/#%E6%96%87%E6%9C%AC%E8%BD%AC%E8%AF%AD%E9%9F%B3
|
[文本转语音]: https://docs.go-cqhttp.org/cqcode/#%E6%96%87%E6%9C%AC%E8%BD%AC%E8%AF%AD%E9%9F%B3
|
||||||
|
266
cmd/api-generator/main.go
Normal file
266
cmd/api-generator/main.go
Normal file
@ -0,0 +1,266 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"flag"
|
||||||
|
"fmt"
|
||||||
|
"go/ast"
|
||||||
|
"go/format"
|
||||||
|
"go/parser"
|
||||||
|
"go/token"
|
||||||
|
"io"
|
||||||
|
"os"
|
||||||
|
"sort"
|
||||||
|
"strconv"
|
||||||
|
"strings"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Param struct {
|
||||||
|
Name string
|
||||||
|
Type string
|
||||||
|
Default string
|
||||||
|
}
|
||||||
|
|
||||||
|
type Router struct {
|
||||||
|
Func string
|
||||||
|
Path string
|
||||||
|
Aliases []string
|
||||||
|
Params []Param
|
||||||
|
}
|
||||||
|
|
||||||
|
type generator struct {
|
||||||
|
out io.Writer
|
||||||
|
}
|
||||||
|
|
||||||
|
func (g *generator) WriteString(s string) {
|
||||||
|
io.WriteString(g.out, s)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (g *generator) generate(routers []Router) {
|
||||||
|
g.WriteString("// Code generated by cmd/api-generator. DO NOT EDIT.\n\n")
|
||||||
|
g.WriteString("package api\n\nimport (\n\n")
|
||||||
|
g.WriteString("\"github.com/Mrs4s/go-cqhttp/coolq\"\n")
|
||||||
|
g.WriteString("\"github.com/Mrs4s/go-cqhttp/global\"\n")
|
||||||
|
g.WriteString(")\n\n")
|
||||||
|
g.WriteString(`func (c *Caller) call(action string, p Getter) global.MSG {
|
||||||
|
switch action {
|
||||||
|
default:
|
||||||
|
return coolq.Failed(404, "API_NOT_FOUND", "API不存在")` + "\n")
|
||||||
|
for _, router := range routers {
|
||||||
|
g.router(router)
|
||||||
|
}
|
||||||
|
io.WriteString(g.out, ` }}`)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (g *generator) router(router Router) {
|
||||||
|
g.WriteString(`case ` + strconv.Quote(router.Path))
|
||||||
|
for _, alias := range router.Aliases {
|
||||||
|
g.WriteString(`, ` + strconv.Quote(alias))
|
||||||
|
}
|
||||||
|
g.WriteString(":\n")
|
||||||
|
|
||||||
|
for i, p := range router.Params {
|
||||||
|
if p.Default == "" {
|
||||||
|
v := "p.Get(" + strconv.Quote(p.Name) + ")"
|
||||||
|
fmt.Fprintf(g.out, "p%d := %s\n", i, conv(v, p.Type))
|
||||||
|
} else {
|
||||||
|
fmt.Fprintf(g.out, "p%d := %s\n", i, p.Default)
|
||||||
|
fmt.Fprintf(g.out, "if pt := p.Get(%s); pt.Exists() {\n", strconv.Quote(p.Name))
|
||||||
|
fmt.Fprintf(g.out, "p%d = %s\n}\n", i, conv("pt", p.Type))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
g.WriteString("\t\treturn c.bot." + router.Func + "(")
|
||||||
|
for i := range router.Params {
|
||||||
|
if i != 0 {
|
||||||
|
g.WriteString(", ")
|
||||||
|
}
|
||||||
|
fmt.Fprintf(g.out, "p%d", i)
|
||||||
|
}
|
||||||
|
g.WriteString(")\n")
|
||||||
|
}
|
||||||
|
|
||||||
|
func conv(v, t string) string {
|
||||||
|
switch t {
|
||||||
|
default:
|
||||||
|
panic("unknown type: " + t)
|
||||||
|
case "gjson.Result":
|
||||||
|
return v
|
||||||
|
case "int64":
|
||||||
|
return v + ".Int()"
|
||||||
|
case "bool":
|
||||||
|
return v + ".Bool()"
|
||||||
|
case "string":
|
||||||
|
return v + ".String()"
|
||||||
|
case "int32", "uint32", "int":
|
||||||
|
return t + "(" + v + ".Int())"
|
||||||
|
case "uint64":
|
||||||
|
return v + ".Uint()"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
var routers []Router
|
||||||
|
src := flag.String("path", "", "source file")
|
||||||
|
flag.Parse()
|
||||||
|
fset := token.NewFileSet()
|
||||||
|
file, err := parser.ParseFile(fset, *src, nil, parser.ParseComments)
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, decl := range file.Decls {
|
||||||
|
switch decl := decl.(type) {
|
||||||
|
case *ast.FuncDecl:
|
||||||
|
if decl.Recv == nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if st, ok := decl.Recv.List[0].Type.(*ast.StarExpr); !ok || st.X.(*ast.Ident).Name != "CQBot" {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
router := Router{Func: decl.Name.Name}
|
||||||
|
|
||||||
|
// compute params
|
||||||
|
for _, p := range decl.Type.Params.List {
|
||||||
|
var typ string
|
||||||
|
switch t := p.Type.(type) {
|
||||||
|
case *ast.Ident:
|
||||||
|
typ = t.Name
|
||||||
|
case *ast.SelectorExpr:
|
||||||
|
typ = t.X.(*ast.Ident).Name + "." + t.Sel.Name
|
||||||
|
}
|
||||||
|
for _, name := range p.Names {
|
||||||
|
router.Params = append(router.Params, Param{Name: snakecase(name.Name), Type: typ})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, comment := range decl.Doc.List {
|
||||||
|
annotation, args := match(comment.Text)
|
||||||
|
switch annotation {
|
||||||
|
case "":
|
||||||
|
continue
|
||||||
|
case "route":
|
||||||
|
router.Path = args
|
||||||
|
case "alias":
|
||||||
|
router.Aliases = append(router.Aliases, args)
|
||||||
|
case "default":
|
||||||
|
for name, value := range parseMap(args, "=") {
|
||||||
|
for i, p := range router.Params {
|
||||||
|
if p.Name == name {
|
||||||
|
router.Params[i].Default = convDefault(value, p.Type)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
case "rename":
|
||||||
|
for name, value := range parseMap(args, "->") {
|
||||||
|
for i, p := range router.Params {
|
||||||
|
if p.Name == name {
|
||||||
|
router.Params[i].Name = value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if router.Path != "" {
|
||||||
|
routers = append(routers, router)
|
||||||
|
} else {
|
||||||
|
println(decl.Name.Name)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
sort.Slice(routers, func(i, j int) bool {
|
||||||
|
return routers[i].Path < routers[j].Path
|
||||||
|
})
|
||||||
|
|
||||||
|
out := new(bytes.Buffer)
|
||||||
|
g := &generator{out: out}
|
||||||
|
g.generate(routers)
|
||||||
|
source, err := format.Source(out.Bytes())
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
err = os.WriteFile("api.go", source, 0o644)
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func unquote(s string) string {
|
||||||
|
switch s[0] {
|
||||||
|
case '"':
|
||||||
|
s, _ = strconv.Unquote(s)
|
||||||
|
case '`':
|
||||||
|
s = strings.Trim(s, "`")
|
||||||
|
}
|
||||||
|
return s
|
||||||
|
}
|
||||||
|
|
||||||
|
func parseMap(input string, sep string) map[string]string {
|
||||||
|
out := make(map[string]string)
|
||||||
|
for _, arg := range strings.Split(input, ",") {
|
||||||
|
k, v, ok := cut(arg, sep)
|
||||||
|
if !ok {
|
||||||
|
out[k] = "true"
|
||||||
|
}
|
||||||
|
k = strings.TrimSpace(k)
|
||||||
|
v = unquote(strings.TrimSpace(v))
|
||||||
|
out[k] = v
|
||||||
|
}
|
||||||
|
return out
|
||||||
|
}
|
||||||
|
|
||||||
|
func match(text string) (string, string) {
|
||||||
|
text = strings.TrimPrefix(text, "//")
|
||||||
|
text = strings.TrimSpace(text)
|
||||||
|
if !strings.HasPrefix(text, "@") || !strings.HasSuffix(text, ")") {
|
||||||
|
return "", ""
|
||||||
|
}
|
||||||
|
text = strings.Trim(text, "@)")
|
||||||
|
cmd, args, ok := cut(text, "(")
|
||||||
|
if !ok {
|
||||||
|
return "", ""
|
||||||
|
}
|
||||||
|
return cmd, unquote(args)
|
||||||
|
}
|
||||||
|
|
||||||
|
func cut(s, sep string) (before, after string, found bool) {
|
||||||
|
if i := strings.Index(s, sep); i >= 0 {
|
||||||
|
return s[:i], s[i+len(sep):], true
|
||||||
|
}
|
||||||
|
return s, "", false
|
||||||
|
}
|
||||||
|
|
||||||
|
// some abbreviations need translation before transforming ro snake case
|
||||||
|
var replacer = strings.NewReplacer("ID", "Id")
|
||||||
|
|
||||||
|
func snakecase(s string) string {
|
||||||
|
s = replacer.Replace(s)
|
||||||
|
t := make([]byte, 0, 32)
|
||||||
|
for i := 0; i < len(s); i++ {
|
||||||
|
c := s[i]
|
||||||
|
if ('a' <= c && c <= 'z') || ('0' <= c && c <= '9') {
|
||||||
|
t = append(t, c)
|
||||||
|
} else {
|
||||||
|
t = append(t, '_')
|
||||||
|
t = append(t, c^0x20)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return string(t)
|
||||||
|
}
|
||||||
|
|
||||||
|
func convDefault(s string, t string) string {
|
||||||
|
switch t {
|
||||||
|
case "bool":
|
||||||
|
if s == "true" {
|
||||||
|
return s
|
||||||
|
}
|
||||||
|
case "uint32":
|
||||||
|
if s != "0" {
|
||||||
|
return t + "(" + s + ")"
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
panic("unhandled default value type:" + t)
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
562
coolq/api.go
562
coolq/api.go
File diff suppressed because it is too large
Load Diff
388
coolq/bot.go
388
coolq/bot.go
@ -2,11 +2,9 @@ package coolq
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/gob"
|
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"hash/crc32"
|
|
||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
@ -14,7 +12,7 @@ import (
|
|||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/gabriel-vasile/mimetype"
|
"github.com/Mrs4s/go-cqhttp/db"
|
||||||
|
|
||||||
"github.com/Mrs4s/MiraiGo/binary"
|
"github.com/Mrs4s/MiraiGo/binary"
|
||||||
"github.com/Mrs4s/MiraiGo/client"
|
"github.com/Mrs4s/MiraiGo/client"
|
||||||
@ -22,11 +20,9 @@ import (
|
|||||||
"github.com/Mrs4s/MiraiGo/utils"
|
"github.com/Mrs4s/MiraiGo/utils"
|
||||||
"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/opt"
|
|
||||||
|
|
||||||
"github.com/Mrs4s/go-cqhttp/global"
|
"github.com/Mrs4s/go-cqhttp/global"
|
||||||
"github.com/Mrs4s/go-cqhttp/global/config"
|
"github.com/Mrs4s/go-cqhttp/internal/base"
|
||||||
)
|
)
|
||||||
|
|
||||||
// CQBot CQBot结构体,存储Bot实例相关配置
|
// CQBot CQBot结构体,存储Bot实例相关配置
|
||||||
@ -36,7 +32,6 @@ type CQBot struct {
|
|||||||
lock sync.RWMutex
|
lock sync.RWMutex
|
||||||
events []func(*Event)
|
events []func(*Event)
|
||||||
|
|
||||||
db *leveldb.DB
|
|
||||||
friendReqCache sync.Map
|
friendReqCache sync.Map
|
||||||
tempSessionCache sync.Map
|
tempSessionCache sync.Map
|
||||||
}
|
}
|
||||||
@ -69,68 +64,23 @@ func (e *Event) JSONString() string {
|
|||||||
return utils.B2S(e.buffer.Bytes())
|
return utils.B2S(e.buffer.Bytes())
|
||||||
}
|
}
|
||||||
|
|
||||||
// ForceFragmented 是否启用强制分片
|
|
||||||
var ForceFragmented = false
|
|
||||||
|
|
||||||
// SkipMimeScan 是否跳过Mime扫描
|
|
||||||
var SkipMimeScan bool
|
|
||||||
|
|
||||||
// keep sync with /docs/file.md#MINE
|
|
||||||
var lawfulImageTypes = [...]string{
|
|
||||||
"image/bmp",
|
|
||||||
"image/gif",
|
|
||||||
"image/jpeg",
|
|
||||||
"image/png",
|
|
||||||
"image/webp",
|
|
||||||
}
|
|
||||||
|
|
||||||
var lawfulAudioTypes = [...]string{
|
|
||||||
"audio/aac",
|
|
||||||
"audio/aiff",
|
|
||||||
"audio/amr",
|
|
||||||
"audio/ape",
|
|
||||||
"audio/flac",
|
|
||||||
"audio/midi",
|
|
||||||
"audio/mp4",
|
|
||||||
"audio/mpeg",
|
|
||||||
"audio/ogg",
|
|
||||||
"audio/wav",
|
|
||||||
"audio/x-m4a",
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewQQBot 初始化一个QQBot实例
|
// NewQQBot 初始化一个QQBot实例
|
||||||
func NewQQBot(cli *client.QQClient, conf *config.Config) *CQBot {
|
func NewQQBot(cli *client.QQClient) *CQBot {
|
||||||
bot := &CQBot{
|
bot := &CQBot{
|
||||||
Client: cli,
|
Client: cli,
|
||||||
}
|
}
|
||||||
enableLevelDB := false
|
|
||||||
node, ok := conf.Database["leveldb"]
|
|
||||||
if ok {
|
|
||||||
lconf := new(config.LevelDBConfig)
|
|
||||||
_ = node.Decode(lconf)
|
|
||||||
enableLevelDB = lconf.Enable
|
|
||||||
}
|
|
||||||
if enableLevelDB {
|
|
||||||
p := path.Join("data", "leveldb")
|
|
||||||
db, err := leveldb.OpenFile(p, &opt.Options{
|
|
||||||
WriteBuffer: 128 * opt.KiB,
|
|
||||||
})
|
|
||||||
if err != nil {
|
|
||||||
log.Fatalf("打开数据库失败, 如果频繁遇到此问题请清理 data/leveldb 文件夹或关闭数据库功能。")
|
|
||||||
}
|
|
||||||
bot.db = db
|
|
||||||
gob.Register(message.Sender{})
|
|
||||||
log.Info("信息数据库初始化完成.")
|
|
||||||
} else {
|
|
||||||
log.Warn("警告: 信息数据库已关闭,将无法使用 [回复/撤回] 等功能。")
|
|
||||||
}
|
|
||||||
bot.Client.OnPrivateMessage(bot.privateMessageEvent)
|
bot.Client.OnPrivateMessage(bot.privateMessageEvent)
|
||||||
bot.Client.OnGroupMessage(bot.groupMessageEvent)
|
bot.Client.OnGroupMessage(bot.groupMessageEvent)
|
||||||
if conf.Message.ReportSelfMessage {
|
if base.ReportSelfMessage {
|
||||||
bot.Client.OnSelfPrivateMessage(bot.privateMessageEvent)
|
bot.Client.OnSelfPrivateMessage(bot.privateMessageEvent)
|
||||||
bot.Client.OnSelfGroupMessage(bot.groupMessageEvent)
|
bot.Client.OnSelfGroupMessage(bot.groupMessageEvent)
|
||||||
}
|
}
|
||||||
bot.Client.OnTempMessage(bot.tempMessageEvent)
|
bot.Client.OnTempMessage(bot.tempMessageEvent)
|
||||||
|
bot.Client.GuildService.OnGuildChannelMessage(bot.guildChannelMessageEvent)
|
||||||
|
bot.Client.GuildService.OnGuildMessageReactionsUpdated(bot.guildMessageReactionsUpdatedEvent)
|
||||||
|
bot.Client.GuildService.OnGuildChannelUpdated(bot.guildChannelUpdatedEvent)
|
||||||
|
bot.Client.GuildService.OnGuildChannelCreated(bot.guildChannelCreatedEvent)
|
||||||
|
bot.Client.GuildService.OnGuildChannelDestroyed(bot.guildChannelDestroyedEvent)
|
||||||
bot.Client.OnGroupMuted(bot.groupMutedEvent)
|
bot.Client.OnGroupMuted(bot.groupMutedEvent)
|
||||||
bot.Client.OnGroupMessageRecalled(bot.groupRecallEvent)
|
bot.Client.OnGroupMessageRecalled(bot.groupRecallEvent)
|
||||||
bot.Client.OnGroupNotify(bot.groupNotifyEvent)
|
bot.Client.OnGroupNotify(bot.groupNotifyEvent)
|
||||||
@ -151,15 +101,11 @@ func NewQQBot(cli *client.QQClient, conf *config.Config) *CQBot {
|
|||||||
bot.Client.OnOtherClientStatusChanged(bot.otherClientStatusChangedEvent)
|
bot.Client.OnOtherClientStatusChanged(bot.otherClientStatusChangedEvent)
|
||||||
bot.Client.OnGroupDigest(bot.groupEssenceMsg)
|
bot.Client.OnGroupDigest(bot.groupEssenceMsg)
|
||||||
go func() {
|
go func() {
|
||||||
i := conf.Heartbeat.Interval
|
if base.HeartbeatInterval == 0 {
|
||||||
if i < 0 || conf.Heartbeat.Disabled {
|
|
||||||
log.Warn("警告: 心跳功能已关闭,若非预期,请检查配置文件。")
|
log.Warn("警告: 心跳功能已关闭,若非预期,请检查配置文件。")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if i == 0 {
|
t := time.NewTicker(base.HeartbeatInterval)
|
||||||
i = 5
|
|
||||||
}
|
|
||||||
t := time.NewTicker(time.Second * time.Duration(i))
|
|
||||||
for {
|
for {
|
||||||
<-t.C
|
<-t.C
|
||||||
bot.dispatchEventMessage(global.MSG{
|
bot.dispatchEventMessage(global.MSG{
|
||||||
@ -168,7 +114,7 @@ func NewQQBot(cli *client.QQClient, conf *config.Config) *CQBot {
|
|||||||
"post_type": "meta_event",
|
"post_type": "meta_event",
|
||||||
"meta_event_type": "heartbeat",
|
"meta_event_type": "heartbeat",
|
||||||
"status": bot.CQGetStatus()["data"],
|
"status": bot.CQGetStatus()["data"],
|
||||||
"interval": 1000 * i,
|
"interval": base.HeartbeatInterval.Milliseconds(),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
@ -182,22 +128,6 @@ func (bot *CQBot) OnEventPush(f func(e *Event)) {
|
|||||||
bot.lock.Unlock()
|
bot.lock.Unlock()
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetMessage 获取给定消息id对应的消息
|
|
||||||
func (bot *CQBot) GetMessage(mid int32) global.MSG {
|
|
||||||
if bot.db != nil {
|
|
||||||
m := global.MSG{}
|
|
||||||
data, err := bot.db.Get(binary.ToBytes(mid), nil)
|
|
||||||
if err == nil {
|
|
||||||
err = gob.NewDecoder(bytes.NewReader(data)).Decode(&m)
|
|
||||||
if err == nil {
|
|
||||||
return m
|
|
||||||
}
|
|
||||||
}
|
|
||||||
log.Warnf("获取信息时出现错误: %v id: %v", err, mid)
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// UploadLocalImageAsGroup 上传本地图片至群聊
|
// UploadLocalImageAsGroup 上传本地图片至群聊
|
||||||
func (bot *CQBot) UploadLocalImageAsGroup(groupCode int64, img *LocalImageElement) (i *message.GroupImageElement, err error) {
|
func (bot *CQBot) UploadLocalImageAsGroup(groupCode int64, img *LocalImageElement) (i *message.GroupImageElement, err error) {
|
||||||
if img.File != "" {
|
if img.File != "" {
|
||||||
@ -208,7 +138,7 @@ func (bot *CQBot) UploadLocalImageAsGroup(groupCode int64, img *LocalImageElemen
|
|||||||
defer func() { _ = f.Close() }()
|
defer func() { _ = f.Close() }()
|
||||||
img.Stream = f
|
img.Stream = f
|
||||||
}
|
}
|
||||||
if lawful, mime := IsLawfulImage(img.Stream); !lawful {
|
if lawful, mime := base.IsLawfulImage(img.Stream); !lawful {
|
||||||
return nil, errors.New("image type error: " + mime)
|
return nil, errors.New("image type error: " + mime)
|
||||||
}
|
}
|
||||||
i, err = bot.Client.UploadGroupImage(groupCode, img.Stream)
|
i, err = bot.Client.UploadGroupImage(groupCode, img.Stream)
|
||||||
@ -225,7 +155,7 @@ func (bot *CQBot) UploadLocalVideo(target int64, v *LocalVideoElement) (*message
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
defer video.Close()
|
defer func() { _ = video.Close() }()
|
||||||
hash, _ := utils.ComputeMd5AndLength(io.MultiReader(video, v.thumb))
|
hash, _ := utils.ComputeMd5AndLength(io.MultiReader(video, v.thumb))
|
||||||
cacheFile := path.Join(global.CachePath, hex.EncodeToString(hash)+".cache")
|
cacheFile := path.Join(global.CachePath, hex.EncodeToString(hash)+".cache")
|
||||||
_, _ = video.Seek(0, io.SeekStart)
|
_, _ = video.Seek(0, io.SeekStart)
|
||||||
@ -243,7 +173,7 @@ func (bot *CQBot) UploadLocalImageAsPrivate(userID int64, img *LocalImageElement
|
|||||||
defer func() { _ = f.Close() }()
|
defer func() { _ = f.Close() }()
|
||||||
img.Stream = f
|
img.Stream = f
|
||||||
}
|
}
|
||||||
if lawful, mime := IsLawfulImage(img.Stream); !lawful {
|
if lawful, mime := base.IsLawfulImage(img.Stream); !lawful {
|
||||||
return nil, errors.New("image type error: " + mime)
|
return nil, errors.New("image type error: " + mime)
|
||||||
}
|
}
|
||||||
i, err = bot.Client.UploadPrivateImage(userID, img.Stream)
|
i, err = bot.Client.UploadPrivateImage(userID, img.Stream)
|
||||||
@ -253,6 +183,22 @@ func (bot *CQBot) UploadLocalImageAsPrivate(userID int64, img *LocalImageElement
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// UploadLocalImageAsGuildChannel 上传本地图片至频道
|
||||||
|
func (bot *CQBot) UploadLocalImageAsGuildChannel(guildID, channelID uint64, img *LocalImageElement) (*message.GuildImageElement, error) {
|
||||||
|
if img.File != "" {
|
||||||
|
f, err := os.Open(img.File)
|
||||||
|
if err != nil {
|
||||||
|
return nil, errors.Wrap(err, "open image error")
|
||||||
|
}
|
||||||
|
defer func() { _ = f.Close() }()
|
||||||
|
img.Stream = f
|
||||||
|
}
|
||||||
|
if lawful, mime := base.IsLawfulImage(img.Stream); !lawful {
|
||||||
|
return nil, errors.New("image type error: " + mime)
|
||||||
|
}
|
||||||
|
return bot.Client.GuildService.UploadGuildImage(guildID, channelID, img.Stream)
|
||||||
|
}
|
||||||
|
|
||||||
// SendGroupMessage 发送群消息
|
// SendGroupMessage 发送群消息
|
||||||
func (bot *CQBot) SendGroupMessage(groupID int64, m *message.SendingMessage) int32 {
|
func (bot *CQBot) SendGroupMessage(groupID int64, m *message.SendingMessage) int32 {
|
||||||
newElem := make([]message.IMessageElement, 0, len(m.Elements))
|
newElem := make([]message.IMessageElement, 0, len(m.Elements))
|
||||||
@ -273,9 +219,6 @@ func (bot *CQBot) SendGroupMessage(groupID int64, m *message.SendingMessage) int
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return 0
|
return 0
|
||||||
case *GiftElement:
|
|
||||||
bot.Client.SendGroupGift(uint64(groupID), uint64(i.Target), i.GiftID)
|
|
||||||
return 0
|
|
||||||
case *message.MusicShareElement:
|
case *message.MusicShareElement:
|
||||||
ret, err := bot.Client.SendGroupMusicShare(groupID, i)
|
ret, err := bot.Client.SendGroupMusicShare(groupID, i)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -295,8 +238,8 @@ func (bot *CQBot) SendGroupMessage(groupID int64, m *message.SendingMessage) int
|
|||||||
return -1
|
return -1
|
||||||
}
|
}
|
||||||
m.Elements = newElem
|
m.Elements = newElem
|
||||||
bot.checkMedia(newElem)
|
bot.checkMedia(newElem, groupID)
|
||||||
ret := bot.Client.SendGroupMessage(groupID, m, ForceFragmented)
|
ret := bot.Client.SendGroupMessage(groupID, m, base.ForceFragmented)
|
||||||
if ret == nil || ret.Id == -1 {
|
if ret == nil || ret.Id == -1 {
|
||||||
log.Warnf("群消息发送失败: 账号可能被风控.")
|
log.Warnf("群消息发送失败: 账号可能被风控.")
|
||||||
return -1
|
return -1
|
||||||
@ -330,7 +273,7 @@ func (bot *CQBot) SendPrivateMessage(target int64, groupID int64, m *message.Sen
|
|||||||
return -1
|
return -1
|
||||||
}
|
}
|
||||||
m.Elements = newElem
|
m.Elements = newElem
|
||||||
bot.checkMedia(newElem)
|
bot.checkMedia(newElem, bot.Client.Uin)
|
||||||
|
|
||||||
// 单向好友是否存在
|
// 单向好友是否存在
|
||||||
unidirectionalFriendExists := func() bool {
|
unidirectionalFriendExists := func() bool {
|
||||||
@ -366,8 +309,9 @@ func (bot *CQBot) SendPrivateMessage(target int64, groupID int64, m *message.Sen
|
|||||||
default:
|
default:
|
||||||
if session == nil && groupID != 0 {
|
if session == nil && groupID != 0 {
|
||||||
msg := bot.Client.SendGroupTempMessage(groupID, target, m)
|
msg := bot.Client.SendGroupTempMessage(groupID, target, m)
|
||||||
if msg != nil {
|
if msg != nil { // nolint
|
||||||
id = bot.InsertTempMessage(target, msg)
|
// todo(Mrs4s)
|
||||||
|
// id = bot.InsertTempMessage(target, msg)
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
@ -376,8 +320,9 @@ func (bot *CQBot) SendPrivateMessage(target int64, groupID int64, m *message.Sen
|
|||||||
log.Errorf("发送临时会话消息失败: %v", err)
|
log.Errorf("发送临时会话消息失败: %v", err)
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
if msg != nil {
|
if msg != nil { // nolint
|
||||||
id = bot.InsertTempMessage(target, msg)
|
// todo(Mrs4s)
|
||||||
|
// id = bot.InsertTempMessage(target, msg)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
case unidirectionalFriendExists(): // 单向好友
|
case unidirectionalFriendExists(): // 单向好友
|
||||||
@ -395,59 +340,126 @@ func (bot *CQBot) SendPrivateMessage(target int64, groupID int64, m *message.Sen
|
|||||||
return id
|
return id
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SendGuildChannelMessage 发送频道消息
|
||||||
|
func (bot *CQBot) SendGuildChannelMessage(guildID, channelID uint64, m *message.SendingMessage) string {
|
||||||
|
newElem := make([]message.IMessageElement, 0, len(m.Elements))
|
||||||
|
for _, e := range m.Elements {
|
||||||
|
switch i := e.(type) {
|
||||||
|
case *LocalImageElement:
|
||||||
|
n, err := bot.UploadLocalImageAsGuildChannel(guildID, channelID, i)
|
||||||
|
if err != nil {
|
||||||
|
log.Warnf("警告: 频道 %d 消息%s上传失败: %v", channelID, e.Type().String(), err)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
e = n
|
||||||
|
case *LocalVideoElement, *LocalVoiceElement, *PokeElement, *message.MusicShareElement:
|
||||||
|
log.Warnf("警告: 频道暂不支持发送 %v 消息", i.Type().String())
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
newElem = append(newElem, e)
|
||||||
|
}
|
||||||
|
if len(newElem) == 0 {
|
||||||
|
log.Warnf("频道消息发送失败: 消息为空.")
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
m.Elements = newElem
|
||||||
|
bot.checkMedia(newElem, bot.Client.Uin)
|
||||||
|
ret, err := bot.Client.GuildService.SendGuildChannelMessage(guildID, channelID, m)
|
||||||
|
if err != nil {
|
||||||
|
log.Warnf("频道消息发送失败: %v", err)
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
// todo: insert db
|
||||||
|
return fmt.Sprintf("%v-%v", ret.Id, ret.InternalId)
|
||||||
|
}
|
||||||
|
|
||||||
// InsertGroupMessage 群聊消息入数据库
|
// InsertGroupMessage 群聊消息入数据库
|
||||||
func (bot *CQBot) InsertGroupMessage(m *message.GroupMessage) int32 {
|
func (bot *CQBot) InsertGroupMessage(m *message.GroupMessage) int32 {
|
||||||
val := global.MSG{
|
t := &message.SendingMessage{Elements: m.Elements}
|
||||||
"message-id": m.Id,
|
replyElem := t.FirstOrNil(func(e message.IMessageElement) bool {
|
||||||
"internal-id": m.InternalId,
|
_, ok := e.(*message.ReplyElement)
|
||||||
"group": m.GroupCode,
|
return ok
|
||||||
"group-name": m.GroupName,
|
})
|
||||||
"sender": m.Sender,
|
msg := &db.StoredGroupMessage{
|
||||||
"time": m.Time,
|
ID: encodeMessageID(m.GroupCode, m.Id),
|
||||||
"message": ToStringMessage(m.Elements, m.GroupCode, true),
|
GlobalID: db.ToGlobalID(m.GroupCode, m.Id),
|
||||||
|
SubType: "normal",
|
||||||
|
Attribute: &db.StoredMessageAttribute{
|
||||||
|
MessageSeq: m.Id,
|
||||||
|
InternalID: m.InternalId,
|
||||||
|
SenderUin: m.Sender.Uin,
|
||||||
|
SenderName: m.Sender.DisplayName(),
|
||||||
|
Timestamp: int64(m.Time),
|
||||||
|
},
|
||||||
|
GroupCode: m.GroupCode,
|
||||||
|
AnonymousID: func() string {
|
||||||
|
if m.Sender.IsAnonymous() {
|
||||||
|
return m.Sender.AnonymousInfo.AnonymousId
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}(),
|
||||||
|
Content: ToMessageContent(m.Elements),
|
||||||
}
|
}
|
||||||
id := toGlobalID(m.GroupCode, m.Id)
|
if replyElem != nil {
|
||||||
if bot.db != nil {
|
reply := replyElem.(*message.ReplyElement)
|
||||||
buf := global.NewBuffer()
|
msg.SubType = "quote"
|
||||||
defer global.PutBuffer(buf)
|
msg.QuotedInfo = &db.QuotedInfo{
|
||||||
if err := gob.NewEncoder(buf).Encode(val); err != nil {
|
PrevID: encodeMessageID(m.GroupCode, reply.ReplySeq),
|
||||||
log.Warnf("记录聊天数据时出现错误: %v", err)
|
PrevGlobalID: db.ToGlobalID(m.GroupCode, reply.ReplySeq),
|
||||||
return -1
|
QuotedContent: ToMessageContent(reply.Elements),
|
||||||
}
|
|
||||||
if err := bot.db.Put(binary.ToBytes(id), buf.Bytes(), nil); err != nil {
|
|
||||||
log.Warnf("记录聊天数据时出现错误: %v", err)
|
|
||||||
return -1
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return id
|
if err := db.InsertGroupMessage(msg); err != nil {
|
||||||
|
log.Warnf("记录聊天数据时出现错误: %v", err)
|
||||||
|
return -1
|
||||||
|
}
|
||||||
|
return msg.GlobalID
|
||||||
}
|
}
|
||||||
|
|
||||||
// InsertPrivateMessage 私聊消息入数据库
|
// InsertPrivateMessage 私聊消息入数据库
|
||||||
func (bot *CQBot) InsertPrivateMessage(m *message.PrivateMessage) int32 {
|
func (bot *CQBot) InsertPrivateMessage(m *message.PrivateMessage) int32 {
|
||||||
val := global.MSG{
|
t := &message.SendingMessage{Elements: m.Elements}
|
||||||
"message-id": m.Id,
|
replyElem := t.FirstOrNil(func(e message.IMessageElement) bool {
|
||||||
"internal-id": m.InternalId,
|
_, ok := e.(*message.ReplyElement)
|
||||||
"target": m.Target,
|
return ok
|
||||||
"sender": m.Sender,
|
})
|
||||||
"time": m.Time,
|
msg := &db.StoredPrivateMessage{
|
||||||
"message": ToStringMessage(m.Elements, 0, true),
|
ID: encodeMessageID(m.Sender.Uin, m.Id),
|
||||||
|
GlobalID: db.ToGlobalID(m.Sender.Uin, m.Id),
|
||||||
|
SubType: "normal",
|
||||||
|
Attribute: &db.StoredMessageAttribute{
|
||||||
|
MessageSeq: m.Id,
|
||||||
|
InternalID: m.InternalId,
|
||||||
|
SenderUin: m.Sender.Uin,
|
||||||
|
SenderName: m.Sender.DisplayName(),
|
||||||
|
Timestamp: int64(m.Time),
|
||||||
|
},
|
||||||
|
SessionUin: func() int64 {
|
||||||
|
if m.Sender.Uin == m.Self {
|
||||||
|
return m.Target
|
||||||
|
}
|
||||||
|
return m.Sender.Uin
|
||||||
|
}(),
|
||||||
|
TargetUin: m.Target,
|
||||||
|
Content: ToMessageContent(m.Elements),
|
||||||
}
|
}
|
||||||
id := toGlobalID(m.Sender.Uin, m.Id)
|
if replyElem != nil {
|
||||||
if bot.db != nil {
|
reply := replyElem.(*message.ReplyElement)
|
||||||
buf := global.NewBuffer()
|
msg.SubType = "quote"
|
||||||
defer global.PutBuffer(buf)
|
msg.QuotedInfo = &db.QuotedInfo{
|
||||||
if err := gob.NewEncoder(buf).Encode(val); err != nil {
|
PrevID: encodeMessageID(reply.Sender, reply.ReplySeq),
|
||||||
log.Warnf("记录聊天数据时出现错误: %v", err)
|
PrevGlobalID: db.ToGlobalID(reply.Sender, reply.ReplySeq),
|
||||||
return -1
|
QuotedContent: ToMessageContent(reply.Elements),
|
||||||
}
|
|
||||||
if err := bot.db.Put(binary.ToBytes(id), buf.Bytes(), nil); err != nil {
|
|
||||||
log.Warnf("记录聊天数据时出现错误: %v", err)
|
|
||||||
return -1
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return id
|
if err := db.InsertPrivateMessage(msg); err != nil {
|
||||||
|
log.Warnf("记录聊天数据时出现错误: %v", err)
|
||||||
|
return -1
|
||||||
|
}
|
||||||
|
return msg.GlobalID
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
// InsertTempMessage 临时消息入数据库
|
// InsertTempMessage 临时消息入数据库
|
||||||
func (bot *CQBot) InsertTempMessage(target int64, m *message.TempMessage) int32 {
|
func (bot *CQBot) InsertTempMessage(target int64, m *message.TempMessage) int32 {
|
||||||
val := global.MSG{
|
val := global.MSG{
|
||||||
@ -460,7 +472,7 @@ func (bot *CQBot) InsertTempMessage(target int64, m *message.TempMessage) int32
|
|||||||
"time": int32(time.Now().Unix()),
|
"time": int32(time.Now().Unix()),
|
||||||
"message": ToStringMessage(m.Elements, 0, true),
|
"message": ToStringMessage(m.Elements, 0, true),
|
||||||
}
|
}
|
||||||
id := toGlobalID(m.Sender.Uin, m.Id)
|
id := db.ToGlobalID(m.Sender.Uin, m.Id)
|
||||||
if bot.db != nil {
|
if bot.db != nil {
|
||||||
buf := global.NewBuffer()
|
buf := global.NewBuffer()
|
||||||
defer global.PutBuffer(buf)
|
defer global.PutBuffer(buf)
|
||||||
@ -475,17 +487,11 @@ func (bot *CQBot) InsertTempMessage(target int64, m *message.TempMessage) int32
|
|||||||
}
|
}
|
||||||
return id
|
return id
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
// toGlobalID 构建`code`-`msgID`的字符串并返回其CRC32 Checksum的值
|
|
||||||
func toGlobalID(code int64, msgID int32) int32 {
|
|
||||||
return int32(crc32.ChecksumIEEE([]byte(fmt.Sprintf("%d-%d", code, msgID))))
|
|
||||||
}
|
|
||||||
|
|
||||||
// Release 释放Bot实例
|
// Release 释放Bot实例
|
||||||
func (bot *CQBot) Release() {
|
func (bot *CQBot) Release() {
|
||||||
if bot.db != nil {
|
|
||||||
_ = bot.db.Close()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (bot *CQBot) dispatchEventMessage(m global.MSG) {
|
func (bot *CQBot) dispatchEventMessage(m global.MSG) {
|
||||||
@ -516,76 +522,6 @@ func (bot *CQBot) dispatchEventMessage(m global.MSG) {
|
|||||||
global.PutBuffer(event.buffer)
|
global.PutBuffer(event.buffer)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (bot *CQBot) formatGroupMessage(m *message.GroupMessage) global.MSG {
|
|
||||||
cqm := ToStringMessage(m.Elements, m.GroupCode, true)
|
|
||||||
gm := global.MSG{
|
|
||||||
"anonymous": nil,
|
|
||||||
"font": 0,
|
|
||||||
"group_id": m.GroupCode,
|
|
||||||
"message": ToFormattedMessage(m.Elements, m.GroupCode, false),
|
|
||||||
"message_type": "group",
|
|
||||||
"message_seq": m.Id,
|
|
||||||
"post_type": func() string {
|
|
||||||
if m.Sender.Uin == bot.Client.Uin {
|
|
||||||
return "message_sent"
|
|
||||||
}
|
|
||||||
return "message"
|
|
||||||
}(),
|
|
||||||
"raw_message": cqm,
|
|
||||||
"self_id": bot.Client.Uin,
|
|
||||||
"sender": global.MSG{
|
|
||||||
"age": 0,
|
|
||||||
"area": "",
|
|
||||||
"level": "",
|
|
||||||
"sex": "unknown",
|
|
||||||
"user_id": m.Sender.Uin,
|
|
||||||
},
|
|
||||||
"sub_type": "normal",
|
|
||||||
"time": m.Time,
|
|
||||||
"user_id": m.Sender.Uin,
|
|
||||||
}
|
|
||||||
if m.Sender.IsAnonymous() {
|
|
||||||
gm["anonymous"] = global.MSG{
|
|
||||||
"flag": m.Sender.AnonymousInfo.AnonymousId + "|" + m.Sender.AnonymousInfo.AnonymousNick,
|
|
||||||
"id": m.Sender.Uin,
|
|
||||||
"name": m.Sender.AnonymousInfo.AnonymousNick,
|
|
||||||
}
|
|
||||||
gm["sender"].(global.MSG)["nickname"] = "匿名消息"
|
|
||||||
gm["sub_type"] = "anonymous"
|
|
||||||
} else {
|
|
||||||
group := bot.Client.FindGroup(m.GroupCode)
|
|
||||||
mem := group.FindMember(m.Sender.Uin)
|
|
||||||
if mem == nil {
|
|
||||||
log.Warnf("获取 %v 成员信息失败,尝试刷新成员列表", m.Sender.Uin)
|
|
||||||
t, err := bot.Client.GetGroupMembers(group)
|
|
||||||
if err != nil {
|
|
||||||
log.Warnf("刷新群 %v 成员列表失败: %v", group.Uin, err)
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
group.Members = t
|
|
||||||
mem = group.FindMember(m.Sender.Uin)
|
|
||||||
if mem == nil {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ms := gm["sender"].(global.MSG)
|
|
||||||
switch mem.Permission {
|
|
||||||
case client.Owner:
|
|
||||||
ms["role"] = "owner"
|
|
||||||
case client.Administrator:
|
|
||||||
ms["role"] = "admin"
|
|
||||||
case client.Member:
|
|
||||||
ms["role"] = "member"
|
|
||||||
default:
|
|
||||||
ms["role"] = "member"
|
|
||||||
}
|
|
||||||
ms["nickname"] = mem.Nickname
|
|
||||||
ms["card"] = mem.CardName
|
|
||||||
ms["title"] = mem.SpecialTitle
|
|
||||||
}
|
|
||||||
return gm
|
|
||||||
}
|
|
||||||
|
|
||||||
func formatGroupName(group *client.GroupInfo) string {
|
func formatGroupName(group *client.GroupInfo) string {
|
||||||
return fmt.Sprintf("%s(%d)", group.Name, group.Code)
|
return fmt.Sprintf("%s(%d)", group.Name, group.Code)
|
||||||
}
|
}
|
||||||
@ -615,24 +551,10 @@ func (bot *CQBot) uploadMedia(raw message.IMessageElement, target int64, group b
|
|||||||
return nil, errors.New("unsupported message element type")
|
return nil, errors.New("unsupported message element type")
|
||||||
}
|
}
|
||||||
|
|
||||||
// IsLawfulImage 判断给定流是否为合法图片
|
// encodeMessageID 临时先这样, 暂时用不上
|
||||||
// 返回 是否合法, 实际Mime
|
func encodeMessageID(target int64, seq int32) string {
|
||||||
// 判断后会自动将 Stream Seek 至 0
|
return hex.EncodeToString(binary.NewWriterF(func(w *binary.Writer) {
|
||||||
func IsLawfulImage(r io.ReadSeeker) (bool, string) {
|
w.WriteUInt64(uint64(target))
|
||||||
if SkipMimeScan {
|
w.WriteUInt32(uint32(seq))
|
||||||
return true, ""
|
}))
|
||||||
}
|
|
||||||
_, _ = r.Seek(0, io.SeekStart)
|
|
||||||
defer func() { _, _ = r.Seek(0, io.SeekStart) }()
|
|
||||||
t, err := mimetype.DetectReader(r)
|
|
||||||
if err != nil {
|
|
||||||
log.Debugf("扫描 Mime 时出现问题: %v", err)
|
|
||||||
return false, ""
|
|
||||||
}
|
|
||||||
for _, lt := range lawfulImageTypes {
|
|
||||||
if t.Is(lt) {
|
|
||||||
return true, t.String()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false, t.String()
|
|
||||||
}
|
}
|
||||||
|
159
coolq/converter.go
Normal file
159
coolq/converter.go
Normal file
@ -0,0 +1,159 @@
|
|||||||
|
package coolq
|
||||||
|
|
||||||
|
import (
|
||||||
|
"strconv"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/MiraiGo/client"
|
||||||
|
"github.com/Mrs4s/MiraiGo/message"
|
||||||
|
log "github.com/sirupsen/logrus"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/go-cqhttp/global"
|
||||||
|
)
|
||||||
|
|
||||||
|
func convertGroupMemberInfo(groupID int64, m *client.GroupMemberInfo) global.MSG {
|
||||||
|
return global.MSG{
|
||||||
|
"group_id": groupID,
|
||||||
|
"user_id": m.Uin,
|
||||||
|
"nickname": m.Nickname,
|
||||||
|
"card": m.CardName,
|
||||||
|
"sex": func() string {
|
||||||
|
if m.Gender == 1 {
|
||||||
|
return "female"
|
||||||
|
} else if m.Gender == 0 {
|
||||||
|
return "male"
|
||||||
|
}
|
||||||
|
// unknown = 0xff
|
||||||
|
return "unknown"
|
||||||
|
}(),
|
||||||
|
"age": 0,
|
||||||
|
"area": "",
|
||||||
|
"join_time": m.JoinTime,
|
||||||
|
"last_sent_time": m.LastSpeakTime,
|
||||||
|
"shut_up_timestamp": m.ShutUpTimestamp,
|
||||||
|
"level": strconv.FormatInt(int64(m.Level), 10),
|
||||||
|
"role": func() string {
|
||||||
|
switch m.Permission {
|
||||||
|
case client.Owner:
|
||||||
|
return "owner"
|
||||||
|
case client.Administrator:
|
||||||
|
return "admin"
|
||||||
|
case client.Member:
|
||||||
|
return "member"
|
||||||
|
default:
|
||||||
|
return "member"
|
||||||
|
}
|
||||||
|
}(),
|
||||||
|
"unfriendly": false,
|
||||||
|
"title": m.SpecialTitle,
|
||||||
|
"title_expire_time": m.SpecialTitleExpireTime,
|
||||||
|
"card_changeable": false,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func convertGuildMemberInfo(m *client.GuildMemberInfo) global.MSG {
|
||||||
|
return global.MSG{
|
||||||
|
"tiny_id": m.TinyId,
|
||||||
|
"title": m.Title,
|
||||||
|
"nickname": m.Nickname,
|
||||||
|
"role": m.Role,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (bot *CQBot) formatGroupMessage(m *message.GroupMessage) global.MSG {
|
||||||
|
source := MessageSource{
|
||||||
|
SourceType: MessageSourceGroup,
|
||||||
|
PrimaryID: uint64(m.GroupCode),
|
||||||
|
}
|
||||||
|
cqm := ToStringMessage(m.Elements, source, true)
|
||||||
|
gm := global.MSG{
|
||||||
|
"anonymous": nil,
|
||||||
|
"font": 0,
|
||||||
|
"group_id": m.GroupCode,
|
||||||
|
"message": ToFormattedMessage(m.Elements, source, false),
|
||||||
|
"message_type": "group",
|
||||||
|
"message_seq": m.Id,
|
||||||
|
"post_type": func() string {
|
||||||
|
if m.Sender.Uin == bot.Client.Uin {
|
||||||
|
return "message_sent"
|
||||||
|
}
|
||||||
|
return "message"
|
||||||
|
}(),
|
||||||
|
"raw_message": cqm,
|
||||||
|
"self_id": bot.Client.Uin,
|
||||||
|
"sender": global.MSG{
|
||||||
|
"age": 0,
|
||||||
|
"area": "",
|
||||||
|
"level": "",
|
||||||
|
"sex": "unknown",
|
||||||
|
"user_id": m.Sender.Uin,
|
||||||
|
},
|
||||||
|
"sub_type": "normal",
|
||||||
|
"time": m.Time,
|
||||||
|
"user_id": m.Sender.Uin,
|
||||||
|
}
|
||||||
|
if m.Sender.IsAnonymous() {
|
||||||
|
gm["anonymous"] = global.MSG{
|
||||||
|
"flag": m.Sender.AnonymousInfo.AnonymousId + "|" + m.Sender.AnonymousInfo.AnonymousNick,
|
||||||
|
"id": m.Sender.Uin,
|
||||||
|
"name": m.Sender.AnonymousInfo.AnonymousNick,
|
||||||
|
}
|
||||||
|
gm["sender"].(global.MSG)["nickname"] = "匿名消息"
|
||||||
|
gm["sub_type"] = "anonymous"
|
||||||
|
} else {
|
||||||
|
group := bot.Client.FindGroup(m.GroupCode)
|
||||||
|
mem := group.FindMember(m.Sender.Uin)
|
||||||
|
if mem == nil {
|
||||||
|
log.Warnf("获取 %v 成员信息失败,尝试刷新成员列表", m.Sender.Uin)
|
||||||
|
t, err := bot.Client.GetGroupMembers(group)
|
||||||
|
if err != nil {
|
||||||
|
log.Warnf("刷新群 %v 成员列表失败: %v", group.Uin, err)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
group.Members = t
|
||||||
|
mem = group.FindMember(m.Sender.Uin)
|
||||||
|
if mem == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ms := gm["sender"].(global.MSG)
|
||||||
|
switch mem.Permission {
|
||||||
|
case client.Owner:
|
||||||
|
ms["role"] = "owner"
|
||||||
|
case client.Administrator:
|
||||||
|
ms["role"] = "admin"
|
||||||
|
case client.Member:
|
||||||
|
ms["role"] = "member"
|
||||||
|
default:
|
||||||
|
ms["role"] = "member"
|
||||||
|
}
|
||||||
|
ms["nickname"] = mem.Nickname
|
||||||
|
ms["card"] = mem.CardName
|
||||||
|
ms["title"] = mem.SpecialTitle
|
||||||
|
}
|
||||||
|
return gm
|
||||||
|
}
|
||||||
|
|
||||||
|
func convertChannelInfo(c *client.ChannelInfo) global.MSG {
|
||||||
|
slowModes := make([]global.MSG, 0, len(c.Meta.SlowModes))
|
||||||
|
for _, mode := range c.Meta.SlowModes {
|
||||||
|
slowModes = append(slowModes, global.MSG{
|
||||||
|
"slow_mode_key": mode.SlowModeKey,
|
||||||
|
"slow_mode_text": mode.SlowModeText,
|
||||||
|
"speak_frequency": mode.SpeakFrequency,
|
||||||
|
"slow_mode_circle": mode.SlowModeCircle,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return global.MSG{
|
||||||
|
"channel_id": c.ChannelId,
|
||||||
|
"channel_type": c.ChannelType,
|
||||||
|
"channel_name": c.ChannelName,
|
||||||
|
"owner_guild_id": c.Meta.GuildId,
|
||||||
|
"creator_id": c.Meta.CreatorUin,
|
||||||
|
"creator_tiny_id": c.Meta.CreatorTinyId,
|
||||||
|
"create_time": c.Meta.CreateTime,
|
||||||
|
"current_slow_mode": c.Meta.CurrentSlowMode,
|
||||||
|
"talk_permission": c.Meta.TalkPermission,
|
||||||
|
"visible_type": c.Meta.VisibleType,
|
||||||
|
"slow_modes": slowModes,
|
||||||
|
}
|
||||||
|
}
|
548
coolq/cqcode.go
548
coolq/cqcode.go
@ -20,12 +20,14 @@ import (
|
|||||||
"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"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/go-cqhttp/db"
|
||||||
"github.com/Mrs4s/go-cqhttp/global"
|
"github.com/Mrs4s/go-cqhttp/global"
|
||||||
"github.com/Mrs4s/go-cqhttp/global/codec"
|
"github.com/Mrs4s/go-cqhttp/internal/base"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/internal/cache"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/internal/param"
|
||||||
)
|
)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -34,34 +36,11 @@ var typeReg = regexp.MustCompile(`\[CQ:(\w+)`)
|
|||||||
var paramReg = regexp.MustCompile(`,([\w\-.]+?)=([^,\]]+)`)
|
var paramReg = regexp.MustCompile(`,([\w\-.]+?)=([^,\]]+)`)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// RemoveReplyAt 是否删除reply后的at
|
|
||||||
var RemoveReplyAt bool
|
|
||||||
|
|
||||||
// ExtraReplyData 是否上报额外reply信息
|
|
||||||
var ExtraReplyData bool
|
|
||||||
|
|
||||||
// IgnoreInvalidCQCode 是否忽略无效CQ码
|
|
||||||
var IgnoreInvalidCQCode = false
|
|
||||||
|
|
||||||
// SplitURL 是否分割URL
|
|
||||||
var SplitURL = false
|
|
||||||
|
|
||||||
const (
|
|
||||||
maxImageSize = 1024 * 1024 * 30 // 30MB
|
|
||||||
maxVideoSize = 1024 * 1024 * 100 // 100MB
|
|
||||||
)
|
|
||||||
|
|
||||||
// PokeElement 拍一拍
|
// PokeElement 拍一拍
|
||||||
type PokeElement struct {
|
type PokeElement struct {
|
||||||
Target int64
|
Target int64
|
||||||
}
|
}
|
||||||
|
|
||||||
// GiftElement 礼物
|
|
||||||
type GiftElement struct {
|
|
||||||
Target int64
|
|
||||||
GiftID message.GroupGift
|
|
||||||
}
|
|
||||||
|
|
||||||
// LocalImageElement 本地图片
|
// LocalImageElement 本地图片
|
||||||
type LocalImageElement struct {
|
type LocalImageElement struct {
|
||||||
Stream io.ReadSeeker
|
Stream io.ReadSeeker
|
||||||
@ -83,40 +62,40 @@ type LocalVideoElement struct {
|
|||||||
thumb io.ReadSeeker
|
thumb io.ReadSeeker
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// MessageSource 消息来源
|
||||||
|
// 如果为私聊或者群聊, PrimaryID 将代表群号/QQ号
|
||||||
|
// 如果为频道, PrimaryID 为 GuildID, SubID 为 ChannelID
|
||||||
|
type MessageSource struct {
|
||||||
|
SourceType MessageSourceType
|
||||||
|
PrimaryID uint64
|
||||||
|
SubID uint64
|
||||||
|
}
|
||||||
|
|
||||||
|
// MessageSourceType 消息来源类型
|
||||||
|
type MessageSourceType int32
|
||||||
|
|
||||||
|
// MessageSourceType 常量
|
||||||
|
const (
|
||||||
|
MessageSourcePrivate MessageSourceType = 0
|
||||||
|
MessageSourceGroup MessageSourceType = 1
|
||||||
|
MessageSourceGuildChannel MessageSourceType = 2
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
maxImageSize = 1024 * 1024 * 30 // 30MB
|
||||||
|
maxVideoSize = 1024 * 1024 * 100 // 100MB
|
||||||
|
)
|
||||||
|
|
||||||
// Type implements the message.IMessageElement.
|
// Type implements the message.IMessageElement.
|
||||||
func (e *LocalImageElement) Type() message.ElementType {
|
func (e *LocalImageElement) Type() message.ElementType {
|
||||||
return message.Image
|
return message.Image
|
||||||
}
|
}
|
||||||
|
|
||||||
// Type 获取元素类型ID
|
|
||||||
func (e *GiftElement) Type() message.ElementType {
|
|
||||||
// Make message.IMessageElement Happy
|
|
||||||
return message.At
|
|
||||||
}
|
|
||||||
|
|
||||||
// Type impl message.IMessageElement
|
// Type impl message.IMessageElement
|
||||||
func (e *LocalVideoElement) Type() message.ElementType {
|
func (e *LocalVideoElement) Type() message.ElementType {
|
||||||
return message.Video
|
return message.Video
|
||||||
}
|
}
|
||||||
|
|
||||||
// GiftID 礼物ID数组
|
|
||||||
var GiftID = [...]message.GroupGift{
|
|
||||||
message.SweetWink,
|
|
||||||
message.HappyCola,
|
|
||||||
message.LuckyBracelet,
|
|
||||||
message.Cappuccino,
|
|
||||||
message.CatWatch,
|
|
||||||
message.FleeceGloves,
|
|
||||||
message.RainbowCandy,
|
|
||||||
message.Stronger,
|
|
||||||
message.LoveMicrophone,
|
|
||||||
message.HoldingYourHand,
|
|
||||||
message.CuteCat,
|
|
||||||
message.MysteryMask,
|
|
||||||
message.ImBusy,
|
|
||||||
message.LoveMask,
|
|
||||||
}
|
|
||||||
|
|
||||||
// Type 获取元素类型ID
|
// Type 获取元素类型ID
|
||||||
func (e *PokeElement) Type() message.ElementType {
|
func (e *PokeElement) Type() message.ElementType {
|
||||||
// Make message.IMessageElement Happy
|
// Make message.IMessageElement Happy
|
||||||
@ -124,34 +103,37 @@ func (e *PokeElement) Type() message.ElementType {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ToArrayMessage 将消息元素数组转为MSG数组以用于消息上报
|
// ToArrayMessage 将消息元素数组转为MSG数组以用于消息上报
|
||||||
func ToArrayMessage(e []message.IMessageElement, groupID int64) (r []global.MSG) {
|
func ToArrayMessage(e []message.IMessageElement, source MessageSource) (r []global.MSG) {
|
||||||
r = make([]global.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)
|
||||||
return ok
|
return ok
|
||||||
})
|
})
|
||||||
if reply != nil {
|
if reply != nil && source.SourceType == MessageSourceGroup {
|
||||||
replyElem := reply.(*message.ReplyElement)
|
replyElem := reply.(*message.ReplyElement)
|
||||||
rid := groupID
|
rid := int64(source.PrimaryID)
|
||||||
if rid == 0 {
|
if rid == 0 {
|
||||||
rid = replyElem.Sender
|
rid = replyElem.Sender
|
||||||
}
|
}
|
||||||
if ExtraReplyData {
|
if replyElem.GroupID != 0 {
|
||||||
|
rid = replyElem.GroupID
|
||||||
|
}
|
||||||
|
if base.ExtraReplyData {
|
||||||
r = append(r, global.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(db.ToGlobalID(rid, replyElem.ReplySeq)), 10),
|
||||||
"seq": strconv.FormatInt(int64(replyElem.ReplySeq), 10),
|
"seq": strconv.FormatInt(int64(replyElem.ReplySeq), 10),
|
||||||
"qq": strconv.FormatInt(replyElem.Sender, 10),
|
"qq": strconv.FormatInt(replyElem.Sender, 10),
|
||||||
"time": strconv.FormatInt(int64(replyElem.Time), 10),
|
"time": strconv.FormatInt(int64(replyElem.Time), 10),
|
||||||
"text": ToStringMessage(replyElem.Elements, groupID),
|
"text": ToStringMessage(replyElem.Elements, source),
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
r = append(r, global.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(db.ToGlobalID(rid, replyElem.ReplySeq)), 10)},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -159,7 +141,7 @@ func ToArrayMessage(e []message.IMessageElement, groupID int64) (r []global.MSG)
|
|||||||
var m global.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) {
|
if base.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
|
||||||
@ -225,6 +207,12 @@ func ToArrayMessage(e []message.IMessageElement, groupID int64) (r []global.MSG)
|
|||||||
"type": "image",
|
"type": "image",
|
||||||
"data": data,
|
"data": data,
|
||||||
}
|
}
|
||||||
|
case *message.GuildImageElement:
|
||||||
|
data := map[string]string{"file": hex.EncodeToString(o.Md5) + ".image", "url": o.Url}
|
||||||
|
m = global.MSG{
|
||||||
|
"type": "image",
|
||||||
|
"data": data,
|
||||||
|
}
|
||||||
case *message.FriendImageElement:
|
case *message.FriendImageElement:
|
||||||
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}
|
||||||
if o.Flash {
|
if o.Flash {
|
||||||
@ -234,6 +222,16 @@ func ToArrayMessage(e []message.IMessageElement, groupID int64) (r []global.MSG)
|
|||||||
"type": "image",
|
"type": "image",
|
||||||
"data": data,
|
"data": data,
|
||||||
}
|
}
|
||||||
|
case *message.DiceElement:
|
||||||
|
m = global.MSG{
|
||||||
|
"type": "dice",
|
||||||
|
"data": map[string]string{"value": fmt.Sprint(o.Value)},
|
||||||
|
}
|
||||||
|
case *message.MarketFaceElement:
|
||||||
|
m = global.MSG{
|
||||||
|
"type": "text",
|
||||||
|
"data": map[string]string{"text": o.Name},
|
||||||
|
}
|
||||||
case *message.ServiceElement:
|
case *message.ServiceElement:
|
||||||
if isOk := strings.Contains(o.Content, "<?xml"); isOk {
|
if isOk := strings.Contains(o.Content, "<?xml"); isOk {
|
||||||
m = global.MSG{
|
m = global.MSG{
|
||||||
@ -257,7 +255,7 @@ func ToArrayMessage(e []message.IMessageElement, groupID int64) (r []global.MSG)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ToStringMessage 将消息元素数组转为字符串以用于消息上报
|
// ToStringMessage 将消息元素数组转为字符串以用于消息上报
|
||||||
func ToStringMessage(e []message.IMessageElement, groupID int64, isRaw ...bool) (r string) {
|
func ToStringMessage(e []message.IMessageElement, source MessageSource, isRaw ...bool) (r string) {
|
||||||
sb := global.NewBuffer()
|
sb := global.NewBuffer()
|
||||||
sb.Reset()
|
sb.Reset()
|
||||||
write := func(format string, a ...interface{}) {
|
write := func(format string, a ...interface{}) {
|
||||||
@ -273,25 +271,28 @@ func ToStringMessage(e []message.IMessageElement, groupID int64, isRaw ...bool)
|
|||||||
_, ok := e.(*message.ReplyElement)
|
_, ok := e.(*message.ReplyElement)
|
||||||
return ok
|
return ok
|
||||||
})
|
})
|
||||||
if reply != nil {
|
if reply != nil && source.SourceType == MessageSourceGroup {
|
||||||
replyElem := reply.(*message.ReplyElement)
|
replyElem := reply.(*message.ReplyElement)
|
||||||
rid := groupID
|
rid := int64(source.PrimaryID)
|
||||||
if rid == 0 {
|
if rid == 0 {
|
||||||
rid = replyElem.Sender
|
rid = replyElem.Sender
|
||||||
}
|
}
|
||||||
if ExtraReplyData {
|
if replyElem.GroupID != 0 {
|
||||||
|
rid = replyElem.GroupID
|
||||||
|
}
|
||||||
|
if base.ExtraReplyData {
|
||||||
write("[CQ:reply,id=%d,seq=%d,qq=%d,time=%d,text=%s]",
|
write("[CQ:reply,id=%d,seq=%d,qq=%d,time=%d,text=%s]",
|
||||||
toGlobalID(rid, replyElem.ReplySeq),
|
db.ToGlobalID(rid, replyElem.ReplySeq),
|
||||||
replyElem.ReplySeq, replyElem.Sender, replyElem.Time,
|
replyElem.ReplySeq, replyElem.Sender, replyElem.Time,
|
||||||
CQCodeEscapeValue(ToStringMessage(replyElem.Elements, groupID)))
|
CQCodeEscapeValue(ToStringMessage(replyElem.Elements, source)))
|
||||||
} else {
|
} else {
|
||||||
write("[CQ:reply,id=%d]", toGlobalID(rid, replyElem.ReplySeq))
|
write("[CQ:reply,id=%d]", db.ToGlobalID(rid, replyElem.ReplySeq))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for i, elem := range e {
|
for i, elem := range e {
|
||||||
switch o := elem.(type) {
|
switch o := elem.(type) {
|
||||||
case *message.ReplyElement:
|
case *message.ReplyElement:
|
||||||
if RemoveReplyAt && len(e) > i+1 {
|
if base.RemoveReplyAt && len(e) > i+1 {
|
||||||
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
|
||||||
@ -346,6 +347,12 @@ func ToStringMessage(e []message.IMessageElement, groupID int64, isRaw ...bool)
|
|||||||
} else {
|
} else {
|
||||||
write("[CQ:image,file=%s,url=%s%s]", hex.EncodeToString(o.Md5)+".image", CQCodeEscapeValue(o.Url), arg)
|
write("[CQ:image,file=%s,url=%s%s]", hex.EncodeToString(o.Md5)+".image", CQCodeEscapeValue(o.Url), arg)
|
||||||
}
|
}
|
||||||
|
case *message.GuildImageElement:
|
||||||
|
write("[CQ:image,file=%s,url=%s]", hex.EncodeToString(o.Md5)+".image", CQCodeEscapeValue(o.Url))
|
||||||
|
case *message.DiceElement:
|
||||||
|
write("[CQ:dice,value=%v]", o.Value)
|
||||||
|
case *message.MarketFaceElement:
|
||||||
|
sb.WriteString(o.Name)
|
||||||
case *message.ServiceElement:
|
case *message.ServiceElement:
|
||||||
if isOk := strings.Contains(o.Content, "<?xml"); isOk {
|
if isOk := strings.Contains(o.Content, "<?xml"); isOk {
|
||||||
write(`[CQ:xml,data=%s,resid=%d]`, CQCodeEscapeValue(o.Content), o.Id)
|
write(`[CQ:xml,data=%s,resid=%d]`, CQCodeEscapeValue(o.Content), o.Id)
|
||||||
@ -361,8 +368,116 @@ func ToStringMessage(e []message.IMessageElement, groupID int64, isRaw ...bool)
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ToMessageContent 将消息转换成 Content. 忽略 Reply
|
||||||
|
// 不同于 onebot 的 Array Message, 此函数转换出来的 Content 的 data 段为实际类型
|
||||||
|
// 方便数据库查询
|
||||||
|
func ToMessageContent(e []message.IMessageElement) (r []global.MSG) {
|
||||||
|
for _, elem := range e {
|
||||||
|
var m global.MSG
|
||||||
|
switch o := elem.(type) {
|
||||||
|
case *message.TextElement:
|
||||||
|
m = global.MSG{
|
||||||
|
"type": "text",
|
||||||
|
"data": global.MSG{"text": o.Content},
|
||||||
|
}
|
||||||
|
case *message.LightAppElement:
|
||||||
|
m = global.MSG{
|
||||||
|
"type": "json",
|
||||||
|
"data": global.MSG{"data": o.Content},
|
||||||
|
}
|
||||||
|
case *message.AtElement:
|
||||||
|
if o.Target == 0 {
|
||||||
|
m = global.MSG{
|
||||||
|
"type": "at",
|
||||||
|
"data": global.MSG{
|
||||||
|
"subType": "all",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
m = global.MSG{
|
||||||
|
"type": "at",
|
||||||
|
"data": global.MSG{
|
||||||
|
"subType": "user",
|
||||||
|
"target": o.Target,
|
||||||
|
"display": o.Display,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
case *message.RedBagElement:
|
||||||
|
m = global.MSG{
|
||||||
|
"type": "redbag",
|
||||||
|
"data": global.MSG{"title": o.Title, "type": o.MsgType},
|
||||||
|
}
|
||||||
|
case *message.ForwardElement:
|
||||||
|
m = global.MSG{
|
||||||
|
"type": "forward",
|
||||||
|
"data": global.MSG{"id": o.ResId},
|
||||||
|
}
|
||||||
|
case *message.FaceElement:
|
||||||
|
m = global.MSG{
|
||||||
|
"type": "face",
|
||||||
|
"data": global.MSG{"id": o.Index},
|
||||||
|
}
|
||||||
|
case *message.VoiceElement:
|
||||||
|
m = global.MSG{
|
||||||
|
"type": "record",
|
||||||
|
"data": global.MSG{"file": o.Name, "url": o.Url},
|
||||||
|
}
|
||||||
|
case *message.ShortVideoElement:
|
||||||
|
m = global.MSG{
|
||||||
|
"type": "video",
|
||||||
|
"data": global.MSG{"file": o.Name, "url": o.Url},
|
||||||
|
}
|
||||||
|
case *message.GroupImageElement:
|
||||||
|
data := global.MSG{"file": hex.EncodeToString(o.Md5) + ".image", "url": o.Url, "subType": uint32(o.ImageBizType)}
|
||||||
|
switch {
|
||||||
|
case o.Flash:
|
||||||
|
data["type"] = "flash"
|
||||||
|
case o.EffectID != 0:
|
||||||
|
data["type"] = "show"
|
||||||
|
data["id"] = o.EffectID
|
||||||
|
}
|
||||||
|
m = global.MSG{
|
||||||
|
"type": "image",
|
||||||
|
"data": data,
|
||||||
|
}
|
||||||
|
case *message.FriendImageElement:
|
||||||
|
data := global.MSG{"file": hex.EncodeToString(o.Md5) + ".image", "url": o.Url}
|
||||||
|
if o.Flash {
|
||||||
|
data["type"] = "flash"
|
||||||
|
}
|
||||||
|
m = global.MSG{
|
||||||
|
"type": "image",
|
||||||
|
"data": data,
|
||||||
|
}
|
||||||
|
case *message.DiceElement:
|
||||||
|
m = global.MSG{"type": "dice", "data": global.MSG{"value": o.Value}}
|
||||||
|
case *message.MarketFaceElement:
|
||||||
|
m = global.MSG{"type": "text", "data": global.MSG{"text": o.Name}}
|
||||||
|
case *message.ServiceElement:
|
||||||
|
if isOk := strings.Contains(o.Content, "<?xml"); isOk {
|
||||||
|
m = global.MSG{
|
||||||
|
"type": "xml",
|
||||||
|
"data": global.MSG{"data": o.Content, "resid": o.Id},
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
m = global.MSG{
|
||||||
|
"type": "json",
|
||||||
|
"data": global.MSG{"data": o.Content, "resid": o.Id},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if m != nil {
|
||||||
|
r = append(r, m)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
// ConvertStringMessage 将消息字符串转为消息元素数组
|
// ConvertStringMessage 将消息字符串转为消息元素数组
|
||||||
func (bot *CQBot) ConvertStringMessage(raw string, isGroup bool) (r []message.IMessageElement) {
|
func (bot *CQBot) ConvertStringMessage(raw string, sourceType MessageSourceType) (r []message.IMessageElement) {
|
||||||
var t, key string
|
var t, key string
|
||||||
d := map[string]string{}
|
d := map[string]string{}
|
||||||
|
|
||||||
@ -379,7 +494,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 global.MSG
|
var org db.StoredMessage
|
||||||
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")
|
||||||
@ -391,14 +506,14 @@ func (bot *CQBot) ConvertStringMessage(raw string, isGroup bool) (r []message.IM
|
|||||||
}
|
}
|
||||||
messageSeq, seqErr := strconv.ParseInt(d["seq"], 10, 64)
|
messageSeq, seqErr := strconv.ParseInt(d["seq"], 10, 64)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
org = bot.GetMessage(int32(mid))
|
org, _ = db.GetMessageByGlobalID(int32(mid))
|
||||||
}
|
}
|
||||||
if org != nil {
|
if org != nil {
|
||||||
elem = &message.ReplyElement{
|
elem = &message.ReplyElement{
|
||||||
ReplySeq: org["message-id"].(int32),
|
ReplySeq: org.GetAttribute().MessageSeq,
|
||||||
Sender: org["sender"].(message.Sender).Uin,
|
Sender: org.GetAttribute().SenderUin,
|
||||||
Time: org["time"].(int32),
|
Time: int32(org.GetAttribute().Timestamp),
|
||||||
Elements: bot.ConvertStringMessage(customText, isGroup),
|
Elements: bot.ConvertStringMessage(customText, sourceType),
|
||||||
}
|
}
|
||||||
if senderErr != nil {
|
if senderErr != nil {
|
||||||
elem.Sender = sender
|
elem.Sender = sender
|
||||||
@ -414,19 +529,19 @@ func (bot *CQBot) ConvertStringMessage(raw string, isGroup bool) (r []message.IM
|
|||||||
ReplySeq: int32(messageSeq),
|
ReplySeq: int32(messageSeq),
|
||||||
Sender: sender,
|
Sender: sender,
|
||||||
Time: int32(msgTime),
|
Time: int32(msgTime),
|
||||||
Elements: bot.ConvertStringMessage(customText, isGroup),
|
Elements: bot.ConvertStringMessage(customText, sourceType),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
r = append([]message.IMessageElement{elem}, r...)
|
r = append([]message.IMessageElement{elem}, r...)
|
||||||
case err == nil:
|
case err == nil:
|
||||||
org := bot.GetMessage(int32(mid))
|
org, err := db.GetMessageByGlobalID(int32(mid))
|
||||||
if org != nil {
|
if err == nil {
|
||||||
r = append([]message.IMessageElement{
|
r = append([]message.IMessageElement{
|
||||||
&message.ReplyElement{
|
&message.ReplyElement{
|
||||||
ReplySeq: org["message-id"].(int32),
|
ReplySeq: org.GetAttribute().MessageSeq,
|
||||||
Sender: org["sender"].(message.Sender).Uin,
|
Sender: org.GetAttribute().SenderUin,
|
||||||
Time: org["time"].(int32),
|
Time: int32(org.GetAttribute().Timestamp),
|
||||||
Elements: bot.ConvertStringMessage(org["message"].(string), isGroup),
|
Elements: bot.ConvertContentMessage(org.GetContent(), sourceType),
|
||||||
},
|
},
|
||||||
}, r...)
|
}, r...)
|
||||||
}
|
}
|
||||||
@ -447,14 +562,14 @@ func (bot *CQBot) ConvertStringMessage(raw string, isGroup bool) (r []message.IM
|
|||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
elem, err := bot.ToElement(t, d, isGroup)
|
elem, err := bot.ToElement(t, d, sourceType)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
org := "[CQ:" + t
|
org := "[CQ:" + t
|
||||||
for k, v := range d {
|
for k, v := range d {
|
||||||
org += "," + k + "=" + v
|
org += "," + k + "=" + v
|
||||||
}
|
}
|
||||||
org += "]"
|
org += "]"
|
||||||
if !IgnoreInvalidCQCode {
|
if !base.IgnoreInvalidCQCode {
|
||||||
log.Warnf("转换CQ码 %v 时出现错误: %v 将原样发送.", org, err)
|
log.Warnf("转换CQ码 %v 时出现错误: %v 将原样发送.", org, err)
|
||||||
r = append(r, message.NewText(org))
|
r = append(r, message.NewText(org))
|
||||||
} else {
|
} else {
|
||||||
@ -476,8 +591,8 @@ func (bot *CQBot) ConvertStringMessage(raw string, isGroup bool) (r []message.IM
|
|||||||
i++
|
i++
|
||||||
}
|
}
|
||||||
if i > 0 {
|
if i > 0 {
|
||||||
if SplitURL {
|
if base.SplitURL {
|
||||||
for _, txt := range global.SplitURL(CQCodeUnescapeText(raw[:i])) {
|
for _, txt := range param.SplitURL(CQCodeUnescapeText(raw[:i])) {
|
||||||
r = append(r, message.NewText(txt))
|
r = append(r, message.NewText(txt))
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -535,11 +650,11 @@ func (bot *CQBot) ConvertStringMessage(raw string, isGroup bool) (r []message.IM
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ConvertObjectMessage 将消息JSON对象转为消息元素数组
|
// ConvertObjectMessage 将消息JSON对象转为消息元素数组
|
||||||
func (bot *CQBot) ConvertObjectMessage(m gjson.Result, isGroup bool) (r []message.IMessageElement) {
|
func (bot *CQBot) ConvertObjectMessage(m gjson.Result, sourceType MessageSourceType) (r []message.IMessageElement) {
|
||||||
d := make(map[string]string)
|
d := make(map[string]string)
|
||||||
convertElem := func(e gjson.Result) {
|
convertElem := func(e gjson.Result) {
|
||||||
t := e.Get("type").Str
|
t := e.Get("type").Str
|
||||||
if t == "reply" && isGroup {
|
if t == "reply" && sourceType == MessageSourceGroup {
|
||||||
if len(r) > 0 {
|
if len(r) > 0 {
|
||||||
if _, ok := r[0].(*message.ReplyElement); ok {
|
if _, ok := r[0].(*message.ReplyElement); ok {
|
||||||
log.Warnf("警告: 一条信息只能包含一个 Reply 元素.")
|
log.Warnf("警告: 一条信息只能包含一个 Reply 元素.")
|
||||||
@ -551,7 +666,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 global.MSG
|
var org db.StoredMessage
|
||||||
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")
|
||||||
@ -563,14 +678,14 @@ func (bot *CQBot) ConvertObjectMessage(m gjson.Result, isGroup bool) (r []messag
|
|||||||
}
|
}
|
||||||
messageSeq, seqErr := strconv.ParseInt(e.Get("data.seq").String(), 10, 64)
|
messageSeq, seqErr := strconv.ParseInt(e.Get("data.seq").String(), 10, 64)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
org = bot.GetMessage(int32(mid))
|
org, _ = db.GetMessageByGlobalID(int32(mid))
|
||||||
}
|
}
|
||||||
if org != nil {
|
if org != nil {
|
||||||
elem = &message.ReplyElement{
|
elem = &message.ReplyElement{
|
||||||
ReplySeq: org["message-id"].(int32),
|
ReplySeq: org.GetAttribute().MessageSeq,
|
||||||
Sender: org["sender"].(message.Sender).Uin,
|
Sender: org.GetAttribute().SenderUin,
|
||||||
Time: org["time"].(int32),
|
Time: int32(org.GetAttribute().Timestamp),
|
||||||
Elements: bot.ConvertStringMessage(customText, isGroup),
|
Elements: bot.ConvertStringMessage(customText, sourceType),
|
||||||
}
|
}
|
||||||
if senderErr != nil {
|
if senderErr != nil {
|
||||||
elem.Sender = sender
|
elem.Sender = sender
|
||||||
@ -586,19 +701,19 @@ func (bot *CQBot) ConvertObjectMessage(m gjson.Result, isGroup bool) (r []messag
|
|||||||
ReplySeq: int32(messageSeq),
|
ReplySeq: int32(messageSeq),
|
||||||
Sender: sender,
|
Sender: sender,
|
||||||
Time: int32(msgTime),
|
Time: int32(msgTime),
|
||||||
Elements: bot.ConvertStringMessage(customText, isGroup),
|
Elements: bot.ConvertStringMessage(customText, sourceType),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
r = append([]message.IMessageElement{elem}, r...)
|
r = append([]message.IMessageElement{elem}, r...)
|
||||||
case err == nil:
|
case err == nil:
|
||||||
org := bot.GetMessage(int32(mid))
|
org, err := db.GetMessageByGlobalID(int32(mid))
|
||||||
if org != nil {
|
if err == nil {
|
||||||
r = append([]message.IMessageElement{
|
r = append([]message.IMessageElement{
|
||||||
&message.ReplyElement{
|
&message.ReplyElement{
|
||||||
ReplySeq: org["message-id"].(int32),
|
ReplySeq: org.GetAttribute().MessageSeq,
|
||||||
Sender: org["sender"].(message.Sender).Uin,
|
Sender: org.GetAttribute().SenderUin,
|
||||||
Time: org["time"].(int32),
|
Time: int32(org.GetAttribute().Timestamp),
|
||||||
Elements: bot.ConvertStringMessage(org["message"].(string), isGroup),
|
Elements: bot.ConvertContentMessage(org.GetContent(), sourceType),
|
||||||
},
|
},
|
||||||
}, r...)
|
}, r...)
|
||||||
}
|
}
|
||||||
@ -627,7 +742,7 @@ func (bot *CQBot) ConvertObjectMessage(m gjson.Result, isGroup bool) (r []messag
|
|||||||
d[key.Str] = value.String()
|
d[key.Str] = value.String()
|
||||||
return true
|
return true
|
||||||
})
|
})
|
||||||
elem, err := bot.ToElement(t, d, isGroup)
|
elem, err := bot.ToElement(t, d, sourceType)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Warnf("转换CQ码 (%v) 到MiraiGo Element时出现错误: %v 将忽略本段CQ码.", e.Raw, err)
|
log.Warnf("转换CQ码 (%v) 到MiraiGo Element时出现错误: %v 将忽略本段CQ码.", e.Raw, err)
|
||||||
return
|
return
|
||||||
@ -640,7 +755,7 @@ func (bot *CQBot) ConvertObjectMessage(m gjson.Result, isGroup bool) (r []messag
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if m.Type == gjson.String {
|
if m.Type == gjson.String {
|
||||||
return bot.ConvertStringMessage(m.Str, isGroup)
|
return bot.ConvertStringMessage(m.Str, sourceType)
|
||||||
}
|
}
|
||||||
if m.IsArray() {
|
if m.IsArray() {
|
||||||
m.ForEach(func(_, e gjson.Result) bool {
|
m.ForEach(func(_, e gjson.Result) bool {
|
||||||
@ -654,24 +769,93 @@ func (bot *CQBot) ConvertObjectMessage(m gjson.Result, isGroup bool) (r []messag
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ConvertContentMessage 将数据库用的 content 转换为消息元素数组
|
||||||
|
func (bot *CQBot) ConvertContentMessage(content []global.MSG, sourceType MessageSourceType) (r []message.IMessageElement) {
|
||||||
|
for _, c := range content {
|
||||||
|
data := c["data"].(global.MSG)
|
||||||
|
switch c["type"] {
|
||||||
|
case "text":
|
||||||
|
r = append(r, message.NewText(data["text"].(string)))
|
||||||
|
case "image":
|
||||||
|
e, err := bot.makeImageOrVideoElem(map[string]string{"file": data["file"].(string)}, false, sourceType)
|
||||||
|
if err != nil {
|
||||||
|
log.Warnf("make image elem error: %v", err)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
flash, id := false, int32(0)
|
||||||
|
if t, ok := data["type"]; ok {
|
||||||
|
if t.(string) == "flash" {
|
||||||
|
flash = true
|
||||||
|
}
|
||||||
|
if t.(string) == "show" {
|
||||||
|
id = data["id"].(int32)
|
||||||
|
if id < 40000 || id >= 40006 {
|
||||||
|
id = 40000
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
switch img := e.(type) {
|
||||||
|
case *LocalImageElement:
|
||||||
|
img.Flash = flash
|
||||||
|
img.EffectID = id
|
||||||
|
case *message.GroupImageElement:
|
||||||
|
img.Flash = flash
|
||||||
|
img.EffectID = id
|
||||||
|
img.ImageBizType = message.ImageBizType(data["subType"].(uint32))
|
||||||
|
case *message.FriendImageElement:
|
||||||
|
img.Flash = flash
|
||||||
|
}
|
||||||
|
r = append(r, e)
|
||||||
|
case "at":
|
||||||
|
switch data["subType"].(string) {
|
||||||
|
case "all":
|
||||||
|
r = append(r, message.NewAt(0))
|
||||||
|
case "user":
|
||||||
|
r = append(r, message.NewAt(data["target"].(int64), data["display"].(string)))
|
||||||
|
default:
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
case "redbag":
|
||||||
|
r = append(r, &message.RedBagElement{
|
||||||
|
MsgType: message.RedBagMessageType(data["type"].(int)),
|
||||||
|
Title: data["title"].(string),
|
||||||
|
})
|
||||||
|
case "forward":
|
||||||
|
r = append(r, &message.ForwardElement{
|
||||||
|
ResId: data["id"].(string),
|
||||||
|
})
|
||||||
|
case "face":
|
||||||
|
r = append(r, message.NewFace(data["id"].(int32)))
|
||||||
|
case "video":
|
||||||
|
e, err := bot.makeImageOrVideoElem(map[string]string{"file": data["file"].(string)}, true, sourceType)
|
||||||
|
if err != nil {
|
||||||
|
log.Warnf("make image elem error: %v", err)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
r = append(r, e)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
// ToElement 将解码后的CQCode转换为Element.
|
// ToElement 将解码后的CQCode转换为Element.
|
||||||
//
|
//
|
||||||
// 返回 interface{} 存在三种类型
|
// 返回 interface{} 存在三种类型
|
||||||
//
|
//
|
||||||
// message.IMessageElement []message.IMessageElement nil
|
// message.IMessageElement []message.IMessageElement nil
|
||||||
func (bot *CQBot) ToElement(t string, d map[string]string, isGroup bool) (m interface{}, err error) {
|
func (bot *CQBot) ToElement(t string, d map[string]string, sourceType MessageSourceType) (m interface{}, err error) {
|
||||||
switch t {
|
switch t {
|
||||||
case "text":
|
case "text":
|
||||||
if SplitURL {
|
if base.SplitURL {
|
||||||
var ret []message.IMessageElement
|
var ret []message.IMessageElement
|
||||||
for _, text := range global.SplitURL(d["text"]) {
|
for _, text := range param.SplitURL(d["text"]) {
|
||||||
ret = append(ret, message.NewText(text))
|
ret = append(ret, message.NewText(text))
|
||||||
}
|
}
|
||||||
return ret, nil
|
return ret, nil
|
||||||
}
|
}
|
||||||
return message.NewText(d["text"]), nil
|
return message.NewText(d["text"]), nil
|
||||||
case "image":
|
case "image":
|
||||||
img, err := bot.makeImageOrVideoElem(d, false, isGroup)
|
img, err := bot.makeImageOrVideoElem(d, false, sourceType)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
@ -704,16 +888,6 @@ func (bot *CQBot) ToElement(t string, d map[string]string, isGroup bool) (m inte
|
|||||||
case "poke":
|
case "poke":
|
||||||
t, _ := strconv.ParseInt(d["qq"], 10, 64)
|
t, _ := strconv.ParseInt(d["qq"], 10, 64)
|
||||||
return &PokeElement{Target: t}, nil
|
return &PokeElement{Target: t}, nil
|
||||||
case "gift":
|
|
||||||
if !isGroup {
|
|
||||||
return nil, errors.New("private gift unsupported") // no free private gift
|
|
||||||
}
|
|
||||||
t, _ := strconv.ParseInt(d["qq"], 10, 64)
|
|
||||||
id, _ := strconv.Atoi(d["id"])
|
|
||||||
if id < 0 || id >= 14 {
|
|
||||||
return nil, errors.New("invalid gift id")
|
|
||||||
}
|
|
||||||
return &GiftElement{Target: t, GiftID: GiftID[id]}, nil
|
|
||||||
case "tts":
|
case "tts":
|
||||||
defer func() {
|
defer func() {
|
||||||
if r := recover(); r != nil {
|
if r := recover(); r != nil {
|
||||||
@ -725,7 +899,7 @@ func (bot *CQBot) ToElement(t string, d map[string]string, isGroup bool) (m inte
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return &message.VoiceElement{Data: codec.RecodeTo24K(data)}, nil
|
return &message.VoiceElement{Data: base.ResampleSilk(data)}, nil
|
||||||
case "record":
|
case "record":
|
||||||
f := d["file"]
|
f := d["file"]
|
||||||
data, err := global.FindFile(f, d["cache"], global.VoicePath)
|
data, err := global.FindFile(f, d["cache"], global.VoicePath)
|
||||||
@ -735,17 +909,10 @@ func (bot *CQBot) ToElement(t string, d map[string]string, isGroup bool) (m inte
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
if !SkipMimeScan && !global.IsAMRorSILK(data) {
|
if !global.IsAMRorSILK(data) {
|
||||||
mt := mimetype.Detect(data)
|
lawful, mt := base.IsLawfulAudio(bytes.NewReader(data))
|
||||||
lawful := false
|
|
||||||
for _, lt := range lawfulAudioTypes {
|
|
||||||
if mt.Is(lt) {
|
|
||||||
lawful = true
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if !lawful {
|
if !lawful {
|
||||||
return nil, errors.New("audio type error: " + mt.String())
|
return nil, errors.New("audio type error: " + mt)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if !global.IsAMRorSILK(data) {
|
if !global.IsAMRorSILK(data) {
|
||||||
@ -761,8 +928,16 @@ func (bot *CQBot) ToElement(t string, d map[string]string, isGroup bool) (m inte
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return message.NewFace(int32(id)), nil
|
return message.NewFace(int32(id)), nil
|
||||||
|
case "mention":
|
||||||
|
if !base.AcceptOneBot12Message {
|
||||||
|
return nil, errors.New("unsupported onebot 12 style")
|
||||||
|
}
|
||||||
|
fallthrough
|
||||||
case "at":
|
case "at":
|
||||||
qq := d["qq"]
|
qq := d["qq"]
|
||||||
|
if base.AcceptOneBot12Message && qq == "" {
|
||||||
|
qq = d["user_id"]
|
||||||
|
}
|
||||||
if qq == "all" {
|
if qq == "all" {
|
||||||
return message.AtAll(), nil
|
return message.AtAll(), nil
|
||||||
}
|
}
|
||||||
@ -861,6 +1036,13 @@ func (bot *CQBot) ToElement(t string, d map[string]string, isGroup bool) (m inte
|
|||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
return nil, errors.New("unsupported music type: " + d["type"])
|
return nil, errors.New("unsupported music type: " + d["type"])
|
||||||
|
case "dice":
|
||||||
|
value := d["value"]
|
||||||
|
i, _ := strconv.ParseInt(value, 10, 64)
|
||||||
|
if i < 0 || i > 6 {
|
||||||
|
return nil, errors.New("invalid dice value " + value)
|
||||||
|
}
|
||||||
|
return message.NewDice(int32(i)), nil
|
||||||
case "xml":
|
case "xml":
|
||||||
resID := d["resid"]
|
resID := d["resid"]
|
||||||
template := CQCodeEscapeValue(d["data"])
|
template := CQCodeEscapeValue(d["data"])
|
||||||
@ -893,17 +1075,13 @@ func (bot *CQBot) ToElement(t string, d map[string]string, isGroup bool) (m inte
|
|||||||
maxWidth := parseIntWithDefault("maxwidth", 500)
|
maxWidth := parseIntWithDefault("maxwidth", 500)
|
||||||
minHeight := parseIntWithDefault("minheight", 200)
|
minHeight := parseIntWithDefault("minheight", 200)
|
||||||
maxHeight := parseIntWithDefault("maxheight", 1000)
|
maxHeight := parseIntWithDefault("maxheight", 1000)
|
||||||
img, err := bot.makeImageOrVideoElem(d, false, isGroup)
|
img, err := bot.makeImageOrVideoElem(d, false, sourceType)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, errors.New("send cardimage faild")
|
return nil, errors.New("send cardimage faild")
|
||||||
}
|
}
|
||||||
return bot.makeShowPic(img, source, brief, icon, minWidth, minHeight, maxWidth, maxHeight, isGroup)
|
return bot.makeShowPic(img, source, brief, icon, minWidth, minHeight, maxWidth, maxHeight, sourceType == MessageSourceGroup)
|
||||||
case "video":
|
case "video":
|
||||||
cache := d["cache"]
|
file, err := bot.makeImageOrVideoElem(d, true, sourceType)
|
||||||
if cache == "" {
|
|
||||||
cache = "1"
|
|
||||||
}
|
|
||||||
file, err := bot.makeImageOrVideoElem(d, true, isGroup)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
@ -916,7 +1094,7 @@ func (bot *CQBot) ToElement(t string, d map[string]string, isGroup bool) (m inte
|
|||||||
}
|
}
|
||||||
var data []byte
|
var data []byte
|
||||||
if cover, ok := d["cover"]; ok {
|
if cover, ok := d["cover"]; ok {
|
||||||
data, _ = global.FindFile(cover, cache, global.ImagePath)
|
data, _ = global.FindFile(cover, d["cache"], global.ImagePath)
|
||||||
} else {
|
} else {
|
||||||
_ = global.ExtractCover(v.File, v.File+".jpg")
|
_ = global.ExtractCover(v.File, v.File+".jpg")
|
||||||
data, _ = os.ReadFile(v.File + ".jpg")
|
data, _ = os.ReadFile(v.File + ".jpg")
|
||||||
@ -937,7 +1115,7 @@ func (bot *CQBot) ToElement(t string, d map[string]string, isGroup bool) (m inte
|
|||||||
_, _ = video.Seek(0, io.SeekStart)
|
_, _ = video.Seek(0, io.SeekStart)
|
||||||
hash, _ := utils.ComputeMd5AndLength(video)
|
hash, _ := utils.ComputeMd5AndLength(video)
|
||||||
cacheFile := path.Join(global.CachePath, hex.EncodeToString(hash)+".mp4")
|
cacheFile := path.Join(global.CachePath, hex.EncodeToString(hash)+".mp4")
|
||||||
if global.PathExists(cacheFile) && cache == "1" {
|
if global.PathExists(cacheFile) && (d["cache"] == "" || d["cache"] == "1") {
|
||||||
goto ok
|
goto ok
|
||||||
}
|
}
|
||||||
err = global.EncodeMP4(v.File, cacheFile)
|
err = global.EncodeMP4(v.File, cacheFile)
|
||||||
@ -1057,26 +1235,19 @@ func CQCodeUnescapeValue(content string) string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// makeImageOrVideoElem 图片 elem 生成器,单独拎出来,用于公用
|
// makeImageOrVideoElem 图片 elem 生成器,单独拎出来,用于公用
|
||||||
func (bot *CQBot) makeImageOrVideoElem(d map[string]string, video, group bool) (message.IMessageElement, error) {
|
func (bot *CQBot) makeImageOrVideoElem(d map[string]string, video bool, sourceType MessageSourceType) (message.IMessageElement, error) {
|
||||||
f := d["file"]
|
f := d["file"]
|
||||||
if strings.HasPrefix(f, "http") {
|
if strings.HasPrefix(f, "http") {
|
||||||
cache := d["cache"]
|
|
||||||
c := d["c"]
|
|
||||||
if cache == "" {
|
|
||||||
cache = "1"
|
|
||||||
}
|
|
||||||
hash := md5.Sum([]byte(f))
|
hash := md5.Sum([]byte(f))
|
||||||
cacheFile := path.Join(global.CachePath, hex.EncodeToString(hash[:])+".cache")
|
cacheFile := path.Join(global.CachePath, hex.EncodeToString(hash[:])+".cache")
|
||||||
maxSize := func() int64 {
|
maxSize := int64(maxImageSize)
|
||||||
if video {
|
if video {
|
||||||
return maxVideoSize
|
maxSize = maxVideoSize
|
||||||
}
|
}
|
||||||
return maxImageSize
|
thread, _ := strconv.Atoi(d["c"])
|
||||||
}()
|
|
||||||
thread, _ := strconv.Atoi(c)
|
|
||||||
exist := global.PathExists(cacheFile)
|
exist := global.PathExists(cacheFile)
|
||||||
if exist && cache == "1" {
|
if exist && (d["cache"] == "" || d["cache"] == "1") {
|
||||||
goto hasCacheFile
|
goto useCacheFile
|
||||||
}
|
}
|
||||||
if exist {
|
if exist {
|
||||||
_ = os.Remove(cacheFile)
|
_ = os.Remove(cacheFile)
|
||||||
@ -1084,7 +1255,7 @@ func (bot *CQBot) makeImageOrVideoElem(d map[string]string, video, group bool) (
|
|||||||
if err := global.DownloadFileMultiThreading(f, cacheFile, maxSize, thread, nil); err != nil {
|
if err := global.DownloadFileMultiThreading(f, cacheFile, maxSize, thread, nil); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
hasCacheFile:
|
useCacheFile:
|
||||||
if video {
|
if video {
|
||||||
return &LocalVideoElement{File: cacheFile}, nil
|
return &LocalVideoElement{File: cacheFile}, nil
|
||||||
}
|
}
|
||||||
@ -1117,7 +1288,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 := global.Base64DecodeString(strings.TrimPrefix(f, "base64://"))
|
b, err := param.Base64DecodeString(strings.TrimPrefix(f, "base64://"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
@ -1125,23 +1296,38 @@ func (bot *CQBot) makeImageOrVideoElem(d map[string]string, video, group bool) (
|
|||||||
}
|
}
|
||||||
rawPath := path.Join(global.ImagePath, f)
|
rawPath := path.Join(global.ImagePath, f)
|
||||||
if video {
|
if video {
|
||||||
|
if strings.HasSuffix(f, ".video") && cache.EnableCacheDB {
|
||||||
|
hash, err := hex.DecodeString(strings.TrimSuffix(f, ".video"))
|
||||||
|
if err == nil {
|
||||||
|
if b := cache.Video.Get(hash); b != nil {
|
||||||
|
return bot.readVideoCache(b), nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
rawPath = path.Join(global.VideoPath, f)
|
rawPath = path.Join(global.VideoPath, f)
|
||||||
if !global.PathExists(rawPath) {
|
if !global.PathExists(rawPath) {
|
||||||
return nil, errors.New("invalid video")
|
return nil, errors.New("invalid video")
|
||||||
}
|
}
|
||||||
if path.Ext(rawPath) == ".video" {
|
if path.Ext(rawPath) != ".video" {
|
||||||
b, _ := os.ReadFile(rawPath)
|
return &LocalVideoElement{File: rawPath}, nil
|
||||||
r := binary.NewReader(b)
|
}
|
||||||
return &message.ShortVideoElement{ // todo 检查缓存是否有效
|
b, _ := os.ReadFile(rawPath)
|
||||||
Md5: r.ReadBytes(16),
|
return bot.readVideoCache(b), nil
|
||||||
ThumbMd5: r.ReadBytes(16),
|
}
|
||||||
Size: r.ReadInt32(),
|
// 目前频道内上传的图片均无法被查询到, 需要单独处理
|
||||||
ThumbSize: r.ReadInt32(),
|
if sourceType == MessageSourceGuildChannel {
|
||||||
Name: r.ReadString(),
|
cacheFile := path.Join(global.ImagePath, "guild-images", f)
|
||||||
Uuid: r.ReadAvailable(),
|
if global.PathExists(cacheFile) {
|
||||||
}, nil
|
return &LocalImageElement{File: cacheFile}, nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if strings.HasSuffix(f, ".image") && cache.EnableCacheDB {
|
||||||
|
hash, err := hex.DecodeString(strings.TrimSuffix(f, ".image"))
|
||||||
|
if err == nil {
|
||||||
|
if b := cache.Image.Get(hash); b != nil {
|
||||||
|
return bot.readImageCache(b, sourceType)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return &LocalVideoElement{File: rawPath}, nil
|
|
||||||
}
|
}
|
||||||
exist := global.PathExists(rawPath)
|
exist := global.PathExists(rawPath)
|
||||||
if !exist && global.PathExists(path.Join(global.ImagePathOld, f)) {
|
if !exist && global.PathExists(path.Join(global.ImagePathOld, f)) {
|
||||||
@ -1150,7 +1336,7 @@ func (bot *CQBot) makeImageOrVideoElem(d map[string]string, video, group bool) (
|
|||||||
}
|
}
|
||||||
if !exist {
|
if !exist {
|
||||||
if d["url"] != "" {
|
if d["url"] != "" {
|
||||||
return bot.makeImageOrVideoElem(map[string]string{"file": d["url"]}, false, group)
|
return bot.makeImageOrVideoElem(map[string]string{"file": d["url"]}, false, sourceType)
|
||||||
}
|
}
|
||||||
return nil, errors.New("invalid image")
|
return nil, errors.New("invalid image")
|
||||||
}
|
}
|
||||||
@ -1161,8 +1347,13 @@ func (bot *CQBot) makeImageOrVideoElem(d map[string]string, video, group bool) (
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
return bot.readImageCache(b, sourceType)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (bot *CQBot) readImageCache(b []byte, sourceType MessageSourceType) (message.IMessageElement, error) {
|
||||||
|
var err error
|
||||||
if len(b) < 20 {
|
if len(b) < 20 {
|
||||||
return nil, errors.New("invalid local file")
|
return nil, errors.New("invalid cache")
|
||||||
}
|
}
|
||||||
r := binary.NewReader(b)
|
r := binary.NewReader(b)
|
||||||
hash := r.ReadBytes(16)
|
hash := r.ReadBytes(16)
|
||||||
@ -1171,7 +1362,7 @@ func (bot *CQBot) makeImageOrVideoElem(d map[string]string, video, group bool) (
|
|||||||
imageURL := r.ReadString()
|
imageURL := r.ReadString()
|
||||||
if size == 0 {
|
if size == 0 {
|
||||||
if imageURL != "" {
|
if imageURL != "" {
|
||||||
return bot.makeImageOrVideoElem(map[string]string{"file": imageURL}, false, group)
|
return bot.makeImageOrVideoElem(map[string]string{"file": imageURL}, false, sourceType)
|
||||||
}
|
}
|
||||||
return nil, errors.New("img size is 0")
|
return nil, errors.New("img size is 0")
|
||||||
}
|
}
|
||||||
@ -1179,21 +1370,42 @@ func (bot *CQBot) makeImageOrVideoElem(d map[string]string, video, group bool) (
|
|||||||
return nil, errors.New("invalid hash")
|
return nil, errors.New("invalid hash")
|
||||||
}
|
}
|
||||||
var rsp message.IMessageElement
|
var rsp message.IMessageElement
|
||||||
if group {
|
if sourceType == MessageSourceGroup {
|
||||||
rsp, err = bot.Client.QueryGroupImage(int64(rand.Uint32()), hash, size)
|
rsp, err = bot.Client.QueryGroupImage(int64(rand.Uint32()), hash, size)
|
||||||
goto ok
|
goto ok
|
||||||
}
|
}
|
||||||
|
if sourceType == MessageSourceGuildChannel {
|
||||||
|
if len(bot.Client.GuildService.Guilds) == 0 {
|
||||||
|
err = errors.New("cannot query guild image: not any joined guild")
|
||||||
|
goto ok
|
||||||
|
}
|
||||||
|
guild := bot.Client.GuildService.Guilds[0]
|
||||||
|
rsp, err = bot.Client.GuildService.QueryImage(guild.GuildId, guild.Channels[0].ChannelId, hash, uint64(size))
|
||||||
|
goto ok
|
||||||
|
}
|
||||||
rsp, err = bot.Client.QueryFriendImage(int64(rand.Uint32()), hash, size)
|
rsp, err = bot.Client.QueryFriendImage(int64(rand.Uint32()), hash, size)
|
||||||
ok:
|
ok:
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if imageURL != "" {
|
if imageURL != "" {
|
||||||
return bot.makeImageOrVideoElem(map[string]string{"file": imageURL}, false, group)
|
return bot.makeImageOrVideoElem(map[string]string{"file": imageURL}, false, sourceType)
|
||||||
}
|
}
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return rsp, nil
|
return rsp, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (bot *CQBot) readVideoCache(b []byte) message.IMessageElement {
|
||||||
|
r := binary.NewReader(b)
|
||||||
|
return &message.ShortVideoElement{ // todo 检查缓存是否有效
|
||||||
|
Md5: r.ReadBytes(16),
|
||||||
|
ThumbMd5: r.ReadBytes(16),
|
||||||
|
Size: r.ReadInt32(),
|
||||||
|
ThumbSize: r.ReadInt32(),
|
||||||
|
Name: r.ReadString(),
|
||||||
|
Uuid: r.ReadAvailable(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// makeShowPic 一种xml 方式发送的群消息图片
|
// makeShowPic 一种xml 方式发送的群消息图片
|
||||||
func (bot *CQBot) makeShowPic(elem message.IMessageElement, source string, brief string, icon string, minWidth int64, minHeight int64, maxWidth int64, maxHeight int64, group bool) ([]message.IMessageElement, error) {
|
func (bot *CQBot) makeShowPic(elem message.IMessageElement, source string, brief string, icon string, minWidth int64, minHeight int64, maxWidth int64, maxHeight int64, group bool) ([]message.IMessageElement, error) {
|
||||||
xml := ""
|
xml := ""
|
||||||
|
@ -13,7 +13,7 @@ import (
|
|||||||
var bot = CQBot{}
|
var bot = CQBot{}
|
||||||
|
|
||||||
func TestCQBot_ConvertStringMessage(t *testing.T) {
|
func TestCQBot_ConvertStringMessage(t *testing.T) {
|
||||||
for _, v := range bot.ConvertStringMessage(`[CQ:face,id=115,text=111][CQ:face,id=217]] [CQ:text,text=123] [`, false) {
|
for _, v := range bot.ConvertStringMessage(`[CQ:face,id=115,text=111][CQ:face,id=217]] [CQ:text,text=123] [`, MessageSourcePrivate) {
|
||||||
fmt.Println(v)
|
fmt.Println(v)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -25,14 +25,14 @@ var (
|
|||||||
|
|
||||||
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++ {
|
||||||
bot.ConvertStringMessage(bench, false)
|
bot.ConvertStringMessage(bench, MessageSourcePrivate)
|
||||||
}
|
}
|
||||||
b.SetBytes(int64(len(bench)))
|
b.SetBytes(int64(len(bench)))
|
||||||
}
|
}
|
||||||
|
|
||||||
func BenchmarkCQBot_ConvertObjectMessage(b *testing.B) {
|
func BenchmarkCQBot_ConvertObjectMessage(b *testing.B) {
|
||||||
for i := 0; i < b.N; i++ {
|
for i := 0; i < b.N; i++ {
|
||||||
bot.ConvertObjectMessage(benchArray, false)
|
bot.ConvertObjectMessage(benchArray, MessageSourcePrivate)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -41,7 +41,7 @@ const bText = `123456789[]&987654321[]&987654321[]&987654321[]&987654321[]&98765
|
|||||||
func BenchmarkCQCodeEscapeText(b *testing.B) {
|
func BenchmarkCQCodeEscapeText(b *testing.B) {
|
||||||
for i := 0; i < b.N; i++ {
|
for i := 0; i < b.N; i++ {
|
||||||
ret := bText
|
ret := bText
|
||||||
ret = CQCodeEscapeText(ret)
|
CQCodeEscapeText(ret)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -50,7 +50,7 @@ func BenchmarkCQCodeEscapeTextBefore(b *testing.B) {
|
|||||||
ret := bText
|
ret := bText
|
||||||
ret = strings.ReplaceAll(ret, "&", "&")
|
ret = strings.ReplaceAll(ret, "&", "&")
|
||||||
ret = strings.ReplaceAll(ret, "[", "[")
|
ret = strings.ReplaceAll(ret, "[", "[")
|
||||||
ret = strings.ReplaceAll(ret, "]", "]")
|
strings.ReplaceAll(ret, "]", "]")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
303
coolq/event.go
303
coolq/event.go
@ -2,44 +2,42 @@ package coolq
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/Mrs4s/go-cqhttp/global"
|
|
||||||
|
|
||||||
"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"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/go-cqhttp/db"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/global"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/internal/base"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/internal/cache"
|
||||||
)
|
)
|
||||||
|
|
||||||
var format = "string"
|
|
||||||
|
|
||||||
// SetMessageFormat 设置消息上报格式,默认为string
|
|
||||||
func SetMessageFormat(f string) {
|
|
||||||
format = f
|
|
||||||
}
|
|
||||||
|
|
||||||
// ToFormattedMessage 将给定[]message.IMessageElement转换为通过coolq.SetMessageFormat所定义的消息上报格式
|
// ToFormattedMessage 将给定[]message.IMessageElement转换为通过coolq.SetMessageFormat所定义的消息上报格式
|
||||||
func ToFormattedMessage(e []message.IMessageElement, groupID int64, isRaw ...bool) (r interface{}) {
|
func ToFormattedMessage(e []message.IMessageElement, source MessageSource, isRaw ...bool) (r interface{}) {
|
||||||
if format == "string" {
|
if base.PostFormat == "string" {
|
||||||
r = ToStringMessage(e, groupID, isRaw...)
|
r = ToStringMessage(e, source, isRaw...)
|
||||||
} else if format == "array" {
|
} else if base.PostFormat == "array" {
|
||||||
r = ToArrayMessage(e, groupID)
|
r = ToArrayMessage(e, source)
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
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, m.Sender.Uin)
|
||||||
cqm := ToStringMessage(m.Elements, 0, true)
|
source := MessageSource{
|
||||||
id := m.Id
|
SourceType: MessageSourcePrivate,
|
||||||
if bot.db != nil {
|
PrimaryID: uint64(m.Sender.Uin),
|
||||||
id = bot.InsertPrivateMessage(m)
|
|
||||||
}
|
}
|
||||||
|
cqm := ToStringMessage(m.Elements, source, true)
|
||||||
|
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 := global.MSG{
|
fm := global.MSG{
|
||||||
"post_type": func() string {
|
"post_type": func() string {
|
||||||
@ -53,7 +51,7 @@ func (bot *CQBot) privateMessageEvent(c *client.QQClient, m *message.PrivateMess
|
|||||||
"message_id": id,
|
"message_id": id,
|
||||||
"user_id": m.Sender.Uin,
|
"user_id": m.Sender.Uin,
|
||||||
"target_id": m.Target,
|
"target_id": m.Target,
|
||||||
"message": ToFormattedMessage(m.Elements, 0, false),
|
"message": ToFormattedMessage(m.Elements, source, false),
|
||||||
"raw_message": cqm,
|
"raw_message": cqm,
|
||||||
"font": 0,
|
"font": 0,
|
||||||
"self_id": c.Uin,
|
"self_id": c.Uin,
|
||||||
@ -69,7 +67,7 @@ func (bot *CQBot) privateMessageEvent(c *client.QQClient, m *message.PrivateMess
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (bot *CQBot) groupMessageEvent(c *client.QQClient, m *message.GroupMessage) {
|
func (bot *CQBot) groupMessageEvent(c *client.QQClient, m *message.GroupMessage) {
|
||||||
bot.checkMedia(m.Elements)
|
bot.checkMedia(m.Elements, m.GroupCode)
|
||||||
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)
|
||||||
@ -91,11 +89,12 @@ func (bot *CQBot) groupMessageEvent(c *client.QQClient, m *message.GroupMessage)
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
cqm := ToStringMessage(m.Elements, m.GroupCode, true)
|
source := MessageSource{
|
||||||
id := m.Id
|
SourceType: MessageSourceGroup,
|
||||||
if bot.db != nil {
|
PrimaryID: uint64(m.GroupCode),
|
||||||
id = bot.InsertGroupMessage(m)
|
|
||||||
}
|
}
|
||||||
|
cqm := ToStringMessage(m.Elements, source, true)
|
||||||
|
id := bot.InsertGroupMessage(m)
|
||||||
log.Infof("收到群 %v(%v) 内 %v(%v) 的消息: %v (%v)", m.GroupName, m.GroupCode, m.Sender.DisplayName(), m.Sender.Uin, cqm, id)
|
log.Infof("收到群 %v(%v) 内 %v(%v) 的消息: %v (%v)", m.GroupName, m.GroupCode, m.Sender.DisplayName(), m.Sender.Uin, cqm, id)
|
||||||
gm := bot.formatGroupMessage(m)
|
gm := bot.formatGroupMessage(m)
|
||||||
if gm == nil {
|
if gm == nil {
|
||||||
@ -107,13 +106,18 @@ func (bot *CQBot) groupMessageEvent(c *client.QQClient, m *message.GroupMessage)
|
|||||||
|
|
||||||
func (bot *CQBot) tempMessageEvent(c *client.QQClient, e *client.TempMessageEvent) {
|
func (bot *CQBot) tempMessageEvent(c *client.QQClient, e *client.TempMessageEvent) {
|
||||||
m := e.Message
|
m := e.Message
|
||||||
bot.checkMedia(m.Elements)
|
bot.checkMedia(m.Elements, m.Sender.Uin)
|
||||||
cqm := ToStringMessage(m.Elements, 0, true)
|
source := MessageSource{
|
||||||
|
SourceType: MessageSourcePrivate,
|
||||||
|
PrimaryID: uint64(e.Session.Sender),
|
||||||
|
}
|
||||||
|
cqm := ToStringMessage(m.Elements, source, true)
|
||||||
bot.tempSessionCache.Store(m.Sender.Uin, e.Session)
|
bot.tempSessionCache.Store(m.Sender.Uin, e.Session)
|
||||||
id := m.Id
|
id := m.Id
|
||||||
if bot.db != nil {
|
// todo(Mrs4s)
|
||||||
id = bot.InsertTempMessage(m.Sender.Uin, m)
|
// if bot.db != nil { // nolint
|
||||||
}
|
// 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 := global.MSG{
|
tm := global.MSG{
|
||||||
"post_type": "message",
|
"post_type": "message",
|
||||||
@ -122,7 +126,7 @@ func (bot *CQBot) tempMessageEvent(c *client.QQClient, e *client.TempMessageEven
|
|||||||
"temp_source": e.Session.Source,
|
"temp_source": e.Session.Source,
|
||||||
"message_id": id,
|
"message_id": id,
|
||||||
"user_id": m.Sender.Uin,
|
"user_id": m.Sender.Uin,
|
||||||
"message": ToFormattedMessage(m.Elements, 0, false),
|
"message": ToFormattedMessage(m.Elements, source, false),
|
||||||
"raw_message": cqm,
|
"raw_message": cqm,
|
||||||
"font": 0,
|
"font": 0,
|
||||||
"self_id": c.Uin,
|
"self_id": c.Uin,
|
||||||
@ -138,6 +142,151 @@ func (bot *CQBot) tempMessageEvent(c *client.QQClient, e *client.TempMessageEven
|
|||||||
bot.dispatchEventMessage(tm)
|
bot.dispatchEventMessage(tm)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (bot *CQBot) guildChannelMessageEvent(c *client.QQClient, m *message.GuildChannelMessage) {
|
||||||
|
bot.checkMedia(m.Elements, int64(m.Sender.TinyId))
|
||||||
|
guild := c.GuildService.FindGuild(m.GuildId)
|
||||||
|
if guild == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
var channel *client.ChannelInfo
|
||||||
|
for _, c := range guild.Channels {
|
||||||
|
if c.ChannelId == m.ChannelId {
|
||||||
|
channel = c
|
||||||
|
}
|
||||||
|
}
|
||||||
|
source := MessageSource{
|
||||||
|
SourceType: MessageSourceGuildChannel,
|
||||||
|
PrimaryID: m.GuildId,
|
||||||
|
SubID: m.ChannelId,
|
||||||
|
}
|
||||||
|
log.Infof("收到来自频道 %v(%v) 子频道 %v(%v) 内 %v(%v) 的消息: %v", guild.GuildName, guild.GuildId, channel.ChannelName, m.ChannelId, m.Sender.Nickname, m.Sender.TinyId, ToStringMessage(m.Elements, source, true))
|
||||||
|
// todo: 数据库支持
|
||||||
|
bot.dispatchEventMessage(global.MSG{
|
||||||
|
"post_type": "message",
|
||||||
|
"message_type": "guild",
|
||||||
|
"sub_type": "channel",
|
||||||
|
"guild_id": m.GuildId,
|
||||||
|
"channel_id": m.ChannelId,
|
||||||
|
"message_id": fmt.Sprintf("%v-%v", m.Id, m.InternalId),
|
||||||
|
"user_id": m.Sender.TinyId,
|
||||||
|
"message": ToFormattedMessage(m.Elements, source, false), // todo: 增加对频道消息 Reply 的支持
|
||||||
|
"self_id": bot.Client.Uin,
|
||||||
|
"self_tiny_id": bot.Client.GuildService.TinyId,
|
||||||
|
"time": m.Time,
|
||||||
|
"sender": global.MSG{
|
||||||
|
"user_id": m.Sender.TinyId,
|
||||||
|
"nickname": m.Sender.Nickname,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (bot *CQBot) guildMessageReactionsUpdatedEvent(c *client.QQClient, e *client.GuildMessageReactionsUpdatedEvent) {
|
||||||
|
guild := c.GuildService.FindGuild(e.GuildId)
|
||||||
|
if guild == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
str := fmt.Sprintf("频道 %v(%v) 消息 %v 表情贴片已更新: ", guild.GuildName, guild.GuildId, e.MessageId)
|
||||||
|
currentReactions := make([]global.MSG, len(e.CurrentReactions))
|
||||||
|
for i, r := range e.CurrentReactions {
|
||||||
|
str += fmt.Sprintf("%v*%v ", r.Face.Name, r.Count)
|
||||||
|
currentReactions[i] = global.MSG{
|
||||||
|
"emoji_id": r.EmojiId,
|
||||||
|
"emoji_index": r.Face.Index,
|
||||||
|
"emoji_type": r.EmojiType,
|
||||||
|
"emoji_name": r.Face.Name,
|
||||||
|
"count": r.Count,
|
||||||
|
"clicked": r.Clicked,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if len(e.CurrentReactions) == 0 {
|
||||||
|
str += "无任何表情"
|
||||||
|
}
|
||||||
|
log.Infof(str)
|
||||||
|
bot.dispatchEventMessage(global.MSG{
|
||||||
|
"post_type": "notice",
|
||||||
|
"notice_type": "message_reactions_updated",
|
||||||
|
"message_sender_uin": e.MessageSenderUin,
|
||||||
|
"guild_id": e.GuildId,
|
||||||
|
"channel_id": e.ChannelId,
|
||||||
|
"message_id": fmt.Sprint(e.MessageId), // todo: 支持数据库后转换为数据库id
|
||||||
|
"operator_id": e.OperatorId,
|
||||||
|
"current_reactions": currentReactions,
|
||||||
|
"time": time.Now().Unix(),
|
||||||
|
"self_id": bot.Client.Uin,
|
||||||
|
"self_tiny_id": bot.Client.GuildService.TinyId,
|
||||||
|
"user_id": e.OperatorId,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (bot *CQBot) guildChannelUpdatedEvent(c *client.QQClient, e *client.GuildChannelUpdatedEvent) {
|
||||||
|
guild := c.GuildService.FindGuild(e.GuildId)
|
||||||
|
if guild == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
log.Infof("频道 %v(%v) 子频道 %v(%v) 信息已更新", guild.GuildName, guild.GuildId, e.NewChannelInfo.ChannelName, e.NewChannelInfo.ChannelId)
|
||||||
|
bot.dispatchEventMessage(global.MSG{
|
||||||
|
"post_type": "notice",
|
||||||
|
"notice_type": "channel_updated",
|
||||||
|
"guild_id": e.GuildId,
|
||||||
|
"channel_id": e.ChannelId,
|
||||||
|
"operator_id": e.OperatorId,
|
||||||
|
"time": time.Now().Unix(),
|
||||||
|
"self_id": bot.Client.Uin,
|
||||||
|
"self_tiny_id": bot.Client.GuildService.TinyId,
|
||||||
|
"user_id": e.OperatorId,
|
||||||
|
"old_info": convertChannelInfo(e.OldChannelInfo),
|
||||||
|
"new_info": convertChannelInfo(e.NewChannelInfo),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (bot *CQBot) guildChannelCreatedEvent(c *client.QQClient, e *client.GuildChannelOperationEvent) {
|
||||||
|
guild := c.GuildService.FindGuild(e.GuildId)
|
||||||
|
if guild == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
member := guild.FindMember(e.OperatorId)
|
||||||
|
if member == nil {
|
||||||
|
member = &client.GuildMemberInfo{Nickname: "未知"}
|
||||||
|
}
|
||||||
|
log.Infof("频道 %v(%v) 内用户 %v(%v) 创建了子频道 %v(%v)", guild.GuildName, guild.GuildId, member.Nickname, member.TinyId, e.ChannelInfo.ChannelName, e.ChannelInfo.ChannelId)
|
||||||
|
bot.dispatchEventMessage(global.MSG{
|
||||||
|
"post_type": "notice",
|
||||||
|
"notice_type": "channel_created",
|
||||||
|
"guild_id": e.GuildId,
|
||||||
|
"channel_id": e.ChannelInfo.ChannelId,
|
||||||
|
"operator_id": e.OperatorId,
|
||||||
|
"self_id": bot.Client.Uin,
|
||||||
|
"self_tiny_id": bot.Client.GuildService.TinyId,
|
||||||
|
"user_id": e.OperatorId,
|
||||||
|
"time": time.Now().Unix(),
|
||||||
|
"channel_info": convertChannelInfo(e.ChannelInfo),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (bot *CQBot) guildChannelDestroyedEvent(c *client.QQClient, e *client.GuildChannelOperationEvent) {
|
||||||
|
guild := c.GuildService.FindGuild(e.GuildId)
|
||||||
|
if guild == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
member := guild.FindMember(e.OperatorId)
|
||||||
|
if member == nil {
|
||||||
|
member = &client.GuildMemberInfo{Nickname: "未知"}
|
||||||
|
}
|
||||||
|
log.Infof("频道 %v(%v) 内用户 %v(%v) 删除了子频道 %v(%v)", guild.GuildName, guild.GuildId, member.Nickname, member.TinyId, e.ChannelInfo.ChannelName, e.ChannelInfo.ChannelId)
|
||||||
|
bot.dispatchEventMessage(global.MSG{
|
||||||
|
"post_type": "notice",
|
||||||
|
"notice_type": "channel_destroyed",
|
||||||
|
"guild_id": e.GuildId,
|
||||||
|
"channel_id": e.ChannelInfo.ChannelId,
|
||||||
|
"operator_id": e.OperatorId,
|
||||||
|
"self_id": bot.Client.Uin,
|
||||||
|
"self_tiny_id": bot.Client.GuildService.TinyId,
|
||||||
|
"user_id": e.OperatorId,
|
||||||
|
"time": time.Now().Unix(),
|
||||||
|
"channel_info": convertChannelInfo(e.ChannelInfo),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
func (bot *CQBot) groupMutedEvent(c *client.QQClient, e *client.GroupMuteEvent) {
|
func (bot *CQBot) groupMutedEvent(c *client.QQClient, e *client.GroupMuteEvent) {
|
||||||
g := c.FindGroup(e.GroupCode)
|
g := c.FindGroup(e.GroupCode)
|
||||||
if e.TargetUin == 0 {
|
if e.TargetUin == 0 {
|
||||||
@ -178,7 +327,7 @@ func (bot *CQBot) groupMutedEvent(c *client.QQClient, e *client.GroupMuteEvent)
|
|||||||
|
|
||||||
func (bot *CQBot) groupRecallEvent(c *client.QQClient, e *client.GroupMessageRecalledEvent) {
|
func (bot *CQBot) groupRecallEvent(c *client.QQClient, e *client.GroupMessageRecalledEvent) {
|
||||||
g := c.FindGroup(e.GroupCode)
|
g := c.FindGroup(e.GroupCode)
|
||||||
gid := toGlobalID(e.GroupCode, e.MessageId)
|
gid := db.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(global.MSG{
|
bot.dispatchEventMessage(global.MSG{
|
||||||
@ -295,7 +444,7 @@ func (bot *CQBot) memberTitleUpdatedEvent(c *client.QQClient, e *client.MemberSp
|
|||||||
|
|
||||||
func (bot *CQBot) friendRecallEvent(c *client.QQClient, e *client.FriendMessageRecalledEvent) {
|
func (bot *CQBot) friendRecallEvent(c *client.QQClient, e *client.FriendMessageRecalledEvent) {
|
||||||
f := c.FindFriend(e.FriendUin)
|
f := c.FindFriend(e.FriendUin)
|
||||||
gid := toGlobalID(e.FriendUin, e.MessageId)
|
gid := db.ToGlobalID(e.FriendUin, e.MessageId)
|
||||||
if f != nil {
|
if f != nil {
|
||||||
log.Infof("好友 %v(%v) 撤回了消息: %v", f.Nickname, f.Uin, gid)
|
log.Infof("好友 %v(%v) 撤回了消息: %v", f.Nickname, f.Uin, gid)
|
||||||
} else {
|
} else {
|
||||||
@ -472,7 +621,7 @@ func (bot *CQBot) otherClientStatusChangedEvent(c *client.QQClient, e *client.Ot
|
|||||||
|
|
||||||
func (bot *CQBot) groupEssenceMsg(c *client.QQClient, e *client.GroupDigestEvent) {
|
func (bot *CQBot) groupEssenceMsg(c *client.QQClient, e *client.GroupDigestEvent) {
|
||||||
g := c.FindGroup(e.GroupCode)
|
g := c.FindGroup(e.GroupCode)
|
||||||
gid := toGlobalID(e.GroupCode, e.MessageID)
|
gid := db.ToGlobalID(e.GroupCode, e.MessageID)
|
||||||
if e.OperationType == 1 {
|
if e.OperationType == 1 {
|
||||||
log.Infof(
|
log.Infof(
|
||||||
"群 %v 内 %v 将 %v 的消息(%v)设为了精华消息.",
|
"群 %v 内 %v 将 %v 的消息(%v)设为了精华消息.",
|
||||||
@ -550,30 +699,65 @@ func (bot *CQBot) groupDecrease(groupCode, userUin int64, operator *client.Group
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (bot *CQBot) checkMedia(e []message.IMessageElement) {
|
func (bot *CQBot) checkMedia(e []message.IMessageElement, sourceID int64) {
|
||||||
|
// TODO(wdvxdr): remove these old cache file in v1.0.0
|
||||||
for _, elem := range e {
|
for _, elem := range e {
|
||||||
switch i := elem.(type) {
|
switch i := elem.(type) {
|
||||||
case *message.GroupImageElement:
|
case *message.GroupImageElement:
|
||||||
|
if i.Flash && sourceID != 0 {
|
||||||
|
u, err := bot.Client.GetGroupImageDownloadUrl(i.FileId, sourceID, i.Md5)
|
||||||
|
if err != nil {
|
||||||
|
log.Warnf("获取闪照地址时出现错误: %v", err)
|
||||||
|
} else {
|
||||||
|
i.Url = u
|
||||||
|
}
|
||||||
|
}
|
||||||
|
data := binary.NewWriterF(func(w *binary.Writer) {
|
||||||
|
w.Write(i.Md5)
|
||||||
|
w.WriteUInt32(uint32(i.Size))
|
||||||
|
w.WriteString(i.ImageId)
|
||||||
|
w.WriteString(i.Url)
|
||||||
|
})
|
||||||
filename := hex.EncodeToString(i.Md5) + ".image"
|
filename := hex.EncodeToString(i.Md5) + ".image"
|
||||||
if !global.PathExists(path.Join(global.ImagePath, filename)) {
|
if cache.EnableCacheDB {
|
||||||
_ = os.WriteFile(path.Join(global.ImagePath, filename), binary.NewWriterF(func(w *binary.Writer) {
|
cache.Image.Insert(i.Md5, data)
|
||||||
w.Write(i.Md5)
|
} else if !global.PathExists(path.Join(global.ImagePath, filename)) {
|
||||||
w.WriteUInt32(uint32(i.Size))
|
_ = os.WriteFile(path.Join(global.ImagePath, filename), data, 0o644)
|
||||||
w.WriteString(i.ImageId)
|
}
|
||||||
w.WriteString(i.Url)
|
case *message.GuildImageElement:
|
||||||
}), 0o644)
|
data := binary.NewWriterF(func(w *binary.Writer) {
|
||||||
|
w.Write(i.Md5)
|
||||||
|
w.WriteUInt32(uint32(i.Size))
|
||||||
|
w.WriteString(i.DownloadIndex)
|
||||||
|
w.WriteString(i.Url)
|
||||||
|
})
|
||||||
|
filename := hex.EncodeToString(i.Md5) + ".image"
|
||||||
|
if cache.EnableCacheDB {
|
||||||
|
cache.Image.Insert(i.Md5, data)
|
||||||
|
} else if !global.PathExists(path.Join(global.ImagePath, filename)) {
|
||||||
|
_ = os.WriteFile(path.Join(global.ImagePath, filename), data, 0o644)
|
||||||
|
}
|
||||||
|
|
||||||
|
if i.Url != "" && !global.PathExists(path.Join(global.ImagePath, "guild-images", filename)) {
|
||||||
|
if err := global.DownloadFile(i.Url, path.Join(global.ImagePath, "guild-images", filename), -1, map[string]string{}); err != nil {
|
||||||
|
log.Warnf("下载频道图片时出现错误: %v", err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
case *message.FriendImageElement:
|
case *message.FriendImageElement:
|
||||||
|
data := binary.NewWriterF(func(w *binary.Writer) {
|
||||||
|
w.Write(i.Md5)
|
||||||
|
w.WriteUInt32(uint32(i.Size))
|
||||||
|
w.WriteString(i.ImageId)
|
||||||
|
w.WriteString(i.Url)
|
||||||
|
})
|
||||||
filename := hex.EncodeToString(i.Md5) + ".image"
|
filename := hex.EncodeToString(i.Md5) + ".image"
|
||||||
if !global.PathExists(path.Join(global.ImagePath, filename)) {
|
if cache.EnableCacheDB {
|
||||||
_ = os.WriteFile(path.Join(global.ImagePath, filename), binary.NewWriterF(func(w *binary.Writer) {
|
cache.Image.Insert(i.Md5, data)
|
||||||
w.Write(i.Md5)
|
} else if !global.PathExists(path.Join(global.ImagePath, filename)) {
|
||||||
w.WriteUInt32(uint32(i.Size))
|
_ = os.WriteFile(path.Join(global.ImagePath, filename), data, 0o644)
|
||||||
w.WriteString(i.ImageId)
|
|
||||||
w.WriteString(i.Url)
|
|
||||||
}), 0o644)
|
|
||||||
}
|
}
|
||||||
case *message.VoiceElement:
|
case *message.VoiceElement:
|
||||||
|
// todo: don't download original file?
|
||||||
i.Name = strings.ReplaceAll(i.Name, "{", "")
|
i.Name = strings.ReplaceAll(i.Name, "{", "")
|
||||||
i.Name = strings.ReplaceAll(i.Name, "}", "")
|
i.Name = strings.ReplaceAll(i.Name, "}", "")
|
||||||
if !global.PathExists(path.Join(global.VoicePath, i.Name)) {
|
if !global.PathExists(path.Join(global.VoicePath, i.Name)) {
|
||||||
@ -585,16 +769,19 @@ func (bot *CQBot) checkMedia(e []message.IMessageElement) {
|
|||||||
_ = os.WriteFile(path.Join(global.VoicePath, i.Name), b, 0o644)
|
_ = os.WriteFile(path.Join(global.VoicePath, i.Name), b, 0o644)
|
||||||
}
|
}
|
||||||
case *message.ShortVideoElement:
|
case *message.ShortVideoElement:
|
||||||
|
data := binary.NewWriterF(func(w *binary.Writer) {
|
||||||
|
w.Write(i.Md5)
|
||||||
|
w.Write(i.ThumbMd5)
|
||||||
|
w.WriteUInt32(uint32(i.Size))
|
||||||
|
w.WriteUInt32(uint32(i.ThumbSize))
|
||||||
|
w.WriteString(i.Name)
|
||||||
|
w.Write(i.Uuid)
|
||||||
|
})
|
||||||
filename := hex.EncodeToString(i.Md5) + ".video"
|
filename := hex.EncodeToString(i.Md5) + ".video"
|
||||||
if !global.PathExists(path.Join(global.VideoPath, filename)) {
|
if cache.EnableCacheDB {
|
||||||
_ = os.WriteFile(path.Join(global.VideoPath, filename), binary.NewWriterF(func(w *binary.Writer) {
|
cache.Video.Insert(i.Md5, data)
|
||||||
w.Write(i.Md5)
|
} else if !global.PathExists(path.Join(global.VideoPath, filename)) {
|
||||||
w.Write(i.ThumbMd5)
|
_ = os.WriteFile(path.Join(global.VideoPath, filename), data, 0o644)
|
||||||
w.WriteUInt32(uint32(i.Size))
|
|
||||||
w.WriteUInt32(uint32(i.ThumbSize))
|
|
||||||
w.WriteString(i.Name)
|
|
||||||
w.Write(i.Uuid)
|
|
||||||
}), 0o644)
|
|
||||||
}
|
}
|
||||||
i.Name = filename
|
i.Name = filename
|
||||||
i.Url = bot.Client.GetShortVideoUrl(i.Uuid, i.Md5)
|
i.Url = bot.Client.GetShortVideoUrl(i.Uuid, i.Md5)
|
||||||
|
101
db/database.go
Normal file
101
db/database.go
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
package db
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"hash/crc32"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/go-cqhttp/global"
|
||||||
|
)
|
||||||
|
|
||||||
|
type (
|
||||||
|
// Database 数据库操作接口定义
|
||||||
|
Database interface {
|
||||||
|
// Open 初始化数据库
|
||||||
|
Open() error
|
||||||
|
|
||||||
|
// GetMessageByGlobalID 通过 GlobalID 来获取消息
|
||||||
|
GetMessageByGlobalID(int32) (StoredMessage, error)
|
||||||
|
// GetGroupMessageByGlobalID 通过 GlobalID 来获取群消息
|
||||||
|
GetGroupMessageByGlobalID(int32) (*StoredGroupMessage, error)
|
||||||
|
// GetPrivateMessageByGlobalID 通过 GlobalID 来获取私聊消息
|
||||||
|
GetPrivateMessageByGlobalID(int32) (*StoredPrivateMessage, error)
|
||||||
|
|
||||||
|
// InsertGroupMessage 向数据库写入新的群消息
|
||||||
|
InsertGroupMessage(*StoredGroupMessage) error
|
||||||
|
// InsertPrivateMessage 向数据库写入新的私聊消息
|
||||||
|
InsertPrivateMessage(*StoredPrivateMessage) error
|
||||||
|
}
|
||||||
|
|
||||||
|
StoredMessage interface {
|
||||||
|
GetID() string
|
||||||
|
GetType() string
|
||||||
|
GetGlobalID() int32
|
||||||
|
GetAttribute() *StoredMessageAttribute
|
||||||
|
GetContent() []global.MSG
|
||||||
|
}
|
||||||
|
|
||||||
|
// StoredGroupMessage 持久化群消息
|
||||||
|
StoredGroupMessage struct {
|
||||||
|
ID string `bson:"_id"`
|
||||||
|
GlobalID int32 `bson:"globalId"`
|
||||||
|
Attribute *StoredMessageAttribute `bson:"attribute"`
|
||||||
|
SubType string `bson:"subType"`
|
||||||
|
QuotedInfo *QuotedInfo `bson:"quotedInfo"`
|
||||||
|
GroupCode int64 `bson:"groupCode"`
|
||||||
|
AnonymousID string `bson:"anonymousId"`
|
||||||
|
Content []global.MSG `bson:"content"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// StoredPrivateMessage 持久化私聊消息
|
||||||
|
StoredPrivateMessage struct {
|
||||||
|
ID string `bson:"_id"`
|
||||||
|
GlobalID int32 `bson:"globalId"`
|
||||||
|
Attribute *StoredMessageAttribute `bson:"attribute"`
|
||||||
|
SubType string `bson:"subType"`
|
||||||
|
QuotedInfo *QuotedInfo `bson:"quotedInfo"`
|
||||||
|
SessionUin int64 `bson:"sessionUin"`
|
||||||
|
TargetUin int64 `bson:"targetUin"`
|
||||||
|
Content []global.MSG `bson:"content"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// StoredMessageAttribute 持久化消息属性
|
||||||
|
StoredMessageAttribute struct {
|
||||||
|
MessageSeq int32 `bson:"messageSeq"`
|
||||||
|
InternalID int32 `bson:"internalId"`
|
||||||
|
SenderUin int64 `bson:"senderUin"`
|
||||||
|
SenderName string `bson:"senderName"`
|
||||||
|
Timestamp int64 `bson:"timestamp"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// QuotedInfo 引用回复
|
||||||
|
QuotedInfo struct {
|
||||||
|
PrevID string `bson:"prevId"`
|
||||||
|
PrevGlobalID int32 `bson:"prevGlobalId"`
|
||||||
|
QuotedContent []global.MSG `bson:"quotedContent"`
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
// ToGlobalID 构建`code`-`msgID`的字符串并返回其CRC32 Checksum的值
|
||||||
|
func ToGlobalID(code int64, msgID int32) int32 {
|
||||||
|
return int32(crc32.ChecksumIEEE([]byte(fmt.Sprintf("%d-%d", code, msgID))))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *StoredGroupMessage) GetID() string { return m.ID }
|
||||||
|
|
||||||
|
func (m *StoredGroupMessage) GetType() string { return "group" }
|
||||||
|
|
||||||
|
func (m *StoredGroupMessage) GetGlobalID() int32 { return m.GlobalID }
|
||||||
|
|
||||||
|
func (m *StoredGroupMessage) GetAttribute() *StoredMessageAttribute { return m.Attribute }
|
||||||
|
|
||||||
|
func (m *StoredGroupMessage) GetContent() []global.MSG { return m.Content }
|
||||||
|
|
||||||
|
func (m *StoredPrivateMessage) GetID() string { return m.ID }
|
||||||
|
|
||||||
|
func (m *StoredPrivateMessage) GetType() string { return "private" }
|
||||||
|
|
||||||
|
func (m *StoredPrivateMessage) GetGlobalID() int32 { return m.GlobalID }
|
||||||
|
|
||||||
|
func (m *StoredPrivateMessage) GetAttribute() *StoredMessageAttribute { return m.Attribute }
|
||||||
|
|
||||||
|
func (m *StoredPrivateMessage) GetContent() []global.MSG { return m.Content }
|
129
db/leveldb/leveldb.go
Normal file
129
db/leveldb/leveldb.go
Normal file
@ -0,0 +1,129 @@
|
|||||||
|
package leveldb
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"encoding/gob"
|
||||||
|
"path"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/MiraiGo/binary"
|
||||||
|
"github.com/pkg/errors"
|
||||||
|
"github.com/syndtr/goleveldb/leveldb"
|
||||||
|
"github.com/syndtr/goleveldb/leveldb/opt"
|
||||||
|
"gopkg.in/yaml.v3"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/go-cqhttp/db"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/global"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/modules/config"
|
||||||
|
)
|
||||||
|
|
||||||
|
type LevelDBImpl struct {
|
||||||
|
db *leveldb.DB
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
group byte = 0x0
|
||||||
|
private byte = 0x1
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
gob.Register(db.StoredMessageAttribute{})
|
||||||
|
gob.Register(db.QuotedInfo{})
|
||||||
|
gob.Register(global.MSG{})
|
||||||
|
gob.Register(db.StoredGroupMessage{})
|
||||||
|
gob.Register(db.StoredPrivateMessage{})
|
||||||
|
|
||||||
|
db.Register("leveldb", func(node yaml.Node) db.Database {
|
||||||
|
conf := new(config.LevelDBConfig)
|
||||||
|
_ = node.Decode(conf)
|
||||||
|
if !conf.Enable {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return &LevelDBImpl{}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ldb *LevelDBImpl) Open() error {
|
||||||
|
p := path.Join("data", "leveldb-v2")
|
||||||
|
d, err := leveldb.OpenFile(p, &opt.Options{
|
||||||
|
WriteBuffer: 128 * opt.KiB,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return errors.Wrap(err, "open level ldb error")
|
||||||
|
}
|
||||||
|
ldb.db = d
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ldb *LevelDBImpl) GetMessageByGlobalID(id int32) (db.StoredMessage, error) {
|
||||||
|
v, err := ldb.db.Get(binary.ToBytes(id), nil)
|
||||||
|
if err != nil {
|
||||||
|
return nil, errors.Wrap(err, "get value error")
|
||||||
|
}
|
||||||
|
r := binary.NewReader(v)
|
||||||
|
switch r.ReadByte() {
|
||||||
|
case group:
|
||||||
|
g := &db.StoredGroupMessage{}
|
||||||
|
if err = gob.NewDecoder(bytes.NewReader(r.ReadAvailable())).Decode(g); err != nil {
|
||||||
|
return nil, errors.Wrap(err, "decode message error")
|
||||||
|
}
|
||||||
|
return g, nil
|
||||||
|
case private:
|
||||||
|
p := &db.StoredPrivateMessage{}
|
||||||
|
if err = gob.NewDecoder(bytes.NewReader(r.ReadAvailable())).Decode(p); err != nil {
|
||||||
|
return nil, errors.Wrap(err, "decode message error")
|
||||||
|
}
|
||||||
|
return p, nil
|
||||||
|
default:
|
||||||
|
return nil, errors.New("unknown message flag")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ldb *LevelDBImpl) GetGroupMessageByGlobalID(id int32) (*db.StoredGroupMessage, error) {
|
||||||
|
i, err := ldb.GetMessageByGlobalID(id)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
g, ok := i.(*db.StoredGroupMessage)
|
||||||
|
if !ok {
|
||||||
|
return nil, errors.New("message type error")
|
||||||
|
}
|
||||||
|
return g, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ldb *LevelDBImpl) GetPrivateMessageByGlobalID(id int32) (*db.StoredPrivateMessage, error) {
|
||||||
|
i, err := ldb.GetMessageByGlobalID(id)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
p, ok := i.(*db.StoredPrivateMessage)
|
||||||
|
if !ok {
|
||||||
|
return nil, errors.New("message type error")
|
||||||
|
}
|
||||||
|
return p, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ldb *LevelDBImpl) InsertGroupMessage(msg *db.StoredGroupMessage) error {
|
||||||
|
buf := global.NewBuffer()
|
||||||
|
defer global.PutBuffer(buf)
|
||||||
|
if err := gob.NewEncoder(buf).Encode(msg); err != nil {
|
||||||
|
return errors.Wrap(err, "encode message error")
|
||||||
|
}
|
||||||
|
err := ldb.db.Put(binary.ToBytes(msg.GlobalID), binary.NewWriterF(func(w *binary.Writer) {
|
||||||
|
w.WriteByte(group)
|
||||||
|
w.Write(buf.Bytes())
|
||||||
|
}), nil)
|
||||||
|
return errors.Wrap(err, "put data error")
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ldb *LevelDBImpl) InsertPrivateMessage(msg *db.StoredPrivateMessage) error {
|
||||||
|
buf := global.NewBuffer()
|
||||||
|
defer global.PutBuffer(buf)
|
||||||
|
if err := gob.NewEncoder(buf).Encode(msg); err != nil {
|
||||||
|
return errors.Wrap(err, "encode message error")
|
||||||
|
}
|
||||||
|
err := ldb.db.Put(binary.ToBytes(msg.GlobalID), binary.NewWriterF(func(w *binary.Writer) {
|
||||||
|
w.WriteByte(private)
|
||||||
|
w.Write(buf.Bytes())
|
||||||
|
}), nil)
|
||||||
|
return errors.Wrap(err, "put data error")
|
||||||
|
}
|
85
db/mongodb/mongodb.go
Normal file
85
db/mongodb/mongodb.go
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
package mongodb
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
|
||||||
|
"github.com/pkg/errors"
|
||||||
|
"go.mongodb.org/mongo-driver/bson"
|
||||||
|
"go.mongodb.org/mongo-driver/mongo"
|
||||||
|
"go.mongodb.org/mongo-driver/mongo/options"
|
||||||
|
"gopkg.in/yaml.v3"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/go-cqhttp/db"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/modules/config"
|
||||||
|
)
|
||||||
|
|
||||||
|
type MongoDBImpl struct {
|
||||||
|
uri string
|
||||||
|
db string
|
||||||
|
mongo *mongo.Database
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
MongoGroupMessageCollection = "group-messages"
|
||||||
|
MongoPrivateMessageCollection = "private-messages"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
db.Register("mongodb", func(node yaml.Node) db.Database {
|
||||||
|
conf := new(config.MongoDBConfig)
|
||||||
|
_ = node.Decode(conf)
|
||||||
|
if conf.Database == "" {
|
||||||
|
conf.Database = "gocq-database"
|
||||||
|
}
|
||||||
|
if !conf.Enable {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return &MongoDBImpl{uri: conf.URI, db: conf.Database}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *MongoDBImpl) Open() error {
|
||||||
|
cli, err := mongo.Connect(context.Background(), options.Client().ApplyURI(m.uri))
|
||||||
|
if err != nil {
|
||||||
|
return errors.Wrap(err, "open mongo connection error")
|
||||||
|
}
|
||||||
|
m.mongo = cli.Database(m.db)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *MongoDBImpl) GetMessageByGlobalID(id int32) (db.StoredMessage, error) {
|
||||||
|
if r, err := m.GetGroupMessageByGlobalID(id); err == nil {
|
||||||
|
return r, nil
|
||||||
|
}
|
||||||
|
return m.GetPrivateMessageByGlobalID(id)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *MongoDBImpl) GetGroupMessageByGlobalID(id int32) (*db.StoredGroupMessage, error) {
|
||||||
|
coll := m.mongo.Collection(MongoGroupMessageCollection)
|
||||||
|
var ret db.StoredGroupMessage
|
||||||
|
if err := coll.FindOne(context.Background(), bson.D{{"globalId", id}}).Decode(&ret); err != nil {
|
||||||
|
return nil, errors.Wrap(err, "query error")
|
||||||
|
}
|
||||||
|
return &ret, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *MongoDBImpl) GetPrivateMessageByGlobalID(id int32) (*db.StoredPrivateMessage, error) {
|
||||||
|
coll := m.mongo.Collection(MongoPrivateMessageCollection)
|
||||||
|
var ret db.StoredPrivateMessage
|
||||||
|
if err := coll.FindOne(context.Background(), bson.D{{"globalId", id}}).Decode(&ret); err != nil {
|
||||||
|
return nil, errors.Wrap(err, "query error")
|
||||||
|
}
|
||||||
|
return &ret, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *MongoDBImpl) InsertGroupMessage(msg *db.StoredGroupMessage) error {
|
||||||
|
coll := m.mongo.Collection(MongoGroupMessageCollection)
|
||||||
|
_, err := coll.InsertOne(context.Background(), msg)
|
||||||
|
return errors.Wrap(err, "insert error")
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *MongoDBImpl) InsertPrivateMessage(msg *db.StoredPrivateMessage) error {
|
||||||
|
coll := m.mongo.Collection(MongoPrivateMessageCollection)
|
||||||
|
_, err := coll.InsertOne(context.Background(), msg)
|
||||||
|
return errors.Wrap(err, "insert error")
|
||||||
|
}
|
88
db/multidb.go
Normal file
88
db/multidb.go
Normal file
@ -0,0 +1,88 @@
|
|||||||
|
package db
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/pkg/errors"
|
||||||
|
"gopkg.in/yaml.v3"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/go-cqhttp/internal/base"
|
||||||
|
)
|
||||||
|
|
||||||
|
// backends 多数据库支持, 后端支持
|
||||||
|
// 写入会对所有 Backend 进行写入
|
||||||
|
// 读取只会读取第一个库
|
||||||
|
var backends []Database
|
||||||
|
|
||||||
|
// drivers 多数据库启动
|
||||||
|
var drivers = make(map[string]func(node yaml.Node) Database)
|
||||||
|
|
||||||
|
// DatabaseDisabledError 没有可用的db
|
||||||
|
var DatabaseDisabledError = errors.New("database disabled")
|
||||||
|
|
||||||
|
// Register 添加数据库后端
|
||||||
|
func Register(name string, init func(yaml.Node) Database) {
|
||||||
|
if _, ok := drivers[name]; ok {
|
||||||
|
panic("database driver conflict: " + name)
|
||||||
|
}
|
||||||
|
drivers[name] = init
|
||||||
|
}
|
||||||
|
|
||||||
|
// Init 加载所有后端配置文件
|
||||||
|
func Init() {
|
||||||
|
backends = make([]Database, 0, len(drivers))
|
||||||
|
for name, init := range drivers {
|
||||||
|
if n, ok := base.Database[name]; ok {
|
||||||
|
db := init(n)
|
||||||
|
if db != nil {
|
||||||
|
backends = append(backends, db)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func Open() error {
|
||||||
|
for _, b := range backends {
|
||||||
|
if err := b.Open(); err != nil {
|
||||||
|
return errors.Wrap(err, "open backend error")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetMessageByGlobalID(id int32) (StoredMessage, error) {
|
||||||
|
if len(backends) == 0 {
|
||||||
|
return nil, DatabaseDisabledError
|
||||||
|
}
|
||||||
|
return backends[0].GetMessageByGlobalID(id)
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetGroupMessageByGlobalID(id int32) (*StoredGroupMessage, error) {
|
||||||
|
if len(backends) == 0 {
|
||||||
|
return nil, DatabaseDisabledError
|
||||||
|
}
|
||||||
|
return backends[0].GetGroupMessageByGlobalID(id)
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetPrivateMessageByGlobalID(id int32) (*StoredPrivateMessage, error) {
|
||||||
|
if len(backends) == 0 {
|
||||||
|
return nil, DatabaseDisabledError
|
||||||
|
}
|
||||||
|
return backends[0].GetPrivateMessageByGlobalID(id)
|
||||||
|
}
|
||||||
|
|
||||||
|
func InsertGroupMessage(m *StoredGroupMessage) error {
|
||||||
|
for _, b := range backends {
|
||||||
|
if err := b.InsertGroupMessage(m); err != nil {
|
||||||
|
return errors.Wrap(err, "insert message to backend error")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func InsertPrivateMessage(m *StoredPrivateMessage) error {
|
||||||
|
for _, b := range backends {
|
||||||
|
if err := b.InsertPrivateMessage(m); err != nil {
|
||||||
|
return errors.Wrap(err, "insert message to backend error")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
@ -154,7 +154,7 @@ database: # 数据库相关设置
|
|||||||
|
|
||||||
> 注4:关闭心跳服务可能引起断线,请谨慎关闭
|
> 注4:关闭心跳服务可能引起断线,请谨慎关闭
|
||||||
|
|
||||||
> 注5:关于MINE扫描, 详见[MINE](file.md#MINE)
|
> 注5:关于MIME扫描, 详见[MIME](file.md#MIME)
|
||||||
|
|
||||||
## 在线状态
|
## 在线状态
|
||||||
|
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
- [回复](#回复)
|
- [回复](#回复)
|
||||||
- [红包](#红包)
|
- [红包](#红包)
|
||||||
- [戳一戳](#戳一戳)
|
- [戳一戳](#戳一戳)
|
||||||
- [礼物](#礼物)
|
|
||||||
- [合并转发](#合并转发)
|
- [合并转发](#合并转发)
|
||||||
- [合并转发消息节点](#合并转发消息节点)
|
- [合并转发消息节点](#合并转发消息节点)
|
||||||
- [XML 消息](#xml-消息)
|
- [XML 消息](#xml-消息)
|
||||||
@ -214,42 +213,6 @@ Type: `poke`
|
|||||||
|
|
||||||
示例: `[CQ:poke,qq=123456]`
|
示例: `[CQ:poke,qq=123456]`
|
||||||
|
|
||||||
### 礼物
|
|
||||||
|
|
||||||
> 注意:仅支持免费礼物,发送群礼物消息无法撤回,返回的 `message id` 恒定为 `0`
|
|
||||||
|
|
||||||
Type: `gift`
|
|
||||||
|
|
||||||
范围: **发送(仅群聊,接收的时候不是CQ码)**
|
|
||||||
|
|
||||||
参数:
|
|
||||||
|
|
||||||
| 参数名 | 类型 | 说明 |
|
|
||||||
| ------ | ----- | -------------- |
|
|
||||||
| `qq` | int64 | 接收礼物的成员 |
|
|
||||||
| `id` | int | 礼物的类型 |
|
|
||||||
|
|
||||||
目前支持的礼物ID:
|
|
||||||
|
|
||||||
| id | 类型 |
|
|
||||||
| --- | ---------- |
|
|
||||||
| 0 | 甜Wink |
|
|
||||||
| 1 | 快乐肥宅水 |
|
|
||||||
| 2 | 幸运手链 |
|
|
||||||
| 3 | 卡布奇诺 |
|
|
||||||
| 4 | 猫咪手表 |
|
|
||||||
| 5 | 绒绒手套 |
|
|
||||||
| 6 | 彩虹糖果 |
|
|
||||||
| 7 | 坚强 |
|
|
||||||
| 8 | 告白话筒 |
|
|
||||||
| 9 | 牵你的手 |
|
|
||||||
| 10 | 可爱猫咪 |
|
|
||||||
| 11 | 神秘面具 |
|
|
||||||
| 12 | 我超忙的 |
|
|
||||||
| 13 | 爱心口罩 |
|
|
||||||
|
|
||||||
示例: `[CQ:gift,qq=123456,id=8]`
|
|
||||||
|
|
||||||
### 合并转发
|
### 合并转发
|
||||||
|
|
||||||
Type: `forward`
|
Type: `forward`
|
||||||
|
@ -39,11 +39,11 @@ go-cqhttp 默认生成的文件树如下所示:
|
|||||||
| 0x14 | string | 图片原名(QQ内部ID) |
|
| 0x14 | string | 图片原名(QQ内部ID) |
|
||||||
| 0x14 + 原名长度 | string | 图片下载链接 |
|
| 0x14 + 原名长度 | string | 图片下载链接 |
|
||||||
|
|
||||||
# MINE
|
# MIME
|
||||||
|
|
||||||
启用MINE检查可以及时发现媒体资源格式错误引起的上传失败(通常表现为,请求网页图片,但服务端返回404.html)
|
启用MINE检查可以及时发现媒体资源格式错误引起的上传失败(通常表现为,请求网页图片,但服务端返回404.html)
|
||||||
|
|
||||||
在配置文件中设置 `skip-mine-scan: false`后 ,go-cqhttp 会在上传媒体资源(视频暂不支持)前对MINE进行检查,
|
在配置文件中设置 `skip-mine-scan: false`后 ,go-cqhttp 会在上传媒体资源(视频暂不支持)前对MIME进行检查,
|
||||||
详细允许类型如下所示:
|
详细允许类型如下所示:
|
||||||
|
|
||||||
图片:
|
图片:
|
||||||
|
266
docs/guild.md
Normal file
266
docs/guild.md
Normal file
@ -0,0 +1,266 @@
|
|||||||
|
# 频道相关API
|
||||||
|
|
||||||
|
> 注意: QQ频道功能目前还在测试阶段, go-cqhttp 也在适配的初期阶段, 以下 `API` `Event` 的字段名可能存在错误并均有可能在后续版本修改/添加/删除.
|
||||||
|
> 目前仅供开发者测试以及适配使用
|
||||||
|
|
||||||
|
QQ频道相关功能的事件以及API
|
||||||
|
|
||||||
|
## 命名说明
|
||||||
|
|
||||||
|
API以及字段相关命名均为参考QQ官方命名或相似产品命名规则, 由于QQ频道的账号系统独立于QQ本体, 所以各个 `ID` 并不能和QQ通用.也无法通过 `tiny_id` 获取到 `QQ号`
|
||||||
|
|
||||||
|
下表为常见字段命名说明
|
||||||
|
|
||||||
|
| 命名 | 说明 |
|
||||||
|
| ------------ | -------------------- |
|
||||||
|
| `tiny_id` | 在频道系统中代表用户ID, 与QQ号并不通用 |
|
||||||
|
| `guild_id` | 频道ID |
|
||||||
|
| `channel_id` | 子频道ID |
|
||||||
|
|
||||||
|
> 所有频道相关事件的 `user_id` 均为 `tiny_id`
|
||||||
|
|
||||||
|
## 特殊说明
|
||||||
|
|
||||||
|
- 由于频道的限制, 目前无法通过图片摘要查询到频道图片消息的详细信息, 所以通过频道消息收到的图片均会下载完整文件到 `images/guild-images`. (群图片转发不受此限制)
|
||||||
|
- 由于无法通过 `GlobalID` 放下频道消息的ID, 所以所有频道消息的 `message_id` 均为 `string` 类型
|
||||||
|
- `send_msg` API将无法发送频道消息
|
||||||
|
- `get_msg` API暂时无法获取频道消息
|
||||||
|
- `reply` 等消息类型暂不支持解析
|
||||||
|
- `at` 消息的 `target` 依然使用 `qq` 字段, 以保证一致性. 但内容为 `tiny_id`
|
||||||
|
- 所有事件的 `self_id` 均为 BOT 的QQ号. `tiny_id` 将放在 `self_tiny_id` 字段
|
||||||
|
- 遵循我们一贯的原则, 将不会支持主动加频道/主动拉人/红包相关消息类型
|
||||||
|
|
||||||
|
## API
|
||||||
|
|
||||||
|
### 获取频道系统内BOT的资料
|
||||||
|
|
||||||
|
终结点: `/get_guild_service_profile`
|
||||||
|
|
||||||
|
**响应数据**
|
||||||
|
|
||||||
|
| 字段 | 类型 | 说明 |
|
||||||
|
| ------------- | ----- | ---------- |
|
||||||
|
| `nickname` | string | 昵称 |
|
||||||
|
| `tiny_id` | uint64 | 自身的ID |
|
||||||
|
| `avatar_url` | string | 头像链接 |
|
||||||
|
|
||||||
|
### 获取频道列表
|
||||||
|
|
||||||
|
终结点: `/get_guild_list`
|
||||||
|
|
||||||
|
**响应数据**
|
||||||
|
|
||||||
|
正常情况下响应 `GuildInfo` 数组, 未加入任何频道响应 `null`
|
||||||
|
|
||||||
|
GuildInfo:
|
||||||
|
|
||||||
|
| 字段 | 类型 | 说明 |
|
||||||
|
| ------------- | ----- | ---------- |
|
||||||
|
| `guild_id` | uint64 | 频道ID |
|
||||||
|
| `guild_name` | string | 频道名称 |
|
||||||
|
| `guild_display_id` | int64 | 频道显示ID, 公测后可能作为搜索ID使用 |
|
||||||
|
|
||||||
|
### 通过访客获取频道元数据
|
||||||
|
|
||||||
|
终结点: `/get_guild_meta_by_guest`
|
||||||
|
|
||||||
|
**参数**
|
||||||
|
|
||||||
|
| 字段 | 类型 | 说明 |
|
||||||
|
| ---------- | ----- | ---- |
|
||||||
|
| `guild_id` | uint64 | 频道ID |
|
||||||
|
|
||||||
|
**响应数据**
|
||||||
|
|
||||||
|
| 字段 | 类型 | 说明 |
|
||||||
|
| ------------- | ----- | ---------- |
|
||||||
|
| `guild_id` | uint64 | 频道ID |
|
||||||
|
| `guild_name` | string | 频道名称 |
|
||||||
|
| `guild_profile` | string | 频道简介 |
|
||||||
|
| `create_time` | int64 | 创建时间 |
|
||||||
|
| `max_member_count` | int64 | 频道人数上限 |
|
||||||
|
| `max_robot_count` | int64 | 频道BOT数上限 |
|
||||||
|
| `max_admin_count` | int64 | 频道管理员人数上限 |
|
||||||
|
| `member_count` | int64 | 已加入人数 |
|
||||||
|
| `owner_id` | uint64 | 创建者ID |
|
||||||
|
|
||||||
|
### 获取子频道列表
|
||||||
|
|
||||||
|
终结点: `/get_guild_channel_list`
|
||||||
|
|
||||||
|
**参数**
|
||||||
|
|
||||||
|
| 字段 | 类型 | 说明 |
|
||||||
|
| ---------- | ----- | ---- |
|
||||||
|
| `guild_id` | uint64 | 频道ID |
|
||||||
|
| `no_cache` | bool | 是否无视缓存 |
|
||||||
|
|
||||||
|
**响应数据**
|
||||||
|
|
||||||
|
正常情况下响应 `ChannelInfo` 数组, 未找到任何子频道响应 `null`
|
||||||
|
|
||||||
|
ChannelInfo:
|
||||||
|
|
||||||
|
| 字段 | 类型 | 说明 |
|
||||||
|
| ------------- | ----- | ---------- |
|
||||||
|
| `owner_guild_id` | uint64 | 所属频道ID |
|
||||||
|
| `channel_id` | uint64 | 子频道ID |
|
||||||
|
| `channel_type` | int32 | 子频道类型 |
|
||||||
|
| `channel_name` | string | 之频道名称 |
|
||||||
|
| `create_time` | int64 | 创建时间 |
|
||||||
|
| `creator_id` | int64 | 创建者QQ号 |
|
||||||
|
| `creator_tiny_id` | uint64 | 创建者ID |
|
||||||
|
| `talk_permission` | int32 | 发言权限类型 |
|
||||||
|
| `visible_type` | int32 | 可视性类型 |
|
||||||
|
| `current_slow_mode` | int32 | 当前启用的慢速模式Key |
|
||||||
|
| `slow_modes` | []SlowModeInfo | 频道内可用慢速模式类型列表|
|
||||||
|
|
||||||
|
SlowModeInfo:
|
||||||
|
|
||||||
|
| 字段 | 类型 | 说明 |
|
||||||
|
| ------------- | ----- | ---------- |
|
||||||
|
| `slow_mode_key` | int32 | 慢速模式Key |
|
||||||
|
| `slow_mode_text` | string | 慢速模式说明 |
|
||||||
|
| `speak_frequency` | int32 | 周期内发言频率限制 |
|
||||||
|
| `slow_mode_circle` | int32 | 单位周期时间, 单位秒 |
|
||||||
|
|
||||||
|
已知子频道类型列表
|
||||||
|
|
||||||
|
| 类型 | 说明 |
|
||||||
|
| ------------- | ---------- |
|
||||||
|
| 1 | 文字频道 |
|
||||||
|
| 2 | 语音频道 |
|
||||||
|
| 5 | 直播频道 |
|
||||||
|
|
||||||
|
### 获取频道成员列表
|
||||||
|
|
||||||
|
终结点: `/get_guild_members`
|
||||||
|
|
||||||
|
**参数**
|
||||||
|
|
||||||
|
| 字段 | 类型 | 说明 |
|
||||||
|
| ---------- | ----- | ---- |
|
||||||
|
| `guild_id` | uint64 | 频道ID |
|
||||||
|
|
||||||
|
**响应数据**
|
||||||
|
|
||||||
|
> 注意: 类型内无任何成员将返回 `null`
|
||||||
|
|
||||||
|
| 字段 | 类型 | 说明 |
|
||||||
|
| ------------- | ----- | ---------- |
|
||||||
|
| `members` | []GuildMemberInfo | 普通成员列表 |
|
||||||
|
| `bots` | []GuildMemberInfo | 机器人列表 |
|
||||||
|
| `admins` | []GuildMemberInfo | 管理员列表 |
|
||||||
|
|
||||||
|
GuildMemberInfo:
|
||||||
|
|
||||||
|
| 字段 | 类型 | 说明 |
|
||||||
|
| ------------- | ----- | ---------- |
|
||||||
|
| `tiny_id` | uint64 | 成员ID |
|
||||||
|
| `title` | string | 成员头衔 |
|
||||||
|
| `nickname` | string | 成员昵称 |
|
||||||
|
| `role` | int32 | 成员权限 |
|
||||||
|
|
||||||
|
### 发送信息到子频道
|
||||||
|
|
||||||
|
终结点: `/send_guild_channel_msg`
|
||||||
|
|
||||||
|
**参数**
|
||||||
|
|
||||||
|
| 字段 | 类型 | 说明 |
|
||||||
|
| ---------- | ----- | ---- |
|
||||||
|
| `guild_id` | uint64 | 频道ID |
|
||||||
|
| `channel_id` | uint64 | 子频道ID |
|
||||||
|
| `message` | Message | 消息, 与原有消息类型相同 |
|
||||||
|
|
||||||
|
**响应数据**
|
||||||
|
|
||||||
|
| 字段 | 类型 | 说明 |
|
||||||
|
| ------------- | ----- | ---------- |
|
||||||
|
| `message_id` | string | 消息ID |
|
||||||
|
|
||||||
|
## 事件
|
||||||
|
|
||||||
|
### 收到频道消息
|
||||||
|
|
||||||
|
**上报数据**
|
||||||
|
|
||||||
|
| 字段 | 类型 | 可能的值 | 说明 |
|
||||||
|
| ------------- | ------ | -------------- | -------------- |
|
||||||
|
| `post_type` | string | `message` | 上报类型 |
|
||||||
|
| `message_type` | string | `guild` | 消息类型 |
|
||||||
|
| `sub_type` | string | `channel` | 消息子类型 |
|
||||||
|
| `guild_id` | uint64 | | 频道ID |
|
||||||
|
| `channel_id` | uint64 | | 子频道ID |
|
||||||
|
| `user_id` | uint64 | | 消息发送者ID |
|
||||||
|
| `message_id` | string | | 消息ID |
|
||||||
|
| `sender` | Sender | | 发送者 |
|
||||||
|
| `message` | Message | | 消息内容 |
|
||||||
|
|
||||||
|
### 频道消息表情贴更新
|
||||||
|
|
||||||
|
**上报数据**
|
||||||
|
|
||||||
|
| 字段 | 类型 | 可能的值 | 说明 |
|
||||||
|
| ------------- | ------ | -------------- | -------------- |
|
||||||
|
| `post_type` | string | `notice` | 上报类型 |
|
||||||
|
| `notice_type` | string | `message_reactions_updated` | 消息类型 |
|
||||||
|
| `guild_id` | uint64 | | 频道ID |
|
||||||
|
| `channel_id` | uint64 | | 子频道ID |
|
||||||
|
| `user_id` | uint64 | | 操作者ID |
|
||||||
|
| `message_id` | string | | 消息ID |
|
||||||
|
| `current_reactions` | []ReactionInfo | | 当前消息被贴表情列表 |
|
||||||
|
|
||||||
|
ReactionInfo:
|
||||||
|
|
||||||
|
| 字段 | 类型 | 说明 |
|
||||||
|
| ---------- | ----- | ---- |
|
||||||
|
| `emoji_id` | string | 表情ID |
|
||||||
|
| `emoji_index` | int32 | 表情对应数值ID |
|
||||||
|
| `emoji_type` | int32 | 表情类型 |
|
||||||
|
| `emoji_name` | string | 表情名字 |
|
||||||
|
| `count` | int32 | 当前表情被贴数量 |
|
||||||
|
| `clicked` | bool | BOT是否点击 |
|
||||||
|
|
||||||
|
### 子频道信息更新
|
||||||
|
|
||||||
|
**上报数据**
|
||||||
|
|
||||||
|
| 字段 | 类型 | 可能的值 | 说明 |
|
||||||
|
| ------------- | ------ | -------------- | -------------- |
|
||||||
|
| `post_type` | string | `notice` | 上报类型 |
|
||||||
|
| `notice_type` | string | `channel_updated` | 消息类型 |
|
||||||
|
| `guild_id` | uint64 | | 频道ID |
|
||||||
|
| `channel_id` | uint64 | | 子频道ID |
|
||||||
|
| `user_id` | uint64 | | 操作者ID |
|
||||||
|
| `operator_id` | uint64 | | 操作者ID |
|
||||||
|
| `old_info` | ChannelInfo | | 更新前的频道信息 |
|
||||||
|
| `new_info` | ChannelInfo | | 更新后的频道信息 |
|
||||||
|
|
||||||
|
### 子频道创建
|
||||||
|
|
||||||
|
**上报数据**
|
||||||
|
|
||||||
|
| 字段 | 类型 | 可能的值 | 说明 |
|
||||||
|
| ------------- | ------ | -------------- | -------------- |
|
||||||
|
| `post_type` | string | `notice` | 上报类型 |
|
||||||
|
| `notice_type` | string | `channel_created` | 消息类型 |
|
||||||
|
| `guild_id` | uint64 | | 频道ID |
|
||||||
|
| `channel_id` | uint64 | | 子频道ID |
|
||||||
|
| `user_id` | uint64 | | 操作者ID |
|
||||||
|
| `operator_id` | uint64 | | 操作者ID |
|
||||||
|
| `channel_info` | ChannelInfo | | 频道信息 |
|
||||||
|
|
||||||
|
### 子频道删除
|
||||||
|
|
||||||
|
**上报数据**
|
||||||
|
|
||||||
|
| 字段 | 类型 | 可能的值 | 说明 |
|
||||||
|
| ------------- | ------ | -------------- | -------------- |
|
||||||
|
| `post_type` | string | `notice` | 上报类型 |
|
||||||
|
| `notice_type` | string | `channel_destroyed` | 消息类型 |
|
||||||
|
| `guild_id` | uint64 | | 频道ID |
|
||||||
|
| `channel_id` | uint64 | | 子频道ID |
|
||||||
|
| `user_id` | uint64 | | 操作者ID |
|
||||||
|
| `operator_id` | uint64 | | 操作者ID |
|
||||||
|
| `channel_info` | ChannelInfo | | 频道信息 |
|
@ -7,9 +7,9 @@ import (
|
|||||||
"os/exec"
|
"os/exec"
|
||||||
"path"
|
"path"
|
||||||
|
|
||||||
"github.com/Mrs4s/go-cqhttp/global/codec"
|
|
||||||
|
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/go-cqhttp/internal/base"
|
||||||
)
|
)
|
||||||
|
|
||||||
// EncoderSilk 将音频编码为Silk
|
// EncoderSilk 将音频编码为Silk
|
||||||
@ -23,7 +23,7 @@ func EncoderSilk(data []byte) ([]byte, error) {
|
|||||||
if silkPath := path.Join("data/cache", tempName+".silk"); PathExists(silkPath) {
|
if silkPath := path.Join("data/cache", tempName+".silk"); PathExists(silkPath) {
|
||||||
return os.ReadFile(silkPath)
|
return os.ReadFile(silkPath)
|
||||||
}
|
}
|
||||||
slk, err := codec.EncodeToSilk(data, tempName, true)
|
slk, err := base.EncodeSilk(data, tempName)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, errors.Wrap(err, "encode silk failed")
|
return nil, errors.Wrap(err, "encode silk failed")
|
||||||
}
|
}
|
||||||
|
@ -1,2 +0,0 @@
|
|||||||
// Package codec Slik编码核心模块
|
|
||||||
package codec
|
|
@ -1,4 +0,0 @@
|
|||||||
package codec
|
|
||||||
|
|
||||||
// Debug mode controls the ffmpeg output.
|
|
||||||
var Debug bool
|
|
@ -15,6 +15,8 @@ import (
|
|||||||
|
|
||||||
"github.com/Mrs4s/MiraiGo/utils"
|
"github.com/Mrs4s/MiraiGo/utils"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/go-cqhttp/internal/param"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
@ -83,12 +85,9 @@ func FindFile(file, cache, p string) (data []byte, err error) {
|
|||||||
data, err = nil, ErrSyntax
|
data, err = nil, ErrSyntax
|
||||||
switch {
|
switch {
|
||||||
case strings.HasPrefix(file, "http"): // https also has prefix http
|
case strings.HasPrefix(file, "http"): // https also has prefix http
|
||||||
if cache == "" {
|
|
||||||
cache = "1"
|
|
||||||
}
|
|
||||||
hash := md5.Sum([]byte(file))
|
hash := md5.Sum([]byte(file))
|
||||||
cacheFile := path.Join(CachePath, hex.EncodeToString(hash[:])+".cache")
|
cacheFile := path.Join(CachePath, hex.EncodeToString(hash[:])+".cache")
|
||||||
if PathExists(cacheFile) && cache == "1" {
|
if (cache == "" || cache == "1") && PathExists(cacheFile) {
|
||||||
return os.ReadFile(cacheFile)
|
return os.ReadFile(cacheFile)
|
||||||
}
|
}
|
||||||
data, err = GetBytes(file)
|
data, err = GetBytes(file)
|
||||||
@ -97,7 +96,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 = Base64DecodeString(strings.TrimPrefix(file, "base64://"))
|
data, err = param.Base64DecodeString(strings.TrimPrefix(file, "base64://"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -9,6 +9,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
|
"github.com/mattn/go-colorable"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -80,24 +81,16 @@ func (hook *LocalHook) Fire(entry *logrus.Entry) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// SetFormatter 设置日志格式
|
// SetFormatter 设置日志格式
|
||||||
func (hook *LocalHook) SetFormatter(formatter logrus.Formatter) {
|
func (hook *LocalHook) SetFormatter(consoleFormatter, fileFormatter logrus.Formatter) {
|
||||||
hook.lock.Lock()
|
hook.lock.Lock()
|
||||||
defer hook.lock.Unlock()
|
defer hook.lock.Unlock()
|
||||||
|
|
||||||
if formatter == nil {
|
// 支持处理windows平台的console色彩
|
||||||
// 用默认的
|
logrus.SetOutput(colorable.NewColorableStdout())
|
||||||
formatter = &logrus.TextFormatter{DisableColors: true}
|
// 用于在console写出
|
||||||
} else {
|
logrus.SetFormatter(consoleFormatter)
|
||||||
switch f := formatter.(type) {
|
// 用于写入文件
|
||||||
case *logrus.TextFormatter:
|
hook.formatter = fileFormatter
|
||||||
textFormatter := f
|
|
||||||
textFormatter.DisableColors = true
|
|
||||||
default:
|
|
||||||
// todo
|
|
||||||
}
|
|
||||||
}
|
|
||||||
logrus.SetFormatter(formatter)
|
|
||||||
hook.formatter = formatter
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetWriter 设置Writer
|
// SetWriter 设置Writer
|
||||||
@ -115,11 +108,11 @@ func (hook *LocalHook) SetPath(path string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// NewLocalHook 初始化本地日志钩子实现
|
// NewLocalHook 初始化本地日志钩子实现
|
||||||
func NewLocalHook(args interface{}, formatter logrus.Formatter, levels ...logrus.Level) *LocalHook {
|
func NewLocalHook(args interface{}, consoleFormatter, fileFormatter logrus.Formatter, levels ...logrus.Level) *LocalHook {
|
||||||
hook := &LocalHook{
|
hook := &LocalHook{
|
||||||
lock: new(sync.Mutex),
|
lock: new(sync.Mutex),
|
||||||
}
|
}
|
||||||
hook.SetFormatter(formatter)
|
hook.SetFormatter(consoleFormatter, fileFormatter)
|
||||||
hook.levels = append(hook.levels, levels...)
|
hook.levels = append(hook.levels, levels...)
|
||||||
|
|
||||||
switch arg := args.(type) {
|
switch arg := args.(type) {
|
||||||
@ -177,12 +170,19 @@ func GetLogLevel(level string) []logrus.Level {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// LogFormat specialize for go-cqhttp
|
// LogFormat specialize for go-cqhttp
|
||||||
type LogFormat struct{}
|
type LogFormat struct {
|
||||||
|
EnableColor bool
|
||||||
|
}
|
||||||
|
|
||||||
// Format implements logrus.Formatter
|
// Format implements logrus.Formatter
|
||||||
func (f LogFormat) Format(entry *logrus.Entry) ([]byte, error) {
|
func (f LogFormat) Format(entry *logrus.Entry) ([]byte, error) {
|
||||||
buf := NewBuffer()
|
buf := NewBuffer()
|
||||||
defer PutBuffer(buf)
|
defer PutBuffer(buf)
|
||||||
|
|
||||||
|
if f.EnableColor {
|
||||||
|
buf.WriteString(GetLogLevelColorCode(entry.Level))
|
||||||
|
}
|
||||||
|
|
||||||
buf.WriteByte('[')
|
buf.WriteByte('[')
|
||||||
buf.WriteString(entry.Time.Format("2006-01-02 15:04:05"))
|
buf.WriteString(entry.Time.Format("2006-01-02 15:04:05"))
|
||||||
buf.WriteString("] [")
|
buf.WriteString("] [")
|
||||||
@ -190,6 +190,45 @@ func (f LogFormat) Format(entry *logrus.Entry) ([]byte, error) {
|
|||||||
buf.WriteString("]: ")
|
buf.WriteString("]: ")
|
||||||
buf.WriteString(entry.Message)
|
buf.WriteString(entry.Message)
|
||||||
buf.WriteString(" \n")
|
buf.WriteString(" \n")
|
||||||
|
|
||||||
|
if f.EnableColor {
|
||||||
|
buf.WriteString(colorReset)
|
||||||
|
}
|
||||||
|
|
||||||
ret := append([]byte(nil), buf.Bytes()...) // copy buffer
|
ret := append([]byte(nil), buf.Bytes()...) // copy buffer
|
||||||
return ret, nil
|
return ret, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
colorCodePanic = "\x1b[1;31m" // color.Style{color.Bold, color.Red}.String()
|
||||||
|
colorCodeFatal = "\x1b[1;31m" // color.Style{color.Bold, color.Red}.String()
|
||||||
|
colorCodeError = "\x1b[31m" // color.Style{color.Red}.String()
|
||||||
|
colorCodeWarn = "\x1b[33m" // color.Style{color.Yellow}.String()
|
||||||
|
colorCodeInfo = "\x1b[37m" // color.Style{color.White}.String()
|
||||||
|
colorCodeDebug = "\x1b[32m" // color.Style{color.Green}.String()
|
||||||
|
colorCodeTrace = "\x1b[36m" // color.Style{color.Cyan}.String()
|
||||||
|
colorReset = "\x1b[0m"
|
||||||
|
)
|
||||||
|
|
||||||
|
// GetLogLevelColorCode 获取日志等级对应色彩code
|
||||||
|
func GetLogLevelColorCode(level logrus.Level) string {
|
||||||
|
switch level {
|
||||||
|
case logrus.PanicLevel:
|
||||||
|
return colorCodePanic
|
||||||
|
case logrus.FatalLevel:
|
||||||
|
return colorCodeFatal
|
||||||
|
case logrus.ErrorLevel:
|
||||||
|
return colorCodeError
|
||||||
|
case logrus.WarnLevel:
|
||||||
|
return colorCodeWarn
|
||||||
|
case logrus.InfoLevel:
|
||||||
|
return colorCodeInfo
|
||||||
|
case logrus.DebugLevel:
|
||||||
|
return colorCodeDebug
|
||||||
|
case logrus.TraceLevel:
|
||||||
|
return colorCodeTrace
|
||||||
|
|
||||||
|
default:
|
||||||
|
return colorCodeInfo
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -12,22 +12,22 @@ import (
|
|||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/guonaihong/gout"
|
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
|
|
||||||
"github.com/tidwall/gjson"
|
"github.com/tidwall/gjson"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/go-cqhttp/internal/base"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
client = &http.Client{
|
client = &http.Client{
|
||||||
Transport: &http.Transport{
|
Transport: &http.Transport{
|
||||||
Proxy: func(request *http.Request) (u *url.URL, e error) {
|
Proxy: func(request *http.Request) (u *url.URL, e error) {
|
||||||
if Proxy == "" {
|
if base.Proxy == "" {
|
||||||
return http.ProxyFromEnvironment(request)
|
return http.ProxyFromEnvironment(request)
|
||||||
}
|
}
|
||||||
return url.Parse(Proxy)
|
return url.Parse(base.Proxy)
|
||||||
},
|
},
|
||||||
ForceAttemptHTTP2: true,
|
ForceAttemptHTTP2: true,
|
||||||
MaxConnsPerHost: 0,
|
MaxConnsPerHost: 0,
|
||||||
@ -36,9 +36,6 @@ var (
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
// Proxy 存储Config.proxy_rewrite,用于设置代理
|
|
||||||
Proxy string
|
|
||||||
|
|
||||||
// ErrOverSize 响应主体过大时返回此错误
|
// ErrOverSize 响应主体过大时返回此错误
|
||||||
ErrOverSize = errors.New("oversize")
|
ErrOverSize = errors.New("oversize")
|
||||||
|
|
||||||
@ -249,22 +246,6 @@ func DownloadFileMultiThreading(url, path string, limit int64, threadCount int,
|
|||||||
return lastErr
|
return lastErr
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetSliderTicket 通过给定的验证链接raw和id,获取验证结果Ticket
|
|
||||||
func GetSliderTicket(raw, id string) (string, error) {
|
|
||||||
var rsp string
|
|
||||||
if err := gout.POST("https://api.shkong.com/gocqhttpapi/task").SetJSON(gout.H{
|
|
||||||
"id": id,
|
|
||||||
"url": raw,
|
|
||||||
}).SetTimeout(time.Second * 35).BindBody(&rsp).Do(); err != nil {
|
|
||||||
return "", err
|
|
||||||
}
|
|
||||||
g := gjson.Parse(rsp)
|
|
||||||
if g.Get("error").Str != "" {
|
|
||||||
return "", errors.New(g.Get("error").Str)
|
|
||||||
}
|
|
||||||
return g.Get("ticket").Str, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// QQMusicSongInfo 通过给定id在QQ音乐上查找曲目信息
|
// QQMusicSongInfo 通过给定id在QQ音乐上查找曲目信息
|
||||||
func QQMusicSongInfo(id string) (gjson.Result, error) {
|
func QQMusicSongInfo(id string) (gjson.Result, error) {
|
||||||
d, err := GetBytes(`https://u.y.qq.com/cgi-bin/musicu.fcg?format=json&inCharset=utf8&outCharset=utf-8¬ice=0&platform=yqq.json&needNewCode=0&data={%22comm%22:{%22ct%22:24,%22cv%22:0},%22songinfo%22:{%22method%22:%22get_song_detail_yqq%22,%22param%22:{%22song_type%22:0,%22song_mid%22:%22%22,%22song_id%22:` + id + `},%22module%22:%22music.pf_song_detail_svr%22}}`)
|
d, err := GetBytes(`https://u.y.qq.com/cgi-bin/musicu.fcg?format=json&inCharset=utf8&outCharset=utf-8¬ice=0&platform=yqq.json&needNewCode=0&data={%22comm%22:{%22ct%22:24,%22cv%22:0},%22songinfo%22:{%22method%22:%22get_song_detail_yqq%22,%22param%22:{%22song_type%22:0,%22song_mid%22:%22%22,%22song_id%22:` + id + `},%22module%22:%22music.pf_song_detail_svr%22}}`)
|
||||||
|
123
global/param.go
123
global/param.go
@ -1,64 +1,15 @@
|
|||||||
package global
|
package global
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"math"
|
|
||||||
"reflect"
|
|
||||||
"regexp"
|
"regexp"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
|
||||||
"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"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// MSG 消息Map
|
// MSG 消息Map
|
||||||
type MSG map[string]interface{}
|
type MSG map[string]interface{}
|
||||||
|
|
||||||
// EnsureBool 判断给定的p是否可表示为合法Bool类型,否则返回defaultVal
|
|
||||||
//
|
|
||||||
// 支持的合法类型有
|
|
||||||
//
|
|
||||||
// type bool
|
|
||||||
//
|
|
||||||
// type gjson.True or gjson.False
|
|
||||||
//
|
|
||||||
// type string "true","yes","1" or "false","no","0" (case insensitive)
|
|
||||||
func EnsureBool(p interface{}, defaultVal bool) bool {
|
|
||||||
var str string
|
|
||||||
if b, ok := p.(bool); ok {
|
|
||||||
return b
|
|
||||||
}
|
|
||||||
if j, ok := p.(gjson.Result); ok {
|
|
||||||
if !j.Exists() {
|
|
||||||
return defaultVal
|
|
||||||
}
|
|
||||||
switch j.Type { // nolint
|
|
||||||
case gjson.True:
|
|
||||||
return true
|
|
||||||
case gjson.False:
|
|
||||||
return false
|
|
||||||
case gjson.String:
|
|
||||||
str = j.Str
|
|
||||||
default:
|
|
||||||
return defaultVal
|
|
||||||
}
|
|
||||||
} else if s, ok := p.(string); ok {
|
|
||||||
str = s
|
|
||||||
}
|
|
||||||
str = strings.ToLower(str)
|
|
||||||
switch str {
|
|
||||||
case "true", "yes", "1":
|
|
||||||
return true
|
|
||||||
case "false", "no", "0":
|
|
||||||
return false
|
|
||||||
default:
|
|
||||||
return defaultVal
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// VersionNameCompare 检查版本名是否需要更新, 仅适用于 go-cqhttp 的版本命名规则
|
// VersionNameCompare 检查版本名是否需要更新, 仅适用于 go-cqhttp 的版本命名规则
|
||||||
//
|
//
|
||||||
// 例: v0.9.29-fix2 == v0.9.29-fix2 -> false
|
// 例: v0.9.29-fix2 == v0.9.29-fix2 -> false
|
||||||
@ -93,77 +44,3 @@ func VersionNameCompare(current, remote string) bool {
|
|||||||
}
|
}
|
||||||
return cur[4] < re[4]
|
return cur[4] < re[4]
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetAtDefault 在变量 variable 为默认值 defaultValue 的时候修改为 value
|
|
||||||
func SetAtDefault(variable, value, defaultValue interface{}) {
|
|
||||||
v := reflect.ValueOf(variable)
|
|
||||||
v2 := reflect.ValueOf(value)
|
|
||||||
if v.Kind() != reflect.Ptr || v.IsNil() {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
v = v.Elem()
|
|
||||||
if v.Interface() != defaultValue {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if v.Kind() != v2.Kind() {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
v.Set(v2)
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetExcludeDefault 在目标值 value 不为默认值 defaultValue 时修改 variable 为 value
|
|
||||||
func SetExcludeDefault(variable, value, defaultValue interface{}) {
|
|
||||||
v := reflect.ValueOf(variable)
|
|
||||||
v2 := reflect.ValueOf(value)
|
|
||||||
if v.Kind() != reflect.Ptr || v.IsNil() {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
v = v.Elem()
|
|
||||||
if reflect.Indirect(v2).Interface() != defaultValue {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if v.Kind() != v2.Kind() {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
v.Set(v2)
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
// once lazy compile the reg
|
|
||||||
once sync.Once
|
|
||||||
// reg is splitURL regex pattern.
|
|
||||||
reg *regexp.Regexp
|
|
||||||
)
|
|
||||||
|
|
||||||
// SplitURL 将给定URL字符串分割为两部分,用于URL预处理防止风控
|
|
||||||
func SplitURL(s string) []string {
|
|
||||||
once.Do(func() { // lazy init.
|
|
||||||
reg = regexp.MustCompile(`(?i)[a-z\d][-a-z\d]{0,62}(\.[a-z\d][-a-z\d]{0,62})+\.?`)
|
|
||||||
})
|
|
||||||
idx := reg.FindAllStringIndex(s, -1)
|
|
||||||
if len(idx) == 0 {
|
|
||||||
return []string{s}
|
|
||||||
}
|
|
||||||
var result []string
|
|
||||||
last := 0
|
|
||||||
for i := 0; i < len(idx); i++ {
|
|
||||||
if len(idx[i]) != 2 {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
m := int(math.Abs(float64(idx[i][0]-idx[i][1]))/1.5) + idx[i][0]
|
|
||||||
result = append(result, s[last:m])
|
|
||||||
last = m
|
|
||||||
}
|
|
||||||
result = append(result, s[last:])
|
|
||||||
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
|
|
||||||
}
|
|
||||||
|
@ -1,93 +0,0 @@
|
|||||||
// Package update 包含go-cqhttp自我更新相关函数
|
|
||||||
package update
|
|
||||||
|
|
||||||
import (
|
|
||||||
"bufio"
|
|
||||||
"bytes"
|
|
||||||
"fmt"
|
|
||||||
"hash"
|
|
||||||
"io"
|
|
||||||
"os"
|
|
||||||
"path/filepath"
|
|
||||||
|
|
||||||
"github.com/dustin/go-humanize"
|
|
||||||
"github.com/kardianos/osext"
|
|
||||||
log "github.com/sirupsen/logrus"
|
|
||||||
)
|
|
||||||
|
|
||||||
// WriteSumCounter 写入量计算实例
|
|
||||||
type WriteSumCounter struct {
|
|
||||||
Total uint64
|
|
||||||
Hash hash.Hash
|
|
||||||
}
|
|
||||||
|
|
||||||
// Write 方法将写入的byte长度追加至写入的总长度Total中
|
|
||||||
func (wc *WriteSumCounter) Write(p []byte) (int, error) {
|
|
||||||
n := len(p)
|
|
||||||
wc.Total += uint64(n)
|
|
||||||
wc.Hash.Write(p)
|
|
||||||
fmt.Printf("\r ")
|
|
||||||
fmt.Printf("\rDownloading... %s complete", humanize.Bytes(wc.Total))
|
|
||||||
return n, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// FromStream copy form getlantern/go-update
|
|
||||||
func FromStream(updateWith io.Reader) (err error, errRecover error) {
|
|
||||||
updatePath, err := osext.Executable()
|
|
||||||
if err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
var newBytes []byte
|
|
||||||
// no patch to apply, go on through
|
|
||||||
bufBytes := bufio.NewReader(updateWith)
|
|
||||||
updateWith = io.Reader(bufBytes)
|
|
||||||
newBytes, err = io.ReadAll(updateWith)
|
|
||||||
if err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
// get the directory the executable exists in
|
|
||||||
updateDir := filepath.Dir(updatePath)
|
|
||||||
filename := filepath.Base(updatePath)
|
|
||||||
// Copy the contents of of newbinary to a the new executable file
|
|
||||||
newPath := filepath.Join(updateDir, fmt.Sprintf(".%s.new", filename))
|
|
||||||
fp, err := os.OpenFile(newPath, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0o755)
|
|
||||||
if err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
// We won't log this error, because it's always going to happen.
|
|
||||||
defer func() { _ = fp.Close() }()
|
|
||||||
if _, err = io.Copy(fp, bytes.NewReader(newBytes)); err != nil {
|
|
||||||
log.Errorf("Unable to copy data: %v\n", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// if we don't call fp.Close(), windows won't let us move the new executable
|
|
||||||
// because the file will still be "in use"
|
|
||||||
if err := fp.Close(); err != nil {
|
|
||||||
log.Errorf("Unable to close file: %v\n", err)
|
|
||||||
}
|
|
||||||
// this is where we'll move the executable to so that we can swap in the updated replacement
|
|
||||||
oldPath := filepath.Join(updateDir, fmt.Sprintf(".%s.old", filename))
|
|
||||||
|
|
||||||
// delete any existing old exec file - this is necessary on Windows for two reasons:
|
|
||||||
// 1. after a successful update, Windows can't remove the .old file because the process is still running
|
|
||||||
// 2. windows rename operations fail if the destination file already exists
|
|
||||||
_ = os.Remove(oldPath)
|
|
||||||
|
|
||||||
// move the existing executable to a new file in the same directory
|
|
||||||
err = os.Rename(updatePath, oldPath)
|
|
||||||
if err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// move the new executable in to become the new program
|
|
||||||
err = os.Rename(newPath, updatePath)
|
|
||||||
|
|
||||||
if err != nil {
|
|
||||||
// copy unsuccessful
|
|
||||||
errRecover = os.Rename(oldPath, updatePath)
|
|
||||||
} else {
|
|
||||||
// copy successful, remove the old binary
|
|
||||||
_ = os.Remove(oldPath)
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
61
go.mod
61
go.mod
@ -2,55 +2,60 @@ module github.com/Mrs4s/go-cqhttp
|
|||||||
|
|
||||||
go 1.17
|
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.1
|
||||||
github.com/Mrs4s/MiraiGo v0.0.0-20210916113136-0238b2382b82
|
github.com/Mrs4s/MiraiGo v0.0.0-20211114170854-511e8c41edd2
|
||||||
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/fumiama/go-hide-param v0.1.4
|
||||||
github.com/gorilla/websocket v1.4.2
|
github.com/gabriel-vasile/mimetype v1.4.0
|
||||||
github.com/guonaihong/gout v0.2.4
|
github.com/gocq/qrcode v0.0.0-20211114040510-366b953fcd98
|
||||||
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0
|
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0
|
||||||
|
github.com/klauspost/compress v1.13.6
|
||||||
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible
|
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible
|
||||||
|
github.com/mattn/go-colorable v0.1.11
|
||||||
github.com/pkg/errors v0.9.1
|
github.com/pkg/errors v0.9.1
|
||||||
github.com/segmentio/asm v1.0.0
|
github.com/segmentio/asm v1.1.0
|
||||||
github.com/sirupsen/logrus v1.8.1
|
github.com/sirupsen/logrus v1.8.1
|
||||||
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.11.0
|
||||||
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
|
||||||
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5
|
go.mongodb.org/mongo-driver v1.7.4
|
||||||
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b
|
golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa
|
||||||
|
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
|
||||||
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac
|
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
|
||||||
|
nhooyr.io/websocket v1.8.7
|
||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/davecgh/go-spew v1.1.1 // indirect
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
||||||
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db // indirect
|
github.com/go-stack/stack v1.8.1 // indirect
|
||||||
github.com/google/uuid v1.1.1 // indirect
|
github.com/gocq/rs v1.0.1 // indirect
|
||||||
|
github.com/golang/snappy v0.0.4 // indirect
|
||||||
|
github.com/google/uuid v1.3.0 // indirect
|
||||||
|
github.com/gorilla/websocket v1.4.2 // indirect
|
||||||
github.com/jonboulle/clockwork v0.2.2 // indirect
|
github.com/jonboulle/clockwork v0.2.2 // indirect
|
||||||
github.com/klauspost/cpuid/v2 v2.0.6 // indirect
|
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
|
||||||
github.com/lestrrat-go/strftime v1.0.5 // indirect
|
github.com/lestrrat-go/strftime v1.0.5 // indirect
|
||||||
github.com/maruel/rs v0.0.0-20150922171536-2c81c4312fe4 // indirect
|
github.com/mattn/go-isatty v0.0.14 // 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/pmezard/go-difflib v1.0.0 // indirect
|
||||||
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
|
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
|
||||||
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e // indirect
|
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e // indirect
|
||||||
github.com/tidwall/match v1.0.3 // indirect
|
github.com/tidwall/match v1.1.1 // indirect
|
||||||
github.com/tidwall/pretty v1.1.0 // indirect
|
github.com/tidwall/pretty v1.2.0 // indirect
|
||||||
github.com/willf/bitset v1.2.0 // indirect
|
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
|
||||||
golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d // indirect
|
github.com/xdg-go/scram v1.0.2 // indirect
|
||||||
golang.org/x/net v0.0.0-20210505024714-0287a6fb4125 // indirect
|
github.com/xdg-go/stringprep v1.0.2 // indirect
|
||||||
|
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a // indirect
|
||||||
|
golang.org/x/image v0.0.0-20211028202545-6944b10bf410 // indirect
|
||||||
|
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
|
||||||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
|
||||||
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect
|
golang.org/x/sys v0.0.0-20211113001501-0c823b97ae02 // indirect
|
||||||
|
golang.org/x/text v0.3.7 // indirect
|
||||||
google.golang.org/protobuf v1.27.1 // indirect
|
google.golang.org/protobuf v1.27.1 // indirect
|
||||||
gopkg.in/yaml.v2 v2.2.8 // indirect
|
modernc.org/libc v1.11.70 // indirect
|
||||||
modernc.org/libc v1.8.1 // indirect
|
modernc.org/mathutil v1.4.1 // indirect
|
||||||
modernc.org/mathutil v1.2.2 // indirect
|
modernc.org/memory v1.0.5 // indirect
|
||||||
modernc.org/memory v1.0.4 // indirect
|
|
||||||
)
|
)
|
||||||
|
352
go.sum
352
go.sum
@ -1,76 +1,117 @@
|
|||||||
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
|
|
||||||
github.com/Baozisoftware/qrcode-terminal-go v0.0.0-20170407111555-c0650d8dff0f h1:2dk3eOnYllh+wUOuDhOoC2vUVoJF/5z478ryJ+wzEII=
|
github.com/Baozisoftware/qrcode-terminal-go v0.0.0-20170407111555-c0650d8dff0f h1:2dk3eOnYllh+wUOuDhOoC2vUVoJF/5z478ryJ+wzEII=
|
||||||
github.com/Baozisoftware/qrcode-terminal-go v0.0.0-20170407111555-c0650d8dff0f/go.mod h1:4a58ifQTEe2uwwsaqbh3i2un5/CBPg+At/qHpt18Tmk=
|
github.com/Baozisoftware/qrcode-terminal-go v0.0.0-20170407111555-c0650d8dff0f/go.mod h1:4a58ifQTEe2uwwsaqbh3i2un5/CBPg+At/qHpt18Tmk=
|
||||||
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.1 h1:aPJp2QD7OOrhO5tQXqQoGSJc+DjDtWTGLOmNyAm6FgY=
|
||||||
github.com/Microsoft/go-winio v0.5.0/go.mod h1:JPGBdM1cNvN/6ISo+n8V5iA4v8pBzdOpzfwIujj1a84=
|
github.com/Microsoft/go-winio v0.5.1/go.mod h1:JPGBdM1cNvN/6ISo+n8V5iA4v8pBzdOpzfwIujj1a84=
|
||||||
github.com/Mrs4s/MiraiGo v0.0.0-20210916113136-0238b2382b82 h1:VAav2Z5n41cp2bjskooPXAg9W39qQeEEj3FmYlnS3+E=
|
github.com/Mrs4s/MiraiGo v0.0.0-20211114170854-511e8c41edd2 h1:4Lbei62HbTfp90vV9zRzbe6TkMlns7QMqSeeyjJuauU=
|
||||||
github.com/Mrs4s/MiraiGo v0.0.0-20210916113136-0238b2382b82/go.mod h1:EpB6wQ+iaIqLRxVrs6si2J3XGv6wHXMrRXNUnJFaoww=
|
github.com/Mrs4s/MiraiGo v0.0.0-20211114170854-511e8c41edd2/go.mod h1:UOO08UBb5mVisfwrjduINu5GF9+gmsn33f2tnr83xnE=
|
||||||
github.com/bits-and-blooms/bitset v1.2.0 h1:Kn4yilvwNtMACtf1eYDlG8H77R07mZSPbMjLyS07ChA=
|
github.com/bits-and-blooms/bitset v1.2.1 h1:M+/hrU9xlMp7t4TyTDQW97d3tRPVuKFC6zBEK16QnXY=
|
||||||
github.com/bits-and-blooms/bitset v1.2.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA=
|
github.com/bits-and-blooms/bitset v1.2.1/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA=
|
||||||
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
|
|
||||||
github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=
|
|
||||||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
||||||
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
github.com/dustin/go-humanize v1.0.0 h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=
|
github.com/dustin/go-humanize v1.0.0 h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=
|
||||||
github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk=
|
github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk=
|
||||||
github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
|
|
||||||
github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
|
|
||||||
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
|
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
|
||||||
github.com/gabriel-vasile/mimetype v1.3.1 h1:qevA6c2MtE1RorlScnixeG0VA1H4xrXyhyX3oWBynNQ=
|
github.com/fumiama/go-hide-param v0.1.4 h1:y7TRTzZMdCH9GOXnIzU3B+1BSkcmvejVGmGsz4t0DGU=
|
||||||
github.com/gabriel-vasile/mimetype v1.3.1/go.mod h1:fA8fi6KUiG7MgQQ+mEWotXoEOvmxRtOJlERCzSmRvr8=
|
github.com/fumiama/go-hide-param v0.1.4/go.mod h1:vJkQlJIEI56nIyp7tCQu1/2QOyKtZpudsnJkGk9U1aY=
|
||||||
|
github.com/gabriel-vasile/mimetype v1.4.0 h1:Cn9dkdYsMIu56tGho+fqzh7XmvY2YyGU0FnbhiOsEro=
|
||||||
|
github.com/gabriel-vasile/mimetype v1.4.0/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.7.0 h1:jGB9xAJQ12AIGNB4HguylppmDK1Am9ppF7XnGXXJuoU=
|
github.com/gin-gonic/gin v1.6.3 h1:ahKqKTFpO5KTPHxWZjEdPScmYaGtLo8Y4DMHoEsnp14=
|
||||||
github.com/gin-gonic/gin v1.7.0/go.mod h1:jD2toBW3GZUr5UMcdrwQA10I7RuaFOl/SGeDjXkfUtY=
|
github.com/gin-gonic/gin v1.6.3/go.mod h1:75u5sXoLsGZoRN5Sgbi1eraJ4GU3++wFwWzhwvtwp4M=
|
||||||
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.4.1 h1:pH2c5ADXtd66mxoE0Zm9SUhxE20r7aM3F26W0hOn+GE=
|
github.com/go-playground/validator/v10 v10.2.0 h1:KgJ0snyC2R9VXYN2rneOtQcw5aHQB1Vv0sFl1UcHBOY=
|
||||||
github.com/go-playground/validator/v10 v10.4.1/go.mod h1:nlOn6nFhuKACm19sB/8EGNn9GlaMV7XkbRSipzJ0Ii4=
|
github.com/go-playground/validator/v10 v10.2.0/go.mod h1:uOYAAleCW8F/7oMFd6aG0GOhaH6EGOAJShg8Id5JGkI=
|
||||||
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
|
github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=
|
||||||
github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
|
github.com/go-stack/stack v1.8.1 h1:ntEHSVwIt7PNXNpgPmVfMrNhLtgjlmnZha2kOpuRiDw=
|
||||||
|
github.com/go-stack/stack v1.8.1/go.mod h1:dcoOX6HbPZSZptuspn9bctJ+N/CnF5gGygcUP3XYfe4=
|
||||||
|
github.com/gobuffalo/attrs v0.0.0-20190224210810-a9411de4debd/go.mod h1:4duuawTqi2wkkpB4ePgWMaai6/Kc6WEz83bhFwpHzj0=
|
||||||
|
github.com/gobuffalo/depgen v0.0.0-20190329151759-d478694a28d3/go.mod h1:3STtPUQYuzV0gBVOY3vy6CfMm/ljR4pABfrTeHNLHUY=
|
||||||
|
github.com/gobuffalo/depgen v0.1.0/go.mod h1:+ifsuy7fhi15RWncXQQKjWS9JPkdah5sZvtHc2RXGlg=
|
||||||
|
github.com/gobuffalo/envy v1.6.15/go.mod h1:n7DRkBerg/aorDM8kbduw5dN3oXGswK5liaSCx4T5NI=
|
||||||
|
github.com/gobuffalo/envy v1.7.0/go.mod h1:n7DRkBerg/aorDM8kbduw5dN3oXGswK5liaSCx4T5NI=
|
||||||
|
github.com/gobuffalo/flect v0.1.0/go.mod h1:d2ehjJqGOH/Kjqcoz+F7jHTBbmDb38yXA598Hb50EGs=
|
||||||
|
github.com/gobuffalo/flect v0.1.1/go.mod h1:8JCgGVbRjJhVgD6399mQr4fx5rRfGKVzFjbj6RE/9UI=
|
||||||
|
github.com/gobuffalo/flect v0.1.3/go.mod h1:8JCgGVbRjJhVgD6399mQr4fx5rRfGKVzFjbj6RE/9UI=
|
||||||
|
github.com/gobuffalo/genny v0.0.0-20190329151137-27723ad26ef9/go.mod h1:rWs4Z12d1Zbf19rlsn0nurr75KqhYp52EAGGxTbBhNk=
|
||||||
|
github.com/gobuffalo/genny v0.0.0-20190403191548-3ca520ef0d9e/go.mod h1:80lIj3kVJWwOrXWWMRzzdhW3DsrdjILVil/SFKBzF28=
|
||||||
|
github.com/gobuffalo/genny v0.1.0/go.mod h1:XidbUqzak3lHdS//TPu2OgiFB+51Ur5f7CSnXZ/JDvo=
|
||||||
|
github.com/gobuffalo/genny v0.1.1/go.mod h1:5TExbEyY48pfunL4QSXxlDOmdsD44RRq4mVZ0Ex28Xk=
|
||||||
|
github.com/gobuffalo/gitgen v0.0.0-20190315122116-cc086187d211/go.mod h1:vEHJk/E9DmhejeLeNt7UVvlSGv3ziL+djtTr3yyzcOw=
|
||||||
|
github.com/gobuffalo/gogen v0.0.0-20190315121717-8f38393713f5/go.mod h1:V9QVDIxsgKNZs6L2IYiGR8datgMhB577vzTDqypH360=
|
||||||
|
github.com/gobuffalo/gogen v0.1.0/go.mod h1:8NTelM5qd8RZ15VjQTFkAW6qOMx5wBbW4dSCS3BY8gg=
|
||||||
|
github.com/gobuffalo/gogen v0.1.1/go.mod h1:y8iBtmHmGc4qa3urIyo1shvOD8JftTtfcKi+71xfDNE=
|
||||||
|
github.com/gobuffalo/logger v0.0.0-20190315122211-86e12af44bc2/go.mod h1:QdxcLw541hSGtBnhUc4gaNIXRjiDppFGaDqzbrBd3v8=
|
||||||
|
github.com/gobuffalo/mapi v1.0.1/go.mod h1:4VAGh89y6rVOvm5A8fKFxYG+wIW6LO1FMTG9hnKStFc=
|
||||||
|
github.com/gobuffalo/mapi v1.0.2/go.mod h1:4VAGh89y6rVOvm5A8fKFxYG+wIW6LO1FMTG9hnKStFc=
|
||||||
|
github.com/gobuffalo/packd v0.0.0-20190315124812-a385830c7fc0/go.mod h1:M2Juc+hhDXf/PnmBANFCqx4DM3wRbgDvnVWeG2RIxq4=
|
||||||
|
github.com/gobuffalo/packd v0.1.0/go.mod h1:M2Juc+hhDXf/PnmBANFCqx4DM3wRbgDvnVWeG2RIxq4=
|
||||||
|
github.com/gobuffalo/packr/v2 v2.0.9/go.mod h1:emmyGweYTm6Kdper+iywB6YK5YzuKchGtJQZ0Odn4pQ=
|
||||||
|
github.com/gobuffalo/packr/v2 v2.2.0/go.mod h1:CaAwI0GPIAv+5wKLtv8Afwl+Cm78K/I/VCm/3ptBN+0=
|
||||||
|
github.com/gobuffalo/syncx v0.0.0-20190224160051-33c29581e754/go.mod h1:HhnNqWY95UYwwW3uSASeV7vtgYkT2t16hJgV3AEPUpw=
|
||||||
|
github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee h1:s+21KNqlpePfkah2I+gwHF8xmJWRjooY+5248k6m4A0=
|
||||||
|
github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee/go.mod h1:L0fX3K22YWvt/FAX9NnzrNzcI4wNYi9Yku4O0LKYflo=
|
||||||
|
github.com/gobwas/pool v0.2.0 h1:QEmUOlnSjWtnpRGHF3SauEiOsy82Cup83Vf2LcMlnc8=
|
||||||
|
github.com/gobwas/pool v0.2.0/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw=
|
||||||
|
github.com/gobwas/ws v1.0.2 h1:CoAavW/wd/kulfZmSIBt6p24n4j7tHgNVCjsfHVNUbo=
|
||||||
|
github.com/gobwas/ws v1.0.2/go.mod h1:szmBTxLgaFppYjEmNtny/v3w89xOydFnnZMcgRRu/EM=
|
||||||
|
github.com/gocq/qrcode v0.0.0-20211114040510-366b953fcd98 h1:NJDZEa7gibUa0w4tie8qKeQFKdeKFUbecWyQDPdRx40=
|
||||||
|
github.com/gocq/qrcode v0.0.0-20211114040510-366b953fcd98/go.mod h1:E5TBHc60dsWtOL7sbXCb3P9i4xrj2J7Zm5sEJftIc1w=
|
||||||
|
github.com/gocq/rs v1.0.1 h1:ng7nhXmnx3SnfM0DOqmbP6GmQp1xGwRG9XmBiLFDWuM=
|
||||||
|
github.com/gocq/rs v1.0.1/go.mod h1:8oaQnRvqn1fMh8i5zsetgQo03OUXksJV1k+dpmExxcY=
|
||||||
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
|
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
|
||||||
github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
|
|
||||||
github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw=
|
github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw=
|
||||||
github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8=
|
github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk=
|
||||||
github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA=
|
github.com/golang/protobuf v1.5.0 h1:LUVKkCeviFUMKqHa4tXIIij/lbhnMbP7Fn5wKdKkRh4=
|
||||||
github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs=
|
|
||||||
github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w=
|
|
||||||
github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0=
|
|
||||||
github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8=
|
|
||||||
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/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/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
|
||||||
github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
|
github.com/golang/snappy v0.0.4 h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM=
|
||||||
github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
|
github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
|
||||||
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.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
|
||||||
|
github.com/google/go-cmp v0.5.3/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=
|
||||||
github.com/google/uuid v1.1.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
github.com/google/uuid v1.1.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
||||||
github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=
|
github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
|
||||||
github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
||||||
|
github.com/gorilla/websocket v1.4.1/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
|
||||||
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.4 h1:BlWpWWay/Q1LkyIwupEWBZE3PMl4xzzAgMHw+OrZxBs=
|
|
||||||
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/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8=
|
||||||
|
github.com/joho/godotenv v1.3.0/go.mod h1:7hK45KPybAkOC6peb+G5yklZfMxEjkZhHbwpqxOKXbg=
|
||||||
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 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/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/karrick/godirwalk v1.8.0/go.mod h1:H5KPZjojv4lE+QYImBI8xVtrBRgYrIVsaRPx4tDPEn4=
|
||||||
|
github.com/karrick/godirwalk v1.10.3/go.mod h1:RoGL9dQei4vP9ilrpETWE8CLOZ1kiN0LhBygSwrAsHA=
|
||||||
|
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8=
|
||||||
|
github.com/klauspost/compress v1.10.3/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs=
|
||||||
|
github.com/klauspost/compress v1.13.6 h1:P76CopJELS0TiO2mebmnzgWaajssP/EszplttgQxcgc=
|
||||||
|
github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk=
|
||||||
github.com/klauspost/cpuid/v2 v2.0.6/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg=
|
github.com/klauspost/cpuid/v2 v2.0.6/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg=
|
||||||
|
github.com/klauspost/cpuid/v2 v2.0.9 h1:lgaqFMSdTdQYdZ04uHyN2d/eKdOMyi2YLSvlQIBFYa4=
|
||||||
|
github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg=
|
||||||
|
github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
|
||||||
|
github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
|
||||||
|
github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=
|
||||||
|
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
|
||||||
|
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
|
||||||
|
github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=
|
||||||
|
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
|
||||||
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=
|
||||||
@ -79,135 +120,165 @@ github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible h1:Y6sqxHMyB1D2YSzWkL
|
|||||||
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.5 h1:A7H3tT8DhTz8u65w+JRpiBxM4dINQhUXAZnhBa2xeOE=
|
github.com/lestrrat-go/strftime v1.0.5 h1:A7H3tT8DhTz8u65w+JRpiBxM4dINQhUXAZnhBa2xeOE=
|
||||||
github.com/lestrrat-go/strftime v1.0.5/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/markbates/oncer v0.0.0-20181203154359-bf2de49a0be2/go.mod h1:Ld9puTsIW75CHf65OeIOkyKbteujpZVXDpWK6YGZbxE=
|
||||||
github.com/maruel/rs v0.0.0-20150922171536-2c81c4312fe4/go.mod h1:kcRFpEzolcEklV6rD7W95mG49/sbdX/PlFmd7ni3RvA=
|
github.com/markbates/safe v1.0.1/go.mod h1:nAqgmRi7cY2nqMc92/bSEeQA+R4OheNU2T1kNSCBdG0=
|
||||||
github.com/mattn/go-colorable v0.1.8 h1:c1ghPdyEDarC70ftn0y+A/Ee++9zz8ljHG1b13eJ0s8=
|
github.com/mattn/go-colorable v0.1.11 h1:nQ+aFkoE2TMGc0b68U2OKSexC+eq46+XwZzWXHRmPYs=
|
||||||
github.com/mattn/go-colorable v0.1.8/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc=
|
github.com/mattn/go-colorable v0.1.11/go.mod h1:u5H1YNBxpqRaxsYJYSkiCWKzEfiAb1Gb520KVy5xxl4=
|
||||||
github.com/mattn/go-isatty v0.0.12 h1:wuysRhFDzyxgEmMf5xjvJ2M9dZoWAXNNr5LSBS7uHXY=
|
|
||||||
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/mattn/go-isatty v0.0.14 h1:yVuAays6BHfxijgZPzw+3Zlu5yQgKGP2/hcQbHb7S9Y=
|
||||||
|
github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94=
|
||||||
github.com/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 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/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe/go.mod h1:wL8QJuTMNUDYhXwkmfOly8iTdp5TEcJFWZD2D7SIkUc=
|
||||||
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=
|
||||||
github.com/onsi/gomega v1.4.3 h1:RE1xgDvH7imwFD45h+u2SgIfERHlS2yNG4DObb5BSKU=
|
github.com/onsi/gomega v1.4.3 h1:RE1xgDvH7imwFD45h+u2SgIfERHlS2yNG4DObb5BSKU=
|
||||||
github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY=
|
github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY=
|
||||||
|
github.com/pelletier/go-toml v1.7.0/go.mod h1:vwGMzjaWMwyfHwgIBhI2YUM4fB6nL6lVAvS1LBMMhTE=
|
||||||
|
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
|
||||||
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
|
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
|
||||||
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
|
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
|
||||||
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
|
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
|
||||||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||||
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/rogpeppe/go-internal v1.1.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
|
||||||
github.com/segmentio/asm v1.0.0/go.mod h1:4EUJGaKsB8ImLUwOGORVsNd9vTRDeh44JGsY4aKp5I4=
|
github.com/rogpeppe/go-internal v1.2.2/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
|
||||||
|
github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
|
||||||
|
github.com/segmentio/asm v1.1.0 h1:fkVr8k5J4sKoFjTGVD6r1yKvDKqmvrEh3K7iyVxgBs8=
|
||||||
|
github.com/segmentio/asm v1.1.0/go.mod h1:4EUJGaKsB8ImLUwOGORVsNd9vTRDeh44JGsY4aKp5I4=
|
||||||
|
github.com/sirupsen/logrus v1.4.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo=
|
||||||
|
github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q=
|
||||||
|
github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE=
|
||||||
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=
|
||||||
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e h1:MRM5ITcdelLK2j1vwZ3Je0FKVCfqOLp5zO6trqMLYs0=
|
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e h1:MRM5ITcdelLK2j1vwZ3Je0FKVCfqOLp5zO6trqMLYs0=
|
||||||
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e/go.mod h1:XV66xRDqSt+GTGFMVlhk3ULuV0y9ZmzeVGR4mloJI3M=
|
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e/go.mod h1:XV66xRDqSt+GTGFMVlhk3ULuV0y9ZmzeVGR4mloJI3M=
|
||||||
|
github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ=
|
||||||
|
github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=
|
||||||
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||||
|
github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||||
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
|
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
|
||||||
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
|
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
|
||||||
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
|
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
|
||||||
|
github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||||
github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
|
github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
|
||||||
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
|
||||||
github.com/syndtr/goleveldb v1.0.0 h1:fBdIW9lB4Iz0n9khmH8w27SJ3QEJ7+IgjPEwGSZiFdE=
|
github.com/syndtr/goleveldb v1.0.0 h1:fBdIW9lB4Iz0n9khmH8w27SJ3QEJ7+IgjPEwGSZiFdE=
|
||||||
github.com/syndtr/goleveldb v1.0.0/go.mod h1:ZVVdQEZoIme9iO1Ch2Jdy24qqXrMMOU6lpPAyBWyWuQ=
|
github.com/syndtr/goleveldb v1.0.0/go.mod h1:ZVVdQEZoIme9iO1Ch2Jdy24qqXrMMOU6lpPAyBWyWuQ=
|
||||||
github.com/tidwall/gjson v1.8.1 h1:8j5EE9Hrh3l9Od1OIEDAb7IpezNA20UdRngNAj5N0WU=
|
github.com/tidwall/gjson v1.11.0 h1:C16pk7tQNiH6VlCrtIXL1w8GaOsi1X3W8KDkE1BuYd4=
|
||||||
github.com/tidwall/gjson v1.8.1/go.mod h1:5/xDoumyyDNerp2U36lyolv46b3uF/9Bu6OfyQ9GImk=
|
github.com/tidwall/gjson v1.11.0/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=
|
||||||
github.com/tidwall/match v1.0.3 h1:FQUVvBImDutD8wJLN6c5eMzWtjgONK9MwIBCOrUJKeE=
|
github.com/tidwall/match v1.1.1 h1:+Ho715JplO36QYgwN9PGYNhgZvoUSc9X2c80KVTi+GA=
|
||||||
github.com/tidwall/match v1.0.3/go.mod h1:eRSPERbgtNPcGhD8UCthc6PmLEQXEWd3PRB5JTxsfmM=
|
github.com/tidwall/match v1.1.1/go.mod h1:eRSPERbgtNPcGhD8UCthc6PmLEQXEWd3PRB5JTxsfmM=
|
||||||
github.com/tidwall/pretty v1.1.0 h1:K3hMW5epkdAVwibsQEfR/7Zj0Qgt4DxtNumTq/VloO8=
|
github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk=
|
||||||
github.com/tidwall/pretty v1.1.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk=
|
github.com/tidwall/pretty v1.2.0 h1:RWIZEg2iJ8/g6fDDYzMpobmaoGh5OLl4AXtGUGPcqCs=
|
||||||
github.com/tuotoo/qrcode v0.0.0-20190222102259-ac9c44189bf2 h1:BWVtt2VBY+lmVDu9MGKqLGKl04B+iRHcrW1Ptyi/8tg=
|
github.com/tidwall/pretty v1.2.0/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU=
|
||||||
github.com/tuotoo/qrcode v0.0.0-20190222102259-ac9c44189bf2/go.mod h1:lPnW9HVS0vJdeYyQtOvIvlXgZPNhUAhwz+z5r8AJk0Y=
|
|
||||||
github.com/ugorji/go v1.1.7 h1:/68gy2h+1mWMrwZFeD1kQialdSzAb432dtpeJ42ovdo=
|
github.com/ugorji/go v1.1.7 h1:/68gy2h+1mWMrwZFeD1kQialdSzAb432dtpeJ42ovdo=
|
||||||
github.com/ugorji/go v1.1.7/go.mod h1:kZn38zHttfInRq0xu/PH0az30d+z6vm202qpg1oXVMw=
|
github.com/ugorji/go v1.1.7/go.mod h1:kZn38zHttfInRq0xu/PH0az30d+z6vm202qpg1oXVMw=
|
||||||
github.com/ugorji/go/codec v1.1.7 h1:2SvQaVZ1ouYrrKKwoSk2pzd4A9evlKJb9oTL+OaLUSs=
|
github.com/ugorji/go/codec v1.1.7 h1:2SvQaVZ1ouYrrKKwoSk2pzd4A9evlKJb9oTL+OaLUSs=
|
||||||
github.com/ugorji/go/codec v1.1.7/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLYF3GoBXY=
|
github.com/ugorji/go/codec v1.1.7/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLYF3GoBXY=
|
||||||
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=
|
||||||
|
github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c=
|
||||||
|
github.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI=
|
||||||
|
github.com/xdg-go/scram v1.0.2 h1:akYIkZ28e6A96dkWNJQu3nmCzH3YfwMPQExUYDaRv7w=
|
||||||
|
github.com/xdg-go/scram v1.0.2/go.mod h1:1WAq6h33pAW+iRreB34OORO2Nf7qel3VV3fjBj+hCSs=
|
||||||
|
github.com/xdg-go/stringprep v1.0.2 h1:6iq84/ryjjeRmMJwxutI51F2GIPlP5BfTvXHeYjyhBc=
|
||||||
|
github.com/xdg-go/stringprep v1.0.2/go.mod h1:8F9zXuvzgwmyT5DUm4GUfZGDdT3W+LCvS6+da4O5kxM=
|
||||||
|
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d/go.mod h1:rHwXgn7JulP+udvsHwJoVG1YGAP6VLg4y9I5dyZdqmA=
|
||||||
|
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a h1:fZHgsYlfvtyqToslyjUt3VOPF4J7aK/3MPcK7xp3PDk=
|
||||||
|
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a/go.mod h1:ul22v+Nro/R083muKhosV54bj5niojjWZvU8xrevuH4=
|
||||||
|
github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
|
||||||
|
go.mongodb.org/mongo-driver v1.7.4 h1:sllcioag8Mec0LYkftYWq+cKNPIR4Kqq3iv9ZXY0g/E=
|
||||||
|
go.mongodb.org/mongo-driver v1.7.4/go.mod h1:NqaYOwnXWr5Pm7AOpO5QFxKJ503nbMse/R79oO62zWg=
|
||||||
|
golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
|
||||||
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-20190422162423-af44ce270edf/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE=
|
||||||
|
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
|
||||||
|
golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
|
||||||
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
|
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
|
||||||
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 h1:HWj/xjIHfjYU5nVXpTM0s39J9CbLn7Cc5a7IC5rwsMQ=
|
golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa h1:idItI2DDfCokpg0N51B2VtiLdJ4vAuXC9fnCb2gACo4=
|
||||||
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
|
golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
|
||||||
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
|
golang.org/x/image v0.0.0-20211028202545-6944b10bf410 h1:hTftEOvwiOq2+O8k2D5/Q7COC7k5Qcrgc2TFURJYnvQ=
|
||||||
golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d h1:RNPAfi2nHY7C2srAV8A49jpsYr0ADedCk1wq6fTMTvs=
|
golang.org/x/image v0.0.0-20211028202545-6944b10bf410/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM=
|
||||||
golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM=
|
golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
|
||||||
golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
|
|
||||||
golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU=
|
|
||||||
golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
|
|
||||||
golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
|
|
||||||
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/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-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-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-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-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
|
||||||
|
golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
|
||||||
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/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
|
golang.org/x/net v0.0.0-20210505024714-0287a6fb4125/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
|
||||||
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
|
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
|
||||||
|
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 h1:CIJ76btIcR3eFI5EgSo6k1qKw9KJexJuRLI9G7Hp5wE=
|
||||||
|
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
|
||||||
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
|
golang.org/x/sync v0.0.0-20190412183630-56d357773e84/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
|
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
|
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c h1:5KslGYwFpkhGh+Q16bwMP3cOontH8FOep7tGV86Y7SQ=
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c h1:5KslGYwFpkhGh+Q16bwMP3cOontH8FOep7tGV86Y7SQ=
|
||||||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/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-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
|
golang.org/x/sys v0.0.0-20190419153524-e8e3143a4f4a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
|
golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
|
golang.org/x/sys v0.0.0-20190531175056-4c3a928424d2/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-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20201126233918-771906719818/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20201126233918-771906719818/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 h1:SrN+KX8Art/Sf4HNj6Zcz06G7VEz+7w9tdXTPOZ7+l4=
|
|
||||||
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.0.0-20210902050250-f475640dd07b/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.0.0-20211113001501-0c823b97ae02 h1:7NCfEGl0sfUojmX78nK9pBJuUlSZWEJA/TwASvfiPLo=
|
||||||
|
golang.org/x/sys v0.0.0-20211113001501-0c823b97ae02/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
||||||
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b h1:9zKuko04nR4gjZ4+DNjHqRlAJqbJETHwiNKDqTfOjfE=
|
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 h1:JGgROgKl9N8DuW20oFS5gxc+lE67/N3FcwmBPMe7ArY=
|
||||||
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
|
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
|
||||||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||||
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
|
golang.org/x/text v0.3.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.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||||
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/text v0.3.7 h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk=
|
||||||
|
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
|
||||||
|
golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
|
||||||
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac h1:7zkz7BUtwNFFqcowJ+RIgu2MaV/MapERkDIy+mwPyjs=
|
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac h1:7zkz7BUtwNFFqcowJ+RIgu2MaV/MapERkDIy+mwPyjs=
|
||||||
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac/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-20190329151228-23e29df326fe/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
|
||||||
golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY=
|
golang.org/x/tools v0.0.0-20190416151739-9c9e1878f421/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
|
||||||
golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
|
golang.org/x/tools v0.0.0-20190420181800-aa740d480789/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
|
||||||
golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=
|
golang.org/x/tools v0.0.0-20190531172133-b3315ee88b7d/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=
|
||||||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=
|
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
|
||||||
|
golang.org/x/tools v0.0.0-20201124115921-2c860bdd6e78/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
|
||||||
|
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||||
|
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||||
google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE=
|
||||||
google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||||
google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=
|
|
||||||
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=
|
|
||||||
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo=
|
|
||||||
google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
|
|
||||||
google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg=
|
|
||||||
google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=
|
|
||||||
google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8=
|
|
||||||
google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0=
|
|
||||||
google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM=
|
|
||||||
google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE=
|
|
||||||
google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo=
|
|
||||||
google.golang.org/protobuf v1.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.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/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
|
|
||||||
google.golang.org/protobuf v1.27.1 h1:SnqbnDw1V7RiZcXPx5MEeqPv2s79L9i7BJUlG/+RurQ=
|
google.golang.org/protobuf v1.27.1 h1:SnqbnDw1V7RiZcXPx5MEeqPv2s79L9i7BJUlG/+RurQ=
|
||||||
google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
|
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/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
|
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY=
|
||||||
|
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
|
gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=
|
||||||
gopkg.in/fsnotify.v1 v1.4.7 h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=
|
gopkg.in/fsnotify.v1 v1.4.7 h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=
|
||||||
gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys=
|
gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys=
|
||||||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=
|
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=
|
||||||
@ -219,12 +290,91 @@ gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
|
|||||||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo=
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo=
|
||||||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||||
honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
|
lukechampine.com/uint128 v1.1.1/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk=
|
||||||
honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
|
modernc.org/cc/v3 v3.33.6/go.mod h1:iPJg1pkwXqAV16SNgFBVYmggfMg6xhs+2oiO0vclK3g=
|
||||||
modernc.org/libc v1.8.1 h1:y9oPIhwcaFXxX7kMp6Qb2ZLKzr0mDkikWN3CV5GS63o=
|
modernc.org/cc/v3 v3.33.9/go.mod h1:iPJg1pkwXqAV16SNgFBVYmggfMg6xhs+2oiO0vclK3g=
|
||||||
|
modernc.org/cc/v3 v3.33.11/go.mod h1:iPJg1pkwXqAV16SNgFBVYmggfMg6xhs+2oiO0vclK3g=
|
||||||
|
modernc.org/cc/v3 v3.34.0/go.mod h1:iPJg1pkwXqAV16SNgFBVYmggfMg6xhs+2oiO0vclK3g=
|
||||||
|
modernc.org/cc/v3 v3.35.0/go.mod h1:iPJg1pkwXqAV16SNgFBVYmggfMg6xhs+2oiO0vclK3g=
|
||||||
|
modernc.org/cc/v3 v3.35.4/go.mod h1:iPJg1pkwXqAV16SNgFBVYmggfMg6xhs+2oiO0vclK3g=
|
||||||
|
modernc.org/cc/v3 v3.35.5/go.mod h1:iPJg1pkwXqAV16SNgFBVYmggfMg6xhs+2oiO0vclK3g=
|
||||||
|
modernc.org/cc/v3 v3.35.7/go.mod h1:iPJg1pkwXqAV16SNgFBVYmggfMg6xhs+2oiO0vclK3g=
|
||||||
|
modernc.org/cc/v3 v3.35.8/go.mod h1:iPJg1pkwXqAV16SNgFBVYmggfMg6xhs+2oiO0vclK3g=
|
||||||
|
modernc.org/cc/v3 v3.35.10/go.mod h1:iPJg1pkwXqAV16SNgFBVYmggfMg6xhs+2oiO0vclK3g=
|
||||||
|
modernc.org/cc/v3 v3.35.15/go.mod h1:iPJg1pkwXqAV16SNgFBVYmggfMg6xhs+2oiO0vclK3g=
|
||||||
|
modernc.org/cc/v3 v3.35.16/go.mod h1:iPJg1pkwXqAV16SNgFBVYmggfMg6xhs+2oiO0vclK3g=
|
||||||
|
modernc.org/cc/v3 v3.35.17/go.mod h1:iPJg1pkwXqAV16SNgFBVYmggfMg6xhs+2oiO0vclK3g=
|
||||||
|
modernc.org/ccgo/v3 v3.9.5/go.mod h1:umuo2EP2oDSBnD3ckjaVUXMrmeAw8C8OSICVa0iFf60=
|
||||||
|
modernc.org/ccgo/v3 v3.10.0/go.mod h1:c0yBmkRFi7uW4J7fwx/JiijwOjeAeR2NoSaRVFPmjMw=
|
||||||
|
modernc.org/ccgo/v3 v3.11.0/go.mod h1:dGNposbDp9TOZ/1KBxghxtUp/bzErD0/0QW4hhSaBMI=
|
||||||
|
modernc.org/ccgo/v3 v3.11.1/go.mod h1:lWHxfsn13L3f7hgGsGlU28D9eUOf6y3ZYHKoPaKU0ag=
|
||||||
|
modernc.org/ccgo/v3 v3.11.3/go.mod h1:0oHunRBMBiXOKdaglfMlRPBALQqsfrCKXgw9okQ3GEw=
|
||||||
|
modernc.org/ccgo/v3 v3.12.4/go.mod h1:Bk+m6m2tsooJchP/Yk5ji56cClmN6R1cqc9o/YtbgBQ=
|
||||||
|
modernc.org/ccgo/v3 v3.12.6/go.mod h1:0Ji3ruvpFPpz+yu+1m0wk68pdr/LENABhTrDkMDWH6c=
|
||||||
|
modernc.org/ccgo/v3 v3.12.8/go.mod h1:Hq9keM4ZfjCDuDXxaHptpv9N24JhgBZmUG5q60iLgUo=
|
||||||
|
modernc.org/ccgo/v3 v3.12.11/go.mod h1:0jVcmyDwDKDGWbcrzQ+xwJjbhZruHtouiBEvDfoIsdg=
|
||||||
|
modernc.org/ccgo/v3 v3.12.14/go.mod h1:GhTu1k0YCpJSuWwtRAEHAol5W7g1/RRfS4/9hc9vF5I=
|
||||||
|
modernc.org/ccgo/v3 v3.12.18/go.mod h1:jvg/xVdWWmZACSgOiAhpWpwHWylbJaSzayCqNOJKIhs=
|
||||||
|
modernc.org/ccgo/v3 v3.12.20/go.mod h1:aKEdssiu7gVgSy/jjMastnv/q6wWGRbszbheXgWRHc8=
|
||||||
|
modernc.org/ccgo/v3 v3.12.21/go.mod h1:ydgg2tEprnyMn159ZO/N4pLBqpL7NOkJ88GT5zNU2dE=
|
||||||
|
modernc.org/ccgo/v3 v3.12.22/go.mod h1:nyDVFMmMWhMsgQw+5JH6B6o4MnZ+UQNw1pp52XYFPRk=
|
||||||
|
modernc.org/ccgo/v3 v3.12.25/go.mod h1:UaLyWI26TwyIT4+ZFNjkyTbsPsY3plAEB6E7L/vZV3w=
|
||||||
|
modernc.org/ccgo/v3 v3.12.29/go.mod h1:FXVjG7YLf9FetsS2OOYcwNhcdOLGt8S9bQ48+OP75cE=
|
||||||
|
modernc.org/ccgo/v3 v3.12.36/go.mod h1:uP3/Fiezp/Ga8onfvMLpREq+KUjUmYMxXPO8tETHtA8=
|
||||||
|
modernc.org/ccgo/v3 v3.12.38/go.mod h1:93O0G7baRST1vNj4wnZ49b1kLxt0xCW5Hsa2qRaZPqc=
|
||||||
|
modernc.org/ccgo/v3 v3.12.43/go.mod h1:k+DqGXd3o7W+inNujK15S5ZYuPoWYLpF5PYougCmthU=
|
||||||
|
modernc.org/ccgo/v3 v3.12.46/go.mod h1:UZe6EvMSqOxaJ4sznY7b23/k13R8XNlyWsO5bAmSgOE=
|
||||||
|
modernc.org/ccgo/v3 v3.12.47/go.mod h1:m8d6p0zNps187fhBwzY/ii6gxfjob1VxWb919Nk1HUk=
|
||||||
|
modernc.org/ccgo/v3 v3.12.50/go.mod h1:bu9YIwtg+HXQxBhsRDE+cJjQRuINuT9PUK4orOco/JI=
|
||||||
|
modernc.org/ccgo/v3 v3.12.51/go.mod h1:gaIIlx4YpmGO2bLye04/yeblmvWEmE4BBBls4aJXFiE=
|
||||||
|
modernc.org/ccgo/v3 v3.12.53/go.mod h1:8xWGGTFkdFEWBEsUmi+DBjwu/WLy3SSOrqEmKUjMeEg=
|
||||||
|
modernc.org/ccgo/v3 v3.12.54/go.mod h1:yANKFTm9llTFVX1FqNKHE0aMcQb1fuPJx6p8AcUx+74=
|
||||||
|
modernc.org/ccgo/v3 v3.12.55/go.mod h1:rsXiIyJi9psOwiBkplOaHye5L4MOOaCjHg1Fxkj7IeU=
|
||||||
|
modernc.org/ccgo/v3 v3.12.56/go.mod h1:ljeFks3faDseCkr60JMpeDb2GSO3TKAmrzm7q9YOcMU=
|
||||||
|
modernc.org/ccgo/v3 v3.12.57/go.mod h1:hNSF4DNVgBl8wYHpMvPqQWDQx8luqxDnNGCMM4NFNMc=
|
||||||
|
modernc.org/ccgo/v3 v3.12.60/go.mod h1:k/Nn0zdO1xHVWjPYVshDeWKqbRWIfif5dtsIOCUVMqM=
|
||||||
modernc.org/libc v1.8.1/go.mod h1:U1eq8YWr/Kc1RWCMFUWEdkTg8OTcfLw2kY8EDwl039w=
|
modernc.org/libc v1.8.1/go.mod h1:U1eq8YWr/Kc1RWCMFUWEdkTg8OTcfLw2kY8EDwl039w=
|
||||||
|
modernc.org/libc v1.9.8/go.mod h1:U1eq8YWr/Kc1RWCMFUWEdkTg8OTcfLw2kY8EDwl039w=
|
||||||
|
modernc.org/libc v1.9.11/go.mod h1:NyF3tsA5ArIjJ83XB0JlqhjTabTCHm9aX4XMPHyQn0Q=
|
||||||
|
modernc.org/libc v1.11.0/go.mod h1:2lOfPmj7cz+g1MrPNmX65QCzVxgNq2C5o0jdLY2gAYg=
|
||||||
|
modernc.org/libc v1.11.2/go.mod h1:ioIyrl3ETkugDO3SGZ+6EOKvlP3zSOycUETe4XM4n8M=
|
||||||
|
modernc.org/libc v1.11.5/go.mod h1:k3HDCP95A6U111Q5TmG3nAyUcp3kR5YFZTeDS9v8vSU=
|
||||||
|
modernc.org/libc v1.11.6/go.mod h1:ddqmzR6p5i4jIGK1d/EiSw97LBcE3dK24QEwCFvgNgE=
|
||||||
|
modernc.org/libc v1.11.11/go.mod h1:lXEp9QOOk4qAYOtL3BmMve99S5Owz7Qyowzvg6LiZso=
|
||||||
|
modernc.org/libc v1.11.13/go.mod h1:ZYawJWlXIzXy2Pzghaf7YfM8OKacP3eZQI81PDLFdY8=
|
||||||
|
modernc.org/libc v1.11.16/go.mod h1:+DJquzYi+DMRUtWI1YNxrlQO6TcA5+dRRiq8HWBWRC8=
|
||||||
|
modernc.org/libc v1.11.19/go.mod h1:e0dgEame6mkydy19KKaVPBeEnyJB4LGNb0bBH1EtQ3I=
|
||||||
|
modernc.org/libc v1.11.24/go.mod h1:FOSzE0UwookyT1TtCJrRkvsOrX2k38HoInhw+cSCUGk=
|
||||||
|
modernc.org/libc v1.11.26/go.mod h1:SFjnYi9OSd2W7f4ct622o/PAYqk7KHv6GS8NZULIjKY=
|
||||||
|
modernc.org/libc v1.11.27/go.mod h1:zmWm6kcFXt/jpzeCgfvUNswM0qke8qVwxqZrnddlDiE=
|
||||||
|
modernc.org/libc v1.11.28/go.mod h1:Ii4V0fTFcbq3qrv3CNn+OGHAvzqMBvC7dBNyC4vHZlg=
|
||||||
|
modernc.org/libc v1.11.31/go.mod h1:FpBncUkEAtopRNJj8aRo29qUiyx5AvAlAxzlx9GNaVM=
|
||||||
|
modernc.org/libc v1.11.34/go.mod h1:+Tzc4hnb1iaX/SKAutJmfzES6awxfU1BPvrrJO0pYLg=
|
||||||
|
modernc.org/libc v1.11.37/go.mod h1:dCQebOwoO1046yTrfUE5nX1f3YpGZQKNcITUYWlrAWo=
|
||||||
|
modernc.org/libc v1.11.39/go.mod h1:mV8lJMo2S5A31uD0k1cMu7vrJbSA3J3waQJxpV4iqx8=
|
||||||
|
modernc.org/libc v1.11.42/go.mod h1:yzrLDU+sSjLE+D4bIhS7q1L5UwXDOw99PLSX0BlZvSQ=
|
||||||
|
modernc.org/libc v1.11.44/go.mod h1:KFq33jsma7F5WXiYelU8quMJasCCTnHK0mkri4yPHgA=
|
||||||
|
modernc.org/libc v1.11.45/go.mod h1:Y192orvfVQQYFzCNsn+Xt0Hxt4DiO4USpLNXBlXg/tM=
|
||||||
|
modernc.org/libc v1.11.47/go.mod h1:tPkE4PzCTW27E6AIKIR5IwHAQKCAtudEIeAV1/SiyBg=
|
||||||
|
modernc.org/libc v1.11.49/go.mod h1:9JrJuK5WTtoTWIFQ7QjX2Mb/bagYdZdscI3xrvHbXjE=
|
||||||
|
modernc.org/libc v1.11.51/go.mod h1:R9I8u9TS+meaWLdbfQhq2kFknTW0O3aw3kEMqDDxMaM=
|
||||||
|
modernc.org/libc v1.11.53/go.mod h1:5ip5vWYPAoMulkQ5XlSJTy12Sz5U6blOQiYasilVPsU=
|
||||||
|
modernc.org/libc v1.11.54/go.mod h1:S/FVnskbzVUrjfBqlGFIPA5m7UwB3n9fojHhCNfSsnw=
|
||||||
|
modernc.org/libc v1.11.55/go.mod h1:j2A5YBRm6HjNkoSs/fzZrSxCuwWqcMYTDPLNx0URn3M=
|
||||||
|
modernc.org/libc v1.11.56/go.mod h1:pakHkg5JdMLt2OgRadpPOTnyRXm/uzu+Yyg/LSLdi18=
|
||||||
|
modernc.org/libc v1.11.58/go.mod h1:ns94Rxv0OWyoQrDqMFfWwka2BcaF6/61CqJRK9LP7S8=
|
||||||
|
modernc.org/libc v1.11.70 h1:OHnBZYEJF8CuLOH++G4XYL2lZ4yLH/kkKTRf6gqV5UE=
|
||||||
|
modernc.org/libc v1.11.70/go.mod h1:DUOmMYe+IvKi9n6Mycyx3DbjfzSKrdr/0Vgt3j7P5gw=
|
||||||
modernc.org/mathutil v1.1.1/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E=
|
modernc.org/mathutil v1.1.1/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E=
|
||||||
modernc.org/mathutil v1.2.2 h1:+yFk8hBprV+4c0U9GjFtL+dV3N8hOJ8JCituQcMShFY=
|
|
||||||
modernc.org/mathutil v1.2.2/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E=
|
modernc.org/mathutil v1.2.2/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E=
|
||||||
modernc.org/memory v1.0.4 h1:utMBrFcpnQDdNsmM6asmyH/FM9TqLPS7XF7otpJmrwM=
|
modernc.org/mathutil v1.4.0/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E=
|
||||||
|
modernc.org/mathutil v1.4.1 h1:ij3fYGe8zBF4Vu+g0oT7mB06r8sqGWKuJu1yXeR4by8=
|
||||||
|
modernc.org/mathutil v1.4.1/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E=
|
||||||
modernc.org/memory v1.0.4/go.mod h1:nV2OApxradM3/OVbs2/0OsP6nPfakXpi50C7dcoHXlc=
|
modernc.org/memory v1.0.4/go.mod h1:nV2OApxradM3/OVbs2/0OsP6nPfakXpi50C7dcoHXlc=
|
||||||
|
modernc.org/memory v1.0.5 h1:XRch8trV7GgvTec2i7jc33YlUI0RKVDBvZ5eZ5m8y14=
|
||||||
|
modernc.org/memory v1.0.5/go.mod h1:B7OYswTRnfGg+4tDH1t1OeUNnsy2viGTdME4tzd+IjM=
|
||||||
|
modernc.org/opt v0.1.1/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0=
|
||||||
|
modernc.org/strutil v1.1.1/go.mod h1:DE+MQQ/hjKBZS2zNInV5hhcipt5rLPWkmpbGeW5mmdw=
|
||||||
|
modernc.org/token v1.0.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM=
|
||||||
|
nhooyr.io/websocket v1.8.7 h1:usjR2uOr/zjjkVMy0lW+PPohFok7PCow5sDjLgX4P4g=
|
||||||
|
nhooyr.io/websocket v1.8.7/go.mod h1:B70DZP8IakI65RVQ51MsWP/8jndNma26DVA/nFSCgW0=
|
||||||
|
39
internal/base/feature.go
Normal file
39
internal/base/feature.go
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
package base
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io"
|
||||||
|
|
||||||
|
"github.com/pkg/errors"
|
||||||
|
)
|
||||||
|
|
||||||
|
// silk encode features
|
||||||
|
var (
|
||||||
|
EncodeSilk = encodeSilk // 编码 SilkV3 音频
|
||||||
|
ResampleSilk = resampleSilk // 将silk重新编码为 24000 bit rate
|
||||||
|
)
|
||||||
|
|
||||||
|
func encodeSilk(_ []byte, _ string) ([]byte, error) {
|
||||||
|
return nil, errors.New("not supported now")
|
||||||
|
}
|
||||||
|
|
||||||
|
func resampleSilk(data []byte) []byte {
|
||||||
|
return data
|
||||||
|
}
|
||||||
|
|
||||||
|
// Mime scan feature
|
||||||
|
var (
|
||||||
|
IsLawfulImage = nocheck // 检查图片MIME
|
||||||
|
IsLawfulAudio = nocheck // 检查音频MIME
|
||||||
|
)
|
||||||
|
|
||||||
|
func nocheck(_ io.ReadSeeker) (bool, string) {
|
||||||
|
return true, ""
|
||||||
|
}
|
||||||
|
|
||||||
|
// todo: enable all in v1.1.0
|
||||||
|
|
||||||
|
// onebot 12 feature
|
||||||
|
const (
|
||||||
|
AcceptOneBot12HTTPEndPoint = false
|
||||||
|
AcceptOneBot12Message = false
|
||||||
|
)
|
150
internal/base/flag.go
Normal file
150
internal/base/flag.go
Normal file
@ -0,0 +1,150 @@
|
|||||||
|
// Package base provides base config for go-cqhttp
|
||||||
|
package base
|
||||||
|
|
||||||
|
import (
|
||||||
|
"flag"
|
||||||
|
"fmt"
|
||||||
|
"os"
|
||||||
|
"os/exec"
|
||||||
|
"path"
|
||||||
|
"path/filepath"
|
||||||
|
"strings"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
log "github.com/sirupsen/logrus"
|
||||||
|
"gopkg.in/yaml.v3"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/go-cqhttp/modules/config"
|
||||||
|
)
|
||||||
|
|
||||||
|
// command flags
|
||||||
|
var (
|
||||||
|
LittleC string // config file
|
||||||
|
LittleD bool // daemon
|
||||||
|
LittleH bool // Help
|
||||||
|
LittleWD string // working directory
|
||||||
|
)
|
||||||
|
|
||||||
|
// config file flags
|
||||||
|
var (
|
||||||
|
Debug bool // 是否开启 debug 模式
|
||||||
|
RemoveReplyAt bool // 是否删除reply后的at
|
||||||
|
ExtraReplyData bool // 是否上报额外reply信息
|
||||||
|
IgnoreInvalidCQCode bool // 是否忽略无效CQ码
|
||||||
|
SplitURL bool // 是否分割URL
|
||||||
|
ForceFragmented bool // 是否启用强制分片
|
||||||
|
SkipMimeScan bool // 是否跳过Mime扫描
|
||||||
|
ReportSelfMessage bool // 是否上报自身消息
|
||||||
|
UseSSOAddress bool // 是否使用服务器下发的新地址进行重连
|
||||||
|
LogForceNew bool // 是否在每次启动时强制创建全新的文件储存日志
|
||||||
|
LogColorful bool // 是否启用日志颜色
|
||||||
|
FastStart bool // 是否为快速启动
|
||||||
|
|
||||||
|
PostFormat string // 上报格式 string or array
|
||||||
|
Proxy string // 存储 proxy_rewrite,用于设置代理
|
||||||
|
PasswordHash [16]byte // 存储QQ密码哈希供登录使用
|
||||||
|
AccountToken []byte // 存储 AccountToken 供登录使用
|
||||||
|
Account *config.Account // 账户配置
|
||||||
|
Reconnect *config.Reconnect // 重连配置
|
||||||
|
LogLevel string // 日志等级
|
||||||
|
LogAging = time.Hour * 24 * 365 // 日志时效
|
||||||
|
HeartbeatInterval = time.Second * 5 // 心跳间隔
|
||||||
|
|
||||||
|
Servers []map[string]yaml.Node // 连接服务列表
|
||||||
|
Database map[string]yaml.Node // 数据库列表
|
||||||
|
)
|
||||||
|
|
||||||
|
// Parse parse flags
|
||||||
|
func Parse() {
|
||||||
|
wd, _ := os.Getwd()
|
||||||
|
dc := path.Join(wd, "config.yml")
|
||||||
|
flag.StringVar(&LittleC, "c", dc, "configuration filename")
|
||||||
|
flag.BoolVar(&LittleD, "d", false, "running as a daemon")
|
||||||
|
flag.BoolVar(&LittleH, "h", false, "this Help")
|
||||||
|
flag.StringVar(&LittleWD, "w", "", "cover the working directory")
|
||||||
|
d := flag.Bool("D", false, "debug mode")
|
||||||
|
flag.Parse()
|
||||||
|
|
||||||
|
if *d {
|
||||||
|
Debug = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Init read config from yml file
|
||||||
|
func Init() {
|
||||||
|
conf := config.Parse(LittleC)
|
||||||
|
{ // bool config
|
||||||
|
if conf.Output.Debug {
|
||||||
|
Debug = true
|
||||||
|
}
|
||||||
|
IgnoreInvalidCQCode = conf.Message.IgnoreInvalidCQCode
|
||||||
|
SplitURL = conf.Message.FixURL
|
||||||
|
RemoveReplyAt = conf.Message.RemoveReplyAt
|
||||||
|
ExtraReplyData = conf.Message.ExtraReplyData
|
||||||
|
ForceFragmented = conf.Message.ForceFragment
|
||||||
|
SkipMimeScan = conf.Message.SkipMimeScan
|
||||||
|
ReportSelfMessage = conf.Message.ReportSelfMessage
|
||||||
|
UseSSOAddress = conf.Account.UseSSOAddress
|
||||||
|
}
|
||||||
|
{ // others
|
||||||
|
Proxy = conf.Message.ProxyRewrite
|
||||||
|
Account = conf.Account
|
||||||
|
Reconnect = conf.Account.ReLogin
|
||||||
|
Servers = conf.Servers
|
||||||
|
Database = conf.Database
|
||||||
|
LogLevel = conf.Output.LogLevel
|
||||||
|
LogColorful = conf.Output.LogColorful == nil || *conf.Output.LogColorful
|
||||||
|
if conf.Message.PostFormat != "string" && conf.Message.PostFormat != "array" {
|
||||||
|
log.Warnf("post-format 配置错误, 将自动使用 string")
|
||||||
|
PostFormat = "string"
|
||||||
|
} else {
|
||||||
|
PostFormat = conf.Message.PostFormat
|
||||||
|
}
|
||||||
|
if conf.Output.LogAging > 0 {
|
||||||
|
LogAging = time.Hour * 24 * time.Duration(conf.Output.LogAging)
|
||||||
|
}
|
||||||
|
if conf.Heartbeat.Interval > 0 {
|
||||||
|
HeartbeatInterval = time.Second * time.Duration(conf.Heartbeat.Interval)
|
||||||
|
}
|
||||||
|
if conf.Heartbeat.Disabled || conf.Heartbeat.Interval < 0 {
|
||||||
|
HeartbeatInterval = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Help cli命令行-h的帮助提示
|
||||||
|
func Help() {
|
||||||
|
fmt.Printf(`go-cqhttp service
|
||||||
|
version: %s
|
||||||
|
Usage:
|
||||||
|
server [OPTIONS]
|
||||||
|
Options:
|
||||||
|
`, Version)
|
||||||
|
|
||||||
|
flag.PrintDefaults()
|
||||||
|
os.Exit(0)
|
||||||
|
}
|
||||||
|
|
||||||
|
// ResetWorkingDir 重设工作路径
|
||||||
|
func ResetWorkingDir() {
|
||||||
|
wd := LittleWD
|
||||||
|
args := make([]string, 0, len(os.Args))
|
||||||
|
for i := 1; i < len(os.Args); i++ {
|
||||||
|
if os.Args[i] == "-w" {
|
||||||
|
i++ // skip value field
|
||||||
|
} else if !strings.HasPrefix(os.Args[i], "-w") {
|
||||||
|
args = append(args, os.Args[i])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
p, _ := filepath.Abs(os.Args[0])
|
||||||
|
proc := exec.Command(p, args...)
|
||||||
|
proc.Stdin = os.Stdin
|
||||||
|
proc.Stdout = os.Stdout
|
||||||
|
proc.Stderr = os.Stderr
|
||||||
|
proc.Dir = wd
|
||||||
|
err := proc.Run()
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
os.Exit(0)
|
||||||
|
}
|
16
internal/base/version.go
Normal file
16
internal/base/version.go
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
package base
|
||||||
|
|
||||||
|
import "runtime/debug"
|
||||||
|
|
||||||
|
// Version go-cqhttp的版本信息,在编译时使用ldflags进行覆盖
|
||||||
|
var Version = "unknown"
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
if Version != "unknown" {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
info, ok := debug.ReadBuildInfo()
|
||||||
|
if ok {
|
||||||
|
Version = info.Main.Version
|
||||||
|
}
|
||||||
|
}
|
524
internal/btree/btree.go
Normal file
524
internal/btree/btree.go
Normal file
@ -0,0 +1,524 @@
|
|||||||
|
// Package btree provide a disk-based btree
|
||||||
|
package btree
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io"
|
||||||
|
"math/rand"
|
||||||
|
"os"
|
||||||
|
"unsafe"
|
||||||
|
|
||||||
|
"github.com/pkg/errors"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
hashSize = 16 // md5 hash
|
||||||
|
tableSize = (1024 - 1) / int(unsafe.Sizeof(item{}))
|
||||||
|
cacheSlots = 11 // prime
|
||||||
|
superSize = int(unsafe.Sizeof(super{}))
|
||||||
|
tableStructSize = int(unsafe.Sizeof(table{}))
|
||||||
|
)
|
||||||
|
|
||||||
|
type item struct {
|
||||||
|
hash [hashSize]byte
|
||||||
|
offset int64
|
||||||
|
child int64
|
||||||
|
}
|
||||||
|
|
||||||
|
type table struct {
|
||||||
|
items [tableSize]item
|
||||||
|
size int
|
||||||
|
}
|
||||||
|
|
||||||
|
type cache struct {
|
||||||
|
table *table
|
||||||
|
offset int64
|
||||||
|
}
|
||||||
|
|
||||||
|
type super struct {
|
||||||
|
top int64
|
||||||
|
freeTop int64
|
||||||
|
alloc int64
|
||||||
|
}
|
||||||
|
|
||||||
|
// DB ...
|
||||||
|
type DB struct {
|
||||||
|
fd *os.File
|
||||||
|
top int64
|
||||||
|
freeTop int64
|
||||||
|
alloc int64
|
||||||
|
cache [cacheSlots]cache
|
||||||
|
|
||||||
|
inAllocator bool
|
||||||
|
deleteLarger bool
|
||||||
|
fqueue [freeQueueLen]chunk
|
||||||
|
fqueueLen int
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *DB) get(offset int64) *table {
|
||||||
|
assert(offset != 0)
|
||||||
|
|
||||||
|
// take from cache
|
||||||
|
slot := &d.cache[offset%cacheSlots]
|
||||||
|
if slot.offset == offset {
|
||||||
|
return slot.table
|
||||||
|
}
|
||||||
|
|
||||||
|
table := new(table)
|
||||||
|
|
||||||
|
d.fd.Seek(offset, io.SeekStart)
|
||||||
|
err := readTable(d.fd, table)
|
||||||
|
if err != nil {
|
||||||
|
panic(errors.Wrap(err, "btree I/O error"))
|
||||||
|
}
|
||||||
|
return table
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *DB) put(t *table, offset int64) {
|
||||||
|
assert(offset != 0)
|
||||||
|
|
||||||
|
// overwrite cache
|
||||||
|
slot := &d.cache[offset%cacheSlots]
|
||||||
|
slot.table = t
|
||||||
|
slot.offset = offset
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *DB) flush(t *table, offset int64) {
|
||||||
|
assert(offset != 0)
|
||||||
|
|
||||||
|
d.fd.Seek(offset, io.SeekStart)
|
||||||
|
err := writeTable(d.fd, t)
|
||||||
|
if err != nil {
|
||||||
|
panic(errors.Wrap(err, "btree I/O error"))
|
||||||
|
}
|
||||||
|
d.put(t, offset)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *DB) flushSuper() {
|
||||||
|
d.fd.Seek(0, io.SeekStart)
|
||||||
|
super := super{
|
||||||
|
top: d.top,
|
||||||
|
freeTop: d.freeTop,
|
||||||
|
alloc: d.alloc,
|
||||||
|
}
|
||||||
|
err := writeSuper(d.fd, &super)
|
||||||
|
if err != nil {
|
||||||
|
panic(errors.Wrap(err, "btree I/O error"))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Open opens an existed btree file
|
||||||
|
func Open(name string) (*DB, error) {
|
||||||
|
btree := new(DB)
|
||||||
|
fd, err := os.OpenFile(name, os.O_RDWR, 0o644)
|
||||||
|
if err != nil {
|
||||||
|
return nil, errors.Wrap(err, "btree open file failed")
|
||||||
|
}
|
||||||
|
btree.fd = fd
|
||||||
|
|
||||||
|
super := super{}
|
||||||
|
err = readSuper(fd, &super)
|
||||||
|
btree.top = super.top
|
||||||
|
btree.freeTop = super.freeTop
|
||||||
|
btree.alloc = super.alloc
|
||||||
|
return btree, errors.Wrap(err, "btree read meta info failed")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create creates a database
|
||||||
|
func Create(name string) (*DB, error) {
|
||||||
|
btree := new(DB)
|
||||||
|
fd, err := os.OpenFile(name, os.O_RDWR|os.O_TRUNC|os.O_CREATE, 0o644)
|
||||||
|
if err != nil {
|
||||||
|
return nil, errors.Wrap(err, "btree open file failed")
|
||||||
|
}
|
||||||
|
|
||||||
|
btree.fd = fd
|
||||||
|
btree.alloc = int64(superSize)
|
||||||
|
btree.flushSuper()
|
||||||
|
return btree, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Close closes the database
|
||||||
|
func (d *DB) Close() error {
|
||||||
|
_ = d.fd.Sync()
|
||||||
|
err := d.fd.Close()
|
||||||
|
for i := 0; i < cacheSlots; i++ {
|
||||||
|
d.cache[i] = cache{}
|
||||||
|
}
|
||||||
|
return errors.Wrap(err, "btree close failed")
|
||||||
|
}
|
||||||
|
|
||||||
|
func collapse(bt *DB, offset int64) int64 {
|
||||||
|
table := bt.get(offset)
|
||||||
|
if table.size != 0 {
|
||||||
|
/* unable to collapse */
|
||||||
|
bt.put(table, offset)
|
||||||
|
return offset
|
||||||
|
}
|
||||||
|
ret := table.items[0].child
|
||||||
|
bt.put(table, offset)
|
||||||
|
|
||||||
|
/*
|
||||||
|
* WARNING: this is dangerous as the chunk is added to allocation tree
|
||||||
|
* before the references to it are removed!
|
||||||
|
*/
|
||||||
|
bt.freeChunk(offset, int(unsafe.Sizeof(table)))
|
||||||
|
return ret
|
||||||
|
}
|
||||||
|
|
||||||
|
// split a table. The pivot item is stored to 'hash' and 'offset'.
|
||||||
|
// Returns offset to the new table.
|
||||||
|
func (d *DB) split(t *table, hash *byte, offset *int64) int64 {
|
||||||
|
copyhash(hash, &t.items[tableSize/2].hash[0])
|
||||||
|
*offset = t.items[tableSize/2].offset
|
||||||
|
|
||||||
|
ntable := new(table)
|
||||||
|
ntable.size = t.size - tableSize/2 - 1
|
||||||
|
|
||||||
|
t.size = tableSize / 2
|
||||||
|
|
||||||
|
copy(ntable.items[:ntable.size+1], t.items[tableSize/2+1:])
|
||||||
|
|
||||||
|
noff := d.allocChunk(tableStructSize)
|
||||||
|
d.flush(ntable, noff)
|
||||||
|
|
||||||
|
// make sure data is written before a reference is added to it
|
||||||
|
_ = d.fd.Sync()
|
||||||
|
return noff
|
||||||
|
}
|
||||||
|
|
||||||
|
// takeSmallest find and remove the smallest item from the given table. The key of the item
|
||||||
|
// is stored to 'hash'. Returns offset to the item
|
||||||
|
func (d *DB) takeSmallest(toff int64, sha1 *byte) int64 {
|
||||||
|
table := d.get(toff)
|
||||||
|
assert(table.size > 0)
|
||||||
|
|
||||||
|
var off int64
|
||||||
|
child := table.items[0].child
|
||||||
|
if child == 0 {
|
||||||
|
off = d.remove(table, 0, sha1)
|
||||||
|
} else {
|
||||||
|
/* recursion */
|
||||||
|
off = d.takeSmallest(child, sha1)
|
||||||
|
table.items[0].child = collapse(d, child)
|
||||||
|
}
|
||||||
|
d.flush(table, toff)
|
||||||
|
|
||||||
|
// make sure data is written before a reference is added to it
|
||||||
|
_ = d.fd.Sync()
|
||||||
|
return off
|
||||||
|
}
|
||||||
|
|
||||||
|
// takeLargest find and remove the largest item from the given table. The key of the item
|
||||||
|
// is stored to 'hash'. Returns offset to the item
|
||||||
|
func (d *DB) takeLargest(toff int64, hash *byte) int64 {
|
||||||
|
table := d.get(toff)
|
||||||
|
assert(table.size > 0)
|
||||||
|
|
||||||
|
var off int64
|
||||||
|
child := table.items[table.size].child
|
||||||
|
if child == 0 {
|
||||||
|
off = d.remove(table, table.size-1, hash)
|
||||||
|
} else {
|
||||||
|
/* recursion */
|
||||||
|
off = d.takeLargest(child, hash)
|
||||||
|
table.items[table.size].child = collapse(d, child)
|
||||||
|
}
|
||||||
|
d.flush(table, toff)
|
||||||
|
|
||||||
|
// make sure data is written before a reference is added to it
|
||||||
|
_ = d.fd.Sync()
|
||||||
|
return off
|
||||||
|
}
|
||||||
|
|
||||||
|
// remove an item in position 'i' from the given table. The key of the
|
||||||
|
// removed item is stored to 'hash'. Returns offset to the item.
|
||||||
|
func (d *DB) remove(t *table, i int, hash *byte) int64 {
|
||||||
|
assert(i < t.size)
|
||||||
|
|
||||||
|
if hash != nil {
|
||||||
|
copyhash(hash, &t.items[i].hash[0])
|
||||||
|
}
|
||||||
|
|
||||||
|
offset := t.items[i].offset
|
||||||
|
lc := t.items[i].child
|
||||||
|
rc := t.items[i+1].child
|
||||||
|
|
||||||
|
if lc != 0 && rc != 0 {
|
||||||
|
/* replace the removed item by taking an item from one of the
|
||||||
|
child tables */
|
||||||
|
var noff int64
|
||||||
|
if rand.Int()&1 != 0 {
|
||||||
|
noff = d.takeLargest(lc, &t.items[i].hash[0])
|
||||||
|
t.items[i].child = collapse(d, lc)
|
||||||
|
} else {
|
||||||
|
noff = d.takeSmallest(rc, &t.items[i].hash[0])
|
||||||
|
t.items[i+1].child = collapse(d, rc)
|
||||||
|
}
|
||||||
|
t.items[i].child = noff
|
||||||
|
} else {
|
||||||
|
// memmove(&table->items[i], &table->items[i + 1],
|
||||||
|
// (table->size - i) * sizeof(struct btree_item));
|
||||||
|
copy(t.items[i:], t.items[i+1:])
|
||||||
|
t.size--
|
||||||
|
|
||||||
|
if lc != 0 {
|
||||||
|
t.items[i].child = lc
|
||||||
|
} else {
|
||||||
|
t.items[i].child = rc
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return offset
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *DB) insert(toff int64, hash *byte, data []byte, size int) int64 {
|
||||||
|
table := d.get(toff)
|
||||||
|
assert(table.size < tableSize-1)
|
||||||
|
|
||||||
|
left, right := 0, table.size
|
||||||
|
for left < right {
|
||||||
|
mid := (right-left)>>1 + left
|
||||||
|
switch cmp := cmp(hash, &table.items[mid].hash[0]); {
|
||||||
|
case cmp == 0:
|
||||||
|
// already in the table
|
||||||
|
ret := table.items[mid].offset
|
||||||
|
d.put(table, toff)
|
||||||
|
return ret
|
||||||
|
case cmp < 0:
|
||||||
|
right = mid
|
||||||
|
default:
|
||||||
|
left = mid + 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
i := left
|
||||||
|
|
||||||
|
var off, rc, ret int64
|
||||||
|
lc := table.items[i].child
|
||||||
|
if lc != 0 {
|
||||||
|
/* recursion */
|
||||||
|
ret = d.insert(lc, hash, data, size)
|
||||||
|
|
||||||
|
/* check if we need to split */
|
||||||
|
child := d.get(lc)
|
||||||
|
if child.size < tableSize-1 {
|
||||||
|
/* nothing to do */
|
||||||
|
d.put(table, toff)
|
||||||
|
d.put(child, lc)
|
||||||
|
return ret
|
||||||
|
}
|
||||||
|
/* overwrites SHA-1 */
|
||||||
|
rc = d.split(child, hash, &off)
|
||||||
|
/* flush just in case changes happened */
|
||||||
|
d.flush(child, lc)
|
||||||
|
|
||||||
|
// make sure data is written before a reference is added to it
|
||||||
|
_ = d.fd.Sync()
|
||||||
|
} else {
|
||||||
|
off = d.insertData(data, size)
|
||||||
|
ret = off
|
||||||
|
}
|
||||||
|
|
||||||
|
table.size++
|
||||||
|
// memmove(&table->items[i + 1], &table->items[i],
|
||||||
|
// (table->size - i) * sizeof(struct btree_item));
|
||||||
|
copy(table.items[i+1:], table.items[i:])
|
||||||
|
copyhash(&table.items[i].hash[0], hash)
|
||||||
|
table.items[i].offset = off
|
||||||
|
table.items[i].child = lc
|
||||||
|
table.items[i+1].child = rc
|
||||||
|
|
||||||
|
d.flush(table, toff)
|
||||||
|
return ret
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *DB) insertData(data []byte, size int) int64 {
|
||||||
|
if data == nil {
|
||||||
|
return int64(size)
|
||||||
|
}
|
||||||
|
assert(len(data) == size)
|
||||||
|
|
||||||
|
offset := d.allocChunk(4 + len(data))
|
||||||
|
|
||||||
|
d.fd.Seek(offset, io.SeekStart)
|
||||||
|
err := write32(d.fd, int32(len(data)))
|
||||||
|
if err != nil {
|
||||||
|
panic(errors.Wrap(err, "btree I/O error"))
|
||||||
|
}
|
||||||
|
_, err = d.fd.Write(data)
|
||||||
|
if err != nil {
|
||||||
|
panic(errors.Wrap(err, "btree I/O error"))
|
||||||
|
}
|
||||||
|
|
||||||
|
// make sure data is written before a reference is added to it
|
||||||
|
_ = d.fd.Sync()
|
||||||
|
return offset
|
||||||
|
}
|
||||||
|
|
||||||
|
// delete remove an item with key 'hash' from the given table. The offset to the
|
||||||
|
// removed item is returned.
|
||||||
|
// Please note that 'hash' is overwritten when called inside the allocator.
|
||||||
|
func (d *DB) delete(offset int64, hash *byte) int64 {
|
||||||
|
if offset == 0 {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
table := d.get(offset)
|
||||||
|
|
||||||
|
left, right := 0, table.size
|
||||||
|
for left < right {
|
||||||
|
i := (right-left)>>1 + left
|
||||||
|
switch cmp := cmp(hash, &table.items[i].hash[0]); {
|
||||||
|
case cmp == 0:
|
||||||
|
// found
|
||||||
|
ret := d.remove(table, i, hash)
|
||||||
|
d.flush(table, offset)
|
||||||
|
return ret
|
||||||
|
case cmp < 0:
|
||||||
|
right = i
|
||||||
|
default:
|
||||||
|
left = i + 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// not found - recursion
|
||||||
|
i := left
|
||||||
|
child := table.items[i].child
|
||||||
|
ret := d.delete(child, hash)
|
||||||
|
if ret != 0 {
|
||||||
|
table.items[i].child = collapse(d, child)
|
||||||
|
}
|
||||||
|
|
||||||
|
if ret == 0 && d.deleteLarger && i < table.size {
|
||||||
|
ret = d.remove(table, i, hash)
|
||||||
|
}
|
||||||
|
if ret != 0 {
|
||||||
|
/* flush just in case changes happened */
|
||||||
|
d.flush(table, offset)
|
||||||
|
} else {
|
||||||
|
d.put(table, offset)
|
||||||
|
}
|
||||||
|
return ret
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *DB) insertTopLevel(toff *int64, hash *byte, data []byte, size int) int64 { // nolint:unparam
|
||||||
|
var off, ret, rc int64
|
||||||
|
if *toff != 0 {
|
||||||
|
ret = d.insert(*toff, hash, data, size)
|
||||||
|
|
||||||
|
/* check if we need to split */
|
||||||
|
table := d.get(*toff)
|
||||||
|
if table.size < tableSize-1 {
|
||||||
|
/* nothing to do */
|
||||||
|
d.put(table, *toff)
|
||||||
|
return ret
|
||||||
|
}
|
||||||
|
rc = d.split(table, hash, &off)
|
||||||
|
d.flush(table, *toff)
|
||||||
|
} else {
|
||||||
|
off = d.insertData(data, size)
|
||||||
|
ret = off
|
||||||
|
}
|
||||||
|
|
||||||
|
/* create new top level table */
|
||||||
|
t := new(table)
|
||||||
|
t.size = 1
|
||||||
|
copyhash(&t.items[0].hash[0], hash)
|
||||||
|
t.items[0].offset = off
|
||||||
|
t.items[0].child = *toff
|
||||||
|
t.items[1].child = rc
|
||||||
|
|
||||||
|
ntoff := d.allocChunk(tableStructSize)
|
||||||
|
d.flush(t, ntoff)
|
||||||
|
|
||||||
|
*toff = ntoff
|
||||||
|
|
||||||
|
// make sure data is written before a reference is added to it
|
||||||
|
_ = d.fd.Sync()
|
||||||
|
return ret
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *DB) lookup(toff int64, hash *byte) int64 {
|
||||||
|
if toff == 0 {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
table := d.get(toff)
|
||||||
|
|
||||||
|
left, right := 0, table.size
|
||||||
|
for left < right {
|
||||||
|
mid := (right-left)>>1 + left
|
||||||
|
switch cmp := cmp(hash, &table.items[mid].hash[0]); {
|
||||||
|
case cmp == 0:
|
||||||
|
// found
|
||||||
|
ret := table.items[mid].offset
|
||||||
|
d.put(table, toff)
|
||||||
|
return ret
|
||||||
|
case cmp < 0:
|
||||||
|
right = mid
|
||||||
|
default:
|
||||||
|
left = mid + 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
i := left
|
||||||
|
child := table.items[i].child
|
||||||
|
d.put(table, toff)
|
||||||
|
return d.lookup(child, hash)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Insert a new item with key 'hash' with the contents in 'data' to the
|
||||||
|
// database file.
|
||||||
|
func (d *DB) Insert(chash *byte, data []byte) {
|
||||||
|
/* SHA-1 must be in writable memory */
|
||||||
|
var hash [hashSize]byte
|
||||||
|
copyhash(&hash[0], chash)
|
||||||
|
|
||||||
|
_ = d.insertTopLevel(&d.top, &hash[0], data, len(data))
|
||||||
|
freeQueued(d)
|
||||||
|
d.flushSuper()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get look up item with the given key 'hash' in the database file. Length of the
|
||||||
|
// item is stored in 'len'. Returns a pointer to the contents of the item.
|
||||||
|
// The returned pointer should be released with free() after use.
|
||||||
|
func (d *DB) Get(hash *byte) []byte {
|
||||||
|
off := d.lookup(d.top, hash)
|
||||||
|
if off == 0 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
d.fd.Seek(off, io.SeekStart)
|
||||||
|
length, err := read32(d.fd)
|
||||||
|
if err != nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
data := make([]byte, length)
|
||||||
|
n, err := io.ReadFull(d.fd, data)
|
||||||
|
if err != nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return data[:n]
|
||||||
|
}
|
||||||
|
|
||||||
|
// Delete remove item with the given key 'hash' from the database file.
|
||||||
|
func (d *DB) Delete(hash *byte) error {
|
||||||
|
var h [hashSize]byte
|
||||||
|
copyhash(&h[0], hash)
|
||||||
|
|
||||||
|
off := d.delete(d.top, &h[0])
|
||||||
|
if off == 0 {
|
||||||
|
return nil // not found key
|
||||||
|
}
|
||||||
|
|
||||||
|
d.top = collapse(d, d.top)
|
||||||
|
freeQueued(d)
|
||||||
|
d.flushSuper()
|
||||||
|
|
||||||
|
d.fd.Seek(off, io.SeekStart)
|
||||||
|
length, err := read32(d.fd) // len: 0
|
||||||
|
if err != nil {
|
||||||
|
return errors.Wrap(err, "btree I/O error")
|
||||||
|
}
|
||||||
|
|
||||||
|
d.freeChunk(off, int(length+4))
|
||||||
|
freeQueued(d)
|
||||||
|
d.flushSuper()
|
||||||
|
return nil
|
||||||
|
}
|
61
internal/btree/btree_test.go
Normal file
61
internal/btree/btree_test.go
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
package btree
|
||||||
|
|
||||||
|
import (
|
||||||
|
"crypto/sha1"
|
||||||
|
"os"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
assert2 "github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func tempfile(t *testing.T) string {
|
||||||
|
temp, err := os.CreateTemp(".", "temp.*.db")
|
||||||
|
assert2.NoError(t, temp.Close())
|
||||||
|
assert2.NoError(t, err)
|
||||||
|
return temp.Name()
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestCreate(t *testing.T) {
|
||||||
|
f := tempfile(t)
|
||||||
|
_, err := Create(f)
|
||||||
|
assert2.NoError(t, err)
|
||||||
|
defer os.Remove(f)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestBtree(t *testing.T) {
|
||||||
|
f := tempfile(t)
|
||||||
|
defer os.Remove(f)
|
||||||
|
bt, err := Create(f)
|
||||||
|
assert2.NoError(t, err)
|
||||||
|
|
||||||
|
var tests = []string{
|
||||||
|
"hello world",
|
||||||
|
"123",
|
||||||
|
"We are met on a great battle-field of that war.",
|
||||||
|
"Abraham Lincoln, November 19, 1863, Gettysburg, Pennsylvania",
|
||||||
|
}
|
||||||
|
var sha = make([]*byte, len(tests))
|
||||||
|
for i, tt := range tests {
|
||||||
|
var hash = sha1.New()
|
||||||
|
hash.Write([]byte(tt))
|
||||||
|
sha[i] = &hash.Sum(nil)[0]
|
||||||
|
bt.Insert(sha[i], []byte(tt))
|
||||||
|
}
|
||||||
|
assert2.NoError(t, bt.Close())
|
||||||
|
|
||||||
|
bt, err = Open(f)
|
||||||
|
assert2.NoError(t, err)
|
||||||
|
for i, tt := range tests {
|
||||||
|
assert2.Equal(t, []byte(tt), bt.Get(sha[i]))
|
||||||
|
}
|
||||||
|
|
||||||
|
for i := range tests {
|
||||||
|
assert2.NoError(t, bt.Delete(sha[i]))
|
||||||
|
}
|
||||||
|
|
||||||
|
for i := range tests {
|
||||||
|
assert2.Equal(t, []byte(nil), bt.Get(sha[i]))
|
||||||
|
}
|
||||||
|
|
||||||
|
assert2.NoError(t, bt.Close())
|
||||||
|
}
|
122
internal/btree/chunk.go
Normal file
122
internal/btree/chunk.go
Normal file
@ -0,0 +1,122 @@
|
|||||||
|
package btree
|
||||||
|
|
||||||
|
import (
|
||||||
|
"math/rand"
|
||||||
|
"unsafe"
|
||||||
|
)
|
||||||
|
|
||||||
|
type chunk struct {
|
||||||
|
offset int64
|
||||||
|
len int
|
||||||
|
}
|
||||||
|
|
||||||
|
const freeQueueLen = 64
|
||||||
|
|
||||||
|
func freeQueued(bt *DB) {
|
||||||
|
for i := 0; i < bt.fqueueLen; i++ {
|
||||||
|
chunk := &bt.fqueue[i]
|
||||||
|
bt.freeChunk(chunk.offset, chunk.len)
|
||||||
|
}
|
||||||
|
bt.fqueueLen = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *DB) allocChunk(size int) int64 {
|
||||||
|
assert(size > 0)
|
||||||
|
|
||||||
|
size = power2(size)
|
||||||
|
|
||||||
|
var offset int64
|
||||||
|
if d.inAllocator {
|
||||||
|
const i32s = unsafe.Sizeof(int32(0))
|
||||||
|
|
||||||
|
/* create fake size SHA-1 */
|
||||||
|
var sha1 [hashSize]byte
|
||||||
|
p := unsafe.Pointer(&sha1[0])
|
||||||
|
*(*int32)(p) = -1 // *(uint32_t *) hash = -1;
|
||||||
|
*(*uint32)(unsafe.Add(p, i32s)) = uint32(size) // ((__be32 *) hash)[1] = to_be32(size);
|
||||||
|
|
||||||
|
/* find free chunk with the larger or the same size/SHA-1 */
|
||||||
|
d.inAllocator = true
|
||||||
|
d.deleteLarger = true
|
||||||
|
offset = d.delete(d.freeTop, &sha1[0])
|
||||||
|
d.deleteLarger = false
|
||||||
|
if offset != 0 {
|
||||||
|
assert(*(*int32)(p) == -1) // assert(*(uint32_t *) hash == (uint32_t) -1)
|
||||||
|
flen := int(*(*uint32)(unsafe.Add(p, i32s))) // size_t free_len = from_be32(((__be32 *) hash)[1])
|
||||||
|
assert(power2(flen) == flen)
|
||||||
|
assert(flen >= size)
|
||||||
|
|
||||||
|
/* delete buddy information */
|
||||||
|
resethash(&sha1[0])
|
||||||
|
*(*int64)(p) = offset
|
||||||
|
buddyLen := d.delete(d.freeTop, &sha1[0])
|
||||||
|
assert(buddyLen == int64(size))
|
||||||
|
|
||||||
|
d.freeTop = collapse(d, d.freeTop)
|
||||||
|
|
||||||
|
d.inAllocator = false
|
||||||
|
|
||||||
|
/* free extra space at the end of the chunk */
|
||||||
|
for flen > size {
|
||||||
|
flen >>= 1
|
||||||
|
d.freeChunk(offset+int64(flen), flen)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
d.inAllocator = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if offset == 0 {
|
||||||
|
/* not found, allocate from the end of the file */
|
||||||
|
offset = d.alloc
|
||||||
|
/* TODO: this wastes memory.. */
|
||||||
|
if offset&int64(size-1) != 0 {
|
||||||
|
offset += int64(size) - (offset & (int64(size) - 1))
|
||||||
|
}
|
||||||
|
d.alloc = offset + int64(size)
|
||||||
|
}
|
||||||
|
d.flushSuper()
|
||||||
|
|
||||||
|
// make sure the allocation tree is up-to-date before using the chunk
|
||||||
|
_ = d.fd.Sync()
|
||||||
|
return offset
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Mark a chunk as unused in the database file */
|
||||||
|
func (d *DB) freeChunk(offset int64, size int) {
|
||||||
|
assert(size > 0)
|
||||||
|
assert(offset != 0)
|
||||||
|
size = power2(size)
|
||||||
|
assert(offset&int64(size-1) == 0)
|
||||||
|
|
||||||
|
if d.inAllocator {
|
||||||
|
chunk := &d.fqueue[d.fqueueLen]
|
||||||
|
d.fqueueLen++
|
||||||
|
chunk.offset = offset
|
||||||
|
chunk.len = size
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
/* create fake offset SHA-1 for buddy allocation */
|
||||||
|
var sha1 [hashSize]byte
|
||||||
|
p := unsafe.Pointer(&sha1[0])
|
||||||
|
d.inAllocator = true
|
||||||
|
|
||||||
|
const i32s = unsafe.Sizeof(int32(0))
|
||||||
|
|
||||||
|
/* add buddy information */
|
||||||
|
resethash(&sha1[0])
|
||||||
|
*(*int32)(p) = -1 // *(uint32_t *) hash = -1;
|
||||||
|
*(*uint32)(unsafe.Add(p, i32s)) = uint32(size) // ((__be32 *) hash)[1] = to_be32(size);
|
||||||
|
*(*uint32)(unsafe.Add(p, i32s*2)) = rand.Uint32() /* to make SHA-1 unique */
|
||||||
|
*(*uint32)(unsafe.Add(p, i32s*3)) = rand.Uint32()
|
||||||
|
|
||||||
|
// insert_toplevel(btree, &btree->free_top, hash, NULL, offset);
|
||||||
|
_ = d.insertTopLevel(&d.freeTop, &sha1[0], nil, int(offset))
|
||||||
|
d.inAllocator = false
|
||||||
|
|
||||||
|
d.flushSuper()
|
||||||
|
|
||||||
|
// make sure the allocation tree is up-to-date before removing
|
||||||
|
// references to the chunk
|
||||||
|
_ = d.fd.Sync()
|
||||||
|
}
|
106
internal/btree/helper.go
Normal file
106
internal/btree/helper.go
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
package btree
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io"
|
||||||
|
"reflect"
|
||||||
|
"unsafe"
|
||||||
|
)
|
||||||
|
|
||||||
|
func assert(cond bool) {
|
||||||
|
if !cond {
|
||||||
|
panic("assert failed!")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// power2 returns a value that is greater or equal to 'val' and is power-of-two.
|
||||||
|
func power2(val int) int {
|
||||||
|
i := 1
|
||||||
|
for i < val {
|
||||||
|
i <<= 1
|
||||||
|
}
|
||||||
|
return i
|
||||||
|
}
|
||||||
|
|
||||||
|
// helpers for hash
|
||||||
|
|
||||||
|
func cmp(a, b *byte) int64 {
|
||||||
|
pa, pb := unsafe.Pointer(a), unsafe.Pointer(b)
|
||||||
|
if *(*uint64)(pa) != *(*uint64)(pb) {
|
||||||
|
return int64(*(*uint64)(pa) - *(*uint64)(pb))
|
||||||
|
}
|
||||||
|
pa, pb = unsafe.Add(pa, 8), unsafe.Add(pb, 8)
|
||||||
|
return int64(*(*uint64)(pa) - *(*uint64)(pb))
|
||||||
|
}
|
||||||
|
|
||||||
|
func copyhash(dst *byte, src *byte) {
|
||||||
|
pa, pb := unsafe.Pointer(dst), unsafe.Pointer(src)
|
||||||
|
*(*[hashSize]byte)(pa) = *(*[hashSize]byte)(pb)
|
||||||
|
}
|
||||||
|
|
||||||
|
func resethash(sha1 *byte) {
|
||||||
|
p := unsafe.Pointer(sha1)
|
||||||
|
*(*[hashSize]byte)(p) = [hashSize]byte{}
|
||||||
|
}
|
||||||
|
|
||||||
|
// reading table
|
||||||
|
|
||||||
|
func read32(r io.Reader) (int32, error) {
|
||||||
|
var b = make([]byte, 4)
|
||||||
|
_, err := r.Read(b)
|
||||||
|
if err != nil {
|
||||||
|
return 0, err
|
||||||
|
}
|
||||||
|
return *(*int32)(unsafe.Pointer(&b[0])), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func readTable(r io.Reader, t *table) error {
|
||||||
|
buf := make([]byte, tableStructSize)
|
||||||
|
_, err := r.Read(buf)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
*t = *(*table)(unsafe.Pointer(&buf[0]))
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func readSuper(r io.Reader, s *super) error {
|
||||||
|
buf := make([]byte, superSize)
|
||||||
|
_, err := r.Read(buf)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
*s = *(*super)(unsafe.Pointer(&buf[0]))
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// write table
|
||||||
|
|
||||||
|
func write32(w io.Writer, t int32) error {
|
||||||
|
var p []byte
|
||||||
|
ph := (*reflect.SliceHeader)(unsafe.Pointer(&p))
|
||||||
|
ph.Data = uintptr(unsafe.Pointer(&t))
|
||||||
|
ph.Len = 4
|
||||||
|
ph.Cap = 4
|
||||||
|
_, err := w.Write(p)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
func writeTable(w io.Writer, t *table) error {
|
||||||
|
var p []byte
|
||||||
|
ph := (*reflect.SliceHeader)(unsafe.Pointer(&p))
|
||||||
|
ph.Data = uintptr(unsafe.Pointer(t))
|
||||||
|
ph.Len = tableStructSize
|
||||||
|
ph.Cap = tableStructSize
|
||||||
|
_, err := w.Write(p)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
func writeSuper(w io.Writer, s *super) error {
|
||||||
|
var p []byte
|
||||||
|
ph := (*reflect.SliceHeader)(unsafe.Pointer(&p))
|
||||||
|
ph.Data = uintptr(unsafe.Pointer(s))
|
||||||
|
ph.Len = superSize
|
||||||
|
ph.Cap = superSize
|
||||||
|
_, err := w.Write(p)
|
||||||
|
return err
|
||||||
|
}
|
97
internal/cache/cache.go
vendored
Normal file
97
internal/cache/cache.go
vendored
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
// Package cache impl the cache for gocq
|
||||||
|
package cache
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"sync"
|
||||||
|
|
||||||
|
log "github.com/sirupsen/logrus"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/go-cqhttp/global"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/internal/base"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/internal/btree"
|
||||||
|
)
|
||||||
|
|
||||||
|
// todo(wdvxdr): always enable db-cache in v1.0.0
|
||||||
|
|
||||||
|
// EnableCacheDB 是否启用 btree db缓存图片等
|
||||||
|
var EnableCacheDB bool
|
||||||
|
|
||||||
|
// Media Cache DBs
|
||||||
|
var (
|
||||||
|
Image Cache
|
||||||
|
Video Cache
|
||||||
|
// todo: Voice?
|
||||||
|
)
|
||||||
|
|
||||||
|
// Cache wraps the btree.DB for concurrent safe
|
||||||
|
type Cache struct {
|
||||||
|
lock sync.RWMutex
|
||||||
|
db *btree.DB
|
||||||
|
}
|
||||||
|
|
||||||
|
// Insert 添加媒体缓存
|
||||||
|
func (c *Cache) Insert(md5, data []byte) {
|
||||||
|
c.lock.Lock()
|
||||||
|
defer c.lock.Unlock()
|
||||||
|
|
||||||
|
var hash [16]byte
|
||||||
|
copy(hash[:], md5)
|
||||||
|
c.db.Insert(&hash[0], data)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get 获取缓存信息
|
||||||
|
func (c *Cache) Get(md5 []byte) []byte {
|
||||||
|
c.lock.RLock()
|
||||||
|
defer c.lock.RUnlock()
|
||||||
|
|
||||||
|
var hash [16]byte
|
||||||
|
copy(hash[:], md5)
|
||||||
|
return c.db.Get(&hash[0])
|
||||||
|
}
|
||||||
|
|
||||||
|
// Delete 删除指定缓存
|
||||||
|
func (c *Cache) Delete(md5 []byte) {
|
||||||
|
c.lock.Lock()
|
||||||
|
defer c.lock.Unlock()
|
||||||
|
|
||||||
|
var hash [16]byte
|
||||||
|
copy(hash[:], md5)
|
||||||
|
_ = c.db.Delete(&hash[0])
|
||||||
|
}
|
||||||
|
|
||||||
|
// Init 初始化 Cache
|
||||||
|
func Init() {
|
||||||
|
node, ok := base.Database["cache"]
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
EnableCacheDB = true
|
||||||
|
var conf map[string]string
|
||||||
|
err := node.Decode(&conf)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("failed to read cache config: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
var open = func(typ string, cache *Cache) {
|
||||||
|
file := conf[typ]
|
||||||
|
if file == "" {
|
||||||
|
file = fmt.Sprintf("data/%s.db", typ)
|
||||||
|
}
|
||||||
|
if global.PathExists(file) {
|
||||||
|
db, err := btree.Open(file)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("open %s cache failed: %v", typ, err)
|
||||||
|
}
|
||||||
|
cache.db = db
|
||||||
|
} else {
|
||||||
|
db, err := btree.Create(file)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("create %s cache failed: %v", typ, err)
|
||||||
|
}
|
||||||
|
cache.db = db
|
||||||
|
}
|
||||||
|
}
|
||||||
|
open("image", &Image)
|
||||||
|
open("video", &Video)
|
||||||
|
}
|
130
internal/param/param.go
Normal file
130
internal/param/param.go
Normal file
@ -0,0 +1,130 @@
|
|||||||
|
// Package param provide some util for param parse
|
||||||
|
package param
|
||||||
|
|
||||||
|
import (
|
||||||
|
"math"
|
||||||
|
"reflect"
|
||||||
|
"regexp"
|
||||||
|
"strings"
|
||||||
|
"sync"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/MiraiGo/utils"
|
||||||
|
"github.com/segmentio/asm/base64"
|
||||||
|
"github.com/tidwall/gjson"
|
||||||
|
)
|
||||||
|
|
||||||
|
// EnsureBool 判断给定的p是否可表示为合法Bool类型,否则返回defaultVal
|
||||||
|
//
|
||||||
|
// 支持的合法类型有
|
||||||
|
//
|
||||||
|
// type bool
|
||||||
|
//
|
||||||
|
// type gjson.True or gjson.False
|
||||||
|
//
|
||||||
|
// type string "true","yes","1" or "false","no","0" (case insensitive)
|
||||||
|
func EnsureBool(p interface{}, defaultVal bool) bool {
|
||||||
|
var str string
|
||||||
|
if b, ok := p.(bool); ok {
|
||||||
|
return b
|
||||||
|
}
|
||||||
|
if j, ok := p.(gjson.Result); ok {
|
||||||
|
if !j.Exists() {
|
||||||
|
return defaultVal
|
||||||
|
}
|
||||||
|
switch j.Type { // nolint
|
||||||
|
case gjson.True:
|
||||||
|
return true
|
||||||
|
case gjson.False:
|
||||||
|
return false
|
||||||
|
case gjson.String:
|
||||||
|
str = j.Str
|
||||||
|
default:
|
||||||
|
return defaultVal
|
||||||
|
}
|
||||||
|
} else if s, ok := p.(string); ok {
|
||||||
|
str = s
|
||||||
|
}
|
||||||
|
str = strings.ToLower(str)
|
||||||
|
switch str {
|
||||||
|
case "true", "yes", "1":
|
||||||
|
return true
|
||||||
|
case "false", "no", "0":
|
||||||
|
return false
|
||||||
|
default:
|
||||||
|
return defaultVal
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
// once lazy compile the reg
|
||||||
|
once sync.Once
|
||||||
|
// reg is splitURL regex pattern.
|
||||||
|
reg *regexp.Regexp
|
||||||
|
)
|
||||||
|
|
||||||
|
// SplitURL 将给定URL字符串分割为两部分,用于URL预处理防止风控
|
||||||
|
func SplitURL(s string) []string {
|
||||||
|
once.Do(func() { // lazy init.
|
||||||
|
reg = regexp.MustCompile(`(?i)[a-z\d][-a-z\d]{0,62}(\.[a-z\d][-a-z\d]{0,62})+\.?`)
|
||||||
|
})
|
||||||
|
idx := reg.FindAllStringIndex(s, -1)
|
||||||
|
if len(idx) == 0 {
|
||||||
|
return []string{s}
|
||||||
|
}
|
||||||
|
var result []string
|
||||||
|
last := 0
|
||||||
|
for i := 0; i < len(idx); i++ {
|
||||||
|
if len(idx[i]) != 2 {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
m := int(math.Abs(float64(idx[i][0]-idx[i][1]))/1.5) + idx[i][0]
|
||||||
|
result = append(result, s[last:m])
|
||||||
|
last = m
|
||||||
|
}
|
||||||
|
result = append(result, s[last:])
|
||||||
|
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
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetAtDefault 在变量 variable 为默认值 defaultValue 的时候修改为 value
|
||||||
|
func SetAtDefault(variable, value, defaultValue interface{}) {
|
||||||
|
v := reflect.ValueOf(variable)
|
||||||
|
v2 := reflect.ValueOf(value)
|
||||||
|
if v.Kind() != reflect.Ptr || v.IsNil() {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
v = v.Elem()
|
||||||
|
if v.Interface() != defaultValue {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if v.Kind() != v2.Kind() {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
v.Set(v2)
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetExcludeDefault 在目标值 value 不为默认值 defaultValue 时修改 variable 为 value
|
||||||
|
func SetExcludeDefault(variable, value, defaultValue interface{}) {
|
||||||
|
v := reflect.ValueOf(variable)
|
||||||
|
v2 := reflect.ValueOf(value)
|
||||||
|
if v.Kind() != reflect.Ptr || v.IsNil() {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
v = v.Elem()
|
||||||
|
if reflect.Indirect(v2).Interface() != defaultValue {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if v.Kind() != v2.Kind() {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
v.Set(v2)
|
||||||
|
}
|
81
internal/selfdiagnosis/diagnoses.go
Normal file
81
internal/selfdiagnosis/diagnoses.go
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
// Package selfdiagnosis 自我诊断相关
|
||||||
|
package selfdiagnosis
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Mrs4s/MiraiGo/client"
|
||||||
|
log "github.com/sirupsen/logrus"
|
||||||
|
)
|
||||||
|
|
||||||
|
// NetworkDiagnosis 诊断网络状态并输出结果
|
||||||
|
func NetworkDiagnosis(c *client.QQClient) {
|
||||||
|
log.Infof("开始诊断网络情况")
|
||||||
|
qualityInfo := c.ConnectionQualityTest()
|
||||||
|
log.Debugf("聊天服务器连接延迟: %vms", qualityInfo.ChatServerLatency)
|
||||||
|
log.Debugf("聊天服务器丢包率: %v%%", qualityInfo.ChatServerPacketLoss*10)
|
||||||
|
log.Debugf("长消息服务器连接延迟: %vms", qualityInfo.LongMessageServerLatency)
|
||||||
|
log.Debugf("长消息服务器响应延迟: %vms", qualityInfo.LongMessageServerResponseLatency)
|
||||||
|
log.Debugf("媒体服务器连接延迟: %vms", qualityInfo.SrvServerLatency)
|
||||||
|
log.Debugf("媒体服务器丢包率: %v%%", qualityInfo.SrvServerPacketLoss*10)
|
||||||
|
|
||||||
|
const (
|
||||||
|
chatServerErrorMessage = "可能出现消息丢失/延迟或频繁掉线等情况, 请检查本地网络状态."
|
||||||
|
longMessageServerErrorMessage = "可能导致无法接收/发送长消息的情况, 请检查本地网络状态."
|
||||||
|
mediaServerErrorMessage = "可能导致无法上传/下载媒体文件, 无法上传群共享, 无法发送消息等情况, 请检查本地网络状态."
|
||||||
|
)
|
||||||
|
|
||||||
|
if qualityInfo.ChatServerLatency > 1000 {
|
||||||
|
if qualityInfo.ChatServerLatency == 9999 {
|
||||||
|
log.Errorf("错误: 聊天服务器延迟测试失败, %v", chatServerErrorMessage)
|
||||||
|
} else {
|
||||||
|
log.Warnf("警告: 聊天服务器延迟为 %vms,大于 1000ms, %v", qualityInfo.ChatServerLatency, chatServerErrorMessage)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if qualityInfo.ChatServerPacketLoss > 0 {
|
||||||
|
log.Warnf("警告: 本地连接聊天服务器丢包率为 %v%%, %v", qualityInfo.ChatServerPacketLoss*10, chatServerErrorMessage)
|
||||||
|
}
|
||||||
|
|
||||||
|
if qualityInfo.LongMessageServerLatency > 1000 {
|
||||||
|
if qualityInfo.LongMessageServerLatency == 9999 {
|
||||||
|
log.Errorf("错误: 长消息服务器延迟测试失败, %v 如果您使用的腾讯云服务器, 请修改DNS到114.114.114.114", longMessageServerErrorMessage)
|
||||||
|
} else {
|
||||||
|
log.Warnf("警告: 长消息延迟为 %vms, 大于 1000ms, %v", qualityInfo.LongMessageServerLatency, longMessageServerErrorMessage)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if qualityInfo.LongMessageServerResponseLatency > 2000 {
|
||||||
|
if qualityInfo.LongMessageServerResponseLatency == 9999 {
|
||||||
|
log.Errorf("错误: 长消息服务器响应延迟测试失败, %v 如果您使用的腾讯云服务器, 请修改DNS到114.114.114.114", longMessageServerErrorMessage)
|
||||||
|
} else {
|
||||||
|
log.Warnf("警告: 长消息响应延迟为 %vms, 大于 1000ms, %v", qualityInfo.LongMessageServerResponseLatency, longMessageServerErrorMessage)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if qualityInfo.SrvServerLatency > 1000 {
|
||||||
|
if qualityInfo.SrvServerPacketLoss == 9999 {
|
||||||
|
log.Errorf("错误: 媒体服务器延迟测试失败, %v", mediaServerErrorMessage)
|
||||||
|
} else {
|
||||||
|
log.Warnf("警告: 媒体服务器延迟为 %vms,大于 1000ms, %v", qualityInfo.SrvServerLatency, mediaServerErrorMessage)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if qualityInfo.SrvServerPacketLoss > 0 {
|
||||||
|
log.Warnf("警告: 本地连接媒体服务器丢包率为 %v%%, %v", qualityInfo.SrvServerPacketLoss*10, mediaServerErrorMessage)
|
||||||
|
}
|
||||||
|
|
||||||
|
if qualityInfo.ChatServerLatency > 1000 || qualityInfo.ChatServerPacketLoss > 0 || qualityInfo.LongMessageServerLatency > 1000 || qualityInfo.SrvServerLatency > 1000 || qualityInfo.SrvServerPacketLoss > 0 {
|
||||||
|
log.Infof("网络诊断完成. 发现问题, 请检查日志.")
|
||||||
|
} else {
|
||||||
|
log.Infof("网络诊断完成. 未发现问题")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// DNSDiagnosis 诊断DNS状态并输出结果
|
||||||
|
func DNSDiagnosis() {
|
||||||
|
// todo
|
||||||
|
}
|
||||||
|
|
||||||
|
// EnvironmentDiagnosis 诊断本地环境状态并输出结果
|
||||||
|
func EnvironmentDiagnosis() {
|
||||||
|
// todo
|
||||||
|
}
|
206
internal/selfupdate/update.go
Normal file
206
internal/selfupdate/update.go
Normal file
@ -0,0 +1,206 @@
|
|||||||
|
// Package selfupdate 版本升级检查和自更新
|
||||||
|
package selfupdate
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bufio"
|
||||||
|
"encoding/hex"
|
||||||
|
"fmt"
|
||||||
|
"hash"
|
||||||
|
"io"
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
"runtime"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"github.com/dustin/go-humanize"
|
||||||
|
"github.com/kardianos/osext"
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
|
"github.com/tidwall/gjson"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/go-cqhttp/global"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/internal/base"
|
||||||
|
)
|
||||||
|
|
||||||
|
func readLine() (str string) {
|
||||||
|
console := bufio.NewReader(os.Stdin)
|
||||||
|
str, _ = console.ReadString('\n')
|
||||||
|
str = strings.TrimSpace(str)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func lastVersion() (string, error) {
|
||||||
|
r, err := global.GetBytes("https://api.github.com/repos/Mrs4s/go-cqhttp/releases/latest")
|
||||||
|
if err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
return gjson.GetBytes(r, "tag_name").Str, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// CheckUpdate 检查更新
|
||||||
|
func CheckUpdate() {
|
||||||
|
logrus.Infof("正在检查更新.")
|
||||||
|
if base.Version == "(devel)" {
|
||||||
|
logrus.Warnf("检查更新失败: 使用的 Actions 测试版或自编译版本.")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
latest, err := lastVersion()
|
||||||
|
if err != nil {
|
||||||
|
logrus.Warnf("检查更新失败: %v", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if global.VersionNameCompare(base.Version, latest) {
|
||||||
|
logrus.Infof("当前有更新的 go-cqhttp 可供更新, 请前往 https://github.com/Mrs4s/go-cqhttp/releases 下载.")
|
||||||
|
logrus.Infof("当前版本: %v 最新版本: %v", base.Version, latest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
logrus.Infof("检查更新完成. 当前已运行最新版本.")
|
||||||
|
}
|
||||||
|
|
||||||
|
func binaryName() string {
|
||||||
|
goarch := runtime.GOARCH
|
||||||
|
if goarch == "arm" {
|
||||||
|
goarch += "v7"
|
||||||
|
}
|
||||||
|
ext := "tar.gz"
|
||||||
|
if runtime.GOOS == "windows" {
|
||||||
|
ext = "zip"
|
||||||
|
}
|
||||||
|
return fmt.Sprintf("go-cqhttp_%v_%v.%v", runtime.GOOS, goarch, ext)
|
||||||
|
}
|
||||||
|
|
||||||
|
func checksum(github, version string) []byte {
|
||||||
|
sumURL := fmt.Sprintf("%v/Mrs4s/go-cqhttp/releases/download/%v/go-cqhttp_checksums.txt", github, version)
|
||||||
|
closer, err := global.HTTPGetReadCloser(sumURL)
|
||||||
|
if err != nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
rd := bufio.NewReader(closer)
|
||||||
|
for {
|
||||||
|
str, err := rd.ReadString('\n')
|
||||||
|
if err != nil {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
str = strings.TrimSpace(str)
|
||||||
|
if strings.HasSuffix(str, binaryName()) {
|
||||||
|
sum, _ := hex.DecodeString(strings.TrimSuffix(str, " "+binaryName()))
|
||||||
|
return sum
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func wait() {
|
||||||
|
logrus.Info("按 Enter 继续....")
|
||||||
|
readLine()
|
||||||
|
os.Exit(0)
|
||||||
|
}
|
||||||
|
|
||||||
|
// SelfUpdate 自更新
|
||||||
|
func SelfUpdate(github string) {
|
||||||
|
if github == "" {
|
||||||
|
github = "https://github.com"
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Infof("正在检查更新.")
|
||||||
|
latest, err := lastVersion()
|
||||||
|
if err != nil {
|
||||||
|
logrus.Warnf("获取最新版本失败: %v", err)
|
||||||
|
wait()
|
||||||
|
}
|
||||||
|
url := fmt.Sprintf("%v/Mrs4s/go-cqhttp/releases/download/%v/%v", github, latest, binaryName())
|
||||||
|
if base.Version == latest {
|
||||||
|
logrus.Info("当前版本已经是最新版本!")
|
||||||
|
wait()
|
||||||
|
}
|
||||||
|
logrus.Info("当前最新版本为 ", latest)
|
||||||
|
logrus.Warn("是否更新(y/N): ")
|
||||||
|
r := strings.TrimSpace(readLine())
|
||||||
|
if r != "y" && r != "Y" {
|
||||||
|
logrus.Warn("已取消更新!")
|
||||||
|
wait()
|
||||||
|
}
|
||||||
|
logrus.Info("正在更新,请稍等...")
|
||||||
|
sum := checksum(github, latest)
|
||||||
|
if sum != nil {
|
||||||
|
err = update(url, sum)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Error("更新失败: ", err)
|
||||||
|
} else {
|
||||||
|
logrus.Info("更新成功!")
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
logrus.Error("checksum 失败!")
|
||||||
|
}
|
||||||
|
wait()
|
||||||
|
}
|
||||||
|
|
||||||
|
// writeSumCounter 写入量计算实例
|
||||||
|
type writeSumCounter struct {
|
||||||
|
total uint64
|
||||||
|
hash hash.Hash
|
||||||
|
}
|
||||||
|
|
||||||
|
// Write 方法将写入的byte长度追加至写入的总长度Total中
|
||||||
|
func (wc *writeSumCounter) Write(p []byte) (int, error) {
|
||||||
|
n := len(p)
|
||||||
|
wc.total += uint64(n)
|
||||||
|
wc.hash.Write(p)
|
||||||
|
fmt.Printf("\r ")
|
||||||
|
fmt.Printf("\rDownloading... %s complete", humanize.Bytes(wc.total))
|
||||||
|
return n, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// FromStream copy form getlantern/go-update
|
||||||
|
func fromStream(updateWith io.Reader) (err error, errRecover error) {
|
||||||
|
updatePath, err := osext.Executable()
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// get the directory the executable exists in
|
||||||
|
updateDir := filepath.Dir(updatePath)
|
||||||
|
filename := filepath.Base(updatePath)
|
||||||
|
// Copy the contents of of newbinary to a the new executable file
|
||||||
|
newPath := filepath.Join(updateDir, fmt.Sprintf(".%s.new", filename))
|
||||||
|
fp, err := os.OpenFile(newPath, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0o755)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// We won't log this error, because it's always going to happen.
|
||||||
|
defer func() { _ = fp.Close() }()
|
||||||
|
if _, err = io.Copy(fp, bufio.NewReader(updateWith)); err != nil {
|
||||||
|
logrus.Errorf("Unable to copy data: %v\n", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// if we don't call fp.Close(), windows won't let us move the new executable
|
||||||
|
// because the file will still be "in use"
|
||||||
|
if err := fp.Close(); err != nil {
|
||||||
|
logrus.Errorf("Unable to close file: %v\n", err)
|
||||||
|
}
|
||||||
|
// this is where we'll move the executable to so that we can swap in the updated replacement
|
||||||
|
oldPath := filepath.Join(updateDir, fmt.Sprintf(".%s.old", filename))
|
||||||
|
|
||||||
|
// delete any existing old exec file - this is necessary on Windows for two reasons:
|
||||||
|
// 1. after a successful update, Windows can't remove the .old file because the process is still running
|
||||||
|
// 2. windows rename operations fail if the destination file already exists
|
||||||
|
_ = os.Remove(oldPath)
|
||||||
|
|
||||||
|
// move the existing executable to a new file in the same directory
|
||||||
|
err = os.Rename(updatePath, oldPath)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// move the new executable in to become the new program
|
||||||
|
err = os.Rename(newPath, updatePath)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
// copy unsuccessful
|
||||||
|
errRecover = os.Rename(oldPath, updatePath)
|
||||||
|
} else {
|
||||||
|
// copy successful, remove the old binary
|
||||||
|
_ = os.Remove(oldPath)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
@ -1,34 +1,34 @@
|
|||||||
//go:build !windows
|
//go:build !windows
|
||||||
// +build !windows
|
// +build !windows
|
||||||
|
|
||||||
package update
|
package selfupdate
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"archive/tar"
|
"archive/tar"
|
||||||
"bytes"
|
"bytes"
|
||||||
"compress/gzip"
|
|
||||||
"crypto/sha256"
|
"crypto/sha256"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
|
||||||
"io"
|
"io"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"github.com/klauspost/compress/gzip"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Update go-cqhttp自我更新
|
// update go-cqhttp自我更新
|
||||||
func Update(url string, sum []byte) error {
|
func update(url string, sum []byte) error {
|
||||||
resp, err := http.Get(url)
|
resp, err := http.Get(url)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
defer resp.Body.Close()
|
defer resp.Body.Close()
|
||||||
wc := WriteSumCounter{
|
wc := writeSumCounter{
|
||||||
Hash: sha256.New(),
|
hash: sha256.New(),
|
||||||
}
|
}
|
||||||
rsp, err := io.ReadAll(io.TeeReader(resp.Body, &wc))
|
rsp, err := io.ReadAll(io.TeeReader(resp.Body, &wc))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if !bytes.Equal(wc.Hash.Sum(nil), sum) {
|
if !bytes.Equal(wc.hash.Sum(nil), sum) {
|
||||||
return errors.New("文件已损坏")
|
return errors.New("文件已损坏")
|
||||||
}
|
}
|
||||||
gr, err := gzip.NewReader(bytes.NewReader(rsp))
|
gr, err := gzip.NewReader(bytes.NewReader(rsp))
|
||||||
@ -42,8 +42,7 @@ func Update(url string, sum []byte) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if header.Name == "go-cqhttp" {
|
if header.Name == "go-cqhttp" {
|
||||||
err, _ := FromStream(tr)
|
err, _ := fromStream(tr)
|
||||||
fmt.Println()
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
@ -1,30 +1,30 @@
|
|||||||
package update
|
package selfupdate
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"archive/zip"
|
|
||||||
"bytes"
|
"bytes"
|
||||||
"crypto/sha256"
|
"crypto/sha256"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
|
||||||
"io"
|
"io"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"github.com/klauspost/compress/zip"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Update go-cqhttp自我更新
|
// update go-cqhttp自我更新
|
||||||
func Update(url string, sum []byte) error {
|
func update(url string, sum []byte) error {
|
||||||
resp, err := http.Get(url)
|
resp, err := http.Get(url)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
defer resp.Body.Close()
|
defer resp.Body.Close()
|
||||||
wc := WriteSumCounter{
|
wc := writeSumCounter{
|
||||||
Hash: sha256.New(),
|
hash: sha256.New(),
|
||||||
}
|
}
|
||||||
rsp, err := io.ReadAll(io.TeeReader(resp.Body, &wc))
|
rsp, err := io.ReadAll(io.TeeReader(resp.Body, &wc))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if !bytes.Equal(wc.Hash.Sum(nil), sum) {
|
if !bytes.Equal(wc.hash.Sum(nil), sum) {
|
||||||
return errors.New("文件已损坏")
|
return errors.New("文件已损坏")
|
||||||
}
|
}
|
||||||
reader, _ := zip.NewReader(bytes.NewReader(rsp), resp.ContentLength)
|
reader, _ := zip.NewReader(bytes.NewReader(rsp), resp.ContentLength)
|
||||||
@ -32,8 +32,7 @@ func Update(url string, sum []byte) error {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
err, _ = FromStream(file)
|
err, _ = fromStream(file)
|
||||||
fmt.Println()
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
8
login.go
8
login.go
@ -9,22 +9,22 @@ import (
|
|||||||
|
|
||||||
qrcodeTerminal "github.com/Baozisoftware/qrcode-terminal-go"
|
qrcodeTerminal "github.com/Baozisoftware/qrcode-terminal-go"
|
||||||
"github.com/Mrs4s/MiraiGo/client"
|
"github.com/Mrs4s/MiraiGo/client"
|
||||||
|
"github.com/gocq/qrcode"
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
"github.com/tuotoo/qrcode"
|
|
||||||
|
|
||||||
"github.com/Mrs4s/go-cqhttp/global"
|
"github.com/Mrs4s/go-cqhttp/global"
|
||||||
)
|
)
|
||||||
|
|
||||||
var console = bufio.NewReader(os.Stdin)
|
var console = bufio.NewReader(os.Stdin)
|
||||||
|
|
||||||
var readLine = func() (str string) {
|
func readLine() (str string) {
|
||||||
str, _ = console.ReadString('\n')
|
str, _ = console.ReadString('\n')
|
||||||
str = strings.TrimSpace(str)
|
str = strings.TrimSpace(str)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
var readLineTimeout = func(t time.Duration, de string) (str string) {
|
func readLineTimeout(t time.Duration, de string) (str string) {
|
||||||
r := make(chan string)
|
r := make(chan string)
|
||||||
go func() {
|
go func() {
|
||||||
select {
|
select {
|
||||||
@ -70,7 +70,7 @@ func qrcodeLogin() error {
|
|||||||
log.Infof("请使用手机QQ扫描二维码 (qrcode.png) : ")
|
log.Infof("请使用手机QQ扫描二维码 (qrcode.png) : ")
|
||||||
}
|
}
|
||||||
time.Sleep(time.Second)
|
time.Sleep(time.Second)
|
||||||
qrcodeTerminal.New().Get(fi.Content).Print()
|
qrcodeTerminal.New2(qrcodeTerminal.ConsoleColors.BrightBlack, qrcodeTerminal.ConsoleColors.BrightWhite, qrcodeTerminal.QRCodeRecoveryLevels.Low).Get(fi.Content).Print()
|
||||||
s, err := cli.QueryQRCodeStatus(rsp.Sig)
|
s, err := cli.QueryQRCodeStatus(rsp.Sig)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
439
main.go
439
main.go
@ -1,107 +1,85 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
|
||||||
"crypto/aes"
|
"crypto/aes"
|
||||||
"crypto/md5"
|
"crypto/md5"
|
||||||
"crypto/sha1"
|
"crypto/sha1"
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
"flag"
|
|
||||||
"fmt"
|
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
|
||||||
"path"
|
"path"
|
||||||
"path/filepath"
|
|
||||||
"runtime"
|
|
||||||
"strings"
|
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/Mrs4s/go-cqhttp/coolq"
|
|
||||||
"github.com/Mrs4s/go-cqhttp/global"
|
|
||||||
"github.com/Mrs4s/go-cqhttp/global/codec"
|
|
||||||
"github.com/Mrs4s/go-cqhttp/global/config"
|
|
||||||
"github.com/Mrs4s/go-cqhttp/global/terminal"
|
|
||||||
"github.com/Mrs4s/go-cqhttp/global/update"
|
|
||||||
"github.com/Mrs4s/go-cqhttp/server"
|
|
||||||
|
|
||||||
"github.com/Mrs4s/MiraiGo/binary"
|
"github.com/Mrs4s/MiraiGo/binary"
|
||||||
"github.com/Mrs4s/MiraiGo/client"
|
"github.com/Mrs4s/MiraiGo/client"
|
||||||
"github.com/guonaihong/gout"
|
para "github.com/fumiama/go-hide-param"
|
||||||
rotatelogs "github.com/lestrrat-go/file-rotatelogs"
|
rotatelogs "github.com/lestrrat-go/file-rotatelogs"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
"github.com/tidwall/gjson"
|
|
||||||
"golang.org/x/crypto/pbkdf2"
|
"golang.org/x/crypto/pbkdf2"
|
||||||
"golang.org/x/term"
|
"golang.org/x/term"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/go-cqhttp/coolq"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/db"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/global"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/global/terminal"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/internal/base"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/internal/cache"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/internal/selfdiagnosis"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/internal/selfupdate"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/modules/servers"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/server"
|
||||||
|
|
||||||
|
_ "github.com/Mrs4s/go-cqhttp/db/leveldb" // leveldb
|
||||||
|
_ "github.com/Mrs4s/go-cqhttp/modules/mime" // mime检查模块
|
||||||
|
_ "github.com/Mrs4s/go-cqhttp/modules/pprof" // pprof 性能分析
|
||||||
|
_ "github.com/Mrs4s/go-cqhttp/modules/silk" // silk编码模块
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
// 允许通过配置文件设置的状态列表
|
||||||
conf *config.Config
|
var allowStatus = [...]client.UserOnlineStatus{
|
||||||
isFastStart = false
|
client.StatusOnline, client.StatusAway, client.StatusInvisible, client.StatusBusy,
|
||||||
// PasswordHash 存储QQ密码哈希供登录使用
|
client.StatusListening, client.StatusConstellation, client.StatusWeather, client.StatusMeetSpring,
|
||||||
PasswordHash [16]byte
|
client.StatusTimi, client.StatusEatChicken, client.StatusLoving, client.StatusWangWang, client.StatusCookedRice,
|
||||||
|
client.StatusStudy, client.StatusStayUp, client.StatusPlayBall, client.StatusSignal, client.StatusStudyOnline,
|
||||||
// AccountToken 存储AccountToken供登录使用
|
client.StatusGaming, client.StatusVacationing, client.StatusWatchingTV, client.StatusFitness,
|
||||||
AccountToken []byte
|
}
|
||||||
|
|
||||||
// 允许通过配置文件设置的状态列表
|
|
||||||
allowStatus = [...]client.UserOnlineStatus{
|
|
||||||
client.StatusOnline, client.StatusAway, client.StatusInvisible, client.StatusBusy,
|
|
||||||
client.StatusListening, client.StatusConstellation, client.StatusWeather, client.StatusMeetSpring,
|
|
||||||
client.StatusTimi, client.StatusEatChicken, client.StatusLoving, client.StatusWangWang, client.StatusCookedRice,
|
|
||||||
client.StatusStudy, client.StatusStayUp, client.StatusPlayBall, client.StatusSignal, client.StatusStudyOnline,
|
|
||||||
client.StatusGaming, client.StatusVacationing, client.StatusWatchingTV, client.StatusFitness,
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
c := flag.String("c", config.DefaultConfigFile, "configuration filename")
|
base.Parse()
|
||||||
d := flag.Bool("d", false, "running as a daemon")
|
if !base.FastStart && terminal.RunningByDoubleClick() {
|
||||||
h := flag.Bool("h", false, "this help")
|
err := terminal.NoMoreDoubleClick()
|
||||||
wd := flag.String("w", "", "cover the working directory")
|
if err != nil {
|
||||||
debug := flag.Bool("D", false, "debug mode")
|
log.Errorf("遇到错误: %v", err)
|
||||||
flag.Parse()
|
time.Sleep(time.Second * 5)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
switch {
|
switch {
|
||||||
case *h:
|
case base.LittleH:
|
||||||
help()
|
base.Help()
|
||||||
case *d:
|
case base.LittleD:
|
||||||
server.Daemon()
|
server.Daemon()
|
||||||
case *wd != "":
|
case base.LittleWD != "":
|
||||||
resetWorkDir(*wd)
|
base.ResetWorkingDir()
|
||||||
}
|
|
||||||
|
|
||||||
// 通过-c 参数替换 配置文件路径
|
|
||||||
config.DefaultConfigFile = *c
|
|
||||||
conf = config.Get()
|
|
||||||
if *debug {
|
|
||||||
conf.Output.Debug = true
|
|
||||||
}
|
|
||||||
if conf.Output.Debug {
|
|
||||||
log.SetReportCaller(true)
|
|
||||||
codec.Debug = true
|
|
||||||
}
|
}
|
||||||
|
base.Init()
|
||||||
|
|
||||||
rotateOptions := []rotatelogs.Option{
|
rotateOptions := []rotatelogs.Option{
|
||||||
rotatelogs.WithRotationTime(time.Hour * 24),
|
rotatelogs.WithRotationTime(time.Hour * 24),
|
||||||
}
|
}
|
||||||
|
rotateOptions = append(rotateOptions, rotatelogs.WithMaxAge(base.LogAging))
|
||||||
if conf.Output.LogAging > 0 {
|
if base.LogForceNew {
|
||||||
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 {
|
|
||||||
rotateOptions = append(rotateOptions, rotatelogs.ForceNewFile())
|
rotateOptions = append(rotateOptions, rotatelogs.ForceNewFile())
|
||||||
}
|
}
|
||||||
|
|
||||||
w, err := rotatelogs.New(path.Join("logs", "%Y-%m-%d.log"), rotateOptions...)
|
w, err := rotatelogs.New(path.Join("logs", "%Y-%m-%d.log"), rotateOptions...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Errorf("rotatelogs init err: %v", err)
|
log.Errorf("rotatelogs init err: %v", err)
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
log.AddHook(global.NewLocalHook(w, global.LogFormat{}, global.GetLogLevel(conf.Output.LogLevel)...))
|
consoleFormatter := global.LogFormat{EnableColor: base.LogColorful}
|
||||||
|
fileFormatter := global.LogFormat{EnableColor: false}
|
||||||
|
log.AddHook(global.NewLocalHook(w, consoleFormatter, fileFormatter, global.GetLogLevel(base.LogLevel)...))
|
||||||
|
|
||||||
mkCacheDir := func(path string, _type string) {
|
mkCacheDir := func(path string, _type string) {
|
||||||
if !global.PathExists(path) {
|
if !global.PathExists(path) {
|
||||||
@ -114,6 +92,13 @@ func main() {
|
|||||||
mkCacheDir(global.VoicePath, "语音")
|
mkCacheDir(global.VoicePath, "语音")
|
||||||
mkCacheDir(global.VideoPath, "视频")
|
mkCacheDir(global.VideoPath, "视频")
|
||||||
mkCacheDir(global.CachePath, "发送图片")
|
mkCacheDir(global.CachePath, "发送图片")
|
||||||
|
mkCacheDir(path.Join(global.ImagePath, "guild-images"), "频道图片缓存")
|
||||||
|
cache.Init()
|
||||||
|
|
||||||
|
db.Init()
|
||||||
|
if err := db.Open(); err != nil {
|
||||||
|
log.Fatalf("打开数据库失败: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
var byteKey []byte
|
var byteKey []byte
|
||||||
arg := os.Args
|
arg := os.Args
|
||||||
@ -122,39 +107,34 @@ func main() {
|
|||||||
switch arg[i] {
|
switch arg[i] {
|
||||||
case "update":
|
case "update":
|
||||||
if len(arg) > i+1 {
|
if len(arg) > i+1 {
|
||||||
selfUpdate(arg[i+1])
|
selfupdate.SelfUpdate(arg[i+1])
|
||||||
} else {
|
} else {
|
||||||
selfUpdate("")
|
selfupdate.SelfUpdate("")
|
||||||
}
|
}
|
||||||
case "key":
|
case "key":
|
||||||
if len(arg) > i+1 {
|
p := i + 1
|
||||||
byteKey = []byte(arg[i+1])
|
if len(arg) > p {
|
||||||
|
byteKey = []byte(arg[p])
|
||||||
|
para.Hide(p)
|
||||||
}
|
}
|
||||||
case "faststart":
|
case "faststart":
|
||||||
isFastStart = true
|
base.FastStart = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if terminal.RunningByDoubleClick() && !isFastStart {
|
|
||||||
err := terminal.NoMoreDoubleClick()
|
|
||||||
if err != nil {
|
|
||||||
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 (base.Account.Uin == 0 || (base.Account.Password == "" && !base.Account.Encrypt)) && !global.PathExists("session.token") {
|
||||||
log.Warn("账号密码未配置, 将使用二维码登录.")
|
log.Warn("账号密码未配置, 将使用二维码登录.")
|
||||||
if !isFastStart {
|
if !base.FastStart {
|
||||||
log.Warn("将在 5秒 后继续.")
|
log.Warn("将在 5秒 后继续.")
|
||||||
time.Sleep(time.Second * 5)
|
time.Sleep(time.Second * 5)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
log.Info("当前版本:", coolq.Version)
|
log.Info("当前版本:", base.Version)
|
||||||
if conf.Output.Debug {
|
if base.Debug {
|
||||||
log.SetLevel(log.DebugLevel)
|
log.SetLevel(log.DebugLevel)
|
||||||
|
log.SetReportCaller(true)
|
||||||
log.Warnf("已开启Debug模式.")
|
log.Warnf("已开启Debug模式.")
|
||||||
log.Debugf("开发交流群: 192548878")
|
log.Debugf("开发交流群: 192548878")
|
||||||
}
|
}
|
||||||
@ -171,22 +151,22 @@ func main() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if conf.Account.Encrypt {
|
if base.Account.Encrypt {
|
||||||
if !global.PathExists("password.encrypt") {
|
if !global.PathExists("password.encrypt") {
|
||||||
if conf.Account.Password == "" {
|
if base.Account.Password == "" {
|
||||||
log.Error("无法进行加密,请在配置文件中的添加密码后重新启动.")
|
log.Error("无法进行加密,请在配置文件中的添加密码后重新启动.")
|
||||||
readLine()
|
readLine()
|
||||||
os.Exit(0)
|
os.Exit(0)
|
||||||
}
|
}
|
||||||
log.Infof("密码加密已启用, 请输入Key对密码进行加密: (Enter 提交)")
|
log.Infof("密码加密已启用, 请输入Key对密码进行加密: (Enter 提交)")
|
||||||
byteKey, _ = term.ReadPassword(int(os.Stdin.Fd()))
|
byteKey, _ = term.ReadPassword(int(os.Stdin.Fd()))
|
||||||
PasswordHash = md5.Sum([]byte(conf.Account.Password))
|
base.PasswordHash = md5.Sum([]byte(base.Account.Password))
|
||||||
_ = os.WriteFile("password.encrypt", []byte(PasswordHashEncrypt(PasswordHash[:], byteKey)), 0o644)
|
_ = os.WriteFile("password.encrypt", []byte(PasswordHashEncrypt(base.PasswordHash[:], byteKey)), 0o644)
|
||||||
log.Info("密码已加密,为了您的账号安全,请删除配置文件中的密码后重新启动.")
|
log.Info("密码已加密,为了您的账号安全,请删除配置文件中的密码后重新启动.")
|
||||||
readLine()
|
readLine()
|
||||||
os.Exit(0)
|
os.Exit(0)
|
||||||
} else {
|
} else {
|
||||||
if conf.Account.Password != "" {
|
if base.Account.Password != "" {
|
||||||
log.Error("密码已加密,为了您的账号安全,请删除配置文件中的密码后重新启动.")
|
log.Error("密码已加密,为了您的账号安全,请删除配置文件中的密码后重新启动.")
|
||||||
readLine()
|
readLine()
|
||||||
os.Exit(0)
|
os.Exit(0)
|
||||||
@ -218,12 +198,12 @@ func main() {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("加密存储的密码损坏,请尝试重新配置密码")
|
log.Fatalf("加密存储的密码损坏,请尝试重新配置密码")
|
||||||
}
|
}
|
||||||
copy(PasswordHash[:], ph)
|
copy(base.PasswordHash[:], ph)
|
||||||
}
|
}
|
||||||
} else {
|
} else if len(base.Account.Password) > 0 {
|
||||||
PasswordHash = md5.Sum([]byte(conf.Account.Password))
|
base.PasswordHash = md5.Sum([]byte(base.Account.Password))
|
||||||
}
|
}
|
||||||
if !isFastStart {
|
if !base.FastStart {
|
||||||
log.Info("Bot将在5秒后登录并开始信息处理, 按 Ctrl+C 取消.")
|
log.Info("Bot将在5秒后登录并开始信息处理, 按 Ctrl+C 取消.")
|
||||||
time.Sleep(time.Second * 5)
|
time.Sleep(time.Second * 5)
|
||||||
}
|
}
|
||||||
@ -244,21 +224,20 @@ func main() {
|
|||||||
return "未知"
|
return "未知"
|
||||||
}())
|
}())
|
||||||
cli = newClient()
|
cli = newClient()
|
||||||
global.Proxy = conf.Message.ProxyRewrite
|
isQRCodeLogin := (base.Account.Uin == 0 || len(base.Account.Password) == 0) && !base.Account.Encrypt
|
||||||
isQRCodeLogin := (conf.Account.Uin == 0 || len(conf.Account.Password) == 0) && !conf.Account.Encrypt
|
|
||||||
isTokenLogin := false
|
isTokenLogin := false
|
||||||
saveToken := func() {
|
saveToken := func() {
|
||||||
AccountToken = cli.GenToken()
|
base.AccountToken = cli.GenToken()
|
||||||
_ = os.WriteFile("session.token", AccountToken, 0o644)
|
_ = os.WriteFile("session.token", base.AccountToken, 0o644)
|
||||||
}
|
}
|
||||||
if global.PathExists("session.token") {
|
if global.PathExists("session.token") {
|
||||||
token, err := os.ReadFile("session.token")
|
token, err := os.ReadFile("session.token")
|
||||||
if err == nil {
|
if err == nil {
|
||||||
if conf.Account.Uin != 0 {
|
if base.Account.Uin != 0 {
|
||||||
r := binary.NewReader(token)
|
r := binary.NewReader(token)
|
||||||
cu := r.ReadInt64()
|
cu := r.ReadInt64()
|
||||||
if cu != conf.Account.Uin {
|
if cu != base.Account.Uin {
|
||||||
log.Warnf("警告: 配置文件内的QQ号 (%v) 与缓存内的QQ号 (%v) 不相同", conf.Account.Uin, cu)
|
log.Warnf("警告: 配置文件内的QQ号 (%v) 与缓存内的QQ号 (%v) 不相同", base.Account.Uin, cu)
|
||||||
log.Warnf("1. 使用会话缓存继续.")
|
log.Warnf("1. 使用会话缓存继续.")
|
||||||
log.Warnf("2. 删除会话缓存并重启.")
|
log.Warnf("2. 删除会话缓存并重启.")
|
||||||
log.Warnf("请选择: (5秒后自动选1)")
|
log.Warnf("请选择: (5秒后自动选1)")
|
||||||
@ -282,9 +261,9 @@ func main() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if conf.Account.Uin != 0 && PasswordHash != [16]byte{} {
|
if base.Account.Uin != 0 && base.PasswordHash != [16]byte{} {
|
||||||
cli.Uin = conf.Account.Uin
|
cli.Uin = base.Account.Uin
|
||||||
cli.PasswordMd5 = PasswordHash
|
cli.PasswordMd5 = base.PasswordHash
|
||||||
}
|
}
|
||||||
if !isTokenLogin {
|
if !isTokenLogin {
|
||||||
if !isQRCodeLogin {
|
if !isQRCodeLogin {
|
||||||
@ -307,19 +286,19 @@ func main() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
log.Warnf("Bot已离线: %v", e.Message)
|
log.Warnf("Bot已离线: %v", e.Message)
|
||||||
time.Sleep(time.Second * time.Duration(conf.Account.ReLogin.Delay))
|
time.Sleep(time.Second * time.Duration(base.Reconnect.Delay))
|
||||||
for {
|
for {
|
||||||
if conf.Account.ReLogin.Disabled {
|
if base.Reconnect.Disabled {
|
||||||
log.Warnf("未启用自动重连, 将退出.")
|
log.Warnf("未启用自动重连, 将退出.")
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
if times > conf.Account.ReLogin.MaxTimes && conf.Account.ReLogin.MaxTimes != 0 {
|
if times > base.Reconnect.MaxTimes && base.Reconnect.MaxTimes != 0 {
|
||||||
log.Fatalf("Bot重连次数超过限制, 停止")
|
log.Fatalf("Bot重连次数超过限制, 停止")
|
||||||
}
|
}
|
||||||
times++
|
times++
|
||||||
if conf.Account.ReLogin.Interval > 0 {
|
if base.Reconnect.Interval > 0 {
|
||||||
log.Warnf("将在 %v 秒后尝试重连. 重连次数:%v/%v", conf.Account.ReLogin.Interval, times, conf.Account.ReLogin.MaxTimes)
|
log.Warnf("将在 %v 秒后尝试重连. 重连次数:%v/%v", base.Reconnect.Interval, times, base.Reconnect.MaxTimes)
|
||||||
time.Sleep(time.Second * time.Duration(conf.Account.ReLogin.Interval))
|
time.Sleep(time.Second * time.Duration(base.Reconnect.Interval))
|
||||||
} else {
|
} else {
|
||||||
time.Sleep(time.Second)
|
time.Sleep(time.Second)
|
||||||
}
|
}
|
||||||
@ -328,7 +307,7 @@ func main() {
|
|||||||
break
|
break
|
||||||
}
|
}
|
||||||
log.Warnf("尝试重连...")
|
log.Warnf("尝试重连...")
|
||||||
err := cli.TokenLogin(AccountToken)
|
err := cli.TokenLogin(base.AccountToken)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
saveToken()
|
saveToken()
|
||||||
return
|
return
|
||||||
@ -356,70 +335,20 @@ func main() {
|
|||||||
log.Infof("开始加载群列表...")
|
log.Infof("开始加载群列表...")
|
||||||
global.Check(cli.ReloadGroupList(), true)
|
global.Check(cli.ReloadGroupList(), true)
|
||||||
log.Infof("共加载 %v 个群.", len(cli.GroupList))
|
log.Infof("共加载 %v 个群.", len(cli.GroupList))
|
||||||
if conf.Account.Status >= int32(len(allowStatus)) || conf.Account.Status < 0 {
|
if uint(base.Account.Status) >= uint(len(allowStatus)) {
|
||||||
conf.Account.Status = 0
|
base.Account.Status = 0
|
||||||
}
|
|
||||||
cli.SetOnlineStatus(allowStatus[int(conf.Account.Status)])
|
|
||||||
bot := coolq.NewQQBot(cli, conf)
|
|
||||||
_ = bot.Client
|
|
||||||
if conf.Message.PostFormat != "string" && conf.Message.PostFormat != "array" {
|
|
||||||
log.Warnf("post-format 配置错误, 将自动使用 string")
|
|
||||||
coolq.SetMessageFormat("string")
|
|
||||||
} else {
|
|
||||||
coolq.SetMessageFormat(conf.Message.PostFormat)
|
|
||||||
}
|
|
||||||
coolq.IgnoreInvalidCQCode = conf.Message.IgnoreInvalidCQCode
|
|
||||||
coolq.SplitURL = conf.Message.FixURL
|
|
||||||
coolq.ForceFragmented = conf.Message.ForceFragment
|
|
||||||
coolq.RemoveReplyAt = conf.Message.RemoveReplyAt
|
|
||||||
coolq.ExtraReplyData = conf.Message.ExtraReplyData
|
|
||||||
coolq.SkipMimeScan = conf.Message.SkipMimeScan
|
|
||||||
for _, m := range conf.Servers {
|
|
||||||
if h, ok := m["http"]; ok {
|
|
||||||
hc := new(config.HTTPServer)
|
|
||||||
if err := h.Decode(hc); err != nil {
|
|
||||||
log.Warn("读取http配置失败 :", err)
|
|
||||||
} else {
|
|
||||||
go server.RunHTTPServerAndClients(bot, hc)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if s, ok := m["ws"]; ok {
|
|
||||||
sc := new(config.WebsocketServer)
|
|
||||||
if err := s.Decode(sc); err != nil {
|
|
||||||
log.Warn("读取正向Websocket配置失败 :", err)
|
|
||||||
} else {
|
|
||||||
go server.RunWebSocketServer(bot, sc)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if c, ok := m["ws-reverse"]; ok {
|
|
||||||
rc := new(config.WebsocketReverse)
|
|
||||||
if err := c.Decode(rc); err != nil {
|
|
||||||
log.Warn("读取反向Websocket配置失败 :", err)
|
|
||||||
} else {
|
|
||||||
go server.RunWebSocketClient(bot, rc)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if p, ok := m["pprof"]; ok {
|
|
||||||
pc := new(config.PprofServer)
|
|
||||||
if err := p.Decode(pc); err != nil {
|
|
||||||
log.Warn("读取pprof配置失败 :", err)
|
|
||||||
} else {
|
|
||||||
go server.RunPprofServer(pc)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if p, ok := m["lambda"]; ok {
|
|
||||||
lc := new(config.LambdaServer)
|
|
||||||
if err := p.Decode(lc); err != nil {
|
|
||||||
log.Warn("读取pprof配置失败 :", err)
|
|
||||||
} else {
|
|
||||||
go server.RunLambdaClient(bot, lc)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
cli.SetOnlineStatus(allowStatus[base.Account.Status])
|
||||||
|
|
||||||
|
servers.Run(coolq.NewQQBot(cli))
|
||||||
log.Info("资源初始化完成, 开始处理信息.")
|
log.Info("资源初始化完成, 开始处理信息.")
|
||||||
log.Info("アトリは、高性能ですから!")
|
log.Info("アトリは、高性能ですから!")
|
||||||
|
|
||||||
go checkUpdate()
|
go selfupdate.CheckUpdate()
|
||||||
|
go func() {
|
||||||
|
time.Sleep(5 * time.Second)
|
||||||
|
go selfdiagnosis.NetworkDiagnosis(cli)
|
||||||
|
}()
|
||||||
|
|
||||||
<-global.SetupMainSignalHandler()
|
<-global.SetupMainSignalHandler()
|
||||||
}
|
}
|
||||||
@ -455,178 +384,10 @@ func PasswordHashDecrypt(encryptedPasswordHash string, key []byte) ([]byte, erro
|
|||||||
return result, nil
|
return result, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func checkUpdate() {
|
|
||||||
log.Infof("正在检查更新.")
|
|
||||||
if coolq.Version == "(devel)" {
|
|
||||||
log.Warnf("检查更新失败: 使用的 Actions 测试版或自编译版本.")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
var res string
|
|
||||||
if err := gout.GET("https://api.github.com/repos/Mrs4s/go-cqhttp/releases/latest").BindBody(&res).Do(); err != nil {
|
|
||||||
log.Warnf("检查更新失败: %v", err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
info := gjson.Parse(res)
|
|
||||||
if global.VersionNameCompare(coolq.Version, info.Get("tag_name").Str) {
|
|
||||||
log.Infof("当前有更新的 go-cqhttp 可供更新, 请前往 https://github.com/Mrs4s/go-cqhttp/releases 下载.")
|
|
||||||
log.Infof("当前版本: %v 最新版本: %v", coolq.Version, info.Get("tag_name").Str)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
log.Infof("检查更新完成. 当前已运行最新版本.")
|
|
||||||
}
|
|
||||||
|
|
||||||
func selfUpdate(imageURL string) {
|
|
||||||
log.Infof("正在检查更新.")
|
|
||||||
var res, r string
|
|
||||||
if err := gout.GET("https://api.github.com/repos/Mrs4s/go-cqhttp/releases/latest").BindBody(&res).Do(); err != nil {
|
|
||||||
log.Warnf("检查更新失败: %v", err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
info := gjson.Parse(res)
|
|
||||||
version := info.Get("tag_name").Str
|
|
||||||
if coolq.Version == version {
|
|
||||||
log.Info("当前版本已经是最新版本!")
|
|
||||||
goto wait
|
|
||||||
}
|
|
||||||
log.Info("当前最新版本为 ", version)
|
|
||||||
log.Warn("是否更新(y/N): ")
|
|
||||||
r = strings.TrimSpace(readLine())
|
|
||||||
if r != "y" && r != "Y" {
|
|
||||||
log.Warn("已取消更新!")
|
|
||||||
} else {
|
|
||||||
log.Info("正在更新,请稍等...")
|
|
||||||
sumURL := fmt.Sprintf("%v/Mrs4s/go-cqhttp/releases/download/%v/go-cqhttp_checksums.txt",
|
|
||||||
func() string {
|
|
||||||
if imageURL != "" {
|
|
||||||
return imageURL
|
|
||||||
}
|
|
||||||
return "https://github.com"
|
|
||||||
}(), version)
|
|
||||||
closer, err := global.HTTPGetReadCloser(sumURL)
|
|
||||||
if err != nil {
|
|
||||||
log.Error("更新失败: ", err)
|
|
||||||
goto wait
|
|
||||||
}
|
|
||||||
rd := bufio.NewReader(closer)
|
|
||||||
binaryName := fmt.Sprintf("go-cqhttp_%v_%v.%v", runtime.GOOS, func() string {
|
|
||||||
if runtime.GOARCH == "arm" {
|
|
||||||
return "armv7"
|
|
||||||
}
|
|
||||||
return runtime.GOARCH
|
|
||||||
}(), func() string {
|
|
||||||
if runtime.GOOS == "windows" {
|
|
||||||
return "zip"
|
|
||||||
}
|
|
||||||
return "tar.gz"
|
|
||||||
}())
|
|
||||||
var sum []byte
|
|
||||||
for {
|
|
||||||
str, err := rd.ReadString('\n')
|
|
||||||
if err != nil {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
str = strings.TrimSpace(str)
|
|
||||||
if strings.HasSuffix(str, binaryName) {
|
|
||||||
sum, _ = hex.DecodeString(strings.TrimSuffix(str, " "+binaryName))
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
url := fmt.Sprintf("%v/Mrs4s/go-cqhttp/releases/download/%v/%v",
|
|
||||||
func() string {
|
|
||||||
if imageURL != "" {
|
|
||||||
return imageURL
|
|
||||||
}
|
|
||||||
return "https://github.com"
|
|
||||||
}(), version, binaryName)
|
|
||||||
|
|
||||||
err = update.Update(url, sum)
|
|
||||||
if err != nil {
|
|
||||||
log.Error("更新失败: ", err)
|
|
||||||
} else {
|
|
||||||
log.Info("更新成功!")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
wait:
|
|
||||||
log.Info("按 Enter 继续....")
|
|
||||||
readLine()
|
|
||||||
os.Exit(0)
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
func restart(args []string) {
|
|
||||||
var cmd *exec.Cmd
|
|
||||||
if runtime.GOOS == "windows" {
|
|
||||||
file, err := exec.LookPath(args[0])
|
|
||||||
if err != nil {
|
|
||||||
log.Errorf("重启失败:%s", err.Error())
|
|
||||||
return
|
|
||||||
}
|
|
||||||
path, err := filepath.Abs(file)
|
|
||||||
if err != nil {
|
|
||||||
log.Errorf("重启失败:%s", err.Error())
|
|
||||||
}
|
|
||||||
args = append([]string{"/c", "start ", path, "faststart"}, args[1:]...)
|
|
||||||
cmd = &exec.Cmd{
|
|
||||||
Path: "cmd.exe",
|
|
||||||
Args: args,
|
|
||||||
Stderr: os.Stderr,
|
|
||||||
Stdout: os.Stdout,
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
args = append(args, "faststart")
|
|
||||||
cmd = &exec.Cmd{
|
|
||||||
Path: args[0],
|
|
||||||
Args: args,
|
|
||||||
Stderr: os.Stderr,
|
|
||||||
Stdout: os.Stdout,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
_ = cmd.Start()
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
// help cli命令行-h的帮助提示
|
|
||||||
func help() {
|
|
||||||
fmt.Printf(`go-cqhttp service
|
|
||||||
version: %s
|
|
||||||
|
|
||||||
Usage:
|
|
||||||
|
|
||||||
server [OPTIONS]
|
|
||||||
|
|
||||||
Options:
|
|
||||||
`, coolq.Version)
|
|
||||||
|
|
||||||
flag.PrintDefaults()
|
|
||||||
os.Exit(0)
|
|
||||||
}
|
|
||||||
|
|
||||||
func resetWorkDir(wd string) {
|
|
||||||
args := make([]string, 0, len(os.Args))
|
|
||||||
for i := 1; i < len(os.Args); i++ {
|
|
||||||
if os.Args[i] == "-w" {
|
|
||||||
i++ // skip value field
|
|
||||||
} else if !strings.HasPrefix(os.Args[i], "-w") {
|
|
||||||
args = append(args, os.Args[i])
|
|
||||||
}
|
|
||||||
}
|
|
||||||
p, _ := filepath.Abs(os.Args[0])
|
|
||||||
proc := exec.Command(p, args...)
|
|
||||||
proc.Stdin = os.Stdin
|
|
||||||
proc.Stdout = os.Stdout
|
|
||||||
proc.Stderr = os.Stderr
|
|
||||||
proc.Dir = wd
|
|
||||||
err := proc.Run()
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
os.Exit(0)
|
|
||||||
}
|
|
||||||
|
|
||||||
func newClient() *client.QQClient {
|
func newClient() *client.QQClient {
|
||||||
c := client.NewClientEmpty()
|
c := client.NewClientEmpty()
|
||||||
c.OnServerUpdated(func(bot *client.QQClient, e *client.ServerUpdatedEvent) bool {
|
c.OnServerUpdated(func(bot *client.QQClient, e *client.ServerUpdatedEvent) bool {
|
||||||
if !conf.Account.UseSSOAddress {
|
if !base.UseSSOAddress {
|
||||||
log.Infof("收到服务器地址更新通知, 根据配置文件已忽略.")
|
log.Infof("收到服务器地址更新通知, 根据配置文件已忽略.")
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
281
modules/api/api.go
Normal file
281
modules/api/api.go
Normal file
@ -0,0 +1,281 @@
|
|||||||
|
// Code generated by cmd/api-generator. DO NOT EDIT.
|
||||||
|
|
||||||
|
package api
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Mrs4s/go-cqhttp/coolq"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/global"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (c *Caller) call(action string, p Getter) global.MSG {
|
||||||
|
switch action {
|
||||||
|
default:
|
||||||
|
return coolq.Failed(404, "API_NOT_FOUND", "API不存在")
|
||||||
|
case ".get_word_slices":
|
||||||
|
p0 := p.Get("content").String()
|
||||||
|
return c.bot.CQGetWordSlices(p0)
|
||||||
|
case ".handle_quick_operation":
|
||||||
|
p0 := p.Get("context")
|
||||||
|
p1 := p.Get("operation")
|
||||||
|
return c.bot.CQHandleQuickOperation(p0, p1)
|
||||||
|
case "_get_model_show":
|
||||||
|
p0 := p.Get("model").String()
|
||||||
|
return c.bot.CQGetModelShow(p0)
|
||||||
|
case "_get_vip_info":
|
||||||
|
p0 := p.Get("user_id").Int()
|
||||||
|
return c.bot.CQGetVipInfo(p0)
|
||||||
|
case "_send_group_notice":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("content").String()
|
||||||
|
p2 := p.Get("image").String()
|
||||||
|
return c.bot.CQSetGroupMemo(p0, p1, p2)
|
||||||
|
case "_set_model_show":
|
||||||
|
p0 := p.Get("model").String()
|
||||||
|
p1 := p.Get("model_show").String()
|
||||||
|
return c.bot.CQSetModelShow(p0, p1)
|
||||||
|
case "can_send_image":
|
||||||
|
return c.bot.CQCanSendImage()
|
||||||
|
case "can_send_record":
|
||||||
|
return c.bot.CQCanSendRecord()
|
||||||
|
case "check_url_safely":
|
||||||
|
p0 := p.Get("url").String()
|
||||||
|
return c.bot.CQCheckURLSafely(p0)
|
||||||
|
case "create_group_file_folder":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("parent_id").String()
|
||||||
|
p2 := p.Get("name").String()
|
||||||
|
return c.bot.CQGroupFileCreateFolder(p0, p1, p2)
|
||||||
|
case "delete_essence_msg":
|
||||||
|
p0 := int32(p.Get("message_id").Int())
|
||||||
|
return c.bot.CQDeleteEssenceMessage(p0)
|
||||||
|
case "delete_friend":
|
||||||
|
p0 := p.Get("[user_id,id].0").Int()
|
||||||
|
return c.bot.CQDeleteFriend(p0)
|
||||||
|
case "delete_group_file":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("file_id").String()
|
||||||
|
p2 := int32(p.Get("bus_id").Int())
|
||||||
|
return c.bot.CQGroupFileDeleteFile(p0, p1, p2)
|
||||||
|
case "delete_group_folder":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("folder_id").String()
|
||||||
|
return c.bot.CQGroupFileDeleteFolder(p0, p1)
|
||||||
|
case "delete_msg":
|
||||||
|
p0 := int32(p.Get("message_id").Int())
|
||||||
|
return c.bot.CQDeleteMessage(p0)
|
||||||
|
case "delete_unidirectional_friend":
|
||||||
|
p0 := p.Get("user_id").Int()
|
||||||
|
return c.bot.CQDeleteUnidirectionalFriend(p0)
|
||||||
|
case "download_file":
|
||||||
|
p0 := p.Get("url").String()
|
||||||
|
p1 := p.Get("headers")
|
||||||
|
p2 := int(p.Get("thread_count").Int())
|
||||||
|
return c.bot.CQDownloadFile(p0, p1, p2)
|
||||||
|
case "get_essence_msg_list":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
return c.bot.CQGetEssenceMessageList(p0)
|
||||||
|
case "get_forward_msg":
|
||||||
|
p0 := p.Get("[message_id,id].0").String()
|
||||||
|
return c.bot.CQGetForwardMessage(p0)
|
||||||
|
case "get_friend_list":
|
||||||
|
return c.bot.CQGetFriendList()
|
||||||
|
case "get_group_at_all_remain":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
return c.bot.CQGetAtAllRemain(p0)
|
||||||
|
case "get_group_file_system_info":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
return c.bot.CQGetGroupFileSystemInfo(p0)
|
||||||
|
case "get_group_file_url":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("file_id").String()
|
||||||
|
p2 := int32(p.Get("bus_id").Int())
|
||||||
|
return c.bot.CQGetGroupFileURL(p0, p1, p2)
|
||||||
|
case "get_group_files_by_folder":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("folder_id").String()
|
||||||
|
return c.bot.CQGetGroupFilesByFolderID(p0, p1)
|
||||||
|
case "get_group_honor_info":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("type").String()
|
||||||
|
return c.bot.CQGetGroupHonorInfo(p0, p1)
|
||||||
|
case "get_group_info":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("no_cache").Bool()
|
||||||
|
return c.bot.CQGetGroupInfo(p0, p1)
|
||||||
|
case "get_group_list":
|
||||||
|
p0 := p.Get("no_cache").Bool()
|
||||||
|
return c.bot.CQGetGroupList(p0)
|
||||||
|
case "get_group_member_info":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("user_id").Int()
|
||||||
|
p2 := p.Get("no_cache").Bool()
|
||||||
|
return c.bot.CQGetGroupMemberInfo(p0, p1, p2)
|
||||||
|
case "get_group_member_list":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("no_cache").Bool()
|
||||||
|
return c.bot.CQGetGroupMemberList(p0, p1)
|
||||||
|
case "get_group_msg_history":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("message_seq").Int()
|
||||||
|
return c.bot.CQGetGroupMessageHistory(p0, p1)
|
||||||
|
case "get_group_root_files":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
return c.bot.CQGetGroupRootFiles(p0)
|
||||||
|
case "get_group_system_msg":
|
||||||
|
return c.bot.CQGetGroupSystemMessages()
|
||||||
|
case "get_guild_channel_list":
|
||||||
|
p0 := p.Get("guild_id").Uint()
|
||||||
|
p1 := p.Get("no_cache").Bool()
|
||||||
|
return c.bot.CQGetGuildChannelList(p0, p1)
|
||||||
|
case "get_guild_list":
|
||||||
|
return c.bot.CQGetGuildList()
|
||||||
|
case "get_guild_members":
|
||||||
|
p0 := p.Get("guild_id").Uint()
|
||||||
|
return c.bot.CQGetGuildMembers(p0)
|
||||||
|
case "get_guild_meta_by_guest":
|
||||||
|
p0 := p.Get("guild_id").Uint()
|
||||||
|
return c.bot.CQGetGuildMetaByGuest(p0)
|
||||||
|
case "get_guild_service_profile":
|
||||||
|
return c.bot.CQGetGuildServiceProfile()
|
||||||
|
case "get_image":
|
||||||
|
p0 := p.Get("file").String()
|
||||||
|
return c.bot.CQGetImage(p0)
|
||||||
|
case "get_login_info":
|
||||||
|
return c.bot.CQGetLoginInfo()
|
||||||
|
case "get_msg":
|
||||||
|
p0 := int32(p.Get("message_id").Int())
|
||||||
|
return c.bot.CQGetMessage(p0)
|
||||||
|
case "get_online_clients":
|
||||||
|
p0 := p.Get("no_cache").Bool()
|
||||||
|
return c.bot.CQGetOnlineClients(p0)
|
||||||
|
case "get_status":
|
||||||
|
return c.bot.CQGetStatus()
|
||||||
|
case "get_stranger_info":
|
||||||
|
p0 := p.Get("user_id").Int()
|
||||||
|
return c.bot.CQGetStrangerInfo(p0)
|
||||||
|
case "get_unidirectional_friend_list":
|
||||||
|
return c.bot.CQGetUnidirectionalFriendList()
|
||||||
|
case "get_version_info":
|
||||||
|
return c.bot.CQGetVersionInfo()
|
||||||
|
case "mark_msg_as_read":
|
||||||
|
p0 := int32(p.Get("message_id").Int())
|
||||||
|
return c.bot.CQMarkMessageAsRead(p0)
|
||||||
|
case "ocr_image", ".ocr_image":
|
||||||
|
p0 := p.Get("image").String()
|
||||||
|
return c.bot.CQOcrImage(p0)
|
||||||
|
case "qidian_get_account_info":
|
||||||
|
return c.bot.CQGetQiDianAccountInfo()
|
||||||
|
case "reload_event_filter":
|
||||||
|
p0 := p.Get("file").String()
|
||||||
|
return c.bot.CQReloadEventFilter(p0)
|
||||||
|
case "send_group_forward_msg":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("messages")
|
||||||
|
return c.bot.CQSendGroupForwardMessage(p0, p1)
|
||||||
|
case "send_group_msg":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("message")
|
||||||
|
p2 := p.Get("auto_escape").Bool()
|
||||||
|
return c.bot.CQSendGroupMessage(p0, p1, p2)
|
||||||
|
case "send_guild_channel_msg":
|
||||||
|
p0 := p.Get("guild_id").Uint()
|
||||||
|
p1 := p.Get("channel_id").Uint()
|
||||||
|
p2 := p.Get("message")
|
||||||
|
p3 := p.Get("auto_escape").Bool()
|
||||||
|
return c.bot.CQSendGuildChannelMessage(p0, p1, p2, p3)
|
||||||
|
case "send_msg":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("user_id").Int()
|
||||||
|
p2 := p.Get("message")
|
||||||
|
p3 := p.Get("message_type").String()
|
||||||
|
p4 := p.Get("auto_escape").Bool()
|
||||||
|
return c.bot.CQSendMessage(p0, p1, p2, p3, p4)
|
||||||
|
case "send_private_msg":
|
||||||
|
p0 := p.Get("user_id").Int()
|
||||||
|
p1 := p.Get("group_id").Int()
|
||||||
|
p2 := p.Get("message")
|
||||||
|
p3 := p.Get("auto_escape").Bool()
|
||||||
|
return c.bot.CQSendPrivateMessage(p0, p1, p2, p3)
|
||||||
|
case "set_essence_msg":
|
||||||
|
p0 := int32(p.Get("message_id").Int())
|
||||||
|
return c.bot.CQSetEssenceMessage(p0)
|
||||||
|
case "set_friend_add_request":
|
||||||
|
p0 := p.Get("flag").String()
|
||||||
|
p1 := true
|
||||||
|
if pt := p.Get("approve"); pt.Exists() {
|
||||||
|
p1 = pt.Bool()
|
||||||
|
}
|
||||||
|
return c.bot.CQProcessFriendRequest(p0, p1)
|
||||||
|
case "set_group_add_request":
|
||||||
|
p0 := p.Get("flag").String()
|
||||||
|
p1 := p.Get("[sub_type,type].0").String()
|
||||||
|
p2 := p.Get("reason").String()
|
||||||
|
p3 := true
|
||||||
|
if pt := p.Get("approve"); pt.Exists() {
|
||||||
|
p3 = pt.Bool()
|
||||||
|
}
|
||||||
|
return c.bot.CQProcessGroupRequest(p0, p1, p2, p3)
|
||||||
|
case "set_group_admin":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("user_id").Int()
|
||||||
|
p2 := true
|
||||||
|
if pt := p.Get("enable"); pt.Exists() {
|
||||||
|
p2 = pt.Bool()
|
||||||
|
}
|
||||||
|
return c.bot.CQSetGroupAdmin(p0, p1, p2)
|
||||||
|
case "set_group_anonymous_ban":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("[anonymous_flag,anonymous.flag].0").String()
|
||||||
|
p2 := int32(p.Get("duration").Int())
|
||||||
|
return c.bot.CQSetGroupAnonymousBan(p0, p1, p2)
|
||||||
|
case "set_group_ban":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("user_id").Int()
|
||||||
|
p2 := uint32(1800)
|
||||||
|
if pt := p.Get("duration"); pt.Exists() {
|
||||||
|
p2 = uint32(pt.Int())
|
||||||
|
}
|
||||||
|
return c.bot.CQSetGroupBan(p0, p1, p2)
|
||||||
|
case "set_group_card":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("user_id").Int()
|
||||||
|
p2 := p.Get("card").String()
|
||||||
|
return c.bot.CQSetGroupCard(p0, p1, p2)
|
||||||
|
case "set_group_kick":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("user_id").Int()
|
||||||
|
p2 := p.Get("message").String()
|
||||||
|
p3 := p.Get("reject_add_request").Bool()
|
||||||
|
return c.bot.CQSetGroupKick(p0, p1, p2, p3)
|
||||||
|
case "set_group_leave":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
return c.bot.CQSetGroupLeave(p0)
|
||||||
|
case "set_group_name":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("group_name").String()
|
||||||
|
return c.bot.CQSetGroupName(p0, p1)
|
||||||
|
case "set_group_portrait":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("file").String()
|
||||||
|
p2 := p.Get("cache").String()
|
||||||
|
return c.bot.CQSetGroupPortrait(p0, p1, p2)
|
||||||
|
case "set_group_special_title":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("user_id").Int()
|
||||||
|
p2 := p.Get("title").String()
|
||||||
|
return c.bot.CQSetGroupSpecialTitle(p0, p1, p2)
|
||||||
|
case "set_group_whole_ban":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := true
|
||||||
|
if pt := p.Get("enable"); pt.Exists() {
|
||||||
|
p1 = pt.Bool()
|
||||||
|
}
|
||||||
|
return c.bot.CQSetGroupWholeBan(p0, p1)
|
||||||
|
case "upload_group_file":
|
||||||
|
p0 := p.Get("group_id").Int()
|
||||||
|
p1 := p.Get("file").String()
|
||||||
|
p2 := p.Get("name").String()
|
||||||
|
p3 := p.Get("folder").String()
|
||||||
|
return c.bot.CQUploadGroupFile(p0, p1, p2, p3)
|
||||||
|
}
|
||||||
|
}
|
48
modules/api/caller.go
Normal file
48
modules/api/caller.go
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
// Package api implements the API route for servers.
|
||||||
|
package api
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/tidwall/gjson"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/go-cqhttp/coolq"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/global"
|
||||||
|
)
|
||||||
|
|
||||||
|
//go:generate go run github.com/Mrs4s/go-cqhttp/cmd/api-generator -path=./../../coolq/api.go
|
||||||
|
|
||||||
|
// Getter 参数获取
|
||||||
|
type Getter interface {
|
||||||
|
Get(string) gjson.Result
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handler 中间件
|
||||||
|
type Handler func(action string, p Getter) global.MSG
|
||||||
|
|
||||||
|
// Caller api route caller
|
||||||
|
type Caller struct {
|
||||||
|
bot *coolq.CQBot
|
||||||
|
handlers []Handler
|
||||||
|
}
|
||||||
|
|
||||||
|
// Call specific API
|
||||||
|
func (c *Caller) Call(action string, p Getter) global.MSG {
|
||||||
|
for _, fn := range c.handlers {
|
||||||
|
if ret := fn(action, p); ret != nil {
|
||||||
|
return ret
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return c.call(action, p)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Use add handlers to the API caller
|
||||||
|
func (c *Caller) Use(middlewares ...Handler) {
|
||||||
|
c.handlers = append(c.handlers, middlewares...)
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewCaller create a new API caller
|
||||||
|
func NewCaller(bot *coolq.CQBot) *Caller {
|
||||||
|
return &Caller{
|
||||||
|
bot: bot,
|
||||||
|
handlers: make([]Handler, 0),
|
||||||
|
}
|
||||||
|
}
|
@ -6,12 +6,10 @@ import (
|
|||||||
_ "embed" // embed the default config file
|
_ "embed" // embed the default config file
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"path"
|
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
|
||||||
|
|
||||||
"github.com/Mrs4s/go-cqhttp/global"
|
"github.com/Mrs4s/go-cqhttp/internal/param"
|
||||||
|
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
"gopkg.in/yaml.v3"
|
"gopkg.in/yaml.v3"
|
||||||
@ -21,27 +19,27 @@ import (
|
|||||||
//go:embed default_config.yml
|
//go:embed default_config.yml
|
||||||
var defaultConfig string
|
var defaultConfig string
|
||||||
|
|
||||||
var currentPath = getCurrentPath()
|
// Reconnect 重连配置
|
||||||
|
type Reconnect struct {
|
||||||
|
Disabled bool `yaml:"disabled"`
|
||||||
|
Delay uint `yaml:"delay"`
|
||||||
|
MaxTimes uint `yaml:"max-times"`
|
||||||
|
Interval int `yaml:"interval"`
|
||||||
|
}
|
||||||
|
|
||||||
// DefaultConfigFile 默认配置文件路径
|
// Account 账号配置
|
||||||
var DefaultConfigFile = path.Join(currentPath, "config.yml")
|
type Account struct {
|
||||||
|
Uin int64 `yaml:"uin"`
|
||||||
|
Password string `yaml:"password"`
|
||||||
|
Encrypt bool `yaml:"encrypt"`
|
||||||
|
Status int `yaml:"status"`
|
||||||
|
ReLogin *Reconnect `yaml:"relogin"`
|
||||||
|
UseSSOAddress bool `yaml:"use-sso-address"`
|
||||||
|
}
|
||||||
|
|
||||||
// Config 总配置文件
|
// Config 总配置文件
|
||||||
type Config struct {
|
type Config struct {
|
||||||
Account struct {
|
Account *Account `yaml:"account"`
|
||||||
Uin int64 `yaml:"uin"`
|
|
||||||
Password string `yaml:"password"`
|
|
||||||
Encrypt bool `yaml:"encrypt"`
|
|
||||||
Status int32 `yaml:"status"`
|
|
||||||
ReLogin struct {
|
|
||||||
Disabled bool `yaml:"disabled"`
|
|
||||||
Delay uint `yaml:"delay"`
|
|
||||||
MaxTimes uint `yaml:"max-times"`
|
|
||||||
Interval int `yaml:"interval"`
|
|
||||||
}
|
|
||||||
UseSSOAddress bool `yaml:"use-sso-address"`
|
|
||||||
} `yaml:"account"`
|
|
||||||
|
|
||||||
Heartbeat struct {
|
Heartbeat struct {
|
||||||
Disabled bool `yaml:"disabled"`
|
Disabled bool `yaml:"disabled"`
|
||||||
Interval int `yaml:"interval"`
|
Interval int `yaml:"interval"`
|
||||||
@ -49,10 +47,10 @@ type Config struct {
|
|||||||
|
|
||||||
Message struct {
|
Message struct {
|
||||||
PostFormat string `yaml:"post-format"`
|
PostFormat string `yaml:"post-format"`
|
||||||
|
ProxyRewrite string `yaml:"proxy-rewrite"`
|
||||||
IgnoreInvalidCQCode bool `yaml:"ignore-invalid-cqcode"`
|
IgnoreInvalidCQCode bool `yaml:"ignore-invalid-cqcode"`
|
||||||
ForceFragment bool `yaml:"force-fragment"`
|
ForceFragment bool `yaml:"force-fragment"`
|
||||||
FixURL bool `yaml:"fix-url"`
|
FixURL bool `yaml:"fix-url"`
|
||||||
ProxyRewrite string `yaml:"proxy-rewrite"`
|
|
||||||
ReportSelfMessage bool `yaml:"report-self-message"`
|
ReportSelfMessage bool `yaml:"report-self-message"`
|
||||||
RemoveReplyAt bool `yaml:"remove-reply-at"`
|
RemoveReplyAt bool `yaml:"remove-reply-at"`
|
||||||
ExtraReplyData bool `yaml:"extra-reply-data"`
|
ExtraReplyData bool `yaml:"extra-reply-data"`
|
||||||
@ -63,6 +61,7 @@ type Config struct {
|
|||||||
LogLevel string `yaml:"log-level"`
|
LogLevel string `yaml:"log-level"`
|
||||||
LogAging int `yaml:"log-aging"`
|
LogAging int `yaml:"log-aging"`
|
||||||
LogForceNew bool `yaml:"log-force-new"`
|
LogForceNew bool `yaml:"log-force-new"`
|
||||||
|
LogColorful *bool `yaml:"log-colorful"`
|
||||||
Debug bool `yaml:"debug"`
|
Debug bool `yaml:"debug"`
|
||||||
} `yaml:"output"`
|
} `yaml:"output"`
|
||||||
|
|
||||||
@ -139,113 +138,104 @@ type LevelDBConfig struct {
|
|||||||
Enable bool `yaml:"enable"`
|
Enable bool `yaml:"enable"`
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
// MongoDBConfig mongodb 相关配置
|
||||||
config *Config
|
type MongoDBConfig struct {
|
||||||
once sync.Once
|
Enable bool `yaml:"enable"`
|
||||||
)
|
URI string `yaml:"uri"`
|
||||||
|
Database string `yaml:"database"`
|
||||||
// Get 从默认配置文件路径中获取
|
|
||||||
func Get() *Config {
|
|
||||||
once.Do(func() {
|
|
||||||
hasEnvironmentConf := os.Getenv("GCQ_UIN") != ""
|
|
||||||
|
|
||||||
file, err := os.Open(DefaultConfigFile)
|
|
||||||
config = &Config{}
|
|
||||||
if err == nil {
|
|
||||||
defer func() { _ = file.Close() }()
|
|
||||||
if err = yaml.NewDecoder(file).Decode(config); err != nil && !hasEnvironmentConf {
|
|
||||||
log.Fatal("配置文件不合法!", err)
|
|
||||||
}
|
|
||||||
} else if !hasEnvironmentConf {
|
|
||||||
generateConfig()
|
|
||||||
os.Exit(0)
|
|
||||||
}
|
|
||||||
if hasEnvironmentConf {
|
|
||||||
// type convert tools
|
|
||||||
toInt64 := func(str string) int64 {
|
|
||||||
i, _ := strconv.ParseInt(str, 10, 64)
|
|
||||||
return i
|
|
||||||
}
|
|
||||||
|
|
||||||
// load config from environment variable
|
|
||||||
global.SetAtDefault(&config.Account.Uin, toInt64(os.Getenv("GCQ_UIN")), int64(0))
|
|
||||||
global.SetAtDefault(&config.Account.Password, os.Getenv("GCQ_PWD"), "")
|
|
||||||
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))
|
|
||||||
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)}
|
|
||||||
if config.Database == nil {
|
|
||||||
config.Database = make(map[string]yaml.Node)
|
|
||||||
}
|
|
||||||
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)
|
|
||||||
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})
|
|
||||||
}
|
|
||||||
if os.Getenv("GCQ_WS_PORT") != "" {
|
|
||||||
node := &yaml.Node{}
|
|
||||||
wsServerConf := &WebsocketServer{
|
|
||||||
Host: "0.0.0.0",
|
|
||||||
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})
|
|
||||||
}
|
|
||||||
if os.Getenv("GCQ_RWS_API") != "" || os.Getenv("GCQ_RWS_EVENT") != "" || os.Getenv("GCQ_RWS_UNIVERSAL") != "" {
|
|
||||||
node := &yaml.Node{}
|
|
||||||
rwsConf := &WebsocketReverse{
|
|
||||||
MiddleWares: MiddleWares{
|
|
||||||
AccessToken: accessTokenEnv,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
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
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// getCurrentPath 获取当前文件的路径,直接返回string
|
// Parse 从默认配置文件路径中获取
|
||||||
func getCurrentPath() string {
|
func Parse(path string) *Config {
|
||||||
cwd, e := os.Getwd()
|
fromEnv := os.Getenv("GCQ_UIN") != ""
|
||||||
if e != nil {
|
|
||||||
panic(e)
|
file, err := os.Open(path)
|
||||||
|
config := &Config{}
|
||||||
|
if err == nil {
|
||||||
|
defer func() { _ = file.Close() }()
|
||||||
|
if err = yaml.NewDecoder(file).Decode(config); err != nil && !fromEnv {
|
||||||
|
log.Fatal("配置文件不合法!", err)
|
||||||
|
}
|
||||||
|
} else if !fromEnv {
|
||||||
|
generateConfig()
|
||||||
|
os.Exit(0)
|
||||||
}
|
}
|
||||||
return cwd
|
if fromEnv {
|
||||||
|
// type convert tools
|
||||||
|
toInt64 := func(str string) int64 {
|
||||||
|
i, _ := strconv.ParseInt(str, 10, 64)
|
||||||
|
return i
|
||||||
|
}
|
||||||
|
|
||||||
|
// load config from environment variable
|
||||||
|
param.SetAtDefault(&config.Account.Uin, toInt64(os.Getenv("GCQ_UIN")), int64(0))
|
||||||
|
param.SetAtDefault(&config.Account.Password, os.Getenv("GCQ_PWD"), "")
|
||||||
|
param.SetAtDefault(&config.Account.Status, int32(toInt64(os.Getenv("GCQ_STATUS"))), int32(0))
|
||||||
|
param.SetAtDefault(&config.Account.ReLogin.Disabled, !param.EnsureBool(os.Getenv("GCQ_RELOGIN_DISABLED"), true), false)
|
||||||
|
param.SetAtDefault(&config.Account.ReLogin.Delay, uint(toInt64(os.Getenv("GCQ_RELOGIN_DELAY"))), uint(0))
|
||||||
|
param.SetAtDefault(&config.Account.ReLogin.MaxTimes, uint(toInt64(os.Getenv("GCQ_RELOGIN_MAX_TIMES"))), uint(0))
|
||||||
|
dbConf := &LevelDBConfig{Enable: param.EnsureBool(os.Getenv("GCQ_LEVELDB"), true)}
|
||||||
|
if config.Database == nil {
|
||||||
|
config.Database = make(map[string]yaml.Node)
|
||||||
|
}
|
||||||
|
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,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
param.SetExcludeDefault(&httpConf.Disabled, param.EnsureBool(os.Getenv("GCQ_HTTP_DISABLE"), false), false)
|
||||||
|
param.SetExcludeDefault(&httpConf.Host, os.Getenv("GCQ_HTTP_HOST"), "")
|
||||||
|
param.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})
|
||||||
|
}
|
||||||
|
if os.Getenv("GCQ_WS_PORT") != "" {
|
||||||
|
node := &yaml.Node{}
|
||||||
|
wsServerConf := &WebsocketServer{
|
||||||
|
Host: "0.0.0.0",
|
||||||
|
Port: 6700,
|
||||||
|
MiddleWares: MiddleWares{
|
||||||
|
AccessToken: accessTokenEnv,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
param.SetExcludeDefault(&wsServerConf.Disabled, param.EnsureBool(os.Getenv("GCQ_WS_DISABLE"), false), false)
|
||||||
|
param.SetExcludeDefault(&wsServerConf.Host, os.Getenv("GCQ_WS_HOST"), "")
|
||||||
|
param.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})
|
||||||
|
}
|
||||||
|
if os.Getenv("GCQ_RWS_API") != "" || os.Getenv("GCQ_RWS_EVENT") != "" || os.Getenv("GCQ_RWS_UNIVERSAL") != "" {
|
||||||
|
node := &yaml.Node{}
|
||||||
|
rwsConf := &WebsocketReverse{
|
||||||
|
MiddleWares: MiddleWares{
|
||||||
|
AccessToken: accessTokenEnv,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
param.SetExcludeDefault(&rwsConf.Disabled, param.EnsureBool(os.Getenv("GCQ_RWS_DISABLE"), false), false)
|
||||||
|
param.SetExcludeDefault(&rwsConf.API, os.Getenv("GCQ_RWS_API"), "")
|
||||||
|
param.SetExcludeDefault(&rwsConf.Event, os.Getenv("GCQ_RWS_EVENT"), "")
|
||||||
|
param.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
|
||||||
}
|
}
|
||||||
|
|
||||||
// generateConfig 生成配置文件
|
// generateConfig 生成配置文件
|
@ -49,6 +49,8 @@ output:
|
|||||||
log-aging: 15
|
log-aging: 15
|
||||||
# 是否在每次启动时强制创建全新的文件储存日志. 为 false 的情况下将会在上次启动时创建的日志文件续写
|
# 是否在每次启动时强制创建全新的文件储存日志. 为 false 的情况下将会在上次启动时创建的日志文件续写
|
||||||
log-force-new: true
|
log-force-new: true
|
||||||
|
# 是否启用日志颜色
|
||||||
|
log-colorful: true
|
||||||
# 是否启用 DEBUG
|
# 是否启用 DEBUG
|
||||||
debug: false # 开启调试模式
|
debug: false # 开启调试模式
|
||||||
|
|
||||||
@ -75,6 +77,11 @@ database: # 数据库相关设置
|
|||||||
# 关闭将无法使用 撤回 回复 get_msg 等上下文相关功能
|
# 关闭将无法使用 撤回 回复 get_msg 等上下文相关功能
|
||||||
enable: true
|
enable: true
|
||||||
|
|
||||||
|
# 媒体文件缓存, 删除此项则使用缓存文件(旧版行为)
|
||||||
|
cache:
|
||||||
|
image: data/image.db
|
||||||
|
video: data/video.db
|
||||||
|
|
||||||
# 连接服务列表
|
# 连接服务列表
|
||||||
servers:
|
servers:
|
||||||
# 添加方式,同一连接方式可添加多个,具体配置说明请查看文档
|
# 添加方式,同一连接方式可添加多个,具体配置说明请查看文档
|
@ -1,4 +1,5 @@
|
|||||||
package global
|
// Package filter implements an event filter for go-cqhttp
|
||||||
|
package filter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"regexp"
|
"regexp"
|
||||||
@ -54,14 +55,14 @@ func newAndOp(argument gjson.Result) Filter {
|
|||||||
opKey := key.Str[1:]
|
opKey := key.Str[1:]
|
||||||
op.operands = append(op.operands, operationNode{"", Generate(opKey, value)})
|
op.operands = append(op.operands, operationNode{"", Generate(opKey, value)})
|
||||||
case value.IsObject():
|
case value.IsObject():
|
||||||
// is an normal key with an object as the value
|
// is a normal key with an object as the value
|
||||||
// "foo": {
|
// "foo": {
|
||||||
// ".bar": "baz"
|
// ".bar": "baz"
|
||||||
// }
|
// }
|
||||||
opKey := key.String()
|
opKey := key.String()
|
||||||
op.operands = append(op.operands, operationNode{opKey, Generate("and", value)})
|
op.operands = append(op.operands, operationNode{opKey, Generate("and", value)})
|
||||||
default:
|
default:
|
||||||
// is an normal key with a non-object as the value
|
// is a normal key with a non-object as the value
|
||||||
// "foo": "bar"
|
// "foo": "bar"
|
||||||
opKey := key.String()
|
opKey := key.String()
|
||||||
op.operands = append(op.operands, operationNode{opKey, Generate("eq", value)})
|
op.operands = append(op.operands, operationNode{opKey, Generate("eq", value)})
|
||||||
@ -79,7 +80,7 @@ func (op *andOperator) Eval(payload gjson.Result) bool {
|
|||||||
// is an operator
|
// is an operator
|
||||||
res = res && operand.filter.Eval(payload)
|
res = res && operand.filter.Eval(payload)
|
||||||
} else {
|
} else {
|
||||||
// is an normal key
|
// is a normal key
|
||||||
val := payload.Get(operand.key)
|
val := payload.Get(operand.key)
|
||||||
res = res && operand.filter.Eval(val)
|
res = res && operand.filter.Eval(val)
|
||||||
}
|
}
|
45
modules/filter/middlewares.go
Normal file
45
modules/filter/middlewares.go
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
package filter
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
"sync"
|
||||||
|
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
|
"github.com/tidwall/gjson"
|
||||||
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
filters = make(map[string]Filter)
|
||||||
|
filterMutex sync.RWMutex
|
||||||
|
)
|
||||||
|
|
||||||
|
// Add adds a filter to the list of filters
|
||||||
|
func Add(file string) {
|
||||||
|
if file == "" {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
bs, err := os.ReadFile(file)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Error("init filter error: ", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
defer func() {
|
||||||
|
if err := recover(); err != nil {
|
||||||
|
logrus.Error("init filter error: ", err)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
filter := Generate("and", gjson.ParseBytes(bs))
|
||||||
|
filterMutex.Lock()
|
||||||
|
filters[file] = filter
|
||||||
|
filterMutex.Unlock()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Find returns the filter for the given file
|
||||||
|
func Find(file string) Filter {
|
||||||
|
if file == "" {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
filterMutex.RLock()
|
||||||
|
defer filterMutex.RUnlock()
|
||||||
|
return filters[file]
|
||||||
|
}
|
70
modules/mime/mime.go
Normal file
70
modules/mime/mime.go
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
// Package mime 提供MIME检查功能
|
||||||
|
package mime
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io"
|
||||||
|
|
||||||
|
"github.com/gabriel-vasile/mimetype"
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/go-cqhttp/internal/base"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
base.IsLawfulAudio = checkImage
|
||||||
|
base.IsLawfulAudio = checkAudio
|
||||||
|
}
|
||||||
|
|
||||||
|
// keep sync with /docs/file.md#MINE
|
||||||
|
var lawfulImage = [...]string{
|
||||||
|
"image/bmp",
|
||||||
|
"image/gif",
|
||||||
|
"image/jpeg",
|
||||||
|
"image/png",
|
||||||
|
"image/webp",
|
||||||
|
}
|
||||||
|
|
||||||
|
var lawfulAudio = [...]string{
|
||||||
|
"audio/aac",
|
||||||
|
"audio/aiff",
|
||||||
|
"audio/amr",
|
||||||
|
"audio/ape",
|
||||||
|
"audio/flac",
|
||||||
|
"audio/midi",
|
||||||
|
"audio/mp4",
|
||||||
|
"audio/mpeg",
|
||||||
|
"audio/ogg",
|
||||||
|
"audio/wav",
|
||||||
|
"audio/x-m4a",
|
||||||
|
}
|
||||||
|
|
||||||
|
func check(r io.ReadSeeker, list []string) (bool, string) {
|
||||||
|
if base.SkipMimeScan {
|
||||||
|
return true, ""
|
||||||
|
}
|
||||||
|
_, _ = r.Seek(0, io.SeekStart)
|
||||||
|
defer r.Seek(0, io.SeekStart)
|
||||||
|
t, err := mimetype.DetectReader(r)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Debugf("扫描 Mime 时出现问题: %v", err)
|
||||||
|
return false, ""
|
||||||
|
}
|
||||||
|
for _, lt := range list {
|
||||||
|
if t.Is(lt) {
|
||||||
|
return true, t.String()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false, t.String()
|
||||||
|
}
|
||||||
|
|
||||||
|
// checkImage 判断给定流是否为合法图片
|
||||||
|
// 返回 是否合法, 实际Mime
|
||||||
|
// 判断后会自动将 Stream Seek 至 0
|
||||||
|
func checkImage(r io.ReadSeeker) (bool, string) {
|
||||||
|
return check(r, lawfulImage[:])
|
||||||
|
}
|
||||||
|
|
||||||
|
// checkImage 判断给定流是否为合法音频
|
||||||
|
func checkAudio(r io.ReadSeeker) (bool, string) {
|
||||||
|
return check(r, lawfulAudio[:])
|
||||||
|
}
|
51
modules/pprof/pprof.go
Normal file
51
modules/pprof/pprof.go
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
// Package pprof provide pprof server of go-cqhttp
|
||||||
|
package pprof
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"net/http"
|
||||||
|
"net/http/pprof"
|
||||||
|
"os"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
log "github.com/sirupsen/logrus"
|
||||||
|
"gopkg.in/yaml.v3"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/go-cqhttp/coolq"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/modules/config"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/modules/servers"
|
||||||
|
)
|
||||||
|
|
||||||
|
// runPprof 启动 pprof 性能分析服务器
|
||||||
|
func runPprof(_ *coolq.CQBot, node yaml.Node) {
|
||||||
|
var conf config.PprofServer
|
||||||
|
switch err := node.Decode(&conf); {
|
||||||
|
case err != nil:
|
||||||
|
log.Warn("读取pprof配置失败 :", err)
|
||||||
|
fallthrough
|
||||||
|
case conf.Disabled:
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
addr := fmt.Sprintf("%s:%d", conf.Host, conf.Port)
|
||||||
|
mux := http.NewServeMux()
|
||||||
|
mux.HandleFunc("/debug/pprof/", pprof.Index)
|
||||||
|
mux.HandleFunc("/debug/pprof/cmdline", pprof.Cmdline)
|
||||||
|
mux.HandleFunc("/debug/pprof/profile", pprof.Profile)
|
||||||
|
mux.HandleFunc("/debug/pprof/symbol", pprof.Symbol)
|
||||||
|
mux.HandleFunc("/debug/pprof/trace", pprof.Trace)
|
||||||
|
server := http.Server{Addr: addr, Handler: mux}
|
||||||
|
log.Infof("pprof debug 服务器已启动: %v/debug/pprof", addr)
|
||||||
|
log.Warnf("警告: pprof 服务不支持鉴权, 请不要运行在公网.")
|
||||||
|
if err := server.ListenAndServe(); err != nil && err != http.ErrServerClosed {
|
||||||
|
log.Error(err)
|
||||||
|
log.Infof("pprof 服务启动失败, 请检查端口是否被占用.")
|
||||||
|
log.Warnf("将在五秒后退出.")
|
||||||
|
time.Sleep(time.Second * 5)
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
servers.Register("pprof", runPprof)
|
||||||
|
}
|
31
modules/servers/servers.go
Normal file
31
modules/servers/servers.go
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
// Package servers provide servers register
|
||||||
|
package servers
|
||||||
|
|
||||||
|
import (
|
||||||
|
"gopkg.in/yaml.v3"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/go-cqhttp/coolq"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/internal/base"
|
||||||
|
)
|
||||||
|
|
||||||
|
var svr = make(map[string]func(*coolq.CQBot, yaml.Node))
|
||||||
|
|
||||||
|
// Register 注册 Server
|
||||||
|
func Register(name string, proc func(*coolq.CQBot, yaml.Node)) {
|
||||||
|
_, ok := svr[name]
|
||||||
|
if ok {
|
||||||
|
panic(name + " server has existed")
|
||||||
|
}
|
||||||
|
svr[name] = proc
|
||||||
|
}
|
||||||
|
|
||||||
|
// Run 运行所有svr
|
||||||
|
func Run(bot *coolq.CQBot) {
|
||||||
|
for _, l := range base.Servers {
|
||||||
|
for name, conf := range l {
|
||||||
|
if fn, ok := svr[name]; ok {
|
||||||
|
go fn(bot, conf)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -4,7 +4,7 @@
|
|||||||
// +build !race
|
// +build !race
|
||||||
// +build !nosilk
|
// +build !nosilk
|
||||||
|
|
||||||
package codec
|
package silk
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
@ -13,12 +13,14 @@ import (
|
|||||||
|
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
"github.com/wdvxdr1123/go-silk"
|
"github.com/wdvxdr1123/go-silk"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/go-cqhttp/internal/base"
|
||||||
)
|
)
|
||||||
|
|
||||||
const silkCachePath = "data/cache"
|
const silkCachePath = "data/cache"
|
||||||
|
|
||||||
// EncodeToSilk 将音频编码为Silk
|
// encode 将音频编码为Silk
|
||||||
func EncodeToSilk(record []byte, tempName string, useCache bool) (silkWav []byte, err error) {
|
func encode(record []byte, tempName string) (silkWav []byte, err error) {
|
||||||
// 1. 写入缓存文件
|
// 1. 写入缓存文件
|
||||||
rawPath := path.Join(silkCachePath, tempName+".wav")
|
rawPath := path.Join(silkCachePath, tempName+".wav")
|
||||||
err = os.WriteFile(rawPath, record, os.ModePerm)
|
err = os.WriteFile(rawPath, record, os.ModePerm)
|
||||||
@ -30,7 +32,7 @@ func EncodeToSilk(record []byte, tempName string, useCache bool) (silkWav []byte
|
|||||||
// 2.转换pcm
|
// 2.转换pcm
|
||||||
pcmPath := path.Join(silkCachePath, tempName+".pcm")
|
pcmPath := path.Join(silkCachePath, tempName+".pcm")
|
||||||
cmd := exec.Command("ffmpeg", "-i", rawPath, "-f", "s16le", "-ar", "24000", "-ac", "1", pcmPath)
|
cmd := exec.Command("ffmpeg", "-i", rawPath, "-f", "s16le", "-ar", "24000", "-ac", "1", pcmPath)
|
||||||
if Debug {
|
if base.Debug {
|
||||||
cmd.Stdout = os.Stdout
|
cmd.Stdout = os.Stdout
|
||||||
cmd.Stderr = os.Stderr
|
cmd.Stderr = os.Stderr
|
||||||
}
|
}
|
||||||
@ -48,15 +50,13 @@ func EncodeToSilk(record []byte, tempName string, useCache bool) (silkWav []byte
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, errors.Wrap(err, "silk encode error")
|
return nil, errors.Wrap(err, "silk encode error")
|
||||||
}
|
}
|
||||||
if useCache {
|
silkPath := path.Join(silkCachePath, tempName+".silk")
|
||||||
silkPath := path.Join(silkCachePath, tempName+".silk")
|
err = os.WriteFile(silkPath, silkWav, 0o666)
|
||||||
err = os.WriteFile(silkPath, silkWav, 0o666)
|
|
||||||
}
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// RecodeTo24K 将silk重新编码为 24000 bit rate
|
// resample 将silk重新编码为 24000 bit rate
|
||||||
func RecodeTo24K(data []byte) []byte {
|
func resample(data []byte) []byte {
|
||||||
pcm, err := silk.DecodeSilkBuffToPcm(data, 24000)
|
pcm, err := silk.DecodeSilkBuffToPcm(data, 24000)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
@ -1,16 +1,16 @@
|
|||||||
//go:build (!arm && !arm64 && !amd64 && !386) || (!windows && !linux && !darwin) || (windows && arm) || (windows && arm64) || race || nosilk
|
//go:build (!arm && !arm64 && !amd64 && !386) || (!windows && !linux && !darwin) || (windows && arm) || (windows && arm64) || race || nosilk
|
||||||
// +build !arm,!arm64,!amd64,!386 !windows,!linux,!darwin windows,arm windows,arm64 race nosilk
|
// +build !arm,!arm64,!amd64,!386 !windows,!linux,!darwin windows,arm windows,arm64 race nosilk
|
||||||
|
|
||||||
package codec
|
package silk
|
||||||
|
|
||||||
import "errors"
|
import "errors"
|
||||||
|
|
||||||
// EncodeToSilk 将音频编码为Silk
|
// encode 将音频编码为Silk
|
||||||
func EncodeToSilk(record []byte, tempName string, useCache bool) ([]byte, error) {
|
func encode(record []byte, tempName string) ([]byte, error) {
|
||||||
return nil, errors.New("not supported now")
|
return nil, errors.New("not supported now")
|
||||||
}
|
}
|
||||||
|
|
||||||
// RecodeTo24K 将silk重新编码为 24000 bit rate
|
// resample 将silk重新编码为 24000 bit rate
|
||||||
func RecodeTo24K(data []byte) []byte {
|
func resample(data []byte) []byte {
|
||||||
return data
|
return data
|
||||||
}
|
}
|
11
modules/silk/stubs.go
Normal file
11
modules/silk/stubs.go
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
// Package silk Silk编码核心模块
|
||||||
|
package silk
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Mrs4s/go-cqhttp/internal/base"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
base.EncodeSilk = encode
|
||||||
|
base.ResampleSilk = resample
|
||||||
|
}
|
454
server/api.go
454
server/api.go
@ -1,454 +0,0 @@
|
|||||||
package server
|
|
||||||
|
|
||||||
import (
|
|
||||||
"strings"
|
|
||||||
|
|
||||||
"github.com/Mrs4s/go-cqhttp/coolq"
|
|
||||||
"github.com/Mrs4s/go-cqhttp/global"
|
|
||||||
|
|
||||||
"github.com/tidwall/gjson"
|
|
||||||
)
|
|
||||||
|
|
||||||
type resultGetter interface {
|
|
||||||
Get(string) gjson.Result
|
|
||||||
}
|
|
||||||
|
|
||||||
type handler func(action string, p resultGetter) global.MSG
|
|
||||||
|
|
||||||
type apiCaller struct {
|
|
||||||
bot *coolq.CQBot
|
|
||||||
handlers []handler
|
|
||||||
}
|
|
||||||
|
|
||||||
func getLoginInfo(bot *coolq.CQBot, _ resultGetter) global.MSG {
|
|
||||||
return bot.CQGetLoginInfo()
|
|
||||||
}
|
|
||||||
|
|
||||||
func getQiDianAccountInfo(bot *coolq.CQBot, _ resultGetter) global.MSG {
|
|
||||||
return bot.CQGetQiDianAccountInfo()
|
|
||||||
}
|
|
||||||
|
|
||||||
func getFriendList(bot *coolq.CQBot, _ resultGetter) global.MSG {
|
|
||||||
return bot.CQGetFriendList()
|
|
||||||
}
|
|
||||||
|
|
||||||
func getUnidirectionalFriendList(bot *coolq.CQBot, _ resultGetter) global.MSG {
|
|
||||||
return bot.CQGetUnidirectionalFriendList()
|
|
||||||
}
|
|
||||||
|
|
||||||
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())
|
|
||||||
}
|
|
||||||
|
|
||||||
func getGroupInfo(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQGetGroupInfo(p.Get("group_id").Int(), p.Get("no_cache").Bool())
|
|
||||||
}
|
|
||||||
|
|
||||||
func getGroupMemberList(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQGetGroupMemberList(p.Get("group_id").Int(), p.Get("no_cache").Bool())
|
|
||||||
}
|
|
||||||
|
|
||||||
func getGroupMemberInfo(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQGetGroupMemberInfo(
|
|
||||||
p.Get("group_id").Int(), p.Get("user_id").Int(), p.Get("no_cache").Bool(),
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
func sendMSG(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
autoEscape := global.EnsureBool(p.Get("auto_escape"), false)
|
|
||||||
if p.Get("message_type").Str == "private" {
|
|
||||||
return bot.CQSendPrivateMessage(p.Get("user_id").Int(), p.Get("group_id").Int(), p.Get("message"), autoEscape)
|
|
||||||
}
|
|
||||||
if p.Get("message_type").Str == "group" {
|
|
||||||
return bot.CQSendGroupMessage(p.Get("group_id").Int(), p.Get("message"), autoEscape)
|
|
||||||
}
|
|
||||||
if p.Get("user_id").Int() != 0 {
|
|
||||||
return bot.CQSendPrivateMessage(p.Get("user_id").Int(), p.Get("group_id").Int(), p.Get("message"), autoEscape)
|
|
||||||
}
|
|
||||||
if p.Get("group_id").Int() != 0 {
|
|
||||||
return bot.CQSendGroupMessage(p.Get("group_id").Int(), p.Get("message"), autoEscape)
|
|
||||||
}
|
|
||||||
return global.MSG{}
|
|
||||||
}
|
|
||||||
|
|
||||||
func sendGroupMSG(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQSendGroupMessage(p.Get("group_id").Int(), p.Get("message"),
|
|
||||||
global.EnsureBool(p.Get("auto_escape"), false))
|
|
||||||
}
|
|
||||||
|
|
||||||
func sendGroupForwardMSG(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQSendGroupForwardMessage(p.Get("group_id").Int(), p.Get("messages"))
|
|
||||||
}
|
|
||||||
|
|
||||||
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"),
|
|
||||||
global.EnsureBool(p.Get("auto_escape"), false))
|
|
||||||
}
|
|
||||||
|
|
||||||
func deleteMSG(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQDeleteMessage(int32(p.Get("message_id").Int()))
|
|
||||||
}
|
|
||||||
|
|
||||||
func setFriendAddRequest(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
apr := true
|
|
||||||
if p.Get("approve").Exists() {
|
|
||||||
apr = p.Get("approve").Bool()
|
|
||||||
}
|
|
||||||
return bot.CQProcessFriendRequest(p.Get("flag").Str, apr)
|
|
||||||
}
|
|
||||||
|
|
||||||
func setGroupAddRequest(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
subType := p.Get("sub_type").Str
|
|
||||||
apr := true
|
|
||||||
if subType == "" {
|
|
||||||
subType = p.Get("type").Str
|
|
||||||
}
|
|
||||||
if p.Get("approve").Exists() {
|
|
||||||
apr = p.Get("approve").Bool()
|
|
||||||
}
|
|
||||||
return bot.CQProcessGroupRequest(p.Get("flag").Str, subType, p.Get("reason").Str, apr)
|
|
||||||
}
|
|
||||||
|
|
||||||
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)
|
|
||||||
}
|
|
||||||
|
|
||||||
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)
|
|
||||||
}
|
|
||||||
|
|
||||||
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())
|
|
||||||
}
|
|
||||||
|
|
||||||
func setGroupBan(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQSetGroupBan(p.Get("group_id").Int(), p.Get("user_id").Int(), func() uint32 {
|
|
||||||
if p.Get("duration").Exists() {
|
|
||||||
return uint32(p.Get("duration").Int())
|
|
||||||
}
|
|
||||||
return 1800
|
|
||||||
}())
|
|
||||||
}
|
|
||||||
|
|
||||||
func setGroupWholeBan(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQSetGroupWholeBan(p.Get("group_id").Int(), func() bool {
|
|
||||||
if p.Get("enable").Exists() {
|
|
||||||
return p.Get("enable").Bool()
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}())
|
|
||||||
}
|
|
||||||
|
|
||||||
func setGroupName(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQSetGroupName(p.Get("group_id").Int(), p.Get("group_name").Str)
|
|
||||||
}
|
|
||||||
|
|
||||||
func setGroupAdmin(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQSetGroupAdmin(p.Get("group_id").Int(), p.Get("user_id").Int(), func() bool {
|
|
||||||
if p.Get("enable").Exists() {
|
|
||||||
return p.Get("enable").Bool()
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}())
|
|
||||||
}
|
|
||||||
|
|
||||||
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())
|
|
||||||
}
|
|
||||||
|
|
||||||
func setGroupLeave(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQSetGroupLeave(p.Get("group_id").Int())
|
|
||||||
}
|
|
||||||
|
|
||||||
func getImage(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQGetImage(p.Get("file").Str)
|
|
||||||
}
|
|
||||||
|
|
||||||
func getForwardMSG(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
id := p.Get("message_id").Str
|
|
||||||
if id == "" {
|
|
||||||
id = p.Get("id").Str
|
|
||||||
}
|
|
||||||
return bot.CQGetForwardMessage(id)
|
|
||||||
}
|
|
||||||
|
|
||||||
func getMSG(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQGetMessage(int32(p.Get("message_id").Int()))
|
|
||||||
}
|
|
||||||
|
|
||||||
func downloadFile(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
headers := map[string]string{}
|
|
||||||
headersToken := p.Get("headers")
|
|
||||||
if headersToken.IsArray() {
|
|
||||||
for _, sub := range headersToken.Array() {
|
|
||||||
str := strings.SplitN(sub.String(), "=", 2)
|
|
||||||
if len(str) == 2 {
|
|
||||||
headers[str[0]] = str[1]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if headersToken.Type == gjson.String {
|
|
||||||
lines := strings.Split(headersToken.String(), "\r\n")
|
|
||||||
for _, sub := range lines {
|
|
||||||
str := strings.SplitN(sub, "=", 2)
|
|
||||||
if len(str) == 2 {
|
|
||||||
headers[str[0]] = str[1]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return bot.CQDownloadFile(p.Get("url").Str, headers, int(p.Get("thread_count").Int()))
|
|
||||||
}
|
|
||||||
|
|
||||||
func getGroupHonorInfo(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQGetGroupHonorInfo(p.Get("group_id").Int(), p.Get("type").Str)
|
|
||||||
}
|
|
||||||
|
|
||||||
func setRestart(_ *coolq.CQBot, _ resultGetter) global.MSG {
|
|
||||||
/*
|
|
||||||
var delay int64
|
|
||||||
delay = p.Get("delay").Int()
|
|
||||||
if delay < 0 {
|
|
||||||
delay = 0
|
|
||||||
}
|
|
||||||
defer func(delay int64) {
|
|
||||||
time.Sleep(time.Duration(delay) * time.Millisecond)
|
|
||||||
Restart <- struct{}{}
|
|
||||||
}(delay)
|
|
||||||
*/
|
|
||||||
return global.MSG{"data": nil, "retcode": 99, "msg": "restart un-supported now", "wording": "restart函数暂不兼容", "status": "failed"}
|
|
||||||
}
|
|
||||||
|
|
||||||
func canSendImage(bot *coolq.CQBot, _ resultGetter) global.MSG {
|
|
||||||
return bot.CQCanSendImage()
|
|
||||||
}
|
|
||||||
|
|
||||||
func canSendRecord(bot *coolq.CQBot, _ resultGetter) global.MSG {
|
|
||||||
return bot.CQCanSendRecord()
|
|
||||||
}
|
|
||||||
|
|
||||||
func getStrangerInfo(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQGetStrangerInfo(p.Get("user_id").Int())
|
|
||||||
}
|
|
||||||
|
|
||||||
func getStatus(bot *coolq.CQBot, _ resultGetter) global.MSG {
|
|
||||||
return bot.CQGetStatus()
|
|
||||||
}
|
|
||||||
|
|
||||||
func getVersionInfo(bot *coolq.CQBot, _ resultGetter) global.MSG {
|
|
||||||
return bot.CQGetVersionInfo()
|
|
||||||
}
|
|
||||||
|
|
||||||
func getGroupSystemMSG(bot *coolq.CQBot, _ resultGetter) global.MSG {
|
|
||||||
return bot.CQGetGroupSystemMessages()
|
|
||||||
}
|
|
||||||
|
|
||||||
func getGroupFileSystemInfo(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQGetGroupFileSystemInfo(p.Get("group_id").Int())
|
|
||||||
}
|
|
||||||
|
|
||||||
func getGroupRootFiles(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQGetGroupRootFiles(p.Get("group_id").Int())
|
|
||||||
}
|
|
||||||
|
|
||||||
func getGroupFilesByFolder(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQGetGroupFilesByFolderID(p.Get("group_id").Int(), p.Get("folder_id").Str)
|
|
||||||
}
|
|
||||||
|
|
||||||
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()))
|
|
||||||
}
|
|
||||||
|
|
||||||
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)
|
|
||||||
}
|
|
||||||
|
|
||||||
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)
|
|
||||||
}
|
|
||||||
|
|
||||||
func deleteGroupFolder(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQGroupFileDeleteFolder(p.Get("group_id").Int(), p.Get("folder_id").Str)
|
|
||||||
}
|
|
||||||
|
|
||||||
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()))
|
|
||||||
}
|
|
||||||
|
|
||||||
func getGroupMsgHistory(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQGetGroupMessageHistory(p.Get("group_id").Int(), p.Get("message_seq").Int())
|
|
||||||
}
|
|
||||||
|
|
||||||
func getVipInfo(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQGetVipInfo(p.Get("user_id").Int())
|
|
||||||
}
|
|
||||||
|
|
||||||
func reloadEventFilter(_ *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
addFilter(p.Get("file").String())
|
|
||||||
return coolq.OK(nil)
|
|
||||||
}
|
|
||||||
|
|
||||||
func getGroupAtAllRemain(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQGetAtAllRemain(p.Get("group_id").Int())
|
|
||||||
}
|
|
||||||
|
|
||||||
func ocrImage(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQOcrImage(p.Get("image").Str)
|
|
||||||
}
|
|
||||||
|
|
||||||
func getOnlineClients(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQGetOnlineClients(p.Get("no_cache").Bool())
|
|
||||||
}
|
|
||||||
|
|
||||||
func getWordSlices(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQGetWordSlices(p.Get("content").Str)
|
|
||||||
}
|
|
||||||
|
|
||||||
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())
|
|
||||||
}
|
|
||||||
|
|
||||||
func setEssenceMSG(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQSetEssenceMessage(int32(p.Get("message_id").Int()))
|
|
||||||
}
|
|
||||||
|
|
||||||
func deleteEssenceMSG(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQDeleteEssenceMessage(int32(p.Get("message_id").Int()))
|
|
||||||
}
|
|
||||||
|
|
||||||
func getEssenceMsgList(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQGetEssenceMessageList(p.Get("group_id").Int())
|
|
||||||
}
|
|
||||||
|
|
||||||
func checkURLSafely(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQCheckURLSafely(p.Get("url").String())
|
|
||||||
}
|
|
||||||
|
|
||||||
func setGroupAnonymousBan(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
obj := p.Get("anonymous")
|
|
||||||
flag := p.Get("anonymous_flag")
|
|
||||||
if !flag.Exists() {
|
|
||||||
flag = p.Get("flag")
|
|
||||||
}
|
|
||||||
if !flag.Exists() && !obj.Exists() {
|
|
||||||
return coolq.Failed(100, "FLAG_NOT_FOUND", "flag未找到")
|
|
||||||
}
|
|
||||||
if !flag.Exists() {
|
|
||||||
flag = obj.Get("flag")
|
|
||||||
}
|
|
||||||
return bot.CQSetGroupAnonymousBan(p.Get("group_id").Int(), flag.String(), int32(p.Get("duration").Int()))
|
|
||||||
}
|
|
||||||
|
|
||||||
func handleQuickOperation(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQHandleQuickOperation(p.Get("context"), p.Get("operation"))
|
|
||||||
}
|
|
||||||
|
|
||||||
func getModelShow(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQGetModelShow(p.Get("model").String())
|
|
||||||
}
|
|
||||||
|
|
||||||
func setModelShow(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQSetModelShow(p.Get("model").String(), p.Get("model_show").String())
|
|
||||||
}
|
|
||||||
|
|
||||||
func markMSGAsRead(bot *coolq.CQBot, p resultGetter) global.MSG {
|
|
||||||
return bot.CQMarkMessageAsRead(int32(p.Get("message_id").Int()))
|
|
||||||
}
|
|
||||||
|
|
||||||
// API 是go-cqhttp当前支持的所有api的映射表
|
|
||||||
var API = map[string]func(*coolq.CQBot, resultGetter) global.MSG{
|
|
||||||
"get_login_info": getLoginInfo,
|
|
||||||
"get_friend_list": getFriendList,
|
|
||||||
"get_unidirectional_friend_list": getUnidirectionalFriendList,
|
|
||||||
"delete_friend": deleteFriend,
|
|
||||||
"delete_unidirectional_friend": deleteUnidirectionalFriend,
|
|
||||||
"get_group_list": getGroupList,
|
|
||||||
"get_group_info": getGroupInfo,
|
|
||||||
"get_group_member_list": getGroupMemberList,
|
|
||||||
"get_group_member_info": getGroupMemberInfo,
|
|
||||||
"send_msg": sendMSG,
|
|
||||||
"send_group_msg": sendGroupMSG,
|
|
||||||
"send_group_forward_msg": sendGroupForwardMSG,
|
|
||||||
"send_private_msg": sendPrivateMSG,
|
|
||||||
"delete_msg": deleteMSG,
|
|
||||||
"set_friend_add_request": setFriendAddRequest,
|
|
||||||
"set_group_add_request": setGroupAddRequest,
|
|
||||||
"set_group_card": setGroupCard,
|
|
||||||
"set_group_special_title": setGroupSpecialTitle,
|
|
||||||
"set_group_kick": setGroupKick,
|
|
||||||
"set_group_ban": setGroupBan,
|
|
||||||
"set_group_whole_ban": setGroupWholeBan,
|
|
||||||
"set_group_name": setGroupName,
|
|
||||||
"set_group_admin": setGroupAdmin,
|
|
||||||
"_send_group_notice": sendGroupNotice,
|
|
||||||
"set_group_leave": setGroupLeave,
|
|
||||||
"get_image": getImage,
|
|
||||||
"get_forward_msg": getForwardMSG,
|
|
||||||
"get_msg": getMSG,
|
|
||||||
"download_file": downloadFile,
|
|
||||||
"get_group_honor_info": getGroupHonorInfo,
|
|
||||||
"set_restart": setRestart,
|
|
||||||
"can_send_image": canSendImage,
|
|
||||||
"can_send_record": canSendRecord,
|
|
||||||
"get_stranger_info": getStrangerInfo,
|
|
||||||
"get_status": getStatus,
|
|
||||||
"get_version_info": getVersionInfo,
|
|
||||||
"get_group_system_msg": getGroupSystemMSG,
|
|
||||||
"get_group_file_system_info": getGroupFileSystemInfo,
|
|
||||||
"get_group_root_files": getGroupRootFiles,
|
|
||||||
"get_group_files_by_folder": getGroupFilesByFolder,
|
|
||||||
"get_group_file_url": getGroupFileURL,
|
|
||||||
"create_group_file_folder": groupFileCreateFolder,
|
|
||||||
"delete_group_folder": deleteGroupFolder,
|
|
||||||
"delete_group_file": deleteGroupFile,
|
|
||||||
"upload_group_file": uploadGroupFile,
|
|
||||||
"get_group_msg_history": getGroupMsgHistory,
|
|
||||||
"_get_vip_info": getVipInfo,
|
|
||||||
"reload_event_filter": reloadEventFilter,
|
|
||||||
".ocr_image": ocrImage,
|
|
||||||
"ocr_image": ocrImage,
|
|
||||||
"get_group_at_all_remain": getGroupAtAllRemain,
|
|
||||||
"get_online_clients": getOnlineClients,
|
|
||||||
".get_word_slices": getWordSlices,
|
|
||||||
"set_group_portrait": setGroupPortrait,
|
|
||||||
"set_essence_msg": setEssenceMSG,
|
|
||||||
"delete_essence_msg": deleteEssenceMSG,
|
|
||||||
"get_essence_msg_list": getEssenceMsgList,
|
|
||||||
"check_url_safely": checkURLSafely,
|
|
||||||
"set_group_anonymous_ban": setGroupAnonymousBan,
|
|
||||||
".handle_quick_operation": handleQuickOperation,
|
|
||||||
"qidian_get_account_info": getQiDianAccountInfo,
|
|
||||||
"_get_model_show": getModelShow,
|
|
||||||
"_set_model_show": setModelShow,
|
|
||||||
"mark_msg_as_read": markMSGAsRead,
|
|
||||||
}
|
|
||||||
|
|
||||||
func (api *apiCaller) callAPI(action string, p resultGetter) global.MSG {
|
|
||||||
for _, fn := range api.handlers {
|
|
||||||
if ret := fn(action, p); ret != nil {
|
|
||||||
return ret
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if f, ok := API[action]; ok {
|
|
||||||
return f(api.bot, p)
|
|
||||||
}
|
|
||||||
return coolq.Failed(404, "API_NOT_FOUND", "API不存在")
|
|
||||||
}
|
|
||||||
|
|
||||||
func (api *apiCaller) use(middlewares ...handler) {
|
|
||||||
api.handlers = append(api.handlers, middlewares...)
|
|
||||||
}
|
|
||||||
|
|
||||||
func newAPICaller(bot *coolq.CQBot) *apiCaller {
|
|
||||||
return &apiCaller{
|
|
||||||
bot: bot,
|
|
||||||
handlers: []handler{},
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,2 +1,12 @@
|
|||||||
// Package server 包含HTTP,WebSocket,反向WebSocket请求处理的相关函数与结构体
|
// Package server 包含HTTP,WebSocket,反向WebSocket请求处理的相关函数与结构体
|
||||||
package server
|
package server
|
||||||
|
|
||||||
|
import "github.com/Mrs4s/go-cqhttp/modules/servers"
|
||||||
|
|
||||||
|
// 注册
|
||||||
|
func init() {
|
||||||
|
servers.Register("http", runHTTP)
|
||||||
|
servers.Register("ws", runWSServer)
|
||||||
|
servers.Register("ws-reverse", runWSClient)
|
||||||
|
servers.Register("lambda", runLambda)
|
||||||
|
}
|
||||||
|
128
server/http.go
128
server/http.go
@ -1,6 +1,7 @@
|
|||||||
package server
|
package server
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
"context"
|
"context"
|
||||||
"crypto/hmac"
|
"crypto/hmac"
|
||||||
"crypto/sha1"
|
"crypto/sha1"
|
||||||
@ -8,25 +9,30 @@ import (
|
|||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
|
"math/rand"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/Mrs4s/MiraiGo/utils"
|
"github.com/Mrs4s/MiraiGo/utils"
|
||||||
"github.com/guonaihong/gout"
|
|
||||||
"github.com/guonaihong/gout/dataflow"
|
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
"github.com/tidwall/gjson"
|
"github.com/tidwall/gjson"
|
||||||
|
"gopkg.in/yaml.v3"
|
||||||
|
|
||||||
"github.com/Mrs4s/go-cqhttp/coolq"
|
"github.com/Mrs4s/go-cqhttp/coolq"
|
||||||
"github.com/Mrs4s/go-cqhttp/global/config"
|
"github.com/Mrs4s/go-cqhttp/global"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/internal/base"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/modules/api"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/modules/config"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/modules/filter"
|
||||||
)
|
)
|
||||||
|
|
||||||
type httpServer struct {
|
type httpServer struct {
|
||||||
HTTP *http.Server
|
HTTP *http.Server
|
||||||
api *apiCaller
|
api *api.Caller
|
||||||
accessToken string
|
accessToken string
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -114,14 +120,21 @@ func (s *httpServer) ServeHTTP(writer http.ResponseWriter, request *http.Request
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
action := strings.TrimPrefix(request.URL.Path, "/")
|
var response global.MSG
|
||||||
action = strings.TrimSuffix(action, "_async")
|
if base.AcceptOneBot12HTTPEndPoint && request.URL.Path == "/" {
|
||||||
log.Debugf("HTTPServer接收到API调用: %v", action)
|
action := strings.TrimSuffix(ctx.Get("action").Str, "_async")
|
||||||
ret := s.api.callAPI(action, &ctx)
|
log.Debugf("HTTPServer接收到API调用: %v", action)
|
||||||
|
response = s.api.Call(action, ctx.Get("params"))
|
||||||
|
} else {
|
||||||
|
action := strings.TrimPrefix(request.URL.Path, "/")
|
||||||
|
action = strings.TrimSuffix(action, "_async")
|
||||||
|
log.Debugf("HTTPServer接收到API调用: %v", action)
|
||||||
|
response = s.api.Call(action, &ctx)
|
||||||
|
}
|
||||||
|
|
||||||
writer.Header().Set("Content-Type", "application/json; charset=utf-8")
|
writer.Header().Set("Content-Type", "application/json; charset=utf-8")
|
||||||
writer.WriteHeader(http.StatusOK)
|
writer.WriteHeader(http.StatusOK)
|
||||||
_ = json.NewEncoder(writer).Encode(ret)
|
_ = json.NewEncoder(writer).Encode(response)
|
||||||
}
|
}
|
||||||
|
|
||||||
func checkAuth(req *http.Request, token string) int {
|
func checkAuth(req *http.Request, token string) int {
|
||||||
@ -149,26 +162,29 @@ func checkAuth(req *http.Request, token string) int {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// RunHTTPServerAndClients 启动HTTP服务器与HTTP上报客户端
|
// runHTTP 启动HTTP服务器与HTTP上报客户端
|
||||||
func RunHTTPServerAndClients(bot *coolq.CQBot, conf *config.HTTPServer) {
|
func runHTTP(bot *coolq.CQBot, node yaml.Node) {
|
||||||
if conf.Disabled {
|
var conf config.HTTPServer
|
||||||
|
switch err := node.Decode(&conf); {
|
||||||
|
case err != nil:
|
||||||
|
log.Warn("读取http配置失败 :", err)
|
||||||
|
fallthrough
|
||||||
|
case conf.Disabled:
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
var (
|
|
||||||
s = new(httpServer)
|
var addr string
|
||||||
addr string
|
s := &httpServer{accessToken: conf.AccessToken}
|
||||||
)
|
|
||||||
s.accessToken = conf.AccessToken
|
|
||||||
if conf.Host == "" || conf.Port == 0 {
|
if conf.Host == "" || conf.Port == 0 {
|
||||||
goto client
|
goto client
|
||||||
}
|
}
|
||||||
addr = fmt.Sprintf("%s:%d", conf.Host, conf.Port)
|
addr = fmt.Sprintf("%s:%d", conf.Host, conf.Port)
|
||||||
s.api = newAPICaller(bot)
|
s.api = api.NewCaller(bot)
|
||||||
if conf.RateLimit.Enabled {
|
if conf.RateLimit.Enabled {
|
||||||
s.api.use(rateLimit(conf.RateLimit.Frequency, conf.RateLimit.Bucket))
|
s.api.Use(rateLimit(conf.RateLimit.Frequency, conf.RateLimit.Bucket))
|
||||||
}
|
}
|
||||||
if conf.LongPolling.Enabled {
|
if conf.LongPolling.Enabled {
|
||||||
s.api.use(longPolling(bot, conf.LongPolling.MaxQueueSize))
|
s.api.Use(longPolling(bot, conf.LongPolling.MaxQueueSize))
|
||||||
}
|
}
|
||||||
|
|
||||||
go func() {
|
go func() {
|
||||||
@ -202,7 +218,7 @@ client:
|
|||||||
|
|
||||||
// Run 运行反向HTTP服务
|
// Run 运行反向HTTP服务
|
||||||
func (c HTTPClient) Run() {
|
func (c HTTPClient) Run() {
|
||||||
addFilter(c.filter)
|
filter.Add(c.filter)
|
||||||
if c.timeout < 5 {
|
if c.timeout < 5 {
|
||||||
c.timeout = 5
|
c.timeout = 5
|
||||||
}
|
}
|
||||||
@ -211,49 +227,59 @@ func (c HTTPClient) Run() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (c *HTTPClient) onBotPushEvent(e *coolq.Event) {
|
func (c *HTTPClient) onBotPushEvent(e *coolq.Event) {
|
||||||
var res string
|
|
||||||
if c.filter != "" {
|
if c.filter != "" {
|
||||||
filter := findFilter(c.filter)
|
flt := filter.Find(c.filter)
|
||||||
if filter != nil && !filter.Eval(gjson.Parse(e.JSONString())) {
|
if flt != nil && !flt.Eval(gjson.Parse(e.JSONString())) {
|
||||||
log.Debugf("上报Event %v 到 HTTP 服务器 %s 时被过滤.", c.addr, e.JSONBytes())
|
log.Debugf("上报Event %v 到 HTTP 服务器 %s 时被过滤.", c.addr, e.JSONBytes())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
err := gout.POST(c.addr).SetJSON(e.JSONBytes()).BindBody(&res).SetHeader(func() gout.H {
|
client := http.Client{Timeout: time.Second * time.Duration(c.timeout)}
|
||||||
h := gout.H{
|
req, _ := http.NewRequest("POST", c.addr, bytes.NewReader(e.JSONBytes()))
|
||||||
"X-Self-ID": c.bot.Client.Uin,
|
req.Header.Set("X-Self-ID", strconv.FormatInt(c.bot.Client.Uin, 10))
|
||||||
"User-Agent": "CQHttp/4.15.0",
|
req.Header.Set("User-Agent", "CQHttp/4.15.0")
|
||||||
|
if c.secret != "" {
|
||||||
|
mac := hmac.New(sha1.New, []byte(c.secret))
|
||||||
|
_, _ = mac.Write(e.JSONBytes())
|
||||||
|
req.Header.Set("X-Signature", "sha1="+hex.EncodeToString(mac.Sum(nil)))
|
||||||
|
}
|
||||||
|
if c.apiPort != 0 {
|
||||||
|
req.Header.Set("X-API-Port", strconv.FormatInt(int64(c.apiPort), 10))
|
||||||
|
}
|
||||||
|
|
||||||
|
var res *http.Response
|
||||||
|
var err error
|
||||||
|
const maxAttemptTimes = 5
|
||||||
|
|
||||||
|
for i := 0; i <= maxAttemptTimes; i++ {
|
||||||
|
res, err = client.Do(req)
|
||||||
|
if err == nil {
|
||||||
|
//goland:noinspection GoDeferInLoop
|
||||||
|
defer res.Body.Close()
|
||||||
|
break
|
||||||
}
|
}
|
||||||
if c.secret != "" {
|
if i != maxAttemptTimes {
|
||||||
mac := hmac.New(sha1.New, []byte(c.secret))
|
log.Warnf("上报 Event 数据到 %v 失败: %v 将进行第 %d 次重试", c.addr, err, i+1)
|
||||||
_, err := mac.Write(e.JSONBytes())
|
|
||||||
if err != nil {
|
|
||||||
log.Error(err)
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
h["X-Signature"] = "sha1=" + hex.EncodeToString(mac.Sum(nil))
|
|
||||||
}
|
}
|
||||||
if c.apiPort != 0 {
|
const maxWait = int64(time.Second * 3)
|
||||||
h["X-API-Port"] = c.apiPort
|
const minWait = int64(time.Millisecond * 500)
|
||||||
}
|
wait := rand.Int63n(maxWait-minWait) + minWait
|
||||||
return h
|
time.Sleep(time.Duration(wait))
|
||||||
}()).SetTimeout(time.Second * time.Duration(c.timeout)).F().Retry().Attempt(5).
|
}
|
||||||
WaitTime(time.Millisecond * 500).MaxWaitTime(time.Second * 5).
|
|
||||||
Func(func(con *dataflow.Context) error {
|
|
||||||
if con.Error != nil {
|
|
||||||
log.Warnf("上报Event到 HTTP 服务器 %v 时出现错误: %v 将重试.", c.addr, con.Error)
|
|
||||||
return con.Error
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}).Do()
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Warnf("上报Event数据 %s 到 %v 失败: %v", e.JSONBytes(), c.addr, err)
|
log.Warnf("上报Event数据 %s 到 %v 失败: %v", e.JSONBytes(), c.addr, err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
log.Debugf("上报Event数据 %s 到 %v", e.JSONBytes(), c.addr)
|
log.Debugf("上报Event数据 %s 到 %v", e.JSONBytes(), c.addr)
|
||||||
if gjson.Valid(res) {
|
|
||||||
c.bot.CQHandleQuickOperation(gjson.Parse(e.JSONString()), gjson.Parse(res))
|
r, err := io.ReadAll(res.Body)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if gjson.ValidBytes(r) {
|
||||||
|
c.bot.CQHandleQuickOperation(gjson.Parse(e.JSONString()), gjson.ParseBytes(r))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3,62 +3,25 @@ package server
|
|||||||
import (
|
import (
|
||||||
"container/list"
|
"container/list"
|
||||||
"context"
|
"context"
|
||||||
"os"
|
|
||||||
"sync"
|
"sync"
|
||||||
"sync/atomic"
|
|
||||||
"time"
|
"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"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/modules/api"
|
||||||
|
|
||||||
log "github.com/sirupsen/logrus"
|
|
||||||
"github.com/tidwall/gjson"
|
|
||||||
"golang.org/x/time/rate"
|
"golang.org/x/time/rate"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
func rateLimit(frequency float64, bucketSize int) api.Handler {
|
||||||
filters = make(map[string]global.Filter)
|
|
||||||
filterMutex sync.RWMutex
|
|
||||||
)
|
|
||||||
|
|
||||||
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) global.MSG {
|
return func(_ string, _ api.Getter) global.MSG {
|
||||||
_ = limiter.Wait(context.Background())
|
_ = limiter.Wait(context.Background())
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func addFilter(file string) {
|
func longPolling(bot *coolq.CQBot, maxSize int) api.Handler {
|
||||||
if file == "" {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
bs, err := os.ReadFile(file)
|
|
||||||
if err != nil {
|
|
||||||
log.Error("init filter error: ", err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
defer func() {
|
|
||||||
if err := recover(); err != nil {
|
|
||||||
log.Error("init filter error: ", err)
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
filter := global.Generate("and", gjson.ParseBytes(bs))
|
|
||||||
filterMutex.Lock()
|
|
||||||
filters[file] = filter
|
|
||||||
filterMutex.Unlock()
|
|
||||||
}
|
|
||||||
|
|
||||||
func findFilter(file string) global.Filter {
|
|
||||||
if file == "" {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
filterMutex.RLock()
|
|
||||||
defer filterMutex.RUnlock()
|
|
||||||
return filters[file]
|
|
||||||
}
|
|
||||||
|
|
||||||
func longPolling(bot *coolq.CQBot, maxSize int) handler {
|
|
||||||
var mutex sync.Mutex
|
var mutex sync.Mutex
|
||||||
cond := sync.NewCond(&mutex)
|
cond := sync.NewCond(&mutex)
|
||||||
queue := list.New()
|
queue := list.New()
|
||||||
@ -71,12 +34,12 @@ func longPolling(bot *coolq.CQBot, maxSize int) handler {
|
|||||||
}
|
}
|
||||||
cond.Signal()
|
cond.Signal()
|
||||||
})
|
})
|
||||||
return func(action string, p resultGetter) global.MSG {
|
return func(action string, p api.Getter) global.MSG {
|
||||||
if action != "get_updates" {
|
if action != "get_updates" {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
var (
|
var (
|
||||||
ok int32
|
once sync.Once
|
||||||
ch = make(chan []interface{}, 1)
|
ch = make(chan []interface{}, 1)
|
||||||
timeout = time.Duration(p.Get("timeout").Int()) * time.Second
|
timeout = time.Duration(p.Get("timeout").Int()) * time.Second
|
||||||
)
|
)
|
||||||
@ -87,7 +50,7 @@ func longPolling(bot *coolq.CQBot, maxSize int) handler {
|
|||||||
if queue.Len() == 0 {
|
if queue.Len() == 0 {
|
||||||
cond.Wait()
|
cond.Wait()
|
||||||
}
|
}
|
||||||
if atomic.CompareAndSwapInt32(&ok, 0, 1) {
|
once.Do(func() {
|
||||||
limit := int(p.Get("limit").Int())
|
limit := int(p.Get("limit").Int())
|
||||||
if limit <= 0 || queue.Len() < limit {
|
if limit <= 0 || queue.Len() < limit {
|
||||||
limit = queue.Len()
|
limit = queue.Len()
|
||||||
@ -97,12 +60,12 @@ func longPolling(bot *coolq.CQBot, maxSize int) handler {
|
|||||||
ret[i] = queue.Remove(queue.Front())
|
ret[i] = queue.Remove(queue.Front())
|
||||||
}
|
}
|
||||||
ch <- ret
|
ch <- ret
|
||||||
}
|
})
|
||||||
}()
|
}()
|
||||||
if timeout != 0 {
|
if timeout != 0 {
|
||||||
select {
|
select {
|
||||||
case <-time.After(timeout):
|
case <-time.After(timeout):
|
||||||
atomic.StoreInt32(&ok, 1)
|
once.Do(func() {})
|
||||||
return coolq.OK([]interface{}{})
|
return coolq.OK([]interface{}{})
|
||||||
case ret := <-ch:
|
case ret := <-ch:
|
||||||
return coolq.OK(ret)
|
return coolq.OK(ret)
|
||||||
|
@ -1,39 +0,0 @@
|
|||||||
package server
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
"net/http"
|
|
||||||
"net/http/pprof"
|
|
||||||
"os"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
log "github.com/sirupsen/logrus"
|
|
||||||
|
|
||||||
"github.com/Mrs4s/go-cqhttp/global/config"
|
|
||||||
)
|
|
||||||
|
|
||||||
// RunPprofServer 启动 pprof 性能分析服务器
|
|
||||||
func RunPprofServer(conf *config.PprofServer) {
|
|
||||||
if conf.Disabled {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
addr := fmt.Sprintf("%s:%d", conf.Host, conf.Port)
|
|
||||||
mux := http.NewServeMux()
|
|
||||||
mux.HandleFunc("/debug/pprof/", pprof.Index)
|
|
||||||
mux.HandleFunc("/debug/pprof/cmdline", pprof.Cmdline)
|
|
||||||
mux.HandleFunc("/debug/pprof/profile", pprof.Profile)
|
|
||||||
mux.HandleFunc("/debug/pprof/symbol", pprof.Symbol)
|
|
||||||
mux.HandleFunc("/debug/pprof/trace", pprof.Trace)
|
|
||||||
server := http.Server{Addr: addr, Handler: mux}
|
|
||||||
go func() {
|
|
||||||
log.Infof("pprof debug 服务器已启动: %v/debug/pprof", addr)
|
|
||||||
log.Warnf("警告: pprof 服务不支持鉴权, 请不要运行在公网.")
|
|
||||||
if err := server.ListenAndServe(); err != nil && err != http.ErrServerClosed {
|
|
||||||
log.Error(err)
|
|
||||||
log.Infof("pprof 服务启动失败, 请检查端口是否被占用.")
|
|
||||||
log.Warnf("将在五秒后退出.")
|
|
||||||
time.Sleep(time.Second * 5)
|
|
||||||
os.Exit(1)
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
}
|
|
@ -13,10 +13,12 @@ import (
|
|||||||
|
|
||||||
"github.com/Mrs4s/MiraiGo/utils"
|
"github.com/Mrs4s/MiraiGo/utils"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
|
"gopkg.in/yaml.v3"
|
||||||
|
|
||||||
"github.com/Mrs4s/go-cqhttp/coolq"
|
"github.com/Mrs4s/go-cqhttp/coolq"
|
||||||
"github.com/Mrs4s/go-cqhttp/global"
|
"github.com/Mrs4s/go-cqhttp/global"
|
||||||
"github.com/Mrs4s/go-cqhttp/global/config"
|
api2 "github.com/Mrs4s/go-cqhttp/modules/api"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/modules/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
type lambdaClient struct {
|
type lambdaClient struct {
|
||||||
@ -77,8 +79,17 @@ func (l *lambdaResponseWriter) WriteHeader(statusCode int) {
|
|||||||
|
|
||||||
var cli *lambdaClient
|
var cli *lambdaClient
|
||||||
|
|
||||||
// RunLambdaClient type: [scf,aws]
|
// runLambda type: [scf,aws]
|
||||||
func RunLambdaClient(bot *coolq.CQBot, conf *config.LambdaServer) {
|
func runLambda(bot *coolq.CQBot, node yaml.Node) {
|
||||||
|
var conf config.LambdaServer
|
||||||
|
switch err := node.Decode(&conf); {
|
||||||
|
case err != nil:
|
||||||
|
log.Warn("读取lambda配置失败 :", err)
|
||||||
|
fallthrough
|
||||||
|
case conf.Disabled:
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
cli = &lambdaClient{
|
cli = &lambdaClient{
|
||||||
lambdaType: conf.Type,
|
lambdaType: conf.Type,
|
||||||
client: http.Client{Timeout: 0},
|
client: http.Client{Timeout: 0},
|
||||||
@ -105,9 +116,9 @@ func RunLambdaClient(bot *coolq.CQBot, conf *config.LambdaServer) {
|
|||||||
log.Fatal("unknown lambda type:", conf.Type)
|
log.Fatal("unknown lambda type:", conf.Type)
|
||||||
}
|
}
|
||||||
|
|
||||||
api := newAPICaller(bot)
|
api := api2.NewCaller(bot)
|
||||||
if conf.RateLimit.Enabled {
|
if conf.RateLimit.Enabled {
|
||||||
api.use(rateLimit(conf.RateLimit.Frequency, conf.RateLimit.Bucket))
|
api.Use(rateLimit(conf.RateLimit.Frequency, conf.RateLimit.Bucket))
|
||||||
}
|
}
|
||||||
server := &httpServer{
|
server := &httpServer{
|
||||||
api: api,
|
api: api,
|
||||||
|
@ -2,6 +2,8 @@ package server
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"context"
|
||||||
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
"runtime/debug"
|
"runtime/debug"
|
||||||
@ -10,25 +12,29 @@ import (
|
|||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/Mrs4s/go-cqhttp/coolq"
|
|
||||||
"github.com/Mrs4s/go-cqhttp/global"
|
|
||||||
"github.com/Mrs4s/go-cqhttp/global/config"
|
|
||||||
|
|
||||||
"github.com/Mrs4s/MiraiGo/utils"
|
"github.com/Mrs4s/MiraiGo/utils"
|
||||||
"github.com/gorilla/websocket"
|
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
"github.com/tidwall/gjson"
|
"github.com/tidwall/gjson"
|
||||||
|
"gopkg.in/yaml.v3"
|
||||||
|
"nhooyr.io/websocket"
|
||||||
|
|
||||||
|
"github.com/Mrs4s/go-cqhttp/coolq"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/global"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/modules/api"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/modules/config"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/modules/filter"
|
||||||
)
|
)
|
||||||
|
|
||||||
type webSocketServer struct {
|
type webSocketServer struct {
|
||||||
bot *coolq.CQBot
|
bot *coolq.CQBot
|
||||||
conf *config.WebsocketServer
|
conf *config.WebsocketServer
|
||||||
|
|
||||||
eventConn []*webSocketConn
|
mu sync.Mutex
|
||||||
eventConnMutex sync.Mutex
|
eventConn []*wsConn
|
||||||
token string
|
|
||||||
handshake string
|
token string
|
||||||
filter string
|
handshake string
|
||||||
|
filter string
|
||||||
}
|
}
|
||||||
|
|
||||||
// websocketClient WebSocket客户端实例
|
// websocketClient WebSocket客户端实例
|
||||||
@ -36,36 +42,37 @@ type websocketClient struct {
|
|||||||
bot *coolq.CQBot
|
bot *coolq.CQBot
|
||||||
conf *config.WebsocketReverse
|
conf *config.WebsocketReverse
|
||||||
|
|
||||||
universalConn *webSocketConn
|
mu sync.Mutex
|
||||||
eventConn *webSocketConn
|
|
||||||
token string
|
universal *wsConn
|
||||||
filter string
|
event *wsConn
|
||||||
|
token string
|
||||||
|
filter string
|
||||||
}
|
}
|
||||||
|
|
||||||
type webSocketConn struct {
|
type wsConn struct {
|
||||||
*websocket.Conn
|
*websocket.Conn
|
||||||
sync.Mutex
|
apiCaller *api.Caller
|
||||||
apiCaller *apiCaller
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var upgrader = websocket.Upgrader{
|
// runWSServer 运行一个正向WS server
|
||||||
CheckOrigin: func(r *http.Request) bool {
|
func runWSServer(b *coolq.CQBot, node yaml.Node) {
|
||||||
return true
|
var conf config.WebsocketServer
|
||||||
},
|
switch err := node.Decode(&conf); {
|
||||||
}
|
case err != nil:
|
||||||
|
log.Warn("读取正向Websocket配置失败 :", err)
|
||||||
// RunWebSocketServer 运行一个正向WS server
|
fallthrough
|
||||||
func RunWebSocketServer(b *coolq.CQBot, conf *config.WebsocketServer) {
|
case conf.Disabled:
|
||||||
if conf.Disabled {
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
s := &webSocketServer{
|
s := &webSocketServer{
|
||||||
bot: b,
|
bot: b,
|
||||||
conf: conf,
|
conf: &conf,
|
||||||
token: conf.AccessToken,
|
token: conf.AccessToken,
|
||||||
filter: conf.Filter,
|
filter: conf.Filter,
|
||||||
}
|
}
|
||||||
addFilter(s.filter)
|
filter.Add(s.filter)
|
||||||
addr := fmt.Sprintf("%s:%d", conf.Host, conf.Port)
|
addr := fmt.Sprintf("%s:%d", conf.Host, conf.Port)
|
||||||
s.handshake = fmt.Sprintf(`{"_post_method":2,"meta_event_type":"lifecycle","post_type":"meta_event","self_id":%d,"sub_type":"connect","time":%d}`,
|
s.handshake = fmt.Sprintf(`{"_post_method":2,"meta_event_type":"lifecycle","post_type":"meta_event","self_id":%d,"sub_type":"connect","time":%d}`,
|
||||||
b.Client.Uin, time.Now().Unix())
|
b.Client.Uin, time.Now().Unix())
|
||||||
@ -80,137 +87,90 @@ func RunWebSocketServer(b *coolq.CQBot, conf *config.WebsocketServer) {
|
|||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
|
||||||
// RunWebSocketClient 运行一个正向WS client
|
// runWSClient 运行一个反向向WS client
|
||||||
func RunWebSocketClient(b *coolq.CQBot, conf *config.WebsocketReverse) {
|
func runWSClient(b *coolq.CQBot, node yaml.Node) {
|
||||||
if conf.Disabled {
|
var conf config.WebsocketReverse
|
||||||
|
switch err := node.Decode(&conf); {
|
||||||
|
case err != nil:
|
||||||
|
log.Warn("读取反向Websocket配置失败 :", err)
|
||||||
|
fallthrough
|
||||||
|
case conf.Disabled:
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
c := &websocketClient{
|
c := &websocketClient{
|
||||||
bot: b,
|
bot: b,
|
||||||
conf: conf,
|
conf: &conf,
|
||||||
token: conf.AccessToken,
|
token: conf.AccessToken,
|
||||||
filter: conf.Filter,
|
filter: conf.Filter,
|
||||||
}
|
}
|
||||||
addFilter(c.filter)
|
filter.Add(c.filter)
|
||||||
if c.conf.Universal != "" {
|
if c.conf.Universal != "" {
|
||||||
c.connectUniversal()
|
c.connect("Universal", conf.Universal, &c.universal)
|
||||||
} else {
|
} else {
|
||||||
if c.conf.API != "" {
|
if c.conf.API != "" {
|
||||||
c.connectAPI()
|
c.connect("API", conf.API, nil)
|
||||||
}
|
}
|
||||||
if c.conf.Event != "" {
|
if c.conf.Event != "" {
|
||||||
c.connectEvent()
|
c.connect("Event", conf.Event, &c.event)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
c.bot.OnEventPush(c.onBotPushEvent)
|
c.bot.OnEventPush(c.onBotPushEvent)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *websocketClient) connectAPI() {
|
func (c *websocketClient) connect(typ, url string, conptr **wsConn) {
|
||||||
log.Infof("开始尝试连接到反向WebSocket API服务器: %v", c.conf.API)
|
log.Infof("开始尝试连接到反向WebSocket %s服务器: %v", typ, c.conf.API)
|
||||||
header := http.Header{
|
header := http.Header{
|
||||||
"X-Client-Role": []string{"API"},
|
"X-Client-Role": []string{typ},
|
||||||
"X-Self-ID": []string{strconv.FormatInt(c.bot.Client.Uin, 10)},
|
"X-Self-ID": []string{strconv.FormatInt(c.bot.Client.Uin, 10)},
|
||||||
"User-Agent": []string{"CQHttp/4.15.0"},
|
"User-Agent": []string{"CQHttp/4.15.0"},
|
||||||
}
|
}
|
||||||
if c.token != "" {
|
if c.token != "" {
|
||||||
header["Authorization"] = []string{"Token " + c.token}
|
header["Authorization"] = []string{"Token " + c.token}
|
||||||
}
|
}
|
||||||
conn, _, err := websocket.DefaultDialer.Dial(c.conf.API, header) // nolint
|
conn, _, err := websocket.Dial(context.Background(), url, &websocket.DialOptions{HTTPHeader: header}) // nolint
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Warnf("连接到反向WebSocket API服务器 %v 时出现错误: %v", c.conf.API, err)
|
log.Warnf("连接到反向WebSocket %s服务器 %v 时出现错误: %v", typ, c.conf.API, err)
|
||||||
if c.conf.ReconnectInterval != 0 {
|
if c.conf.ReconnectInterval != 0 {
|
||||||
time.Sleep(time.Millisecond * time.Duration(c.conf.ReconnectInterval))
|
time.Sleep(time.Millisecond * time.Duration(c.conf.ReconnectInterval))
|
||||||
c.connectAPI()
|
c.connect(typ, url, conptr)
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
log.Infof("已连接到反向WebSocket API服务器 %v", c.conf.API)
|
|
||||||
wrappedConn := &webSocketConn{Conn: conn, apiCaller: newAPICaller(c.bot)}
|
switch typ {
|
||||||
|
case "Event", "Universal":
|
||||||
|
handshake := fmt.Sprintf(`{"meta_event_type":"lifecycle","post_type":"meta_event","self_id":%d,"sub_type":"connect","time":%d}`, c.bot.Client.Uin, time.Now().Unix())
|
||||||
|
err = conn.Write(context.Background(), websocket.MessageText, []byte(handshake))
|
||||||
|
if err != nil {
|
||||||
|
log.Warnf("反向WebSocket 握手时出现错误: %v", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
log.Infof("已连接到反向WebSocket %s服务器 %v", typ, c.conf.API)
|
||||||
|
wrappedConn := &wsConn{Conn: conn, apiCaller: api.NewCaller(c.bot)}
|
||||||
if c.conf.RateLimit.Enabled {
|
if c.conf.RateLimit.Enabled {
|
||||||
wrappedConn.apiCaller.use(rateLimit(c.conf.RateLimit.Frequency, c.conf.RateLimit.Bucket))
|
wrappedConn.apiCaller.Use(rateLimit(c.conf.RateLimit.Frequency, c.conf.RateLimit.Bucket))
|
||||||
}
|
|
||||||
go c.listenAPI(wrappedConn, false)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *websocketClient) connectEvent() {
|
|
||||||
log.Infof("开始尝试连接到反向WebSocket Event服务器: %v", c.conf.Event)
|
|
||||||
header := http.Header{
|
|
||||||
"X-Client-Role": []string{"Event"},
|
|
||||||
"X-Self-ID": []string{strconv.FormatInt(c.bot.Client.Uin, 10)},
|
|
||||||
"User-Agent": []string{"CQHttp/4.15.0"},
|
|
||||||
}
|
|
||||||
if c.token != "" {
|
|
||||||
header["Authorization"] = []string{"Token " + c.token}
|
|
||||||
}
|
|
||||||
conn, _, err := websocket.DefaultDialer.Dial(c.conf.Event, header) // nolint
|
|
||||||
if err != nil {
|
|
||||||
log.Warnf("连接到反向WebSocket Event服务器 %v 时出现错误: %v", c.conf.Event, err)
|
|
||||||
if c.conf.ReconnectInterval != 0 {
|
|
||||||
time.Sleep(time.Millisecond * time.Duration(c.conf.ReconnectInterval))
|
|
||||||
c.connectEvent()
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
handshake := fmt.Sprintf(`{"meta_event_type":"lifecycle","post_type":"meta_event","self_id":%d,"sub_type":"connect","time":%d}`,
|
if conptr != nil {
|
||||||
c.bot.Client.Uin, time.Now().Unix())
|
*conptr = wrappedConn
|
||||||
err = conn.WriteMessage(websocket.TextMessage, []byte(handshake))
|
|
||||||
if err != nil {
|
|
||||||
log.Warnf("反向WebSocket 握手时出现错误: %v", err)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
log.Infof("已连接到反向WebSocket Event服务器 %v", c.conf.Event)
|
switch typ {
|
||||||
if c.eventConn == nil {
|
case "API":
|
||||||
wrappedConn := &webSocketConn{Conn: conn, apiCaller: newAPICaller(c.bot)}
|
go c.listenAPI(wrappedConn, false)
|
||||||
c.eventConn = wrappedConn
|
case "Universal":
|
||||||
} else {
|
go c.listenAPI(wrappedConn, true)
|
||||||
c.eventConn.Conn = conn
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *websocketClient) connectUniversal() {
|
func (c *websocketClient) listenAPI(conn *wsConn, u bool) {
|
||||||
log.Infof("开始尝试连接到反向WebSocket Universal服务器: %v", c.conf.Universal)
|
defer func() { _ = conn.Close(websocket.StatusNormalClosure, "") }()
|
||||||
header := http.Header{
|
conn.Conn.SetReadLimit(1024 * 1024 * 128)
|
||||||
"X-Client-Role": []string{"Universal"},
|
|
||||||
"X-Self-ID": []string{strconv.FormatInt(c.bot.Client.Uin, 10)},
|
|
||||||
"User-Agent": []string{"CQHttp/4.15.0"},
|
|
||||||
}
|
|
||||||
if c.token != "" {
|
|
||||||
header["Authorization"] = []string{"Token " + c.token}
|
|
||||||
}
|
|
||||||
conn, _, err := websocket.DefaultDialer.Dial(c.conf.Universal, header) // nolint
|
|
||||||
if err != nil {
|
|
||||||
log.Warnf("连接到反向WebSocket Universal服务器 %v 时出现错误: %v", c.conf.Universal, err)
|
|
||||||
if c.conf.ReconnectInterval != 0 {
|
|
||||||
time.Sleep(time.Millisecond * time.Duration(c.conf.ReconnectInterval))
|
|
||||||
c.connectUniversal()
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
||||||
handshake := fmt.Sprintf(`{"meta_event_type":"lifecycle","post_type":"meta_event","self_id":%d,"sub_type":"connect","time":%d}`,
|
|
||||||
c.bot.Client.Uin, time.Now().Unix())
|
|
||||||
err = conn.WriteMessage(websocket.TextMessage, []byte(handshake))
|
|
||||||
if err != nil {
|
|
||||||
log.Warnf("反向WebSocket 握手时出现错误: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if c.universalConn == nil {
|
|
||||||
wrappedConn := &webSocketConn{Conn: conn, apiCaller: newAPICaller(c.bot)}
|
|
||||||
if c.conf.RateLimit.Enabled {
|
|
||||||
wrappedConn.apiCaller.use(rateLimit(c.conf.RateLimit.Frequency, c.conf.RateLimit.Bucket))
|
|
||||||
}
|
|
||||||
c.universalConn = wrappedConn
|
|
||||||
} else {
|
|
||||||
c.universalConn.Conn = conn
|
|
||||||
}
|
|
||||||
go c.listenAPI(c.universalConn, true)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *websocketClient) listenAPI(conn *webSocketConn, u bool) {
|
|
||||||
defer func() { _ = conn.Close() }()
|
|
||||||
for {
|
for {
|
||||||
buffer := global.NewBuffer()
|
buffer := global.NewBuffer()
|
||||||
t, reader, err := conn.NextReader()
|
t, reader, err := conn.Conn.Reader(context.Background())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Warnf("监听反向WS API时出现错误: %v", err)
|
log.Warnf("监听反向WS API时出现错误: %v", err)
|
||||||
break
|
break
|
||||||
@ -220,7 +180,7 @@ func (c *websocketClient) listenAPI(conn *webSocketConn, u bool) {
|
|||||||
log.Warnf("监听反向WS API时出现错误: %v", err)
|
log.Warnf("监听反向WS API时出现错误: %v", err)
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
if t == websocket.TextMessage {
|
if t == websocket.MessageText {
|
||||||
go func(buffer *bytes.Buffer) {
|
go func(buffer *bytes.Buffer) {
|
||||||
defer global.PutBuffer(buffer)
|
defer global.PutBuffer(buffer)
|
||||||
conn.handleRequest(c.bot, buffer.Bytes())
|
conn.handleRequest(c.bot, buffer.Bytes())
|
||||||
@ -232,36 +192,45 @@ func (c *websocketClient) listenAPI(conn *webSocketConn, u bool) {
|
|||||||
if c.conf.ReconnectInterval != 0 {
|
if c.conf.ReconnectInterval != 0 {
|
||||||
time.Sleep(time.Millisecond * time.Duration(c.conf.ReconnectInterval))
|
time.Sleep(time.Millisecond * time.Duration(c.conf.ReconnectInterval))
|
||||||
if !u {
|
if !u {
|
||||||
go c.connectAPI()
|
go c.connect("API", c.conf.API, nil)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *websocketClient) onBotPushEvent(e *coolq.Event) {
|
func (c *websocketClient) onBotPushEvent(e *coolq.Event) {
|
||||||
filter := findFilter(c.filter)
|
filter := filter.Find(c.filter)
|
||||||
if filter != nil && !filter.Eval(gjson.Parse(e.JSONString())) {
|
if filter != nil && !filter.Eval(gjson.Parse(e.JSONString())) {
|
||||||
log.Debugf("上报Event %s 到 WS服务器 时被过滤.", e.JSONBytes())
|
log.Debugf("上报Event %s 到 WS服务器 时被过滤.", e.JSONBytes())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
push := func(conn *webSocketConn, reconnect func()) {
|
push := func(conn *wsConn, reconnect func()) {
|
||||||
log.Debugf("向WS服务器 %v 推送Event: %s", conn.RemoteAddr().String(), e.JSONBytes())
|
log.Debugf("向WS服务器推送Event: %s", e.JSONBytes())
|
||||||
conn.Lock()
|
ctx, cancel := context.WithTimeout(context.Background(), time.Second*15)
|
||||||
defer conn.Unlock()
|
defer cancel()
|
||||||
_ = conn.SetWriteDeadline(time.Now().Add(time.Second * 15))
|
if err := conn.Write(ctx, websocket.MessageText, e.JSONBytes()); err != nil {
|
||||||
if err := conn.WriteMessage(websocket.TextMessage, e.JSONBytes()); err != nil {
|
log.Warnf("向WS服务器推送 Event 时出现错误: %v", err)
|
||||||
log.Warnf("向WS服务器 %v 推送Event时出现错误: %v", conn.RemoteAddr().String(), err)
|
_ = conn.Close(websocket.StatusNormalClosure, "")
|
||||||
_ = conn.Close()
|
|
||||||
if c.conf.ReconnectInterval != 0 {
|
if c.conf.ReconnectInterval != 0 {
|
||||||
time.Sleep(time.Millisecond * time.Duration(c.conf.ReconnectInterval))
|
time.Sleep(time.Millisecond * time.Duration(c.conf.ReconnectInterval))
|
||||||
reconnect()
|
reconnect()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if c.eventConn != nil {
|
|
||||||
push(c.eventConn, c.connectEvent)
|
connect := func(typ, url string, conptr **wsConn) func() {
|
||||||
|
return func() {
|
||||||
|
c.connect(typ, url, conptr)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if c.universalConn != nil {
|
|
||||||
push(c.universalConn, c.connectUniversal)
|
c.mu.Lock()
|
||||||
|
defer c.mu.Unlock()
|
||||||
|
|
||||||
|
if c.event != nil {
|
||||||
|
push(c.event, connect("Event", c.conf.Event, &c.event))
|
||||||
|
}
|
||||||
|
if c.universal != nil {
|
||||||
|
push(c.universal, connect("Universal", c.conf.Universal, &c.universal))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -272,25 +241,26 @@ func (s *webSocketServer) event(w http.ResponseWriter, r *http.Request) {
|
|||||||
w.WriteHeader(status)
|
w.WriteHeader(status)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
c, err := upgrader.Upgrade(w, r, nil)
|
opts := &websocket.AcceptOptions{InsecureSkipVerify: true}
|
||||||
|
c, err := websocket.Accept(w, r, opts)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Warnf("处理 WebSocket 请求时出现错误: %v", err)
|
log.Warnf("处理 WebSocket 请求时出现错误: %v", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
err = c.WriteMessage(websocket.TextMessage, []byte(s.handshake))
|
err = c.Write(context.Background(), websocket.MessageText, []byte(s.handshake))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Warnf("WebSocket 握手时出现错误: %v", err)
|
log.Warnf("WebSocket 握手时出现错误: %v", err)
|
||||||
_ = c.Close()
|
_ = c.Close(websocket.StatusNormalClosure, "")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
log.Infof("接受 WebSocket 连接: %v (/event)", r.RemoteAddr)
|
log.Infof("接受 WebSocket 连接: %v (/event)", r.RemoteAddr)
|
||||||
|
|
||||||
conn := &webSocketConn{Conn: c, apiCaller: newAPICaller(s.bot)}
|
conn := &wsConn{Conn: c, apiCaller: api.NewCaller(s.bot)}
|
||||||
|
|
||||||
s.eventConnMutex.Lock()
|
s.mu.Lock()
|
||||||
s.eventConn = append(s.eventConn, conn)
|
s.eventConn = append(s.eventConn, conn)
|
||||||
s.eventConnMutex.Unlock()
|
s.mu.Unlock()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *webSocketServer) api(w http.ResponseWriter, r *http.Request) {
|
func (s *webSocketServer) api(w http.ResponseWriter, r *http.Request) {
|
||||||
@ -300,15 +270,16 @@ func (s *webSocketServer) api(w http.ResponseWriter, r *http.Request) {
|
|||||||
w.WriteHeader(status)
|
w.WriteHeader(status)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
c, err := upgrader.Upgrade(w, r, nil)
|
opts := &websocket.AcceptOptions{InsecureSkipVerify: true}
|
||||||
|
c, err := websocket.Accept(w, r, opts)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Warnf("处理 WebSocket 请求时出现错误: %v", err)
|
log.Warnf("处理 WebSocket 请求时出现错误: %v", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
log.Infof("接受 WebSocket 连接: %v (/api)", r.RemoteAddr)
|
log.Infof("接受 WebSocket 连接: %v (/api)", r.RemoteAddr)
|
||||||
conn := &webSocketConn{Conn: c, apiCaller: newAPICaller(s.bot)}
|
conn := &wsConn{Conn: c, apiCaller: api.NewCaller(s.bot)}
|
||||||
if s.conf.RateLimit.Enabled {
|
if s.conf.RateLimit.Enabled {
|
||||||
conn.apiCaller.use(rateLimit(s.conf.RateLimit.Frequency, s.conf.RateLimit.Bucket))
|
conn.apiCaller.Use(rateLimit(s.conf.RateLimit.Frequency, s.conf.RateLimit.Bucket))
|
||||||
}
|
}
|
||||||
go s.listenAPI(conn)
|
go s.listenAPI(conn)
|
||||||
}
|
}
|
||||||
@ -320,33 +291,35 @@ func (s *webSocketServer) any(w http.ResponseWriter, r *http.Request) {
|
|||||||
w.WriteHeader(status)
|
w.WriteHeader(status)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
c, err := upgrader.Upgrade(w, r, nil)
|
opts := &websocket.AcceptOptions{InsecureSkipVerify: true}
|
||||||
|
c, err := websocket.Accept(w, r, opts)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Warnf("处理 WebSocket 请求时出现错误: %v", err)
|
log.Warnf("处理 WebSocket 请求时出现错误: %v", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
err = c.WriteMessage(websocket.TextMessage, []byte(s.handshake))
|
err = c.Write(context.Background(), websocket.MessageText, []byte(s.handshake))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Warnf("WebSocket 握手时出现错误: %v", err)
|
log.Warnf("WebSocket 握手时出现错误: %v", err)
|
||||||
_ = c.Close()
|
_ = c.Close(websocket.StatusNormalClosure, "")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
log.Infof("接受 WebSocket 连接: %v (/)", r.RemoteAddr)
|
log.Infof("接受 WebSocket 连接: %v (/)", r.RemoteAddr)
|
||||||
conn := &webSocketConn{Conn: c, apiCaller: newAPICaller(s.bot)}
|
conn := &wsConn{Conn: c, apiCaller: api.NewCaller(s.bot)}
|
||||||
if s.conf.RateLimit.Enabled {
|
if s.conf.RateLimit.Enabled {
|
||||||
conn.apiCaller.use(rateLimit(s.conf.RateLimit.Frequency, s.conf.RateLimit.Bucket))
|
conn.apiCaller.Use(rateLimit(s.conf.RateLimit.Frequency, s.conf.RateLimit.Bucket))
|
||||||
}
|
}
|
||||||
s.eventConnMutex.Lock()
|
s.mu.Lock()
|
||||||
s.eventConn = append(s.eventConn, conn)
|
s.eventConn = append(s.eventConn, conn)
|
||||||
s.eventConnMutex.Unlock()
|
s.mu.Unlock()
|
||||||
s.listenAPI(conn)
|
s.listenAPI(conn)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *webSocketServer) listenAPI(c *webSocketConn) {
|
func (s *webSocketServer) listenAPI(c *wsConn) {
|
||||||
defer func() { _ = c.Close() }()
|
defer func() { _ = c.Close(websocket.StatusNormalClosure, "") }()
|
||||||
|
c.Conn.SetReadLimit(1024 * 1024 * 128)
|
||||||
for {
|
for {
|
||||||
buffer := global.NewBuffer()
|
buffer := global.NewBuffer()
|
||||||
t, reader, err := c.NextReader()
|
t, reader, err := c.Reader(context.Background())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
@ -355,7 +328,7 @@ func (s *webSocketServer) listenAPI(c *webSocketConn) {
|
|||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
|
||||||
if t == websocket.TextMessage {
|
if t == websocket.MessageText {
|
||||||
go func(buffer *bytes.Buffer) {
|
go func(buffer *bytes.Buffer) {
|
||||||
defer global.PutBuffer(buffer)
|
defer global.PutBuffer(buffer)
|
||||||
c.handleRequest(s.bot, buffer.Bytes())
|
c.handleRequest(s.bot, buffer.Bytes())
|
||||||
@ -366,50 +339,49 @@ func (s *webSocketServer) listenAPI(c *webSocketConn) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *webSocketConn) handleRequest(_ *coolq.CQBot, payload []byte) {
|
func (c *wsConn) handleRequest(_ *coolq.CQBot, payload []byte) {
|
||||||
defer func() {
|
defer func() {
|
||||||
if err := recover(); err != nil {
|
if err := recover(); err != nil {
|
||||||
log.Printf("处置WS命令时发生无法恢复的异常:%v\n%s", err, debug.Stack())
|
log.Printf("处置WS命令时发生无法恢复的异常:%v\n%s", err, debug.Stack())
|
||||||
_ = c.Close()
|
_ = c.Close(websocket.StatusInternalError, fmt.Sprint(err))
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
j := gjson.Parse(utils.B2S(payload))
|
j := gjson.Parse(utils.B2S(payload))
|
||||||
t := strings.TrimSuffix(j.Get("action").Str, "_async")
|
t := strings.TrimSuffix(j.Get("action").Str, "_async")
|
||||||
log.Debugf("WS接收到API调用: %v 参数: %v", t, j.Get("params").Raw)
|
log.Debugf("WS接收到API调用: %v 参数: %v", t, j.Get("params").Raw)
|
||||||
ret := c.apiCaller.callAPI(t, j.Get("params"))
|
ret := c.apiCaller.Call(t, j.Get("params"))
|
||||||
if j.Get("echo").Exists() {
|
if j.Get("echo").Exists() {
|
||||||
ret["echo"] = j.Get("echo").Value()
|
ret["echo"] = j.Get("echo").Value()
|
||||||
}
|
}
|
||||||
c.Lock()
|
writer, _ := c.Writer(context.Background(), websocket.MessageText)
|
||||||
defer c.Unlock()
|
_ = json.NewEncoder(writer).Encode(ret)
|
||||||
_ = c.WriteJSON(ret)
|
_ = writer.Close()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *webSocketServer) onBotPushEvent(e *coolq.Event) {
|
func (s *webSocketServer) onBotPushEvent(e *coolq.Event) {
|
||||||
s.eventConnMutex.Lock()
|
filter := filter.Find(s.filter)
|
||||||
defer s.eventConnMutex.Unlock()
|
|
||||||
|
|
||||||
filter := findFilter(s.filter)
|
|
||||||
if filter != nil && !filter.Eval(gjson.Parse(e.JSONString())) {
|
if filter != nil && !filter.Eval(gjson.Parse(e.JSONString())) {
|
||||||
log.Debugf("上报Event %s 到 WS客户端 时被过滤.", e.JSONBytes())
|
log.Debugf("上报Event %s 到 WS客户端 时被过滤.", e.JSONBytes())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
s.mu.Lock()
|
||||||
|
defer s.mu.Unlock()
|
||||||
|
|
||||||
j := 0
|
j := 0
|
||||||
for i := 0; i < len(s.eventConn); i++ {
|
for i := 0; i < len(s.eventConn); i++ {
|
||||||
conn := s.eventConn[i]
|
conn := s.eventConn[i]
|
||||||
log.Debugf("向WS客户端 %v 推送Event: %s", conn.RemoteAddr().String(), e.JSONBytes())
|
log.Debugf("向WS客户端推送Event: %s", e.JSONBytes())
|
||||||
conn.Lock()
|
if err := conn.Write(context.Background(), websocket.MessageText, e.JSONBytes()); err != nil {
|
||||||
if err := conn.WriteMessage(websocket.TextMessage, e.JSONBytes()); err != nil {
|
_ = conn.Close(websocket.StatusNormalClosure, "")
|
||||||
_ = conn.Close()
|
|
||||||
conn = nil
|
conn = nil
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if i != j {
|
if i != j {
|
||||||
// i != j means that some connection has been closed.
|
// i != j means that some connection has been closed.
|
||||||
// use a in-place removal to avoid copying.
|
// use an in-place removal to avoid copying.
|
||||||
s.eventConn[j] = conn
|
s.eventConn[j] = conn
|
||||||
}
|
}
|
||||||
conn.Unlock()
|
|
||||||
j++
|
j++
|
||||||
}
|
}
|
||||||
s.eventConn = s.eventConn[:j]
|
s.eventConn = s.eventConn[:j]
|
||||||
|
Reference in New Issue
Block a user