Files
wechat_chatter/onebot/http.go
T
2026-05-08 12:00:05 +08:00

126 lines
2.7 KiB
Go

package main
import (
"bytes"
"crypto/hmac"
"crypto/sha1"
"encoding/hex"
"encoding/json"
"fmt"
"io"
"net/http"
"runtime/debug"
"strings"
"time"
)
func sendHandler(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodPost {
http.Error(w, "仅支持 POST", http.StatusMethodNotAllowed)
Error("仅支持 POST")
return
}
req := new(SendRequest)
if err := json.NewDecoder(r.Body).Decode(req); err != nil {
http.Error(w, "无效的 JSON", http.StatusBadRequest)
Error("无效的 JSON")
return
}
// 参数校验
if len(req.Message) == 0 || (req.UserID == "" && req.GroupID == "") {
http.Error(w, "参数缺失", http.StatusBadRequest)
Error("参数缺失")
return
}
sendContent := ""
atUserID := ""
for _, v := range req.Message {
if v.Type == "text" {
sendContent += v.Data.Text
} else if v.Type == "at" {
if req.GroupID != "" {
if nicknameInter, ok := userID2NicknameMap.Load(req.GroupID + "_" + v.Data.QQ); ok {
sendContent += fmt.Sprintf("@%s\u2005", nicknameInter.(string))
atUserID += v.Data.QQ + ","
}
}
} else if v.Type == "image" || v.Type == "video" {
msgChan <- &SendMsg{
UserId: req.UserID,
GroupID: req.GroupID,
Content: v.Data.File,
Type: v.Type,
}
}
}
if sendContent != "" {
msgChan <- &SendMsg{
UserId: req.UserID,
GroupID: req.GroupID,
Content: sendContent,
Type: "text",
AtUser: strings.TrimRight(atUserID, ","),
}
}
json.NewEncoder(w).Encode(map[string]any{
"status": "ok",
})
}
func SendHttpReq(jsonData []byte) {
defer func() {
if r := recover(); r != nil {
Error("http panic", "err", r, "stack", string(debug.Stack()))
}
}()
time.Sleep(time.Duration(config.SendInterval) * time.Millisecond)
jsonReq, err := HandleMsg(jsonData)
if err != nil {
Error("JSON 序列化失败", "err", err)
return
}
if jsonReq == nil {
return
}
Info("发送数据", "msg", string(jsonReq))
req, err := http.NewRequest("POST", config.SendURL, bytes.NewBuffer(jsonReq))
if err != nil {
Error("创建请求失败", "err", err)
return
}
// 5. 设置 Header (OneBot 接口通常要求 application/json)
h := hmac.New(sha1.New, []byte(config.OnebotToken))
h.Write(jsonReq)
req.Header.Set("Content-Type", "application/json")
req.Header.Set("X-Signature", "sha1="+hex.EncodeToString(h.Sum(nil)))
client := &http.Client{
Timeout: 10 * time.Second,
}
// 6. 执行请求
resp, err := client.Do(req)
if err != nil {
Error("请求执行失败", "err", err)
return
}
defer resp.Body.Close()
// 7. 读取返回结果
body, err := io.ReadAll(resp.Body)
if err != nil {
Error("读取响应失败", "err", err)
return
}
Info("返回内容", "status", resp.StatusCode, "body", string(body))
}