-
Notifications
You must be signed in to change notification settings - Fork 27
/
live.go
444 lines (373 loc) · 9.07 KB
/
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
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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
package gotiktoklive
import (
"encoding/json"
"fmt"
"io"
"net"
"os"
"os/exec"
"strconv"
"strings"
"sync"
"time"
"github.com/pkg/errors"
"golang.org/x/net/context"
pb "github.com/Davincible/gotiktoklive/proto"
"google.golang.org/protobuf/proto"
)
// TODO: check gift prices of gifts not in wish list
const (
POLLING_INTERVAL = time.Second
DEFAULT_EVENTS_CHAN_SIZE = 100
)
// Live allows you to track a livestream.
// To track a user call tiktok.TrackUser(<user>).
type Live struct {
t *TikTok
cursor string
wss net.Conn
wsURL string
wsParams map[string]string
close func()
done func() <-chan struct{}
ID string
Info *RoomInfo
GiftInfo *GiftInfo
Events chan interface{}
chanSize int
}
func (t *TikTok) newLive(roomId string) *Live {
live := Live{
t: t,
ID: roomId,
Events: make(chan interface{}, DEFAULT_EVENTS_CHAN_SIZE),
chanSize: DEFAULT_EVENTS_CHAN_SIZE,
}
t.mu.Lock()
t.streams += 1
t.mu.Unlock()
ctx, cancel := context.WithCancel(context.Background())
live.done = ctx.Done
o := sync.Once{}
live.close = func() {
o.Do(func() {
cancel()
t.wg.Wait()
close(live.Events)
t.mu.Lock()
t.streams -= 1
t.mu.Unlock()
})
}
return &live
}
// Close will terminate the connection and stop any downloads.
func (l *Live) Close() {
l.close()
}
func (l *Live) fetchRoom() error {
roomInfo, err := l.getRoomInfo()
if err != nil {
return err
}
l.Info = roomInfo
giftInfo, err := l.getGiftInfo()
if err != nil {
return err
}
l.GiftInfo = giftInfo
err = l.getRoomData()
if err != nil {
return err
}
return nil
}
// GetRoomInfo will only fetch the room info, normally available with live.Info
// but not start tracking a live stream.
func (t *TikTok) GetRoomInfo(username string) (*RoomInfo, error) {
id, err := t.getRoomID(username)
if err != nil {
return nil, errors.Wrap(err, "Failed to fetch room ID by username")
}
l := Live{
t: t,
ID: id,
}
roomInfo, err := l.getRoomInfo()
if err != nil {
return nil, errors.Wrap(err, "Failed to fetch room info")
}
return roomInfo, nil
}
// TrackUser will start to track the livestream of a user, if live.
// To listen to events emitted by the livestream, such as comments and viewer
// count, listen to the Live.Events channel.
// It will start a go routine and connect to the tiktok websocket.
func (t *TikTok) TrackUser(username string) (*Live, error) {
id, err := t.getRoomID(username)
if err != nil {
return nil, err
}
t.sendRequest(&reqOptions{
Endpoint: fmt.Sprintf(urlUser, username) + "live",
OmitAPI: true,
})
return t.TrackRoom(id)
}
// TrackRoom will start to track a room by room ID.
// It will start a go routine and connect to the tiktok websocket.
func (t *TikTok) TrackRoom(roomId string) (*Live, error) {
live := t.newLive(roomId)
if err := live.fetchRoom(); err != nil {
return nil, err
}
if err := live.connectRoom(); err != nil {
return nil, err
}
return live, nil
}
func (live *Live) connectRoom() error {
wss, err := live.tryConnectionUpgrade()
if err != nil {
return err
}
if !wss {
live.t.wg.Add(1)
live.startPolling()
}
return nil
}
func (t *TikTok) getRoomID(user string) (string, error) {
userInfo, err := t.GetUserInfo(user)
if err != nil {
return "", err
}
if userInfo.RoomID == "" {
return "", ErrUserOffline
}
return userInfo.RoomID, nil
}
func (l *Live) getRoomInfo() (*RoomInfo, error) {
t := l.t
params := copyMap(defaultGETParams)
params["room_id"] = l.ID
body, err := t.sendRequest(&reqOptions{
Endpoint: urlRoomInfo,
Query: params,
})
if err != nil {
return nil, err
}
var rsp roomInfoRsp
if err := json.Unmarshal(body, &rsp); err != nil {
return nil, err
}
if rsp.RoomInfo.Status == 4 {
return rsp.RoomInfo, ErrLiveHasEnded
}
return rsp.RoomInfo, nil
}
func (l *Live) getGiftInfo() (*GiftInfo, error) {
t := l.t
params := copyMap(defaultGETParams)
params["room_id"] = l.ID
body, err := t.sendRequest(&reqOptions{
Endpoint: urlGiftInfo,
Query: params,
})
if err != nil {
return nil, err
}
var rsp giftInfoRsp
if err := json.Unmarshal(body, &rsp); err != nil {
return nil, err
}
return rsp.GiftInfo, nil
}
func (l *Live) getRoomData() error {
t := l.t
params := copyMap(defaultGETParams)
params["room_id"] = l.ID
if l.cursor != "" {
params["cursor"] = l.cursor
}
body, err := t.sendRequest(&reqOptions{
Endpoint: urlRoomData,
Query: params,
})
if err != nil {
return err
}
var rsp pb.WebcastResponse
if err := proto.Unmarshal(body, &rsp); err != nil {
return err
}
l.cursor = rsp.Cursor
if rsp.WsUrl != "" && rsp.WsParam != nil {
l.wsURL = rsp.WsUrl
l.wsParams = map[string]string{rsp.WsParam.Name: rsp.WsParam.Value}
}
for _, msg := range rsp.Messages {
parsed, err := parseMsg(msg, t.warnHandler)
if err != nil {
return err
}
l.Events <- parsed
}
return nil
}
func (l *Live) startPolling() {
ticker := time.NewTicker(POLLING_INTERVAL)
defer ticker.Stop()
defer l.t.wg.Done()
var lastUpgradeAttempt time.Time
l.t.infoHandler("Started polling")
for {
select {
case <-ticker.C:
err := l.getRoomData()
if err != nil {
l.t.errHandler(err)
}
if lastUpgradeAttempt.IsZero() || time.Now().Add(-time.Minute*5).Unix() > lastUpgradeAttempt.Unix() {
lastUpgradeAttempt = time.Now()
wss, err := l.tryConnectionUpgrade()
if err != nil {
l.t.errHandler(err)
}
if wss {
return
}
}
case <-l.t.done():
l.t.infoHandler("Stopped polling")
return
}
}
}
// DownloadStream will download the stream to an .mkv file.
//
// A filename can be optionally provided as an argument, if not provided one
// will be generated, with the stream start time in the format of 2022y05m25dT13h03m16s.
// The stream start time can be found in Live.Info.CreateTime as epoch seconds.
func (l *Live) DownloadStream(file ...string) error {
// Check if ffmpeg is installed
if _, err := exec.LookPath("ffmpeg"); err != nil {
return ErrFFMPEGNotFound
}
// Get URl
url := l.Info.StreamURL.HlsPullURL
if url == "" {
return ErrURLNotFound
}
// Set file path
var path string
format := ".mkv"
if len(file) > 0 {
path = file[0]
if !strings.HasSuffix(path, format) {
path += format
}
} else {
path = fmt.Sprintf("%s-%s%s", l.Info.Owner.Username, time.Unix(l.Info.CreateTime, 0).Format("2006y01m02dT15h04m05s"), format)
}
if _, err := os.Stat(path); err == nil {
t := strings.TrimSuffix(path, format)
path = fmt.Sprintf("%s-%d%s", t, time.Now().Unix(), format)
}
// Run ffmpeg command
c := []string{"-i", url, "-c", "copy", path}
if l.t.proxy != nil && (l.t.proxy.Scheme == "http" || l.t.proxy.Scheme == "https") {
c = append([]string{"-http_proxy", l.t.proxy.String()}, c...)
}
cmd := exec.Command("ffmpeg", c...)
stdin, err := cmd.StdinPipe()
if err != nil {
return err
}
stdout, err := cmd.StdoutPipe()
if err != nil {
return err
}
stderr, err := cmd.StderrPipe()
if err != nil {
return err
}
if err := cmd.Start(); err != nil {
return err
}
mu := new(sync.Mutex)
finished := false
go func(c *exec.Cmd) {
<-l.done()
mu.Lock()
defer mu.Unlock()
if !finished {
// Send q key press to quit
stdin.Write([]byte("q\n"))
}
}(cmd)
// Go routine to wait for process to exit and return result
l.t.wg.Add(1)
go func(c *exec.Cmd, stdout, stderr io.ReadCloser) {
defer l.t.wg.Done()
stdoutb, _ := io.ReadAll(stdout)
stderrb, _ := io.ReadAll(stderr)
if err := cmd.Wait(); err != nil {
nerr := new(exec.ExitError)
if errors.As(err, &nerr) {
l.t.errHandler(fmt.Errorf("download command failed with: %w\nCommand: %v\nStderr: %v\nStdout: %v\n", err, cmd.Args, string(stderrb), string(stdoutb)))
}
l.t.errHandler(fmt.Errorf("download command failed with: %w\nCommand: %v\n", err, cmd.Args))
}
mu.Lock()
defer mu.Unlock()
finished = true
l.t.infoHandler(fmt.Sprintf("Download for %s finished!", l.Info.Owner.Username))
}(cmd, stdout, stderr)
l.t.infoHandler(fmt.Sprintf("Started downloading stream by %s to %s\n", l.Info.Owner.Username, path))
return nil
}
func (t *TikTok) signURL(reqUrl string) (*SignedURL, error) {
body, err := t.sendRequest(&reqOptions{
URI: tiktokSigner,
Endpoint: urlSignReq,
Query: map[string]string{
"client": clientId,
"uuc": strconv.Itoa(t.streams),
"url": reqUrl,
},
})
if err != nil {
return nil, errors.Wrap(err, "Failed to sign request")
}
var data SignedURL
if err := json.Unmarshal(body, &data); err != nil {
return nil, errors.Wrap(err, "Failed to unmarshal signer server json response")
}
return &data, nil
}
// Only able to get this while logged in
// func (l *Live) GetRankList() (*RankList, error) {
// t := l.t
//
// params := copyMap(defaultGETParams)
// params["room_id"] = l.ID
// params["channel"] = "tiktok_web"
// params["anchor_id"] = "idk"
//
// body, err := t.sendRequest(&reqOptions{
// Endpoint: urlRankList,
// Query: params,
// })
// if err != nil {
// return nil, err
// }
//
// var rsp rankListRsp
// if err := json.Unmarshal(body, &rsp); err != nil {
// return nil, err
// }
//
// return &rsp.RankList, nil
// }