-
Notifications
You must be signed in to change notification settings - Fork 258
/
Copy pathuicontroller.js
770 lines (700 loc) · 22.2 KB
/
uicontroller.js
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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
/*
* Spreed WebRTC.
* Copyright (C) 2013-2015 struktur AG
*
* This file is part of Spreed WebRTC.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
"use strict";
define(['jquery', 'underscore', 'bigscreen', 'moment', 'sjcl', 'modernizr', 'webrtc.adapter'], function($, _, BigScreen, moment, sjcl, Modernizr) {
return ["$scope", "$rootScope", "$element", "$window", "$timeout", "safeDisplayName", "safeApply", "mediaStream", "appData", "playSound", "desktopNotify", "alertify", "toastr", "translation", "fileDownload", "localStorage", "screensharing", "localStatus", "dialogs", "rooms", "constraints", "endToEndEncryption", function($scope, $rootScope, $element, $window, $timeout, safeDisplayName, safeApply, mediaStream, appData, playSound, desktopNotify, alertify, toastr, translation, fileDownload, localStorage, screensharing, localStatus, dialogs, rooms, constraints, endToEndEncryption) {
alertify.dialog.registerCustom({
baseType: 'notify',
type: 'webrtcUnsupported',
message: translation._("Your browser does not support WebRTC. No calls possible.")
});
// Avoid accidential reloads or exits when in a call.
$($window).on("beforeunload", function(event) {
if (appData.flags.manualUnload || !$scope.peer) {
return;
}
return translation._("Close this window and disconnect?");
});
$($window).on("unload", function() {
mediaStream.webrtc.doHangup("unload");
if (mediaStream.api.connector) {
mediaStream.api.connector.disabled = true;
}
});
// Enable app full screen listener.
$("#bar .logo").on("doubletap dblclick", _.debounce(function() {
if (BigScreen.enabled) {
BigScreen.toggle($("body").get(0));
}
}, 100, true));
// Load default sounds.
playSound.initialize({
urls: ['sounds/sprite1.ogg', 'sounds/sprite1.mp3'],
sprite: {
"connect1": [
0,
5179],
"end1": [
12892,
6199],
"entry1": [
8387,
3000],
"leaving1": [
5228,
2126],
"message1": [
19140,
816],
"question1": [
20006,
3313],
"ringtone1": [
7403,
935],
"whistle1": [
11437,
1405]
}
}, null, {
"ring": "whistle1",
"joined": "entry1",
"left": "leaving1",
"end": "end1",
"dial": "ringtone1",
"connect": "connect1",
"prompt": "question1",
"chatmessage": "message1"
});
var displayName = safeDisplayName;
// Init STUN from server config.
(function() {
var stun = mediaStream.config.StunURIs || [];
constraints.stun(stun);
})();
// Add browser details for easy access.
$scope.isChrome = $window.webrtcDetectedBrowser === "chrome";
$scope.webrtcDetectedBrowser = $window.webrtcDetectedBrowser;
$scope.webrtcDetectedVersion = $window.webrtcDetectedVersion;
// Add support status.
$scope.supported = {
screensharing: screensharing.supported,
constraints: constraints.supported
};
// Default scope data.
$scope.status = "initializing";
$scope.id = $scope.myid = null;
$scope.userid = $scope.myuserid = null;
$scope.suserid = null;
$scope.fingerprint = null;
$scope.peer = null;
$scope.dialing = null;
$scope.conference = null;
$scope.conferencePeers = [];
$scope.incoming = null;
$scope.microphoneMute = false;
$scope.cameraMute = false;
$scope.layout = {
main: null,
};
$scope.chatMessagesUnseen = 0;
$scope.autoAccept = null;
$scope.isCollapsed = true;
$scope.usermedia = null;
$scope.setStatus = function(status) {
// This is the connection status to signaling server.
$scope.$emit("status", status);
};
$scope.getStatus = function() {
return $scope.status;
};
$scope.updateStatus = function(clear) {
// This is the user status.
var status = {
displayName: $scope.master.displayName || null,
buddyPicture: $scope.master.buddyPicture || null,
message: $scope.master.message || null
}
if (clear) {
localStatus.clear();
}
localStatus.update(status);
};
$scope.refreshWebrtcSettings = function() {
// Refresh constraints.
constraints.refresh($scope.master.settings).then(function() {
var um = $scope.usermedia;
if (um && um.renegotiation && um.started) {
// Trigger renegotiation if supported and started.
um.doGetUserMediaWithConstraints(mediaStream.webrtc.settings.mediaConstraints);
}
});
};
$scope.refreshWebrtcSettings(); // Call once for bootstrap.
$scope.refreshSoundSettings = function() {
var s = $scope.master.settings.sound;
playSound.disable("chatmessage", !s.incomingMessages);
playSound.disable("ring", !s.incomingCall);
var roomJoinLeave = $scope.peer ? false : s.roomJoinLeave; // Do not play these sounds when in call.
playSound.disable("joined", !roomJoinLeave);
playSound.disable("left", !roomJoinLeave);
};
$scope.refreshSoundSettings(); // Call once on bootstrap;
var pickupTimeout = null;
var autoAcceptTimeout = null;
$scope.updateAutoAccept = function(id, from) {
if (id) {
console.log("Auto accept requested", id);
$scope.autoAccept = id;
$timeout.cancel(autoAcceptTimeout);
autoAcceptTimeout = $timeout(function() {
$scope.autoAccept = null;
console.warn("Auto accept expired!")
safeApply($scope);
}, 2000);
} else {
if ($scope.autoAccept && $scope.autoAccept === from) {
$scope.autoAccept = null;
$timeout.cancel(autoAcceptTimeout);
console.log("Auto accept success", from)
return from;
}
return null;
}
};
$scope.toggleBuddylist = (function() {
var oldState = null;
return function(status, force) {
if (status || force) {
oldState = $scope.layout.buddylist;
$scope.layout.buddylist = !! status;
} else {
$scope.layout.buddylist = oldState;
}
}
}());
$scope.openContactsManager = (function() {
var oldDialog = null;
return function() {
if (oldDialog) {
oldDialog.dismiss("open");
}
oldDialog = dialogs.create(
"/contactsmanager/main.html",
"ContactsmanagerController",
{
header: translation._("Contacts Manager")
}, {
wc: "contactsmanager"
}
);
oldDialog.result.finally(function() {
oldDialog = null;
});
return oldDialog
}
}());
$scope.$watch("cameraMute", function(cameraMute) {
mediaStream.webrtc.setVideoMute(cameraMute);
});
$scope.$watch("microphoneMute", function(cameraMute) {
mediaStream.webrtc.setAudioMute(cameraMute);
});
$scope.$watch("peer", function(c, o) {
// Watch for peer and disable some sounds while there is a peer.
if (c && !o) {
// New call.
$scope.refreshSoundSettings();
} else if (!c && o) {
// No longer in call.
$scope.refreshSoundSettings();
}
});
var ringer = playSound.interval("ring", null, 4000);
var dialer = playSound.interval("dial", null, 4000);
var dialerEnabled = false;
var notification;
var ttlTimeout;
var reloadDialog = false;
mediaStream.api.e.on("received.self", function(event, data) {
$timeout.cancel(ttlTimeout);
safeApply($scope, function(scope) {
scope.id = scope.myid = data.Id;
scope.userid = scope.myuserid = data.Userid ? data.Userid : null;
scope.suserid = data.Suserid ? data.Suserid : null;
});
// Set TURN and STUN data and refresh webrtc settings.
constraints.turn(data.Turn);
constraints.stun(data.Stun);
$scope.refreshWebrtcSettings();
if (data.Version !== mediaStream.version) {
console.info("Server was upgraded. Reload required.");
if (!reloadDialog) {
reloadDialog = true;
_.delay(function() {
alertify.dialog.confirm(translation._("Restart required to apply updates. Click ok to restart now."), function() {
$scope.manualReloadApp();
}, function() {
reloadDialog = false;
});
}, 300);
}
}
// Support authentication from localStorage.
if (!data.Userid && mediaStream.config.UsersEnabled) {
// Check if we can load a user.
var login = mediaStream.users.load();
if (login !== null) {
$scope.loadedUserlogin = true;
console.log("Trying to authorize with stored credentials ...");
mediaStream.users.authorize(login, function(data) {
console.info("Retrieved nonce - authenticating as user:", data.userid);
mediaStream.api.requestAuthentication(data.userid, data.nonce);
delete data.nonce;
}, function(data, status) {
console.error("Failed to authorize session", status, data);
mediaStream.users.forget();
});
} else {
$scope.loadedUserlogin = false;
}
}
// Support to upgrade stuff when ttl was reached.
if (data.Turn.ttl) {
ttlTimeout = $timeout(function() {
console.log("Ttl reached - sending refresh request.");
mediaStream.api.sendSelf();
}, data.Turn.ttl / 100 * 90 * 1000);
}
// Support resurrection shrine.
if (appData.flags.resurrect) {
var resurrection = appData.flags.resurrect;
appData.flags.resurrect = null;
$timeout(function() {
if (resurrection.id === $scope.id) {
console.log("Using resurrection shrine", resurrection);
// Valid resurrection.
$scope.setStatus(resurrection.status);
}
}, 0);
}
// Propagate authentication event.
appData.e.triggerHandler("selfReceived", [data]);
// Unmark authorization process.
if (data.Userid) {
appData.authorizing(false, data.Userid);
} else {
if (!appData.authorizing()) {
// Trigger user data load when not in authorizing phase.
$scope.loadUserSettings();
} else {
// Wait until authorizing is over and try it then.
var handler = (function() {
return function(event, authorizing, userid) {
if (!authorizing) {
// Turn of handler if we are no longer authorizing.
appData.e.off("authorizing", handler);
handler = null;
if (!userid) {
// Trigger user data load when without user after authorizing phase.
$scope.loadUserSettings();
}
}
}
})();
appData.e.on("authorizing", handler);
}
}
// Select room if settings have an alternative default room.
if (rooms.inDefaultRoom() && $scope.master.settings.defaultRoom) {
console.log("Selecting default room from settings:", [$scope.master.settings.defaultRoom]);
rooms.joinByName($scope.master.settings.defaultRoom, true);
}
});
mediaStream.webrtc.e.on("peercall", function(event, peercall) {
// Kill timeout.
$timeout.cancel(pickupTimeout);
pickupTimeout = null;
// Kill ringer.
if (peercall && peercall.from === null) {
dialerEnabled = true;
} else {
dialerEnabled = false;
}
ringer.stop();
// Close notifications.
if (notification) {
notification.close();
}
// Apply peer call to scope.
safeApply($scope, function(scope) {
scope.peer = peercall ? peercall.id : null;
});
});
mediaStream.webrtc.e.on("peerconference", function(event, peerconference) {
safeApply($scope, function(scope) {
scope.conference = peerconference ? peerconference.id : null;
scope.conferencePeers = peerconference ? peerconference.peerIds() : [];
});
});
mediaStream.webrtc.e.on("offer", function(event, from, to2, to) {
safeApply($scope, function(scope) {
scope.incoming = from;
});
if ($scope.updateAutoAccept(null, from)) {
// Auto accept support.
mediaStream.webrtc.doAccept();
return;
}
// Start to ring.
ringer.start();
// Show incoming call notification.
notification = desktopNotify.notify(translation._("Incoming call"), translation._("from") + " " + displayName(from), {
timeout: null
});
$scope.$emit("status", "ringing");
// Start accept timeout.
pickupTimeout = $timeout(function() {
console.log("Pickup timeout reached.");
mediaStream.webrtc.doHangup("pickuptimeout");
$scope.$emit("notification", "incomingpickuptimeout", {
reason: 'pickuptimeout',
from: from
});
}, 30000);
appData.e.triggerHandler("uiNotification", ["incoming", {from: from}]);
});
mediaStream.webrtc.e.on("error", function(event, message, msgid) {
switch (msgid) {
case "failed_getusermedia":
message = translation._("Failed to access camera/microphone.");
break;
case "failed_peerconnection_setup":
case "failed_peerconnection":
message = translation._("Failed to establish peer connection.")
break;
}
if (!message) {
message = msgid;
}
if (!message) {
message = translation._("We are sorry but something went wrong. Boo boo.");
}
alertify.dialog.alert(translation._("Oops") + "<br/>" + message);
});
mediaStream.webrtc.e.on("usermedia", function(event, usermedia) {
safeApply($scope, function(scope) {
scope.usermedia = usermedia;
});
});
appData.flags.autoreconnect = true;
appData.flags.autoreconnectDelay = 0;
var reconnect = function() {
if (appData.flags.connected && appData.flags.autoreconnect) {
if (appData.flags.resurrect === null) {
// Storage data at the resurrection shrine.
appData.flags.resurrect = {
status: $scope.getStatus(),
id: $scope.id
}
console.log("Stored data at the resurrection shrine", appData.flags.resurrect);
}
if (!appData.flags.reconnecting) {
var delay = appData.flags.autoreconnectDelay;
if (delay < 10000) {
appData.flags.autoreconnectDelay += 500;
}
appData.flags.reconnecting = true;
_.delay(function() {
if (appData.flags.autoreconnect) {
console.log("Requesting to reconnect ...");
mediaStream.reconnect();
}
appData.flags.reconnecting = false;
}, delay);
$scope.setStatus("reconnecting");
} else {
console.warn("Already reconnecting ...");
}
} else {
$scope.setStatus("closed");
}
};
$scope.$on("room.joined", function(ev) {
$scope.updateStatus(true);
});
mediaStream.connector.e.on("open error close", function(event) {
$timeout.cancel(ttlTimeout);
$scope.userid = $scope.suserid = null;
switch (event.type) {
case "open":
appData.flags.connected = true;
appData.flags.autoreconnectDelay = 0;
$scope.updateStatus(true);
$scope.setStatus("waiting");
break;
case "error":
if (appData.flags.connected) {
reconnect();
} else {
$scope.setStatus(event.type);
}
break;
case "close":
reconnect();
break;
}
});
mediaStream.webrtc.e.on("waitforusermedia connecting", function(event, currentcall) {
var t = event.type;
safeApply($scope, function(scope) {
scope.dialing = currentcall ? currentcall.id : null;
scope.setStatus(t);
});
});
mediaStream.webrtc.e.on("statechange", function(event, state, currentcall) {
console.info("P2P state changed", state, currentcall.id);
switch (state) {
case "completed":
case "connected":
if ($scope.conference) {
$scope.setStatus('conference');
} else {
$scope.setStatus('connected');
}
break;
case "failed":
mediaStream.webrtc.doHangup("failed", currentcall.id);
alertify.dialog.alert(translation._("Peer connection failed. Check your settings."));
break;
}
});
endToEndEncryption.events.on("identity.own", function(event, identity) {
if (identity) {
$scope.fingerprint = identity.getFingerprint();
} else {
$scope.fingerprint = null;
}
});
// Start heartbeat timer.
$window.setInterval(function() {
mediaStream.api.heartbeat(5000, 11500)
}, 1000);
$scope.$on("active", function(event, currentcall) {
console.info("Video state active (assuming connected)", currentcall.id);
if ($scope.conference) {
$scope.setStatus('conference');
} else {
$scope.setStatus('connected');
}
$timeout(function() {
if ($scope.peer) {
$scope.layout.buddylist = false;
$scope.layout.buddylistAutoHide = true;
}
}, 1000);
});
$scope.$on("mainview", function(event, mainview, state) {
console.info("Main view update", mainview, state);
var changed = false;
var layout = $scope.layout;
if (layout.main === mainview && !state) {
layout.main = null;
changed = true;
} else if (state) {
layout.main = mainview;
changed = true;
}
if (changed) {
$scope.$broadcast("mainresize", layout.main);
}
});
$scope.$watch("userid", function(userid, olduserid) {
var suserid;
if (userid) {
suserid = $scope.suserid;
console.info("Session is now authenticated:", userid, suserid);
}
if (userid !== olduserid) {
appData.e.triggerHandler("authenticationChanged", [userid, suserid]);
// Load user settings after authentication changed.
$scope.loadUserSettings();
}
});
// Apply all layout stuff as classes to our element.
$scope.$watch("layout", (function() {
var makeName = function(prefix, n) {
return prefix + n.charAt(0).toUpperCase() + n.slice(1);
};
return function(layout, old) {
_.each(layout, function(v, k) {
if (k === "main") {
return;
}
var n = makeName("with", k);
if (v) {
$element.addClass(n);
} else {
$element.removeClass(n);
}
});
if (old.main !== layout.main) {
if (old.main) {
$element.removeClass(makeName("main", old.main));
}
if (layout.main) {
$element.addClass(makeName("main", layout.main));
}
}
$scope.$broadcast("mainresize", layout.main);
}
}()), true);
mediaStream.webrtc.e.on("done", function() {
if (mediaStream.connector.connected) {
$scope.setStatus("waiting");
}
});
mediaStream.webrtc.e.on("busy", function(event, from) {
console.log("Incoming call - sent busy.", from);
$scope.$emit("notification", "incomingbusy", {
reason: 'busy',
from: from
});
});
mediaStream.webrtc.e.on("bye", function(event, reason, from) {
console.log("received bye", pickupTimeout, reason);
switch (reason) {
case "busy":
console.log("User is busy", reason, from);
$scope.$emit("notification", "busy", {
reason: reason,
from: from
});
break;
case "reject":
console.log("User rejected", reason, from);
$scope.$emit("notification", "reject", {
reason: reason,
from: from
});
break;
case "pickuptimeout":
console.log("User did not pick up", reason, from);
$scope.$emit("notification", "pickuptimeout", {
reason: reason,
from: from
});
break;
case "error":
console.log("User cannot accept call because of error");
alertify.dialog.alert(translation._("Oops") + "<br/>" + translation._("User hung up because of error."));
break;
case "abort":
console.log("Remote call was aborted before we did pick up");
$scope.$emit("notification", "abortbeforepickup", {
reason: reason,
from: from
});
break;
}
});
$scope.$on("status", function(event, status) {
if (status === "connecting" && dialerEnabled) {
dialer.start();
} else {
dialer.stop();
}
safeApply($scope, function(scope) {
var old = $scope.status;
$scope.status = status;
if (old === "connected" && status === "waiting") {
_.delay(playSound.play, 100, "end");
} else if (old === "connecting" && status === "connected") {
playSound.play("connect");
}
});
appData.e.triggerHandler("mainStatus", [status]);
});
$scope.$on("notification", function(event, type, details) {
var message = null;
switch (type) {
case "busy":
message = displayName(details.from) + translation._(" is busy. Try again later.");
break;
case "reject":
message = displayName(details.from) + translation._(" rejected your call.");
break;
case "pickuptimeout":
message = displayName(details.from) + translation._(" does not pick up.");
break;
case "incomingbusy":
toastr.info(moment().format("lll"), displayName(details.from) + translation._(" tried to call you"));
break;
case "abortbeforepickup":
// Fall through
case "incomingpickuptimeout":
toastr.info(moment().format("lll"), displayName(details.from) + translation._(" called you"));
break;
}
if (message) {
playSound.play("question");
alertify.dialog.alert(message);
}
appData.e.triggerHandler("uiNotification", [type, details]);
});
$scope.$on("download", function(event, from, token) {
var scope = event.targetScope;
fileDownload.startDownload(scope, from, token);
});
var chatMessagesUnseen = {};
$scope.$on("chatincoming", function(event, id) {
var count = chatMessagesUnseen[id] || 0;
count++;
chatMessagesUnseen[id] = count;
$scope.chatMessagesUnseen++;
});
$scope.$on("chatseen", function(event, id) {
var count = chatMessagesUnseen[id] || 0;
delete chatMessagesUnseen[id];
$scope.chatMessagesUnseen = $scope.chatMessagesUnseen - count;
});
_.defer(function() {
if (!$window.webrtcDetectedVersion || $window.webrtcDetectedBrowser === "edge") {
alertify.dialog.custom("webrtcUnsupported");
return;
}
if (!Modernizr.websockets || $window.webrtcDetectedVersion < $window.webrtcMinimumVersion) {
alertify.dialog.alert(translation._("Your browser is not supported. Please upgrade to a current version."));
$scope.setStatus("unsupported");
return;
}
if (mediaStream.config.Renegotiation && $window.webrtcDetectedBrowser === "firefox" && $window.webrtcDetectedVersion < 38) {
// See https://bugzilla.mozilla.org/show_bug.cgi?id=1017888
// and https://bugzilla.mozilla.org/show_bug.cgi?id=840728
// and https://bugzilla.mozilla.org/show_bug.cgi?id=842455
// XXX(longsleep): It seems that firefox has implemented new API which
// supports addTrack, removeTrack see http://w3c.github.io/mediacapture-main/#dom-mediastream-removetrack
console.warn("Renegotiation enabled -> currently not compatible with Firefox.");
return;
}
});
}];
});