-
Notifications
You must be signed in to change notification settings - Fork 3
/
all_live.go
62 lines (54 loc) · 1.41 KB
/
all_live.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package douyuapi
import (
"github.com/birjemin/douyuapi/utils"
)
const allLiveURI = "/api/thirdPart/allLive"
// AllLive ...
type AllLive struct {
BaseClient
Token string
}
// AllLiveResponse ...
type AllLiveResponse struct {
ErrorResponse
Data []struct {
RID int `json:"rid"`
RoomName string `json:"room_name"`
RoomSrc string `json:"room_src"`
Hn int `json:"hn"`
Nickname string `json:"nickname"`
Avatar string `json:"avatar"`
Cid1 int `json:"cid1"`
Cname1 string `json:"cname1"`
Cid2 int `json:"cid2"`
Cname2 string `json:"cname2"`
Cid3 int `json:"cid3"`
Cname3 string `json:"cname3"`
} `json:"data"`
}
// Handle ...
func (p *AllLive) Handle(postJSON, timestamp string) (*AllLiveResponse, error) {
return p.do(DouYuDomain+liveURI, postJSON, timestamp)
}
// do
func (p *AllLive) do(url, postJSON, timestamp string) (*AllLiveResponse, error) {
var params = map[string]string{
"aid": p.AID,
"time": timestamp,
"token": p.Token,
}
params["auth"] = GetSign(p.Secret, liveURI, params)
url += "?" + utils.HTTPQueryBuild(params)
if err := p.Client.HTTPPostJSON(url, postJSON); err != nil {
return nil, err
}
var ret, errResp = new(AllLiveResponse), new(ErrorResponse)
if err := p.Client.GetResponseJSON(ret, errResp); err != nil {
return nil, err
}
if errResp.Code != 0 {
ret.Code = errResp.Code
ret.Msg = errResp.Msg
}
return ret, nil
}