mirror of
https://github.com/Mrs4s/go-cqhttp.git
synced 2025-05-05 11:33:48 +08:00
Merge pull request #245 from scjtqs/master
cq码 添加 cardimage 类型,一种xml的 特殊图片格式,json和xml的格式上报
This commit is contained in:
commit
a417ff0881
325
coolq/cqcode.go
325
coolq/cqcode.go
@ -6,6 +6,11 @@ import (
|
|||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"github.com/Mrs4s/MiraiGo/binary"
|
||||||
|
"github.com/Mrs4s/MiraiGo/message"
|
||||||
|
"github.com/Mrs4s/go-cqhttp/global"
|
||||||
|
log "github.com/sirupsen/logrus"
|
||||||
|
"github.com/tidwall/gjson"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"net/url"
|
"net/url"
|
||||||
"path"
|
"path"
|
||||||
@ -13,12 +18,6 @@ import (
|
|||||||
"runtime"
|
"runtime"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/Mrs4s/MiraiGo/binary"
|
|
||||||
"github.com/Mrs4s/MiraiGo/message"
|
|
||||||
"github.com/Mrs4s/go-cqhttp/global"
|
|
||||||
log "github.com/sirupsen/logrus"
|
|
||||||
"github.com/tidwall/gjson"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var matchReg = regexp.MustCompile(`\[CQ:\w+?.*?]`)
|
var matchReg = regexp.MustCompile(`\[CQ:\w+?.*?]`)
|
||||||
@ -52,9 +51,13 @@ func ToArrayMessage(e []message.IMessageElement, code int64, raw ...bool) (r []M
|
|||||||
"data": map[string]string{"text": o.Content},
|
"data": map[string]string{"text": o.Content},
|
||||||
}
|
}
|
||||||
case *message.LightAppElement:
|
case *message.LightAppElement:
|
||||||
|
//m = MSG{
|
||||||
|
// "type": "text",
|
||||||
|
// "data": map[string]string{"text": o.Content},
|
||||||
|
//}
|
||||||
m = MSG{
|
m = MSG{
|
||||||
"type": "text",
|
"type": "json",
|
||||||
"data": map[string]string{"text": o.Content},
|
"data": map[string]string{"data": o.Content},
|
||||||
}
|
}
|
||||||
case *message.AtElement:
|
case *message.AtElement:
|
||||||
if o.Target == 0 {
|
if o.Target == 0 {
|
||||||
@ -114,6 +117,18 @@ func ToArrayMessage(e []message.IMessageElement, code int64, raw ...bool) (r []M
|
|||||||
"data": map[string]string{"file": o.Filename, "url": o.Url},
|
"data": map[string]string{"file": o.Filename, "url": o.Url},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
case *message.ServiceElement:
|
||||||
|
if isOk := strings.Contains(o.Content, "<?xml"); isOk {
|
||||||
|
m = MSG{
|
||||||
|
"type": "xml",
|
||||||
|
"data": map[string]string{"data": o.Content, "resid": fmt.Sprintf("%d", o.Id)},
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
m = MSG{
|
||||||
|
"type": "json",
|
||||||
|
"data": map[string]string{"data": o.Content, "resid": fmt.Sprintf("%d", o.Id)},
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
r = append(r, m)
|
r = append(r, m)
|
||||||
}
|
}
|
||||||
@ -166,8 +181,15 @@ func ToStringMessage(e []message.IMessageElement, code int64, raw ...bool) (r st
|
|||||||
} else {
|
} else {
|
||||||
r += fmt.Sprintf(`[CQ:image,file=%s,url=%s]`, o.Filename, CQCodeEscapeValue(o.Url))
|
r += fmt.Sprintf(`[CQ:image,file=%s,url=%s]`, o.Filename, CQCodeEscapeValue(o.Url))
|
||||||
}
|
}
|
||||||
|
case *message.ServiceElement:
|
||||||
|
if isOk := strings.Contains(o.Content, "<?xml"); isOk {
|
||||||
|
r += fmt.Sprintf(`[CQ:xml,data=%s,resid=%d]`, CQCodeEscapeValue(o.Content), o.Id)
|
||||||
|
} else {
|
||||||
|
r += fmt.Sprintf(`[CQ:json,data=%s,resid=%d]`, CQCodeEscapeValue(o.Content), o.Id)
|
||||||
|
}
|
||||||
case *message.LightAppElement:
|
case *message.LightAppElement:
|
||||||
r += CQCodeEscapeText(o.Content)
|
r += fmt.Sprintf(`[CQ:json,data=%s]`, CQCodeEscapeValue(o.Content))
|
||||||
|
//r += CQCodeEscapeText(o.Content)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
@ -287,116 +309,7 @@ func (bot *CQBot) ToElement(t string, d map[string]string, group bool) (message.
|
|||||||
case "text":
|
case "text":
|
||||||
return message.NewText(d["text"]), nil
|
return message.NewText(d["text"]), nil
|
||||||
case "image":
|
case "image":
|
||||||
f := d["file"]
|
return bot.makeImageElem(t, d, group)
|
||||||
if strings.HasPrefix(f, "http") || strings.HasPrefix(f, "https") {
|
|
||||||
cache := d["cache"]
|
|
||||||
if cache == "" {
|
|
||||||
cache = "1"
|
|
||||||
}
|
|
||||||
hash := md5.Sum([]byte(f))
|
|
||||||
cacheFile := path.Join(global.CACHE_PATH, hex.EncodeToString(hash[:])+".cache")
|
|
||||||
if global.PathExists(cacheFile) && cache == "1" {
|
|
||||||
b, err := ioutil.ReadFile(cacheFile)
|
|
||||||
if err == nil {
|
|
||||||
return message.NewImage(b), nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
b, err := global.GetBytes(f)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
_ = ioutil.WriteFile(cacheFile, b, 0644)
|
|
||||||
return message.NewImage(b), nil
|
|
||||||
}
|
|
||||||
if strings.HasPrefix(f, "base64") {
|
|
||||||
b, err := base64.StdEncoding.DecodeString(strings.ReplaceAll(f, "base64://", ""))
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return message.NewImage(b), nil
|
|
||||||
}
|
|
||||||
if strings.HasPrefix(f, "file") {
|
|
||||||
fu, err := url.Parse(f)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if strings.HasPrefix(fu.Path, "/") && runtime.GOOS == `windows` {
|
|
||||||
fu.Path = fu.Path[1:]
|
|
||||||
}
|
|
||||||
b, err := ioutil.ReadFile(fu.Path)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return message.NewImage(b), nil
|
|
||||||
}
|
|
||||||
rawPath := path.Join(global.IMAGE_PATH, f)
|
|
||||||
if !global.PathExists(rawPath) && global.PathExists(rawPath+".cqimg") {
|
|
||||||
rawPath += ".cqimg"
|
|
||||||
}
|
|
||||||
if !global.PathExists(rawPath) && d["url"] != "" {
|
|
||||||
return bot.ToElement(t, map[string]string{"file": d["url"]}, group)
|
|
||||||
}
|
|
||||||
if global.PathExists(rawPath) {
|
|
||||||
b, err := ioutil.ReadFile(rawPath)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if path.Ext(rawPath) != ".image" && path.Ext(rawPath) != ".cqimg" {
|
|
||||||
return message.NewImage(b), nil
|
|
||||||
}
|
|
||||||
if len(b) < 20 {
|
|
||||||
return nil, errors.New("invalid local file")
|
|
||||||
}
|
|
||||||
var size int32
|
|
||||||
var hash []byte
|
|
||||||
var url string
|
|
||||||
if path.Ext(rawPath) == ".cqimg" {
|
|
||||||
for _, line := range strings.Split(global.ReadAllText(rawPath), "\n") {
|
|
||||||
kv := strings.SplitN(line, "=", 2)
|
|
||||||
switch kv[0] {
|
|
||||||
case "md5":
|
|
||||||
hash, _ = hex.DecodeString(strings.ReplaceAll(kv[1], "\r", ""))
|
|
||||||
case "size":
|
|
||||||
t, _ := strconv.Atoi(strings.ReplaceAll(kv[1], "\r", ""))
|
|
||||||
size = int32(t)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
r := binary.NewReader(b)
|
|
||||||
hash = r.ReadBytes(16)
|
|
||||||
size = r.ReadInt32()
|
|
||||||
r.ReadString()
|
|
||||||
url = r.ReadString()
|
|
||||||
}
|
|
||||||
if size == 0 {
|
|
||||||
if url != "" {
|
|
||||||
return bot.ToElement(t, map[string]string{"file": url}, group)
|
|
||||||
}
|
|
||||||
return nil, errors.New("img size is 0")
|
|
||||||
}
|
|
||||||
if len(hash) != 16 {
|
|
||||||
return nil, errors.New("invalid hash")
|
|
||||||
}
|
|
||||||
if group {
|
|
||||||
rsp, err := bot.Client.QueryGroupImage(1, hash, size)
|
|
||||||
if err != nil {
|
|
||||||
if url != "" {
|
|
||||||
return bot.ToElement(t, map[string]string{"file": url}, group)
|
|
||||||
}
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return rsp, nil
|
|
||||||
}
|
|
||||||
rsp, err := bot.Client.QueryFriendImage(1, hash, size)
|
|
||||||
if err != nil {
|
|
||||||
if url != "" {
|
|
||||||
return bot.ToElement(t, map[string]string{"file": url}, group)
|
|
||||||
}
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return rsp, nil
|
|
||||||
}
|
|
||||||
return nil, errors.New("invalid image")
|
|
||||||
case "record":
|
case "record":
|
||||||
if !group {
|
if !group {
|
||||||
return nil, errors.New("private voice unsupported now")
|
return nil, errors.New("private voice unsupported now")
|
||||||
@ -532,6 +445,30 @@ func (bot *CQBot) ToElement(t string, d map[string]string, group bool) (message.
|
|||||||
//resid不为0的情况下走富文本通道,后续补全透传service Id,此处暂时不处理 TODO
|
//resid不为0的情况下走富文本通道,后续补全透传service Id,此处暂时不处理 TODO
|
||||||
msg := message.NewRichJson(CQCodeUnescapeValue(d["data"]))
|
msg := message.NewRichJson(CQCodeUnescapeValue(d["data"]))
|
||||||
return msg, nil
|
return msg, nil
|
||||||
|
case "cardimage":
|
||||||
|
source := d["source"]
|
||||||
|
icon := d["icon"]
|
||||||
|
minwidth, _ := strconv.ParseInt(d["minwidth"], 10, 64)
|
||||||
|
if minwidth == 0 {
|
||||||
|
minwidth = 200
|
||||||
|
}
|
||||||
|
minheight, _ := strconv.ParseInt(d["minheight"], 10, 64)
|
||||||
|
if minheight == 0 {
|
||||||
|
minheight = 200
|
||||||
|
}
|
||||||
|
maxwidth, _ := strconv.ParseInt(d["maxwidth"], 10, 64)
|
||||||
|
if maxwidth == 0 {
|
||||||
|
maxwidth = 500
|
||||||
|
}
|
||||||
|
maxheight, _ := strconv.ParseInt(d["maxheight"], 10, 64)
|
||||||
|
if maxheight == 0 {
|
||||||
|
maxheight = 1000
|
||||||
|
}
|
||||||
|
img, err := bot.makeImageElem(t, d, group)
|
||||||
|
if err != nil {
|
||||||
|
return nil, errors.New("send cardimage faild")
|
||||||
|
}
|
||||||
|
return bot.SendNewPic(img, source, icon, minwidth, minheight, maxwidth, maxheight, group)
|
||||||
default:
|
default:
|
||||||
return nil, errors.New("unsupported cq code: " + t)
|
return nil, errors.New("unsupported cq code: " + t)
|
||||||
}
|
}
|
||||||
@ -564,3 +501,153 @@ func CQCodeUnescapeValue(content string) string {
|
|||||||
ret = CQCodeUnescapeText(ret)
|
ret = CQCodeUnescapeText(ret)
|
||||||
return ret
|
return ret
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 图片 elem 生成器,单独拎出来,用于公用
|
||||||
|
func (bot *CQBot) makeImageElem(t string, d map[string]string, group bool) (message.IMessageElement, error) {
|
||||||
|
f := d["file"]
|
||||||
|
if strings.HasPrefix(f, "http") || strings.HasPrefix(f, "https") {
|
||||||
|
cache := d["cache"]
|
||||||
|
if cache == "" {
|
||||||
|
cache = "1"
|
||||||
|
}
|
||||||
|
hash := md5.Sum([]byte(f))
|
||||||
|
cacheFile := path.Join(global.CACHE_PATH, hex.EncodeToString(hash[:])+".cache")
|
||||||
|
if global.PathExists(cacheFile) && cache == "1" {
|
||||||
|
b, err := ioutil.ReadFile(cacheFile)
|
||||||
|
if err == nil {
|
||||||
|
return message.NewImage(b), nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
b, err := global.GetBytes(f)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
_ = ioutil.WriteFile(cacheFile, b, 0644)
|
||||||
|
return message.NewImage(b), nil
|
||||||
|
}
|
||||||
|
if strings.HasPrefix(f, "base64") {
|
||||||
|
b, err := base64.StdEncoding.DecodeString(strings.ReplaceAll(f, "base64://", ""))
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return message.NewImage(b), nil
|
||||||
|
}
|
||||||
|
if strings.HasPrefix(f, "file") {
|
||||||
|
fu, err := url.Parse(f)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if strings.HasPrefix(fu.Path, "/") && runtime.GOOS == `windows` {
|
||||||
|
fu.Path = fu.Path[1:]
|
||||||
|
}
|
||||||
|
b, err := ioutil.ReadFile(fu.Path)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return message.NewImage(b), nil
|
||||||
|
}
|
||||||
|
rawPath := path.Join(global.IMAGE_PATH, f)
|
||||||
|
if !global.PathExists(rawPath) && global.PathExists(rawPath+".cqimg") {
|
||||||
|
rawPath += ".cqimg"
|
||||||
|
}
|
||||||
|
if !global.PathExists(rawPath) && d["url"] != "" {
|
||||||
|
return bot.ToElement(t, map[string]string{"file": d["url"]}, group)
|
||||||
|
}
|
||||||
|
if global.PathExists(rawPath) {
|
||||||
|
b, err := ioutil.ReadFile(rawPath)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if path.Ext(rawPath) != ".image" && path.Ext(rawPath) != ".cqimg" {
|
||||||
|
return message.NewImage(b), nil
|
||||||
|
}
|
||||||
|
if len(b) < 20 {
|
||||||
|
return nil, errors.New("invalid local file")
|
||||||
|
}
|
||||||
|
var size int32
|
||||||
|
var hash []byte
|
||||||
|
var url string
|
||||||
|
if path.Ext(rawPath) == ".cqimg" {
|
||||||
|
for _, line := range strings.Split(global.ReadAllText(rawPath), "\n") {
|
||||||
|
kv := strings.SplitN(line, "=", 2)
|
||||||
|
switch kv[0] {
|
||||||
|
case "md5":
|
||||||
|
hash, _ = hex.DecodeString(strings.ReplaceAll(kv[1], "\r", ""))
|
||||||
|
case "size":
|
||||||
|
t, _ := strconv.Atoi(strings.ReplaceAll(kv[1], "\r", ""))
|
||||||
|
size = int32(t)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
r := binary.NewReader(b)
|
||||||
|
hash = r.ReadBytes(16)
|
||||||
|
size = r.ReadInt32()
|
||||||
|
r.ReadString()
|
||||||
|
url = r.ReadString()
|
||||||
|
}
|
||||||
|
if size == 0 {
|
||||||
|
if url != "" {
|
||||||
|
return bot.ToElement(t, map[string]string{"file": url}, group)
|
||||||
|
}
|
||||||
|
return nil, errors.New("img size is 0")
|
||||||
|
}
|
||||||
|
if len(hash) != 16 {
|
||||||
|
return nil, errors.New("invalid hash")
|
||||||
|
}
|
||||||
|
if group {
|
||||||
|
rsp, err := bot.Client.QueryGroupImage(1, hash, size)
|
||||||
|
if err != nil {
|
||||||
|
if url != "" {
|
||||||
|
return bot.ToElement(t, map[string]string{"file": url}, group)
|
||||||
|
}
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return rsp, nil
|
||||||
|
}
|
||||||
|
rsp, err := bot.Client.QueryFriendImage(1, hash, size)
|
||||||
|
if err != nil {
|
||||||
|
if url != "" {
|
||||||
|
return bot.ToElement(t, map[string]string{"file": url}, group)
|
||||||
|
}
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return rsp, nil
|
||||||
|
}
|
||||||
|
return nil, errors.New("invalid image")
|
||||||
|
}
|
||||||
|
|
||||||
|
//SendNewPic 一种xml 方式发送的群消息图片
|
||||||
|
func (bot *CQBot) SendNewPic(elem message.IMessageElement, source string, icon string, minwidth int64, minheigt int64, maxwidth int64, maxheight int64, group bool) (*message.ServiceElement, error) {
|
||||||
|
var xml string
|
||||||
|
xml = ""
|
||||||
|
if i, ok := elem.(*message.ImageElement); ok {
|
||||||
|
if group == false {
|
||||||
|
gm, err := bot.Client.UploadPrivateImage(1, i.Data)
|
||||||
|
if err != nil {
|
||||||
|
log.Warnf("警告: 好友消息 %v 消息图片上传失败: %v", 1, err)
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
xml = fmt.Sprintf(`<?xml version='1.0' encoding='UTF-8' standalone='yes' ?><msg serviceID="5" templateID="12345" action="" brief="[分享]我看到一张很赞的图片,分享给你,快来看!" sourceMsgId="0" url="%s" flag="0" adverSign="0" multiMsgFlag="0"><item layout="0" advertiser_id="0" aid="0"><image uuid="%x" md5="%x" GroupFiledid="0" filesize="%d" local_path="%s" minWidth="%d" minHeight="%d" maxWidth="%d" maxHeight="%d" /></item><source name="%s" icon="%s" action="" appid="-1" /></msg>`, "", gm.Md5, gm.Md5, len(i.Data), "", minwidth, minheigt, maxwidth, maxheight, source, icon)
|
||||||
|
|
||||||
|
} else {
|
||||||
|
gm, err := bot.Client.UploadGroupImage(1, i.Data)
|
||||||
|
if err != nil {
|
||||||
|
log.Warnf("警告: 群 %v 消息图片上传失败: %v", 1, err)
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
xml = fmt.Sprintf(`<?xml version='1.0' encoding='UTF-8' standalone='yes' ?><msg serviceID="5" templateID="12345" action="" brief="[分享]我看到一张很赞的图片,分享给你,快来看!" sourceMsgId="0" url="%s" flag="0" adverSign="0" multiMsgFlag="0"><item layout="0" advertiser_id="0" aid="0"><image uuid="%x" md5="%x" GroupFiledid="0" filesize="%d" local_path="%s" minWidth="%d" minHeight="%d" maxWidth="%d" maxHeight="%d" /></item><source name="%s" icon="%s" action="" appid="-1" /></msg>`, "", gm.Md5, gm.Md5, len(i.Data), "", minwidth, minheigt, maxwidth, maxheight, source, icon)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if i, ok := elem.(*message.GroupImageElement); ok {
|
||||||
|
xml = fmt.Sprintf(`<?xml version='1.0' encoding='UTF-8' standalone='yes' ?><msg serviceID="5" templateID="12345" action="" brief="[分享]我看到一张很赞的图片,分享给你,快来看!" sourceMsgId="0" url="%s" flag="0" adverSign="0" multiMsgFlag="0"><item layout="0" advertiser_id="0" aid="0"><image uuid="%x" md5="%x" GroupFiledid="0" filesize="%d" local_path="%s" minWidth="%d" minHeight="%d" maxWidth="%d" maxHeight="%d" /></item><source name="%s" icon="%s" action="" appid="-1" /></msg>`, "", i.Md5, i.Md5, 0, "", minwidth, minheigt, maxwidth, maxheight, source, icon)
|
||||||
|
}
|
||||||
|
if i, ok := elem.(*message.FriendImageElement); ok {
|
||||||
|
xml = fmt.Sprintf(`<?xml version='1.0' encoding='UTF-8' standalone='yes' ?><msg serviceID="5" templateID="12345" action="" brief="[分享]我看到一张很赞的图片,分享给你,快来看!" sourceMsgId="0" url="%s" flag="0" adverSign="0" multiMsgFlag="0"><item layout="0" advertiser_id="0" aid="0"><image uuid="%x" md5="%x" GroupFiledid="0" filesize="%d" local_path="%s" minWidth="%d" minHeight="%d" maxWidth="%d" maxHeight="%d" /></item><source name="%s" icon="%s" action="" appid="-1" /></msg>`, "", i.Md5, i.Md5, 0, "", minwidth, minheigt, maxwidth, maxheight, source, icon)
|
||||||
|
}
|
||||||
|
if xml != "" {
|
||||||
|
log.Warn(xml)
|
||||||
|
XmlMsg := message.NewRichXml(xml, 5)
|
||||||
|
return XmlMsg, nil
|
||||||
|
}
|
||||||
|
return nil, errors.New("发送xml图片消息失败")
|
||||||
|
}
|
||||||
|
@ -123,7 +123,7 @@ Type: `node`
|
|||||||
|
|
||||||
Type: `xml`
|
Type: `xml`
|
||||||
|
|
||||||
范围: **发送**
|
范围: **发送/接收**
|
||||||
|
|
||||||
参数:
|
参数:
|
||||||
|
|
||||||
@ -172,7 +172,7 @@ Type: `xml`
|
|||||||
|
|
||||||
Type: `json`
|
Type: `json`
|
||||||
|
|
||||||
范围: **发送**
|
范围: **发送/接收**
|
||||||
|
|
||||||
参数:
|
参数:
|
||||||
|
|
||||||
@ -198,6 +198,33 @@ json中的字符串需要进行转义:
|
|||||||
[CQ:json,data={"app":"com.tencent.miniapp","desc":"","view":"notification","ver":"0.0.0.1","prompt":"[应用]","appID":"","sourceName":"","actionData":"","actionData_A":"","sourceUrl":"","meta":{"notification":{"appInfo":{"appName":"全国疫情数据统计","appType":4,"appid":1109659848,"iconUrl":"http:\/\/gchat.qpic.cn\/gchatpic_new\/719328335\/-2010394141-6383A777BEB79B70B31CE250142D740F\/0"},"data":[{"title":"确诊","value":"80932"},{"title":"今日确诊","value":"28"},{"title":"疑似","value":"72"},{"title":"今日疑似","value":"5"},{"title":"治愈","value":"60197"},{"title":"今日治愈","value":"1513"},{"title":"死亡","value":"3140"},{"title":"今**亡","value":"17"}],"title":"中国加油,武汉加油","button":[{"name":"病毒:SARS-CoV-2,其导致疾病命名 COVID-19","action":""},{"name":"传染源:新冠肺炎的患者。无症状感染者也可能成为传染源。","action":""}],"emphasis_keyword":""}},"text":"","sourceAd":""}]
|
[CQ:json,data={"app":"com.tencent.miniapp","desc":"","view":"notification","ver":"0.0.0.1","prompt":"[应用]","appID":"","sourceName":"","actionData":"","actionData_A":"","sourceUrl":"","meta":{"notification":{"appInfo":{"appName":"全国疫情数据统计","appType":4,"appid":1109659848,"iconUrl":"http:\/\/gchat.qpic.cn\/gchatpic_new\/719328335\/-2010394141-6383A777BEB79B70B31CE250142D740F\/0"},"data":[{"title":"确诊","value":"80932"},{"title":"今日确诊","value":"28"},{"title":"疑似","value":"72"},{"title":"今日疑似","value":"5"},{"title":"治愈","value":"60197"},{"title":"今日治愈","value":"1513"},{"title":"死亡","value":"3140"},{"title":"今**亡","value":"17"}],"title":"中国加油,武汉加油","button":[{"name":"病毒:SARS-CoV-2,其导致疾病命名 COVID-19","action":""},{"name":"传染源:新冠肺炎的患者。无症状感染者也可能成为传染源。","action":""}],"emphasis_keyword":""}},"text":"","sourceAd":""}]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
### cardimage 一种xml的图片消息(装逼大图)
|
||||||
|
|
||||||
|
ps: xml 接口的消息都存在风控风险,请自行兼容发送失败后的处理(可以失败后走普通图片模式)
|
||||||
|
|
||||||
|
Type: `cardimage`
|
||||||
|
|
||||||
|
范围: **发送**
|
||||||
|
|
||||||
|
参数:
|
||||||
|
|
||||||
|
| 参数名 | 类型 | 说明 |
|
||||||
|
| ------ | ------ | ------------------------------------------------------------ |
|
||||||
|
| file | string | 和image的file字段对齐,支持也是一样的|
|
||||||
|
| minwidth | int64 | 默认不填为400,最小width|
|
||||||
|
| minheight | int64 | 默认不填为400,最小height|
|
||||||
|
| maxwidth | int64 | 默认不填为500,最大width|
|
||||||
|
| maxheight | int64 | 默认不填为1000,最大height|
|
||||||
|
| source | string | 分享来源的名称,可以留空|
|
||||||
|
| icon | string | 分享来源的icon图标url,可以留空|
|
||||||
|
|
||||||
|
|
||||||
|
示例cardimage 的cq码:
|
||||||
|
```test
|
||||||
|
[CQ:cardimage,file=https://i.pixiv.cat/img-master/img/2020/03/25/00/00/08/80334602_p0_master1200.jpg]
|
||||||
|
```
|
||||||
|
|
||||||
## API
|
## API
|
||||||
|
|
||||||
### 设置群名
|
### 设置群名
|
||||||
|
1
go.sum
1
go.sum
@ -34,6 +34,7 @@ github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfU
|
|||||||
github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
|
github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
|
||||||
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
|
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
|
||||||
github.com/golang/protobuf v1.3.2/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 h1:gyjaxf+svBWX08ZjK86iN9geUJF0H6gp2IRKX6Nf6/I=
|
||||||
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.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8=
|
||||||
github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA=
|
github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA=
|
||||||
|
Loading…
x
Reference in New Issue
Block a user