/* vim: set sts=4 sw=4 et : * * Demo Javascript app for negotiating and streaming a sendrecv webrtc stream * with a GStreamer app. Runs only in passive mode, i.e., responds to offers * with answers, exchanges ICE candidates, and streams. * * Author: Nirbheek Chauhan */ // Set this to override the automatic detection in websocketServerConnect() var ws_server; var ws_port; // Set this to use a specific peer id instead of a random one var peer_id; // Override with your own STUN servers if you want var rtc_configuration = {iceServers: [{urls: "stun:stun.services.mozilla.com"}, {urls: "stun:stun.l.google.com:19302"}]}; // The default constraints that will be attempted. Can be overriden by the user. var default_constraints = {video: true, audio: true}; var connect_attempts = 0; var peer_connection; var ws_conn; // Promise for local stream after constraints are approved by the user var local_stream_promise; function getOurId() { return Math.floor(Math.random() * (9000 - 10) + 10).toString(); } function resetState() { // This will call onServerClose() ws_conn.close(); } function handleIncomingError(error) { setError("ERROR: " + error); resetState(); } function getVideoElement() { return document.getElementById("stream"); } function setStatus(text) { console.log(text); span = document.getElementById("status") // Don't set the status if it already contains an error if (!span.classList.contains('error')) span.textContent = text; } function setError(text) { console.log(text); span = document.getElementById("status") span.textContent = text; span.classList.add('error'); } function resetVideo() { // Release the webcam and mic local_stream_promise.then(stream => { stream.stop(); }); // Reset the video element and stop showing the last received frame var videoElement = getVideoElement(); videoElement.pause(); videoElement.src = ""; videoElement.load(); } // SDP offer received from peer, set remote description and create an answer function onIncomingSDP(sdp) { console.log("Incoming SDP is "+ JSON.stringify(sdp)); peer_connection.setRemoteDescription(sdp).then(() => { setStatus("Remote SDP set"); if (sdp.type != "offer") return; setStatus("Got SDP offer"); local_stream_promise.then((stream) => { setStatus("Got local stream, creating answer"); peer_connection.createAnswer() .then(onLocalDescription).catch(setError); }).catch(setError); }).catch(setError); } // Local description was set, send it to peer function onLocalDescription(desc) { console.log("Got local description: " + JSON.stringify(desc)); peer_connection.setLocalDescription(desc).then(function() { setStatus("Sending SDP answer"); sdp = {'sdp': peer_connection.localDescription} ws_conn.send(JSON.stringify(sdp)); }); } // ICE candidate received from peer, add it to the peer connection function onIncomingICE(ice) { console.log("Incoming ICE: " + JSON.stringify(ice)); var candidate = new RTCIceCandidate(ice); peer_connection.addIceCandidate(candidate).catch(setError); } function onServerMessage(event) { console.log("Received " + event.data); switch (event.data) { case "HELLO": setStatus("Registered with server, waiting for call"); return; default: if (event.data.startsWith("ERROR")) { handleIncomingError(event.data); return; } // Handle incoming JSON SDP and ICE messages try { msg = JSON.parse(event.data); } catch (e) { if (e instanceof SyntaxError) { handleIncomingError("Error parsing incoming JSON: " + event.data); } else { handleIncomingError("Unknown error parsing response: " + event.data); } return; } // Incoming JSON signals the beginning of a call if (peer_connection == null) createCall(msg); if (msg.sdp != null) { onIncomingSDP(msg.sdp); } else if (msg.ice != null) { onIncomingICE(msg.ice); } else { handleIncomingError("Unknown incoming JSON: " + msg); } } } function onServerClose(event) { resetVideo(); if (peer_connection != null) { peer_connection.close(); peer_connection = null; } // Reset after a second window.setTimeout(websocketServerConnect, 1000); } function onServerError(event) { setError("Unable to connect to server, did you add an exception for the certificate?") // Retry after 3 seconds window.setTimeout(websocketServerConnect, 3000); } function getLocalStream() { var textarea = document.getElementById('constraints'); var constraints = JSON.parse(textarea.value); console.log(JSON.stringify(constraints)); // Add local stream if (navigator.mediaDevices.getUserMedia) { return navigator.mediaDevices.getUserMedia(constraints); } else { errorUserMediaHandler(); } } function websocketServerConnect() { connect_attempts++; if (connect_attempts > 3) { setError("Too many connection attempts, aborting. Refresh page to try again"); return; } // Populate constraints var textarea = document.getElementById('constraints'); if (textarea.value == '') textarea.value = JSON.stringify(default_constraints); // Fetch the peer id to use peer_id = peer_id || getOurId(); ws_server = ws_server; ws_port = ws_port || '8443'; if (window.location.protocol.startsWith ("file")) { ws_server = ws_server || "127.0.0.1"; } else if (window.location.protocol.startsWith ("http")) { ws_server = ws_server || window.location.hostname; } else { throw new Error ("Don't know how to connect to the signalling server with uri" + window.location); } var ws_url = 'wss://' + ws_server + ':' + ws_port setStatus("Connecting to server " + ws_url); ws_conn = new WebSocket(ws_url); /* When connected, immediately register with the server */ ws_conn.addEventListener('open', (event) => { document.getElementById("peer-id").textContent = peer_id; ws_conn.send('HELLO ' + peer_id); setStatus("Registering with server"); }); ws_conn.addEventListener('error', onServerError); ws_conn.addEventListener('message', onServerMessage); ws_conn.addEventListener('close', onServerClose); } function onRemoteStreamAdded(event) { videoTracks = event.stream.getVideoTracks(); audioTracks = event.stream.getAudioTracks(); if (videoTracks.length > 0) { console.log('Incoming stream: ' + videoTracks.length + ' video tracks and ' + audioTracks.length + ' audio tracks'); getVideoElement().srcObject = event.stream; } else { handleIncomingError('Stream with unknown tracks added, resetting'); } } function errorUserMediaHandler() { setError("Browser doesn't support getUserMedia!"); } function createCall(msg) { // Reset connection attempts because we connected successfully connect_attempts = 0; console.log('Creating RTCPeerConnection'); peer_connection = new RTCPeerConnection(rtc_configuration); peer_connection.onaddstream = onRemoteStreamAdded; /* Send our video/audio to the other peer */ local_stream_promise = getLocalStream().then((stream) => { console.log('Adding local stream'); peer_connection.addStream(stream); return stream; }).catch(setError); if (!msg.sdp) { console.log("WARNING: First message wasn't an SDP message!?"); } peer_connection.onicecandidate = (event) => { // We have a candidate, send it to the remote party with the // same uuid if (event.candidate == null) { console.log("ICE Candidate was null, done"); return; } ws_conn.send(JSON.stringify({'ice': event.candidate})); }; setStatus("Created peer connection for call, waiting for SDP"); }