143 lines
3.6 KiB
JavaScript
Executable File
143 lines
3.6 KiB
JavaScript
Executable File
var localVideo;
|
|
var localStream;
|
|
var remoteVideo;
|
|
var peerConnection;
|
|
var uuid;
|
|
var serverConnection;
|
|
|
|
var peerConnectionConfig = {
|
|
'iceServers': [
|
|
{'urls': 'stun:stun.stunprotocol.org:3478'},
|
|
{'urls': 'stun:stun.l.google.com:19302'},
|
|
]
|
|
};
|
|
|
|
function getCookie(cname) {
|
|
var name = cname + "=";
|
|
var decodedCookie = decodeURIComponent(document.cookie);
|
|
var ca = decodedCookie.split(';');
|
|
for(var i = 0; i <ca.length; i++) {
|
|
var c = ca[i];
|
|
while (c.charAt(0) == ' ') {
|
|
c = c.substring(1);
|
|
}
|
|
if (c.indexOf(name) == 0) {
|
|
return c.substring(name.length, c.length);
|
|
}
|
|
}
|
|
return "";
|
|
}
|
|
|
|
function setCookie(cname, cvalue) {
|
|
var d = new Date();
|
|
d.setTime(d.getTime() + (1*24*60*60*1000));
|
|
var expires = "expires="+ d.toUTCString();
|
|
document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
|
|
}
|
|
|
|
function pageReady() {
|
|
uuid = getCookie("uuid");
|
|
if (!uuid) {
|
|
uuid = createUUID();
|
|
setCookie("uuid", uuid);
|
|
}
|
|
|
|
localVideo = document.getElementById('localVideo');
|
|
remoteVideo = document.getElementById('remoteVideo');
|
|
|
|
serverConnection = new WebSocket('wss://' + window.location.hostname + '/abc?uuid=' + uuid);
|
|
serverConnection.onmessage = gotMessageFromServer;
|
|
|
|
var constraints = {
|
|
video: true,
|
|
audio: true,
|
|
};
|
|
|
|
if(navigator.mediaDevices.getUserMedia) {
|
|
navigator.mediaDevices.getUserMedia(constraints).then(getUserMediaSuccess).catch(errorHandler);
|
|
} else {
|
|
alert('Your browser does not support getUserMedia API');
|
|
}
|
|
}
|
|
|
|
function getUserMediaSuccess(stream) {
|
|
localStream = stream;
|
|
localVideo.srcObject = stream;
|
|
}
|
|
|
|
function start(isCaller) {
|
|
peerConnection = new RTCPeerConnection(peerConnectionConfig);
|
|
peerConnection.onicecandidate = gotIceCandidate;
|
|
peerConnection.ontrack = gotRemoteStream;
|
|
peerConnection.addStream(localStream);
|
|
|
|
if(isCaller) {
|
|
peerConnection
|
|
.createOffer({
|
|
'iceRestart': true,
|
|
'voiceActivityDetection': true,
|
|
})
|
|
.then(createdDescription)
|
|
.catch(errorHandler);
|
|
}
|
|
}
|
|
|
|
function gotMessageFromServer(message) {
|
|
if(!peerConnection) start(false);
|
|
|
|
var signal = JSON.parse(message.data);
|
|
|
|
// Ignore messages from ourself
|
|
if(signal.uuid == uuid) return;
|
|
|
|
if(signal.sdp) {
|
|
peerConnection.setRemoteDescription(new RTCSessionDescription(signal.sdp)).then(function() {
|
|
// Only create answers in response to offers
|
|
if(signal.sdp.type == 'offer') {
|
|
peerConnection.createAnswer().then(createdDescription).catch(errorHandler);
|
|
}
|
|
}).catch(errorHandler);
|
|
} else if(signal.ice) {
|
|
peerConnection.addIceCandidate(new RTCIceCandidate(signal.ice)).catch(errorHandler);
|
|
}
|
|
}
|
|
|
|
function gotIceCandidate(event) {
|
|
if(event.candidate != null) {
|
|
serverConnection.send(JSON.stringify({'ice': event.candidate, 'uuid': uuid}));
|
|
}
|
|
}
|
|
|
|
function createdDescription(description) {
|
|
console.log('got description');
|
|
|
|
peerConnection
|
|
.setLocalDescription(description)
|
|
.then(function() {
|
|
serverConnection.send(JSON.stringify({
|
|
'sdp': peerConnection.localDescription,
|
|
'uuid': uuid,
|
|
}));
|
|
})
|
|
.catch(errorHandler);
|
|
}
|
|
|
|
function gotRemoteStream(event) {
|
|
console.log('got remote stream');
|
|
remoteVideo.srcObject = event.streams[0];
|
|
}
|
|
|
|
function errorHandler(error) {
|
|
console.log(error);
|
|
}
|
|
|
|
// Taken from http://stackoverflow.com/a/105074/515584
|
|
// Strictly speaking, it's not a real UUID, but it gets the job done here
|
|
function createUUID() {
|
|
function s4() {
|
|
return Math.floor((1 + Math.random()) * 0x10000).toString(16).substring(1);
|
|
}
|
|
|
|
return s4() + s4() + '-' + s4() + '-' + s4() + '-' + s4() + '-' + s4() + s4() + s4();
|
|
}
|