mirror of
https://github.com/Mrs4s/go-cqhttp.git
synced 2025-05-04 19:17:37 +08:00
97 lines
2.6 KiB
Go
97 lines
2.6 KiB
Go
package global
|
|
|
|
import (
|
|
"bytes"
|
|
"compress/gzip"
|
|
"fmt"
|
|
"github.com/guonaihong/gout"
|
|
"github.com/pkg/errors"
|
|
"io/ioutil"
|
|
"net"
|
|
"net/http"
|
|
"net/url"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/tidwall/gjson"
|
|
)
|
|
|
|
var client = &http.Client{
|
|
Timeout: time.Second * 15,
|
|
Transport: &http.Transport{
|
|
Proxy: func(request *http.Request) (u *url.URL, e error) {
|
|
if Proxy == "" {
|
|
return http.ProxyFromEnvironment(request)
|
|
}
|
|
return url.Parse(Proxy)
|
|
},
|
|
DialContext: (&net.Dialer{
|
|
Timeout: 30 * time.Second,
|
|
KeepAlive: 30 * time.Second,
|
|
}).DialContext,
|
|
ForceAttemptHTTP2: true,
|
|
MaxIdleConns: 100,
|
|
IdleConnTimeout: 90 * time.Second,
|
|
TLSHandshakeTimeout: 10 * time.Second,
|
|
ExpectContinueTimeout: 1 * time.Second,
|
|
},
|
|
}
|
|
|
|
var Proxy string
|
|
|
|
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 := client.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 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
|
|
}
|
|
|
|
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 NeteaseMusicSongInfo(id string) (gjson.Result, error) {
|
|
d, err := GetBytes(fmt.Sprintf("http://music.163.com/api/song/detail/?id=%s&ids=%%5B%s%%5D", id, id))
|
|
if err != nil {
|
|
return gjson.Result{}, err
|
|
}
|
|
return gjson.ParseBytes(d).Get("songs.0"), nil
|
|
}
|