Skip to content
Snippets Groups Projects
Commit 35cad7b4 authored by Dixon Fred's avatar Dixon Fred
Browse files

Merge pull request #395 from SenecaCDOT-BigBlueButton/use-nginx-for-audio

change the webrtc websocket connection to use an nginx proxy
parents f305a9b3 e15de759
No related branches found
No related tags found
No related merge requests found
......@@ -140,7 +140,7 @@ function makeWebRTCWebcamRequest(callback)
);
}
function createUA(username, server) {
function createUA(username, server, callback) {
if (userAgent) {
console.log("User agent already created");
return;
......@@ -148,18 +148,28 @@ function createUA(username, server) {
console.log("Creating new user agent");
// VERY IMPORTANT - You must escape the username because spaces will cause the connection to fail
/* VERY IMPORTANT
* - You must escape the username because spaces will cause the connection to fail
* - We are connecting to the websocket through an nginx redirect instead of directly to 5066
*/
var configuration = {
uri: 'sip:' + encodeURIComponent(username) + '@' + server,
wsServers: 'ws://' + server + ':5066',
wsServers: 'ws://' + server + '/ws',
displayName: username,
register: false,
traceSip: false,
userAgentString: "BigBlueButton",
stunServers: "stun:stun.freeswitch.org"
userAgentString: "BigBlueButton",
stunServers: "stun:stun.freeswitch.org"
};
userAgent = new SIP.UA(configuration);
userAgent.on('disconnected', function() {
if (userAgent) {
userAgent.stop();
userAgent = null;
callback({'status':'failed', 'cause': 'Could not make a WebSocket Connection'});
}
});
userAgent.start();
};
......@@ -202,7 +212,7 @@ function webrtc_call(username, voiceBridge, callback) {
console.log("user " + username + " calling to " + voiceBridge);
if (!userAgent) {
createUA(username, server);
createUA(username, server, callback);
}
if (userMicMedia !== undefined) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment