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
|
/*
This file implements the background WebSocket messaging channel in Bilibili webui.
Server send livestream start and stop messages via this channel.
Note: In this file we manage the concrete WebSocket connection.
The Bilibili WebSocket channel protocol is decoupled and implemented in package `dmpkg`.
*/
package danmaku
import (
"context"
"fmt"
"github.com/keuin/slbr/danmaku/dmpkg"
"github.com/keuin/slbr/types"
"nhooyr.io/websocket"
)
// BilibiliWebSocketMessageType Bilibili uses only binary WebSocket messages
const BilibiliWebSocketMessageType = websocket.MessageBinary
type DanmakuClient struct {
ws *websocket.Conn
wsio wsDatagramIO
}
func NewClient(ctx context.Context, ws *websocket.Conn) DanmakuClient {
return DanmakuClient{
ws: ws,
wsio: wsDatagramIO{
ws: ws,
ctx: ctx,
},
}
}
type DanmakuMessageType int
// wsDatagramIO wraps websocket into a datagram I/O,
// since Bilibili uses only binary data,
// which is effectively a datagram communication.
type wsDatagramIO struct {
ws *websocket.Conn
ctx context.Context
}
func (w *wsDatagramIO) Consume(data []byte) error {
return w.ws.Write(w.ctx, BilibiliWebSocketMessageType, data)
}
func (w *wsDatagramIO) Get() (data []byte, err error) {
typ, data, err := w.ws.Read(w.ctx)
if err != nil {
return
}
if typ != BilibiliWebSocketMessageType {
err = fmt.Errorf("invalid message type: expected a binary WebSocket message, however got %v", typ.String())
}
return
}
func (d *DanmakuClient) Disconnect() error {
// thread unsafe
ws := d.ws
if ws == nil {
return nil
}
d.ws = nil
d.wsio = wsDatagramIO{}
return ws.Close(websocket.StatusInternalError, "disconnected")
}
func (d *DanmakuClient) Authenticate(roomId types.RoomId, authKey, buvid3 string) error {
pkg := dmpkg.NewAuth(dmpkg.ProtoBrotli, roomId, authKey, buvid3)
data, err := pkg.Marshal()
if err != nil {
return fmt.Errorf("exchange marshal failed: %w", err)
}
err = d.wsio.Consume(data)
if err != nil {
return fmt.Errorf("channel write failed: %w", err)
}
// read server response
resp, err := d.wsio.Get()
if err != nil {
return err
}
respEx, err := dmpkg.DecodeExchange(resp)
if err != nil {
return fmt.Errorf("server danmaku exchange decode error: %w", err)
}
ok, err := dmpkg.IsAuthOk(respEx)
if !ok {
return fmt.Errorf("danmaku auth failed: %w", err)
}
return nil
}
func (d *DanmakuClient) Heartbeat() error {
pkg := dmpkg.NewPing()
data, err := pkg.Marshal()
if err != nil {
return fmt.Errorf("exchange marshal failed: %w", err)
}
err = d.wsio.Consume(data)
if err != nil {
return fmt.Errorf("channel write failed: %w", err)
}
return nil
}
// ReadExchange read and decode some kind of exchanges which we are interested
func (d *DanmakuClient) ReadExchange() (dmpkg.DanmakuExchange, error) {
data, err := d.wsio.Get()
if err != nil {
return dmpkg.DanmakuExchange{}, fmt.Errorf("failed to read danmaku datagram from server: %w", err)
}
return dmpkg.DecodeExchange(data)
}
|