-'use strict';
-
const internals = {
peers: {},
createAudioElement(source) {
+ const audioElement = document.createElement("audio");
+ audioElement.setAttribute("class", "junction-call-audio");
+ audioElement.autoplay = "autoplay";
+ audioElement.srcObject = source;
- const audioElement = document.createElement('audio');
- audioElement.setAttribute('class', 'junction-call-audio');
- audioElement.src = source;
- audioElement.autoplay = 'autoplay';
- document.querySelector('body').appendChild(audioElement);
+ document.querySelector("body").appendChild(audioElement);
return audioElement;
- }
+ },
};
-module.exports = {
- add(id, url) {
+export function addPeer({ peerId, mediaStream, onOffer, socket }) {
+ const peerConnection = new RTCPeerConnection(
+ { iceServers: internals.kIceServers },
+ { optional: [{ DtlsSrtpKeyAgreement: true }] },
+ );
- internals.peers[id] && this.remove(id);
- internals.peers[id] = internals.createAudioElement(url)
- },
+ internals.peers[peerId] = peerConnection;
+ mediaStream.getTracks().forEach((track) => {
+ peerConnection.addTrack(track, mediaStream);
+ });
- remove(id) {
+ peerConnection.onicecandidate = (event) => {
+ if (event.candidate) {
+ socket.emit("relayICECandidate", {
+ peerId: peerId,
+ candidate: event.candidate,
+ });
+ }
+ };
- internals.peers[id] && internals.peers[id].remove();
- delete internals.peers[id];
- },
+ const remoteStream = new MediaStream();
+ peerConnection.ontrack = (event) => {
+ remoteStream.addTrack(event.track);
+ const remoteAudioElement = new Audio();
+ remoteAudioElement.srcObject = remoteStream;
+ remoteAudioElement.play();
+ };
- count() {
+ peerConnection.onnegotiationneeded = async () => {
+ console.debug("Creating RTC offer to ", peerId);
+ const offer = await peerConnection.createOffer();
+ await peerConnection.setLocalDescription(offer);
- return Object.keys(internals.peers).length;
- },
+ onOffer({ peerId, offer });
+ };
- reset() {
+ console.info(`There are now ${countPeers()} participants`);
+}
- internals.peers = {};
- document.querySelectorAll('.junction-call-audio').forEach((audioElement) => audioElement.remove());
- }
-};
+export function removePeer({ peerId }) {
+ delete internals.peers[peerId];
+ console.info(`There are now ${countPeers()} participants`);
+}
+
+export async function answerPeerOffer({ peerId, offer }) {
+ const peerConnection = internals.peers[peerId];
+
+ const remoteDescription = new RTCSessionDescription(offer);
+ await peerConnection.setRemoteDescription(remoteDescription);
+
+ const answer = await peerConnection.createAnswer();
+ await peerConnection.setLocalDescription(answer);
+
+ return { peerId, answer };
+}
+
+export async function processPeerAnswer({ peerId, answer }) {
+ const peerConnection = internals.peers[peerId];
+ const remoteDescription = new RTCSessionDescription(answer);
+ await peerConnection.setRemoteDescription(remoteDescription);
+}
+
+export async function addIceCandidate({ peerId, candidate }) {
+ const peerConnection = internals.peers[peerId];
+ const iceCandidate = new RTCIceCandidate(candidate);
+ await peerConnection.addIceCandidate(iceCandidate);
+}
+
+export function countPeers() {
+ return Object.keys(internals.peers).length;
+}
+
+export function resetPeers() {
+ internals.peers = {};
+ document
+ .querySelectorAll(".junction-call-audio")
+ .forEach((audioElement) => audioElement.remove());
+}