forked from muka/peerjs-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
negotiator.go
435 lines (347 loc) · 11.5 KB
/
negotiator.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
package peer
import (
"encoding/json"
"fmt"
"github.com/muka/peerjs-go/enums"
"github.com/muka/peerjs-go/models"
"github.com/pion/webrtc/v3"
"github.com/sirupsen/logrus"
)
// DefaultBrowser is the browser name
const DefaultBrowser = "peerjs-go"
func newWebrtcAPI() *webrtc.API {
mediaEngine := new(webrtc.MediaEngine)
mediaEngine.RegisterDefaultCodecs()
return webrtc.NewAPI(webrtc.WithMediaEngine(mediaEngine))
}
//NewNegotiator initiate a new negotiator
func NewNegotiator(conn Connection, opts ConnectionOptions) *Negotiator {
return &Negotiator{
connection: conn,
log: createLogger("negotiator", opts.Debug),
webrtc: newWebrtcAPI(),
}
}
// Negotiator manages all negotiations between Peers
type Negotiator struct {
connection Connection
log *logrus.Entry
webrtc *webrtc.API
}
//StartConnection Returns a PeerConnection object set up correctly (for data, media). */
func (n *Negotiator) StartConnection(opts ConnectionOptions) error {
peerConnection, err := n.startPeerConnection()
if err != nil {
return err
}
// Set the connection's PC.
n.connection.SetPeerConnection(peerConnection)
if n.connection.GetType() == enums.ConnectionTypeMedia && opts.Stream != nil {
for _, track := range opts.Stream.GetTracks() {
peerConnection.AddTrack(track.(webrtc.TrackLocal))
}
}
// What do we need to do now?
if opts.Originator {
if n.connection.GetType() == enums.ConnectionTypeData {
dataConnection := n.connection.(*DataConnection)
config := &webrtc.DataChannelInit{
Ordered: &opts.Reliable,
}
dataChannel, err := peerConnection.CreateDataChannel(dataConnection.Label, config)
if err != nil {
return err
}
dataConnection.Initialize(dataChannel)
}
n.makeOffer()
} else {
// OFFER
err = n.handleSDP(enums.ServerMessageTypeOffer, opts.SDP)
if err != nil {
return err
}
}
return nil
}
// Start a PC
func (n *Negotiator) startPeerConnection() (*webrtc.PeerConnection, error) {
n.log.Debug("Creating RTCPeerConnection")
// peerConnection = webrtc.PeerConnection(this.connection.provider.options.config);
c := n.connection.GetProvider().GetOptions().Configuration
peerConnection, err := n.webrtc.NewPeerConnection(c)
if err != nil {
return nil, err
}
n.setupListeners(peerConnection)
return peerConnection, nil
}
// Set up various WebRTC listeners
func (n *Negotiator) setupListeners(peerConnection *webrtc.PeerConnection) {
peerID := n.connection.GetPeerID()
connectionID := n.connection.GetID()
provider := n.connection.GetProvider()
n.log.Debug("Listening for ICE candidates.")
peerConnection.OnICECandidate(func(evt *webrtc.ICECandidate) {
peerID := n.connection.GetPeerID()
connectionID := n.connection.GetID()
connectionType := n.connection.GetType()
provider := n.connection.GetProvider()
if evt == nil {
n.log.Debugf("ICECandidate gathering completed for peer=%s conn=%s", peerID, connectionID)
return
}
candidate := evt.ToJSON()
if candidate.Candidate == "" {
return
}
n.log.Debugf("Received ICE candidates for %s: %s", peerID, candidate.Candidate)
msg := models.Message{
Type: enums.ServerMessageTypeCandidate,
Payload: models.Payload{
Candidate: &candidate,
Type: connectionType,
ConnectionID: connectionID,
},
Dst: peerID,
}
res, err := json.Marshal(msg)
if err != nil {
n.log.Errorf("OnICECandidate: Failed to serialize message: %s", err)
}
err = provider.GetSocket().Send(res)
if err != nil {
n.log.Errorf("OnICECandidate: Failed to send message: %s", err)
}
})
peerConnection.OnICEConnectionStateChange(func(state webrtc.ICEConnectionState) {
switch peerConnection.ICEConnectionState() {
case webrtc.ICEConnectionStateFailed:
n.log.Debugf("iceConnectionState is failed, closing connections to %s", peerID)
n.connection.Emit(
enums.ConnectionEventTypeError,
fmt.Errorf("Negotiation of connection to %s failed", peerID),
)
n.connection.Close()
break
case webrtc.ICEConnectionStateClosed:
n.log.Debugf("iceConnectionState is closed, closing connections to %s", peerID)
n.connection.Emit(enums.ConnectionEventTypeError, fmt.Errorf("Connection to %s closed", peerID))
n.connection.Close()
break
case webrtc.ICEConnectionStateDisconnected:
n.log.Debugf("iceConnectionState changed to disconnected on the connection with %s", peerID)
break
case webrtc.ICEConnectionStateCompleted:
peerConnection.OnICECandidate(func(i *webrtc.ICECandidate) {
// noop
})
break
}
n.connection.Emit(enums.ConnectionEventTypeIceStateChanged, peerConnection.ICEConnectionState())
})
// DATACONNECTION.
n.log.Debug("Listening for data channel")
// Fired between offer and answer, so options should already be saved in the options hash.
peerConnection.OnDataChannel(func(dataChannel *webrtc.DataChannel) {
n.log.Debug("Received data channel")
conn, ok := provider.GetConnection(peerID, connectionID)
if ok {
connection := conn.(*DataConnection)
connection.Initialize(dataChannel)
}
})
// MEDIACONNECTION
n.log.Debug("Listening for remote stream")
peerConnection.OnTrack(func(tr *webrtc.TrackRemote, r *webrtc.RTPReceiver) {
n.log.Debug("Received remote stream")
connection, ok := provider.GetConnection(peerID, connectionID)
if ok {
if connection.GetType() == enums.ConnectionTypeMedia {
mediaConnection := connection.(*MediaConnection)
n.log.Debugf("add stream %s to media connection %s", tr.ID(), mediaConnection.GetID())
mediaConnection.AddStream(tr)
}
}
})
}
// Cleanup clean up the negotiatior internal state
func (n *Negotiator) Cleanup() {
n.log.Debugf("Cleaning up PeerConnection to %s", n.connection.GetPeerID())
peerConnection := n.connection.GetPeerConnection()
if peerConnection == nil {
return
}
n.connection.SetPeerConnection(nil)
//unsubscribe from all PeerConnection's events
peerConnection.OnICECandidate(func(i *webrtc.ICECandidate) {})
peerConnection.OnICEConnectionStateChange(func(is webrtc.ICEConnectionState) {})
peerConnection.OnDataChannel(func(dc *webrtc.DataChannel) {})
peerConnection.OnTrack(func(tr *webrtc.TrackRemote, r *webrtc.RTPReceiver) {})
peerConnectionNotClosed := peerConnection.ConnectionState() != webrtc.PeerConnectionStateClosed
dataChannelNotClosed := false
if n.connection.GetType() == enums.ConnectionTypeData {
dataConnection := n.connection.(*DataConnection)
dataChannel := dataConnection.DataChannel
if dataChannel != nil {
dataChannelNotClosed = dataChannel.ReadyState() != webrtc.DataChannelStateClosed
}
}
if peerConnectionNotClosed || dataChannelNotClosed {
peerConnection.Close()
}
}
func (n *Negotiator) makeOffer() error {
peerConnection := n.connection.GetPeerConnection()
provider := n.connection.GetProvider()
// TODO check offer message
offer, err := peerConnection.CreateOffer(&webrtc.OfferOptions{
OfferAnswerOptions: webrtc.OfferAnswerOptions{
// VoiceActivityDetection: true,
},
ICERestart: false,
})
if err != nil {
err1 := fmt.Errorf("makeOffer: Failed to create offer: %s", err)
n.log.Warn(err1)
provider.EmitError(enums.PeerErrorTypeWebRTC, err1)
return err
}
n.log.Debug("Created offer")
connOpts := n.connection.GetOptions()
if connOpts.SDPTransform != nil {
offer.SDP = connOpts.SDPTransform(offer.SDP)
}
err = peerConnection.SetLocalDescription(offer)
if err != nil {
err1 := fmt.Errorf("makeOffer: Failed to set local description: %s", err)
n.log.Warn(err1)
provider.EmitError(enums.PeerErrorTypeWebRTC, err1)
return err
}
n.log.Debugf("Set localDescription: %s for:%s", offer.SDP, n.connection.GetPeerID())
payload := models.Payload{
Type: n.connection.GetType(),
ConnectionID: n.connection.GetID(),
Metadata: n.connection.GetMetadata(),
SDP: &offer,
Browser: DefaultBrowser,
}
if n.connection.GetType() == enums.ConnectionTypeData {
dataConnection := n.connection.(*DataConnection)
payload.Label = dataConnection.Label
payload.Reliable = dataConnection.Reliable
payload.Serialization = dataConnection.Serialization
}
msg := models.Message{
Type: enums.ServerMessageTypeOffer,
Dst: n.connection.GetPeerID(),
Payload: payload,
}
raw, err := json.Marshal(msg)
if err != nil {
err1 := fmt.Errorf("makeOffer: Failed to marshal socket message: %s", err)
n.log.Warn(err1)
provider.EmitError(enums.PeerErrorTypeWebRTC, err1)
return err
}
err = provider.GetSocket().Send(raw)
if err != nil {
err1 := fmt.Errorf("makeOffer: Failed to send message: %s", err)
n.log.Warn(err1)
provider.EmitError(enums.PeerErrorTypeWebRTC, err1)
return err
}
return nil
}
func (n *Negotiator) makeAnswer() error {
peerConnection := n.connection.GetPeerConnection()
provider := n.connection.GetProvider()
answer, err := peerConnection.CreateAnswer(&webrtc.AnswerOptions{
OfferAnswerOptions: webrtc.OfferAnswerOptions{
// VoiceActivityDetection: true,
},
})
if err != nil {
err1 := fmt.Errorf("makeAnswer: Failed to create answer: %s", err)
n.log.Warn(err1)
provider.EmitError(enums.PeerErrorTypeWebRTC, err1)
return err
}
n.log.Debug("Created answer.")
connOpts := n.connection.GetOptions()
if connOpts.SDPTransform != nil {
answer.SDP = connOpts.SDPTransform(answer.SDP)
}
err = peerConnection.SetLocalDescription(answer)
if err != nil {
err1 := fmt.Errorf("makeAnswer: Failed to set local description: %s", err)
n.log.Warn(err1)
provider.EmitError(enums.PeerErrorTypeWebRTC, err1)
return err
}
n.log.Debugf(`Set localDescription: %s for %s`, answer.SDP, n.connection.GetPeerID())
msg := models.Message{
Type: enums.ServerMessageTypeAnswer,
Dst: n.connection.GetPeerID(),
Payload: models.Payload{
Type: n.connection.GetType(),
ConnectionID: n.connection.GetID(),
SDP: &answer,
Browser: DefaultBrowser,
},
}
raw, err := json.Marshal(msg)
if err != nil {
err1 := fmt.Errorf("makeAnswer: Failed to marshal sockt message: %s", err)
n.log.Warn(err1)
provider.EmitError(enums.PeerErrorTypeWebRTC, err1)
return err
}
err = provider.GetSocket().Send(raw)
if err != nil {
err1 := fmt.Errorf("makeAnswer: Failed to send message: %s", err)
n.log.Warn(err1)
provider.EmitError(enums.PeerErrorTypeWebRTC, err1)
return err
}
return nil
}
// Handle an SDP.
func (n *Negotiator) handleSDP(sdpType string, sdp webrtc.SessionDescription) error {
peerConnection := n.connection.GetPeerConnection()
provider := n.connection.GetProvider()
n.log.Debugf("Setting remote description %v", sdp)
err := peerConnection.SetRemoteDescription(sdp)
if err != nil {
provider.EmitError(enums.PeerErrorTypeWebRTC, err)
n.log.Warnf("handleSDP: Failed to setRemoteDescription %s", err)
return err
}
n.log.Debugf(`Set remoteDescription:%s for:%s`, sdpType, n.connection.GetPeerID())
// sdpType == OFFER
if sdpType == enums.ServerMessageTypeOffer {
err := n.makeAnswer()
if err != nil {
return err
}
}
return nil
}
// HandleCandidate handles a candidate
func (n *Negotiator) HandleCandidate(iceInit *webrtc.ICECandidateInit) error {
n.log.Debugf(`HandleCandidate: %v`, iceInit)
// candidate := ice.ToJSON().Candidate
// sdpMLineIndex := ice.ToJSON().SDPMLineIndex
// sdpMid := ice.ToJSON().SDPMid
peerConnection := n.connection.GetPeerConnection()
provider := n.connection.GetProvider()
err := peerConnection.AddICECandidate(*iceInit)
if err != nil {
provider.EmitError(enums.PeerErrorTypeWebRTC, err)
n.log.Errorf("handleCandidate: %s", err)
return err
}
n.log.Debugf(`Added ICE candidate for:%s`, n.connection.GetPeerID())
return nil
}