-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.js
398 lines (293 loc) · 11.8 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
mdc.ripple.MDCRipple.attachTo(document.querySelector('.mdc-button'));
const configuration = {
iceServers: [
{
urls: [
'stun:stun1.l.google.com:19302',
'stun:stun2.l.google.com:19302',
],
},
],
iceCandidatePoolSize: 10,
};
let connectedUsers = {};
let localStream = null;
let roomId = null;
let roomRef = null;
let userId = null;
async function init() {
await openUserMedia();
document.querySelector('#hangupBtn').addEventListener('click', await hangUp);
document.querySelector('#createBtn').addEventListener('click', createRoom);
var url = new URL(window.location.href);
var roomParam = url.searchParams.get("room");
if (roomParam) {
await joinRoomById(roomParam)
}
}
async function createRoom() {
userId = 0;
document.querySelector('#createBtn').disabled = true;
document.querySelector('body').classList.add("in-call")
const db = firebase.firestore();
roomRef = await db.collection('rooms').doc();
await roomRef.set({
nextUserId: 1
})
await roomRef.collection('activeUsers').doc(`user${userId}`).set({ 'userId': userId });
console.log("room id: ", roomRef.id)
// copy room url
copyText = document.getElementById("currentRoomHidden");
copyText.type = "text"
copyText.value = `${location.protocol}//${location.host}${location.pathname}?room=${roomRef.id}`
copyText.select();
document.execCommand("copy")
copyText.type = "hidden"
alert("Room url copied. Share with your peer to join")
await listenNewConnections();
}
async function joinRoomById(roomId) {
document.querySelector('#createBtn').disabled = true;
const db = firebase.firestore();
roomRef = db.collection('rooms').doc(`${roomId}`);
const roomSnapshot = await roomRef.get();
console.log('Got room:', roomSnapshot.exists);
if (roomSnapshot.exists) {
userId = roomSnapshot.data().nextUserId;
await roomRef.update({ 'nextUserId': userId + 1 })
document.querySelector('body').classList.add('in-call');
document.querySelector(
'#currentRoom').innerText = `Current room: ${roomId}`;
await registerNewConnections();
await roomRef.collection('activeUsers').doc(`user${userId}`).set({ 'userId': userId });
await listenNewConnections();
} else {
alert("Room not found!")
window.location = `${location.protocol}//${location.host}${location.pathname}`
}
}
async function openUserMedia(e) {
let stream;
try {
stream = await navigator.mediaDevices.getUserMedia(
{
video: {
width: 360,
height: 240,
aspectRatio: 1.5,
frameRate: 25
},
audio: {
sampleSize: 16,
channelCount: 2,
echoCancellation: true
}
});
document.querySelector('#createBtn').disabled = false;
} catch (e) {
console.log(e)
alert(`Permission denied. Refresh to try again.`)
throw new Error("Something went badly wrong!");
}
document.querySelector('#localVideo').srcObject = stream;
localStream = stream;
console.log('Stream:', document.querySelector('#localVideo').srcObject);
}
async function listenNewConnections() {
roomRef.collection('connections').onSnapshot(snapshot => {
snapshot.docChanges().forEach(async change => {
if (change.type === 'added') {
let data = change.doc.data();
if (data.to === userId) {
const remoteStream = new MediaStream();
const videoElement = document.createElement('video');
videoElement.id = `remoteVideo-user${data.from}`;
videoElement.autoplay = true;
document.querySelector('#videos').appendChild(videoElement);
document.querySelector(`#remoteVideo-user${data.from}`).srcObject = remoteStream;
connectedUsers[data.from] = {};
connectedUsers[data.from].remoteTrack = remoteStream
console.log('Create PeerConnection with configuration: ', configuration);
const peerConnection = new RTCPeerConnection(configuration);
const connectionsCollection = roomRef.collection('connections');
const connectionRef = connectionsCollection.doc(`user${data.from}user${userId}`);
registerPeerConnectionListeners(peerConnection, data.from);
localStream.getTracks().forEach(track => {
peerConnection.addTrack(track, localStream);
});
// listening for remote tracks
peerConnection.addEventListener('track', event => {
console.log('Got remote track:', event.streams[0]);
event.streams[0].getTracks().forEach(track => {
console.log('Add a track to the remoteStream:', track);
connectedUsers[data.from].remoteTrack.addTrack(track);
});
});
// Code for collecting ICE candidates below
const calleeCandidatesCollection = connectionRef.collection('calleeCandidates');
peerConnection.addEventListener('icecandidate', event => {
if (!event.candidate) {
console.log('Got final candidate!');
return;
}
console.log('Got candidate: ', event.candidate);
calleeCandidatesCollection.add(event.candidate.toJSON());
});
// Code for receiving offer and then creating and sending SDP answer below
const connectionSnapshot = await connectionRef.get()
const offer = connectionSnapshot.data().offer
console.log('Got offer:', offer);
await peerConnection.setRemoteDescription(new RTCSessionDescription(offer));
const answer = await peerConnection.createAnswer();
console.log('Created answer:', answer);
await peerConnection.setLocalDescription(answer);
const roomWithAnswer = {
answer: {
type: answer.type,
sdp: answer.sdp,
},
};
await connectionRef.update(roomWithAnswer);
// Listening for remote ICE candidates below
connectionRef.collection('callerCandidates').onSnapshot(snapshot => {
snapshot.docChanges().forEach(async change => {
if (change.type === 'added') {
let data = change.doc.data();
console.log(`Got new remote ICE candidate: ${JSON.stringify(data)}`);
await peerConnection.addIceCandidate(new RTCIceCandidate(data));
}
});
});
connectedUsers[data.from].peerConnection = peerConnection
}
}
});
})
}
async function registerNewConnections() {
const activeUsers = await roomRef.collection('activeUsers').get();
activeUsers.forEach(async userSnap => {
const activeUser = userSnap.data();
const remoteStream = new MediaStream();
const videoElement = document.createElement('video');
videoElement.id = `remoteVideo-user${activeUser.userId}`;
videoElement.autoplay = true;
document.querySelector('#videos').appendChild(videoElement);
document.querySelector(`#remoteVideo-user${activeUser.userId}`).srcObject = remoteStream;
connectedUsers[activeUser.userId] = {};
connectedUsers[activeUser.userId].remoteTrack = remoteStream
console.log('Create PeerConnection with configuration: ', configuration);
const peerConnection = new RTCPeerConnection(configuration);
const connectionsCollection = roomRef.collection('connections');
const connectionRef = connectionsCollection.doc(`user${userId}user${activeUser.userId}`);
registerPeerConnectionListeners(peerConnection, activeUser.userId);
// ====================
// SENDING
// ====================
// setting local track in connection
localStream.getTracks().forEach(track => {
peerConnection.addTrack(track, localStream);
});
// Code for collecting and storing caller's ICE candidates below
const callerCandidatesCollection = connectionRef.collection('callerCandidates');
peerConnection.addEventListener('icecandidate', event => {
if (!event.candidate) {
console.log('Got final candidate!');
return;
}
console.log('Got candidate: ', event.candidate);
callerCandidatesCollection.add(event.candidate.toJSON());
});
// Code for creating and storing offer
const offer = await peerConnection.createOffer();
await peerConnection.setLocalDescription(offer);
console.log('Created offer:', offer);
const connectionWithOffer = {
'offer': {
type: offer.type,
sdp: offer.sdp,
},
'from': userId,
'to': activeUser.userId
};
await connectionRef.set(connectionWithOffer);
// ====================
// RECEIVING
// ====================
// listening for remote tracks
peerConnection.addEventListener('track', event => {
console.log('Got remote track:', event.streams[0]);
event.streams[0].getTracks().forEach(track => {
console.log('Add a track to the remoteStream:', track);
connectedUsers[activeUser.userId].remoteTrack.addTrack(track);
});
});
// Listening for remote session description (answer) below
connectionRef.onSnapshot(async snapshot => {
const data = snapshot.data();
if (!peerConnection.currentRemoteDescription && data && data.answer) {
console.log('Got remote description: ', data.answer);
const rtcSessionDescription = new RTCSessionDescription(data.answer);
await peerConnection.setRemoteDescription(rtcSessionDescription);
}
});
// Listen for remote ICE candidates below
connectionRef.collection('calleeCandidates').onSnapshot(snapshot => {
snapshot.docChanges().forEach(async change => {
if (change.type === 'added') {
let data = change.doc.data();
console.log(`Got new remote ICE candidate: ${JSON.stringify(data)}`);
await peerConnection.addIceCandidate(new RTCIceCandidate(data));
}
});
});
connectedUsers[activeUser.userId].peerConnection = peerConnection
// for each active user ends here
})
}
async function hangUp() {
const tracks = document.querySelector('#localVideo').srcObject.getTracks();
tracks.forEach(track => {
track.stop();
});
Object.keys(connectedUsers).forEach(user => {
if (connectedUsers[user].remoteStream) connectedUsers[user].remoteStream.getTracks().forEach(track => track.stop());
if (connectedUsers[user].peerConnection) connectedUsers[user].peerConnection.close()
console.log(`closing connection with ${user}`)
})
const activeUserSnap = await roomRef.collection('activeUsers').get()
if (activeUserSnap.size == 1) {
// if only one member is left, delete room
roomRef.delete()
.then(() => {
alert("room deleted")
window.location = `${location.protocol}//${location.host}${location.pathname}`
})
} else {
// many members are left, just remove this user
roomRef.collection('activeUsers').doc(`user${userId}`).delete()
.then(() => {
window.location = `${location.protocol}//${location.host}${location.pathname}`
})
}
}
function registerPeerConnectionListeners(peerConnection, id) {
peerConnection.addEventListener('icegatheringstatechange', () => {
console.log(
`ICE gathering state changed: ${peerConnection.iceGatheringState}`);
});
peerConnection.addEventListener('connectionstatechange', () => {
console.log(`Connection state change: ${peerConnection.connectionState}`);
if (peerConnection.connectionState === "disconnected") {
document.querySelector(`#remoteVideo-user${id}`).remove()
}
});
peerConnection.addEventListener('signalingstatechange', () => {
console.log(`Signaling state change: ${peerConnection.signalingState}`);
});
peerConnection.addEventListener('iceconnectionstatechange ', () => {
console.log(
`ICE connection state change: ${peerConnection.iceConnectionState}`);
});
}
init();