mirror of
https://github.com/Mrs4s/go-cqhttp.git
synced 2025-05-04 19:17:37 +08:00
71 lines
1.9 KiB
Go
71 lines
1.9 KiB
Go
package global
|
|
|
|
import (
|
|
"bytes"
|
|
"compress/gzip"
|
|
"github.com/Mrs4s/MiraiGo/message"
|
|
"github.com/tidwall/gjson"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
func GetBytes(url string) ([]byte, error) {
|
|
req, err := http.NewRequest("GET", url, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
req.Header["User-Agent"] = []string{"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36 Edg/83.0.478.61"}
|
|
resp, err := http.DefaultClient.Do(req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer resp.Body.Close()
|
|
body, err := ioutil.ReadAll(resp.Body)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if strings.Contains(resp.Header.Get("Content-Encoding"), "gzip") {
|
|
buffer := bytes.NewBuffer(body)
|
|
r, _ := gzip.NewReader(buffer)
|
|
defer r.Close()
|
|
unCom, err := ioutil.ReadAll(r)
|
|
return unCom, err
|
|
}
|
|
return body, nil
|
|
}
|
|
|
|
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}}`)
|
|
if err != nil {
|
|
return gjson.Result{}, err
|
|
}
|
|
return gjson.ParseBytes(d).Get("songinfo.data"), nil
|
|
}
|
|
|
|
func NewXmlMsg(template string,ResId int64) *message.ServiceElement{
|
|
var serviceid string
|
|
if ResId == 0{
|
|
serviceid ="2" //默认值2
|
|
}else{
|
|
serviceid = strconv.FormatInt(ResId,10)
|
|
}
|
|
//println(serviceid)
|
|
return &message.ServiceElement{
|
|
Id: int32(ResId),
|
|
Content: template,
|
|
ResId: serviceid,
|
|
SubType: "xml",
|
|
}
|
|
}
|
|
|
|
func NewJsonMsg(template string) *message.ServiceElement{
|
|
return &message.ServiceElement{
|
|
Id: 1,
|
|
Content: template,
|
|
ResId: "1",
|
|
SubType: "json",
|
|
}
|
|
}
|