summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Baker <dbkr@matrix.org>2014-09-09 14:53:47 +0100
committerDavid Baker <dbkr@matrix.org>2014-09-09 14:54:06 +0100
commit472b4fe48cc97656c6ed50b817214ecad61dfcc5 (patch)
tree2367bf5ba4c545e28fe4117b581d7e893545a0a7
parentRemoved historical code: recents does not need to manage presences. It is alr... (diff)
downloadsynapse-472b4fe48cc97656c6ed50b817214ecad61dfcc5.tar.xz
make calls work in Firefox
-rw-r--r--webclient/components/matrix/matrix-call.js29
1 files changed, 21 insertions, 8 deletions
diff --git a/webclient/components/matrix/matrix-call.js b/webclient/components/matrix/matrix-call.js
index 4eaed89bcf..ae20b7650e 100644
--- a/webclient/components/matrix/matrix-call.js
+++ b/webclient/components/matrix/matrix-call.js
@@ -35,6 +35,20 @@ var forAllTracksOnStream = function(s, f) {
     forAllAudioTracksOnStream(s, f);
 }
 
+navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia;
+window.RTCPeerConnection = window.RTCPeerConnection || window.webkitRTCPeerConnection; // but not mozRTCPeerConnection because its interface is not compatible
+window.RTCSessionDescription = window.RTCSessionDescription || window.webkitRTCSessionDescription || window.mozRTCSessionDescription;
+window.RTCIceCandidate = window.RTCIceCandidate || window.webkitRTCIceCandidate || window.mozRTCIceCandidate;
+
+var createPeerConnection = function() {
+    var stunServer = 'stun:stun.l.google.com:19302';
+    if (window.mozRTCPeerConnection) {
+        return new window.mozRTCPeerConnection({'url': stunServer});
+    } else {
+        return new window.RTCPeerConnection({"iceServers":[{"urls":"stun:stun.l.google.com:19302"}]});
+    }
+}
+
 angular.module('MatrixCall', [])
 .factory('MatrixCall', ['matrixService', 'matrixPhoneService', '$rootScope', function MatrixCallFactory(matrixService, matrixPhoneService, $rootScope) {
     var MatrixCall = function(room_id) {
@@ -44,10 +58,6 @@ angular.module('MatrixCall', [])
         this.didConnect = false;
     }
 
-    navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia;
-
-    window.RTCPeerConnection = window.RTCPeerConnection || window.webkitRTCPeerConnection || window.mozRTCPeerConnection;
-
     MatrixCall.prototype.placeCall = function() {
         self = this;
         matrixPhoneService.callPlaced(this);
@@ -58,7 +68,7 @@ angular.module('MatrixCall', [])
 
     MatrixCall.prototype.initWithInvite = function(msg) {
         this.msg = msg;
-        this.peerConn = new window.RTCPeerConnection({"iceServers":[{"urls":"stun:stun.l.google.com:19302"}]})
+        this.peerConn = createPeerConnection();
         self= this;
         this.peerConn.oniceconnectionstatechange = function() { self.onIceConnectionStateChanged(); };
         this.peerConn.onicecandidate = function(c) { self.gotLocalIceCandidate(c); };
@@ -79,12 +89,12 @@ angular.module('MatrixCall', [])
     MatrixCall.prototype.stopAllMedia = function() {
         if (this.localAVStream) {
             forAllTracksOnStream(this.localAVStream, function(t) {
-                t.stop();
+                if (t.stop) t.stop();
             });
         }
         if (this.remoteAVStream) {
             forAllTracksOnStream(this.remoteAVStream, function(t) {
-                t.stop();
+                if (t.stop) t.stop();
             });
         }
     };
@@ -93,6 +103,7 @@ angular.module('MatrixCall', [])
         console.trace("Ending call "+this.call_id);
 
         this.stopAllMedia();
+        this.peerConn.close();
 
         var content = {
             version: 0,
@@ -108,7 +119,7 @@ angular.module('MatrixCall', [])
         for (var i = 0; i < audioTracks.length; i++) {
             audioTracks[i].enabled = true;
         }
-        this.peerConn = new window.RTCPeerConnection({"iceServers":[{"urls":"stun:stun.l.google.com:19302"}]})
+        this.peerConn = createPeerConnection();
         self = this;
         this.peerConn.oniceconnectionstatechange = function() { self.onIceConnectionStateChanged(); };
         this.peerConn.onsignalingstatechange = function() { self.onSignallingStateChanged(); };
@@ -275,6 +286,7 @@ angular.module('MatrixCall', [])
         $rootScope.$apply(function() {
             self.state = 'ended';
             self.stopAllMedia();
+            this.peerConn.close();
             self.onHangup();
         });
     };
@@ -289,6 +301,7 @@ angular.module('MatrixCall', [])
     MatrixCall.prototype.onHangupReceived = function() {
         this.state = 'ended';
         this.stopAllMedia();
+        this.peerConn.close();
         this.onHangup();
     };