-
Notifications
You must be signed in to change notification settings - Fork 2
/
utils.go
375 lines (350 loc) · 10.2 KB
/
utils.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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
package gotiktoklive
import (
"encoding/base64"
"encoding/json"
"fmt"
"log/slog"
"math/rand"
pb "github.com/steampoweredtaco/gotiktoklive/proto"
"google.golang.org/protobuf/proto"
"google.golang.org/protobuf/reflect/protoreflect"
"google.golang.org/protobuf/reflect/protoregistry"
)
func getRandomDeviceID() string {
const chars = "0123456789"
b := make([]byte, 20)
for i := range b {
b[i] = chars[rand.Intn(len(chars))]
}
return string(b)
}
func parseMsg(msg *pb.WebcastResponse_Message, warnHandler func(...interface{}), debugHandler func(...interface{}), enableExperimentalEvents bool) (out Event, err error) {
tReflect, err := protoregistry.GlobalTypes.FindMessageByName(protoreflect.FullName(msg.Method))
if err != nil {
base := base64.RawStdEncoding.EncodeToString(msg.Payload)
debugHandler(fmt.Sprintf("cannot find type %s:\n%s ", msg.Method, base))
return nil, nil
}
m := tReflect.New().Interface()
if err = proto.Unmarshal(msg.Payload, m); err != nil {
base := base64.RawStdEncoding.EncodeToString(msg.Payload)
err = fmt.Errorf("failed to unmarshal proto %T: %w\n%s", m, err, base)
debugHandler(err)
warnHandler(fmt.Errorf("failed to unmarshal proto %T: %w", m, err))
return nil, nil
}
switch pt := m.(type) {
case *pb.RoomMessage:
return RoomEvent{
MessageID: pt.Common.MsgId,
Timestamp: pt.Common.CreateTime,
Type: pt.Common.Method,
Message: pt.Content,
isHistory: msg.IsHistory,
}, nil
case *pb.WebcastRoomPinMessage:
{
tReflect, err := protoregistry.GlobalTypes.FindMessageByName(protoreflect.FullName(pt.OriginalMsgType))
if err != nil {
base := base64.RawStdEncoding.EncodeToString(msg.Payload)
debugHandler("cannot find proto type for pin message %s:\n%s ", msg.Method, base)
return RoomEvent{
MessageID: msg.MsgId,
Timestamp: pt.Common.CreateTime,
Type: pt.OriginalMsgType,
Message: "<unknown>",
isHistory: msg.IsHistory,
}, nil
}
m := tReflect.New().Interface()
if err = proto.Unmarshal(pt.PinnedMessage, m); err != nil {
base := base64.RawStdEncoding.EncodeToString(msg.Payload)
err = fmt.Errorf("failed to unmarshal proto %T: %w\n%s", m, err, base)
debugHandler(err)
warnHandler(fmt.Errorf("failed to unmarshal proto %T: %w", m, err))
return RoomEvent{
MessageID: msg.MsgId,
Timestamp: pt.Common.CreateTime,
Type: pt.OriginalMsgType,
Message: "<unknown>",
isHistory: msg.IsHistory,
}, nil
}
typeStr := pt.OriginalMsgType
msgPinned := "<unknown pinned type>"
switch pt2 := m.(type) {
// Todo make a pin return type
case *pb.WebcastChatMessage:
return ChatEvent{
MessageID: pt.Common.MsgId,
Timestamp: pt.Common.CreateTime,
Comment: "<pinned>: " + pt2.Content,
User: toUser(pt2.User),
isHistory: msg.IsHistory,
}, nil
default:
base := base64.RawStdEncoding.EncodeToString(pt.PinnedMessage)
err = fmt.Errorf("unimplemented pinned message type %T\n%s", m, base)
debugHandler(err)
warnHandler(fmt.Sprintf("unimplemented pinned message type %T", m))
}
return RoomEvent{
MessageID: pt.Common.MsgId,
Timestamp: pt.Common.CreateTime,
Type: typeStr,
Message: msgPinned,
isHistory: msg.IsHistory,
}, nil
}
case *pb.WebcastChatMessage:
return ChatEvent{
MessageID: pt.Common.MsgId,
Comment: pt.Content,
User: toUser(pt.User),
UserIdentity: toUserIdentity(pt.UserIdentity),
Timestamp: pt.Common.CreateTime,
isHistory: msg.IsHistory,
}, nil
case *pb.WebcastMemberMessage:
return UserEvent{
MessageID: pt.Common.MsgId,
Timestamp: pt.Common.CreateTime,
Event: toUserType(pt.Action.String()),
User: toUser(pt.User),
isHistory: msg.IsHistory,
}, nil
case *pb.WebcastLiveGameIntroMessage:
return RoomEvent{
MessageID: pt.Common.MsgId,
Timestamp: pt.Common.CreateTime,
Type: pt.Common.Method,
Message: pt.GameText.DefaultPattern,
isHistory: msg.IsHistory,
}, nil
case *pb.WebcastRoomMessage:
return RoomEvent{
MessageID: pt.Common.MsgId,
Timestamp: pt.Common.CreateTime,
Type: pt.Common.Method,
// TODO: Make this actually use pieces list and fill out the format text correctly.
Message: pt.Common.DisplayText.DefaultPattern,
isHistory: msg.IsHistory,
}, nil
case *pb.WebcastRoomUserSeqMessage:
return ViewersEvent{
MessageID: pt.Common.MsgId,
Timestamp: pt.Common.CreateTime,
Viewers: int(pt.Total),
isHistory: msg.IsHistory,
}, nil
case *pb.WebcastSocialMessage:
return UserEvent{
MessageID: pt.Common.MsgId,
Timestamp: pt.Common.CreateTime,
Event: toUserType(pt.Common.DisplayText.Key),
User: toUser(pt.User),
isHistory: msg.IsHistory,
}, nil
case *pb.WebcastGiftMessage:
if pt.GiftId == 0 && pt.User == nil {
return nil, nil
}
return GiftEvent{
MessageID: pt.Common.MsgId,
Timestamp: int64(pt.Common.CreateTime),
ID: int64(pt.GiftId),
Name: pt.Gift.Name,
Describe: pt.Gift.Describe,
Diamonds: int(pt.Gift.DiamondCount),
RepeatCount: int(pt.RepeatCount),
RepeatEnd: pt.RepeatEnd == 1,
Type: int(pt.Gift.Type),
ToUserID: int64(pt.UserGiftReciever.UserId),
User: toUser(pt.User),
UserIdentity: toUserIdentity(pt.UserIdentity),
isHistory: msg.IsHistory,
}, nil
case *pb.WebcastLikeMessage:
return LikeEvent{
MessageID: pt.Common.MsgId,
Timestamp: pt.Common.CreateTime,
Likes: int(pt.Count),
TotalLikes: int(pt.Total),
User: toUser(pt.User),
DisplayType: pt.Common.Method,
Label: pt.Common.DisplayText.String(),
isHistory: msg.IsHistory,
}, nil
case *pb.WebcastQuestionNewMessage:
return QuestionEvent{
MessageID: pt.Common.MsgId,
Timestamp: pt.Common.CreateTime,
Quesion: pt.Details.Text,
User: toUser(pt.Details.User),
isHistory: msg.IsHistory,
}, nil
case *pb.WebcastControlMessage:
return ControlEvent{
MessageID: pt.Common.MsgId,
Timestamp: pt.Common.CreateTime,
Action: int(pt.Action),
Description: pt.Action.String(),
isHistory: msg.IsHistory,
}, nil
case *pb.WebcastLinkMicBattle:
users := []*User{}
for _, u := range pt.HostTeam {
groups := u.HostGroup
for _, group := range groups {
for _, user := range group.Host {
urls := make([]string, 5)
for _, img := range user.Images {
urls = append(urls, img.UrlList...)
}
users = append(users, &User{
ID: int64(user.Id),
Username: user.ProfileId,
Nickname: user.Name,
ProfilePicture: &ProfilePicture{
Urls: urls,
},
})
}
}
}
return MicBattleEvent{
MessageID: pt.Common.MsgId,
Timestamp: pt.Common.CreateTime,
Users: users,
isHistory: msg.IsHistory,
}, nil
case *pb.WebcastLinkMicArmies:
battles := []*Battle{}
for _, b := range pt.BattleItems {
battle := &Battle{
Host: int64(b.HostUserId),
Groups: []*BattleGroup{},
}
for _, g := range b.BattleGroups {
group := BattleGroup{
Points: int(g.Points),
Users: []*User{},
}
for _, u := range g.Users {
group.Users = append(group.Users, toUser(u))
}
battle.Groups = append(battle.Groups, &group)
}
battles = append(battles, battle)
}
return BattlesEvent{
MessageID: pt.Common.MsgId,
Timestamp: pt.Common.CreateTime,
Status: int(pt.BattleStatus),
Battles: battles,
isHistory: msg.IsHistory,
}, nil
case *pb.WebcastLiveIntroMessage:
return IntroEvent{
MessageID: pt.Common.MsgId,
Timestamp: pt.Common.CreateTime,
ID: int(pt.RoomId),
Title: pt.Content,
User: toUser(pt.Host),
isHistory: msg.IsHistory,
}, nil
case *pb.WebcastInRoomBannerMessage:
var data interface{}
// TODO: should we make a type for this instead of unmarshalling to see it is an error then feeding it up?
err = json.Unmarshal([]byte(pt.GetJson()), &data)
if err != nil {
return nil, fmt.Errorf("WebcastInRoomBannerMessage: %w\n%s", err, data)
}
return RoomBannerEvent{
MessageID: pt.Header.MsgId,
Timestamp: pt.Header.CreateTime,
Data: data,
isHistory: msg.IsHistory,
}, nil
default:
base := base64.RawStdEncoding.EncodeToString(msg.Payload)
err = fmt.Errorf("unimplemented type %T\n%s", m, base)
debugHandler(err)
warnHandler(fmt.Sprintf("unimplemented type %T", m))
return nil, nil
}
}
func defaultLogHandler(i ...interface{}) {
slog.Debug(fmt.Sprint(i...), "logger", "gotiktoklive-default")
}
func routineErrHandler(err ...interface{}) {
slog.Debug(fmt.Sprint(err...), "logger", "gotiktoklive-default")
}
func toUser(u *pb.User) *User {
if u == nil {
return &User{}
}
username := u.IdStr
if u.IdStr == "" {
username = u.Nickname
}
user := User{
ID: int64(u.Id),
Username: username,
Nickname: u.Nickname,
}
if u.AvatarLarge != nil && u.AvatarJpg.UrlList != nil {
user.ProfilePicture = &ProfilePicture{
Urls: u.AvatarJpg.UrlList,
}
}
user.ExtraAttributes = &ExtraAttributes{
FollowRole: int(u.UserRole),
}
if u.BadgeList != nil {
var badges []*UserBadge
for _, badge := range u.BadgeList {
badges = append(badges, &UserBadge{
Type: badge.DisplayType.String(),
Name: badge.String(),
})
}
user.Badge = &BadgeAttributes{
Badges: badges,
}
}
return &user
}
func toUserIdentity(uid *pb.UserIdentity) *UserIdentity {
if uid == nil {
return nil
}
return &UserIdentity{
IsGiftGiver: uid.IsGiftGiverOfAnchor,
IsSubscriber: uid.IsSubscriberOfAnchor,
IsMutualFollowing: uid.IsMutualFollowingWithAnchor,
IsFollower: uid.IsFollowerOfAnchor,
IsModerator: uid.IsModeratorOfAnchor,
IsAnchor: uid.IsAnchor,
}
}
func copyMap(m map[string]string) map[string]string {
out := make(map[string]string)
for key, value := range m {
out[key] = value
}
return out
}
func toUserType(displayType string) userEventType {
switch displayType {
case "pm_main_follow_message_viewer_2":
return USER_FOLLOW
case "pm_mt_guidance_share":
return USER_SHARE
case "live_room_enter_toast":
return USER_JOIN
case "JOINED":
return USER_JOIN
}
return userEventType(fmt.Sprintf("User type not implemented, please report: %s", displayType))
}