-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebrtc.js
204 lines (165 loc) · 5.59 KB
/
webrtc.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
import firebase from 'firebase/app';
import 'firebase/firestore';
import { setUpRoom, createRoom } from "./network";
let chatChannel;
const firebaseConfig = {
apiKey: "AIzaSyCmlUA-nwCjHoB-LQ2PS-a_A48BXYCut-Y",
authDomain: "webrtc-135a9.firebaseapp.com",
projectId: "webrtc-135a9",
storageBucket: "webrtc-135a9.appspot.com",
messagingSenderId: "446109055804",
appId: "1:446109055804:web:aadf33bd0d107bc8bafc39",
measurementId: "G-GRT5S9DKMX"
};
if (!firebase.apps.length) {
firebase.initializeApp(firebaseConfig);
}
const firestore = firebase.firestore();
const servers = {
iceServers: [{
urls: ['stun:stun1.l.google.com:19302', 'stun:stun2.l.google.com:19302'],
}, ],
iceCandidatePoolSize: 10,
};
// Global State
const pc = new RTCPeerConnection(servers);
let localStream = null;
let remoteStream = null;
// HTML elements
const webcamVideo = document.getElementById('webcamVideo');
const remoteVideo = document.getElementById('remoteVideo');
// 1. Setup media sources
async function initMeet() {
localStream = await navigator.mediaDevices.getUserMedia({ video: true, audio: true });
remoteStream = new MediaStream();
// Push tracks from local stream to peer connection
localStream.getTracks().forEach((track) => {
pc.addTrack(track, localStream);
});
// Pull tracks from remote stream, add to video stream
pc.ontrack = (event) => {
event.streams[0].getTracks().forEach((track) => {
remoteStream.addTrack(track);
});
};
webcamVideo.srcObject = localStream;
remoteVideo.srcObject = remoteStream;
const params = new URLSearchParams(window.location.search);
if (params.has("meetid")) {
let roomID = params.get("meetid");
pc.ondatachannel = f;
let callID = await setUpRoom(roomID);
await answerCall(callID);
} else {
chatChannel = pc.createDataChannel("chatChannel");
console.log("------------------------------------------")
console.log(chatChannel)
chatChannel.onmessage = (event) => {
$("#chat-space").append(`<div> ${event.data} </div>`)
}
chatChannel.onopen = () => {
$("#chat-space").append(`<div> joined the chat. </div>`)
}
chatChannel.onclose = () => {
$("#chat-space").append(`<div> left the chat. </div>`)
}
let offer = await createOffer();
let roomID = await createRoom(offer);
await setUpRoom(roomID);
alert(roomID);
}
$("#btn-send").click(() => {
let msg = $("#message").val();
let mes = `${localStorage.getItem("myID")}- says - ${msg}`;
$("#chat-space").append(`<div> ${mes} </div>`)
chatChannel.send(`${localStorage.getItem("myID")}- says - ${msg}`);
})
};
// 2. Create an offer
async function createOffer() {
// Reference Firestore collections for signaling
const callDoc = firestore.collection('calls').doc();
const offerCandidates = callDoc.collection('offerCandidates');
const answerCandidates = callDoc.collection('answerCandidates');
// Get candidates for caller, save to db
pc.onicecandidate = (event) => {
event.candidate && offerCandidates.add(event.candidate.toJSON());
};
// Create offer
const offerDescription = await pc.createOffer();
await pc.setLocalDescription(offerDescription);
const offer = {
sdp: offerDescription.sdp,
type: offerDescription.type,
};
await callDoc.set({ offer });
// Listen for remote answer
callDoc.onSnapshot((snapshot) => {
const data = snapshot.data();
if (!pc.currentRemoteDescription && data.answer) {
const answerDescription = new RTCSessionDescription(data.answer);
pc.setRemoteDescription(answerDescription);
console.log(data.answer);
}
});
// When answered, add candidate to peer connection
answerCandidates.onSnapshot((snapshot) => {
snapshot.docChanges().forEach((change) => {
if (change.type === 'added') {
const candidate = new RTCIceCandidate(change.doc.data());
console.log(change.doc.data());
pc.addIceCandidate(candidate);
$("#btn-send").prop('disabled', false);
showClient();
}
});
});
return callDoc.id;
};
// 3. Answer the call with the unique ID
async function answerCall(callId) {
const callDoc = firestore.collection('calls').doc(callId);
const answerCandidates = callDoc.collection('answerCandidates');
const offerCandidates = callDoc.collection('offerCandidates');
pc.onicecandidate = (event) => {
event.candidate && answerCandidates.add(event.candidate.toJSON());
};
const callData = (await callDoc.get()).data();
const offerDescription = callData.offer;
await pc.setRemoteDescription(new RTCSessionDescription(offerDescription));
const answerDescription = await pc.createAnswer();
await pc.setLocalDescription(answerDescription);
const answer = {
type: answerDescription.type,
sdp: answerDescription.sdp,
};
await callDoc.update({ answer });
offerCandidates.onSnapshot((snapshot) => {
snapshot.docChanges().forEach((change) => {
console.log(change);
if (change.type === 'added') {
let data = change.doc.data();
pc.addIceCandidate(new RTCIceCandidate(data));
showClient();
}
});
});
};
function showClient() {
remoteVideo.style.display = "flex";
}
function f (event) {
chatChannel = event.channel;
console.log(f);
chatChannel.onmessage = (event) => {
$("#chat-space").append(`<div> ${event.data} </div>`)
}
chatChannel.onopen = () => {
$("#chat-space").append(`<div> joined the chat. </div>`)
}
chatChannel.onclose = () => {
$("#chat-space").append(`<div> left the chat. </div>`)
}
$("#btn-send").prop('disabled', false);
}
export { initMeet }