This repository was archived by the owner on Jan 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayload.go
359 lines (295 loc) · 11.8 KB
/
payload.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
package chatlog
import (
"bytes"
)
type ChatResponse struct {
Response Response `json:"response"`
}
type Response struct {
ResponseContext ResponseContext `json:"responseContext"`
ContinuationContents ContinuationContents `json:"continuationContents"`
}
type ResponseContext struct {
Errors struct{ Error []Error } `json:"errors"`
}
type Error struct {
Domain string `json:"domain"`
Code string `json:"code"`
DebugInfo string `json:"debugInfo"`
ExternalErrorMessage string `json:"externalErrorMessage"`
}
type ContinuationContents struct {
LiveChatContinuation LiveChatContinuation `json:"liveChatContinuation"`
}
type LiveChatContinuation struct {
Continuations []Continuation `json:"continuations"`
Actions []ContinuationAction `json:"actions"`
}
type Continuation struct {
LiveChatReplayContinuationData LiveChatReplayContinuationData `json:"liveChatReplayContinuationData"`
PlayerSeekContinuationData PlayerSeekContinuationData `json:"playerSeekContinuationData"`
}
type LiveChatReplayContinuationData struct {
TimeUntilLastMessageMsec int `json:"timeUntilLastMessageMsec"`
Continuation string `json:"continuation"`
}
type PlayerSeekContinuationData struct {
Continuation string `json:"continuation"`
}
type ContinuationAction struct {
ReplayChatItemAction ReplayChatItemAction `json:"replayChatItemAction"`
}
type ReplayChatItemAction struct {
Actions []ChatAction `json:"actions"`
VideoOffsetTimeMsec string `json:"videoOffsetTimeMsec"`
}
type ChatAction struct {
AddChatItemAction AddChatItemAction `json:"addChatItemAction"`
AddLiveChatTickerItemAction AddLiveChatTickerItemAction `json:"addLiveChatTickerItemAction"`
}
type AddChatItemAction struct {
Item ChatItem `json:"item"`
ClientID string `json:"clientId"`
}
type AddLiveChatTickerItemAction struct {
Item LiveChatTickerItem `json:"item"`
DurationSec string `json:"durationSec"`
}
type ChatRenderer interface {
ChatMessage() string
}
type ChatItem struct {
LiveChatViewerEngagementMessageRenderer LiveChatViewerEngagementMessageRenderer `json:"liveChatViewerEngagementMessageRenderer"`
LiveChatTextMessageRenderer LiveChatTextMessageRenderer `json:"liveChatTextMessageRenderer"`
LiveChatMembershipItemRenderer LiveChatMembershipItemRenderer `json:"liveChatMembershipItemRenderer"`
LiveChatPaidMessageRenderer LiveChatPaidMessageRenderer `json:"liveChatPaidMessageRenderer"`
LiveChatPlaceholderItemRenderer LiveChatPlaceholderItemRenderer `json:"liveChatPlaceholderItemRenderer"`
}
type LiveChatTickerItem struct {
LiveChatTickerPaidMessageItemRenderer LiveChatTickerPaidMessageItemRenderer `json:"liveChatTickerPaidMessageItemRenderer"`
LiveChatTickerSponsorItemRenderer LiveChatTickerSponsorItemRenderer `json:"liveChatTickerSponsorItemRenderer"`
DurationSec string `json:"durationSec"`
}
type LiveChatViewerEngagementMessageRenderer struct {
ID string `json:"id"`
TimestampUsec string `json:"timestampUsec"`
Icon Icon `json:"icon"`
Message Message `json:"message"`
}
func (r *LiveChatViewerEngagementMessageRenderer) ChatMessage() string {
var buf bytes.Buffer
buf.WriteByte('[')
for _, v := range r.Message.Runs {
if v.Text != "" {
buf.WriteString(v.Text)
} else {
buf.WriteString(v.Emoji.Image.Accessibility.AccessibilityData.Label)
}
}
buf.WriteByte(']')
return buf.String()
}
type LiveChatTextMessageRenderer struct {
ID string `json:"id"`
TimestampUsec string `json:"timestampUsec"`
Message Message `json:"message"`
AuthorName AuthorName `json:"authorName"`
AuthorPhoto AuthorPhoto `json:"authorPhoto"`
Icon Icon `json:"icon"`
ContextMenuEndpoint ContextMenuEndpoint `json:"contextMenuEndpoint"`
AuthorBadges []AuthorBadge `json:"authorBadges"`
AuthorExternalChannelID string `json:"authorExternalChannelId"`
ContextMenuAccessibility Accessibility `json:"contextMenuAccessibility"`
TimestampText TimestampText `json:"timestampText"`
}
func (r *LiveChatTextMessageRenderer) ChatMessage() string {
var buf bytes.Buffer
buf.WriteString(r.AuthorName.SimpleText + ": ")
for _, run := range r.Message.Runs {
if run.Text != "" {
buf.WriteString(run.Text)
} else {
buf.WriteString(run.Emoji.Image.Accessibility.AccessibilityData.Label)
}
}
return buf.String()
}
type LiveChatMembershipItemRenderer struct {
ID string `json:"id"`
TimestampUsec string `json:"timestampUsec"`
AuthorExternalChannelID string `json:"authorExternalChannelId"`
HeaderSubtext HeaderSubtext `json:"headerSubtext"`
AuthorName AuthorName `json:"authorName"`
AuthorPhoto AuthorPhoto `json:"authorPhoto"`
AuthorBadges []AuthorBadge `json:"authorBadges"`
ContextMenuEndpoint ContextMenuEndpoint `json:"contextMenuEndpoint"`
ContextMenuAccessibility Accessibility `json:"contextMenuAccessibility"`
}
func (r *LiveChatMembershipItemRenderer) ChatMessage() string {
var buf bytes.Buffer
buf.WriteByte('[')
for _, run := range r.HeaderSubtext.Runs {
buf.WriteString(run.Text)
}
buf.WriteString("] ")
buf.WriteString(r.AuthorName.SimpleText)
return buf.String()
}
type LiveChatPaidMessageRenderer struct {
ID string `json:"id"`
TimestampUsec string `json:"timestampUsec"`
AuthorName AuthorName `json:"authorName"`
AuthorPhoto AuthorPhoto `json:"authorPhoto"`
PurchaseAmountText PurchaseAmountText `json:"purchaseAmountText"`
Message Message `json:"message"`
HeaderBackgroundColor int `json:"headerBackgroundColor"`
HeaderTextColor int `json:"headerTextColor"`
BodyBackgroundColor int `json:"bodyBackgroundColor"`
BodyTextColor int `json:"bodyTextColor"`
AuthorExternalChannelID string `json:"authorExternalChannelId"`
AuthorNameTextColor int `json:"authorNameTextColor"`
ContextMenuEndpoint ContextMenuEndpoint `json:"contextMenuEndpoint"`
TimestampColor int `json:"timestampColor"`
ContextMenuAccessibility Accessibility `json:"contextMenuAccessibility"`
TimestampText TimestampText `json:"timestampText"`
TrackingParams string `json:"trackingParams"`
}
func (r *LiveChatPaidMessageRenderer) ChatMessage() string {
var buf bytes.Buffer
buf.WriteString("[" + r.PurchaseAmountText.SimpleText + "] ")
buf.WriteString(r.AuthorName.SimpleText + ": ")
for _, run := range r.Message.Runs {
if run.Text != "" {
buf.WriteString(run.Text)
} else {
buf.WriteString(run.Emoji.Image.Accessibility.AccessibilityData.Label)
}
}
return buf.String()
}
type LiveChatPlaceholderItemRenderer struct {
ID string `json:"id"`
TimestampUsec string `json:"timestampUsec"`
}
func (r *LiveChatPlaceholderItemRenderer) ChatMessage() string {
return ""
}
type LiveChatTickerPaidMessageItemRenderer struct {
ID string `json:"id"`
Amount Amount `json:"amount"`
AmountTextColor int `json:"amountTextColor"`
StartBackgroundColor int `json:"startBackgroundColor"`
EndBackgroundColor int `json:"endBackgroundColor"`
AuthorPhoto AuthorPhoto `json:"authorPhoto"`
DurationSec int `json:"durationSec"`
ShowItemEndpoint ShowItemEndpoint `json:"showItemEndpoint"`
AuthorExternalChannelID string `json:"authorExternalChannelId"`
FullDurationSec int `json:"fullDurationSec"`
TrackingParams string `json:"trackingParams"`
}
type LiveChatTickerSponsorItemRenderer struct {
ID string `json:"id"`
DetailText DetailText `json:"detailText"`
DetailTextColor int `json:"detailTextColor"`
StartBackgroundColor int `json:"startBackgroundColor"`
EndBackgroundColor int `json:"endBackgroundColor"`
SponsorPhoto SponsorPhoto `json:"sponsorPhoto"`
DurationSec int `json:"durationSec"`
ShowItemEndpoint ShowItemEndpoint `json:"showItemEndpoint"`
AuthorExternalChannelID string `json:"authorExternalChannelId"`
FullDurationSec int `json:"fullDurationSec"`
}
type DetailText struct {
Runs []Run `json:"runs"`
}
type SponsorPhoto struct {
Thumbnails []Thumbnail `json:"thumbnails"`
}
type Icon struct {
IconType string `json:"iconType"`
}
type Message struct {
Runs []Run `json:"runs"`
}
type HeaderSubtext struct {
Runs []Run `json:"runs"`
}
type Amount struct {
SimpleText string `json:"simpleText"`
}
type PurchaseAmountText struct {
SimpleText string `json:"simpleText"`
}
type Run struct {
Text string `json:"text"`
Emoji Emoji `json:"emoji"`
}
type AuthorName struct {
SimpleText string `json:"simpleText"`
}
type AuthorPhoto struct {
Thumbnails []Thumbnail `json:"thumbnails"`
}
type Thumbnail struct {
URL string `json:"url"`
Width int `json:"width"`
Height int `json:"height"`
}
type ContextMenuEndpoint struct {
ClickTrackingParams string `json:"clickTrackingParams"`
CommandMetadata CommandMetadata `json:"commandMetadata"`
LiveChatItemContextMenuEndpoint LiveChatItemContextMenuEndpoint `json:"liveChatItemContextMenuEndpoint"`
}
type CommandMetadata struct {
WebCommandMetadata WebCommandMetadata `json:"webCommandMetadata"`
}
type WebCommandMetadata struct {
IgnoreNavigation bool `json:"ignoreNavigation"`
}
type LiveChatItemContextMenuEndpoint struct {
Params string `json:"params"`
}
type ShowItemEndpoint struct {
ClickTrackingParams string `json:"clickTrackingParams"`
CommandMetadata CommandMetadata `json:"commandMetadata"`
ShowLiveChatItemEndpoint ShowLiveChatItemEndpoint `json:"showLiveChatItemEndpoint"`
}
type ShowLiveChatItemEndpoint struct {
Renderer Renderer `json:"renderer"`
}
type Renderer struct {
LiveChatPaidMessageRenderer LiveChatPaidMessageRenderer `json:"liveChatPaidMessageRenderer"`
LiveChatMembershipItemRenderer LiveChatMembershipItemRenderer `json:"liveChatMembershipItemRenderer"`
}
type Accessibility struct {
AccessibilityData AccessibilityData `json:"accessibilityData"`
}
type AccessibilityData struct {
Label string `json:"label"`
}
type TimestampText struct {
SimpleText string `json:"simpleText"`
}
type Emoji struct {
EmojiID string `json:"emojiId"`
Shortcuts []string `json:"shortcuts"`
SearchTerms []string `json:"searchTerms"`
Image Image `json:"image"`
IsCustomEmoji bool `json:"isCustomEmoji"`
}
type Image struct {
Thumbnails []Thumbnail `json:"thumbnails"`
Accessibility Accessibility `json:"accessibility"`
}
type AuthorBadge struct {
LiveChatAuthorBadgeRenderer LiveChatAuthorBadgeRenderer `json:"liveChatAuthorBadgeRenderer"`
}
type LiveChatAuthorBadgeRenderer struct {
Icon Icon `json:"icon"`
CustomThumbnail CustomThumbnail `json:"customThumbnail"`
Tooltip string `json:"tooltip"`
Accessibility Accessibility `json:"accessibility"`
}
type CustomThumbnail struct {
Thumbnails []Thumbnail `json:"thumbnails"`
}