forked from nicklaw5/helix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchat.go
138 lines (109 loc) · 3.22 KB
/
chat.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
package helix
type GetChatBadgeParams struct {
BroadcasterID string `query:"broadcaster_id"`
}
type GetChatBadgeResponse struct {
ResponseCommon
Data ManyChatBadge
}
type ManyChatBadge struct {
Badges []ChatBadge `json:"data"`
}
type ChatBadge struct {
SetID string `json:"set_id"`
Versions []BadgeVersion `json:"versions"`
}
type BadgeVersion struct {
ID string `json:"id"`
ImageUrl1x string `json:"image_url_1x"`
ImageUrl2x string `json:"image_url_2x"`
ImageUrl4x string `json:"image_url_4x"`
}
func (c *Client) GetChannelChatBadges(params *GetChatBadgeParams) (*GetChatBadgeResponse, error) {
resp, err := c.get("/chat/badges", &ManyChatBadge{}, params)
if err != nil {
return nil, err
}
channels := &GetChatBadgeResponse{}
resp.HydrateResponseCommon(&channels.ResponseCommon)
channels.Data.Badges = resp.Data.(*ManyChatBadge).Badges
return channels, nil
}
func (c *Client) GetGlobalChatBadges() (*GetChatBadgeResponse, error) {
resp, err := c.get("/chat/badges/global", &ManyChatBadge{}, nil)
if err != nil {
return nil, err
}
channels := &GetChatBadgeResponse{}
resp.HydrateResponseCommon(&channels.ResponseCommon)
channels.Data.Badges = resp.Data.(*ManyChatBadge).Badges
return channels, nil
}
type GetChannelEmotesParams struct {
BroadcasterID string `query:"broadcaster_id"`
}
type GetEmoteSetsParams struct {
EmoteSetIDs []string `query:"emote_set_id"` // Minimum: 1. Maximum: 25.
}
type GetChannelEmotesResponse struct {
ResponseCommon
Data ManyEmotes
}
type GetEmoteSetsResponse struct {
ResponseCommon
Data ManyEmotesWithOwner
}
type ManyEmotes struct {
Emotes []Emote `json:"data"`
}
type ManyEmotesWithOwner struct {
Emotes []EmoteWithOwner `json:"data"`
}
type Emote struct {
ID string `json:"id"`
Name string `json:"name"`
Images EmoteImage `json:"images"`
Tier string `json:"tier"`
EmoteType string `json:"emote_type"`
EmoteSetId string `json:"emote_set_id"`
}
type EmoteWithOwner struct {
Emote
OwnerID string `json:"owner_id"`
}
type EmoteImage struct {
Url1x string `json:"url_1x"`
Url2x string `json:"url_2x"`
Url4x string `json:"url_4x"`
}
func (c *Client) GetChannelEmotes(params *GetChannelEmotesParams) (*GetChannelEmotesResponse, error) {
resp, err := c.get("/chat/emotes", &ManyEmotes{}, params)
if err != nil {
return nil, err
}
emotes := &GetChannelEmotesResponse{}
resp.HydrateResponseCommon(&emotes.ResponseCommon)
emotes.Data.Emotes = resp.Data.(*ManyEmotes).Emotes
return emotes, nil
}
func (c *Client) GetGlobalEmotes() (*GetChannelEmotesResponse, error) {
resp, err := c.get("/chat/emotes/global", &ManyEmotes{}, nil)
if err != nil {
return nil, err
}
emotes := &GetChannelEmotesResponse{}
resp.HydrateResponseCommon(&emotes.ResponseCommon)
emotes.Data.Emotes = resp.Data.(*ManyEmotes).Emotes
return emotes, nil
}
// GetEmoteSets
func (c *Client) GetEmoteSets(params *GetEmoteSetsParams) (*GetEmoteSetsResponse, error) {
resp, err := c.get("/chat/emotes/set", &ManyEmotesWithOwner{}, params)
if err != nil {
return nil, err
}
emotes := &GetEmoteSetsResponse{}
resp.HydrateResponseCommon(&emotes.ResponseCommon)
emotes.Data.Emotes = resp.Data.(*ManyEmotesWithOwner).Emotes
return emotes, nil
}