-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
415 lines (313 loc) · 10.5 KB
/
server.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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
// account 1
// const AZURE_TRANSLATOR_API_KEY = '1fa1772cb23d42d6a5b84cb94c006dd3';
// const AZURE_TRANSLATOR_API_ENDPOINT = 'https://api.cognitive.microsofttranslator.com/';
// const AZURE_TRANSLATOR_API_REGION = 'eastus';
// account 2
const AZURE_TRANSLATOR_API_KEY = '35d77e3b9e364a4f84f1bf0e49b5bba6';
const AZURE_TRANSLATOR_API_ENDPOINT = 'https://api.cognitive.microsofttranslator.com/';
const AZURE_TRANSLATOR_API_REGION = 'eastus';
const CHANNEL_ID = '7Pms31vn53VkwWTz';
const localVideo = document.getElementById('localVideo');
const remoteVideo = document.getElementById('remoteVideo');
const messageForm = document.getElementById('message-form');
const messageInput = document.getElementById('message-input');
const messages = document.getElementById('messages');
let videoDeviceId;
let localStream;
const drone = new Scaledrone(CHANNEL_ID);
const roomName = 'observable-' + (location.hash.substring(1) || 'public');
const configuration = {
iceServers: [{
urls: 'stun:stun.l.google.com:19302'
}]
};
let room;
let pc;
function onSuccess() {};
function onError(error) {
console.error(error);
};
drone.on('open', error => {
if (error) return console.error(error);
room = drone.subscribe(roomName);
room.on('open', error => {
if (error) onError(error);
});
room.on('members', members => {
const isOfferer = members.length > 1;
startWebRTC(isOfferer);
});
room.on('member_leave', ({
id
}) => {
console.log('Member left', id);
});
room.on('data', (data, member) => {
if (member && member.id !== drone.clientId) {
receivedMessage(data, false);
}
});
});
function sendMessage(message) {
drone.publish({
room: roomName,
message
});
}
function startWebRTC(isOfferer) {
pc = new RTCPeerConnection(configuration);
pc.onicecandidate = event => {
if (event.candidate) {
sendMessage({
'candidate': event.candidate
});
}
};
if (isOfferer) {
pc.onnegotiationneeded = () => {
pc.createOffer().then(localDescCreated).catch(onError);
}
}
pc.ontrack = event => {
const stream = event.streams[0];
if (!remoteVideo.srcObject || remoteVideo.srcObject.id !== stream.id) {
remoteVideo.srcObject = stream;
}
};
getStream()
.then(stream => {
localStream = stream;
localVideo.srcObject = localStream;
localStream.getTracks().forEach(track => pc.addTrack(track, localStream));
})
.catch(onError);
room.on('data', (message, client) => {
if (!client || client.id === drone.clientId) {
return;
}
if (message.sdp) {
pc.setRemoteDescription(new RTCSessionDescription(message.sdp), () => {
if (pc.remoteDescription.type === 'offer') {
pc.createAnswer().then(localDescCreated).catch(onError);
}
}, onError);
} else if (message.candidate) {
pc.addIceCandidate(
new RTCIceCandidate(message.candidate), onSuccess, onError
);
}
});
}
function localDescCreated(desc) {
pc.setLocalDescription(
desc,
() => sendMessage({
'sdp': pc.localDescription
}),
onError
);
}
// async function receivedMessage(message, isSentByMe) {
// const el = document.createElement('div');
// const language = document.getElementById('language').value;
// const detectedLanguage = await detectLanguage(message);
// const shouldTranslate = detectedLanguage !== language;
// const translatedMessage = shouldTranslate ? await translateMessage(message, language) : message;
//
// if (isSentByMe) {
// el.innerHTML = `<strong>ME:</strong> <span>${translatedMessage}</span>`;
// el.classList.add('sent-message');
// } else {
// el.innerHTML = `<strong>FRND:</strong> <span>${translatedMessage}</span>`;
// el.classList.add('received-message');
// if (shouldTranslate) {
// const originalTextEl = document.createElement('span');
// originalTextEl.classList.add('original-text');
// originalTextEl.innerHTML = `Original: ${message}`;
// el.appendChild(originalTextEl);
// }
// }
//
// messages.appendChild(el);
// messages.scrollTop = messages.scrollHeight;
// }
async function receivedMessage(message, isSentByMe) {
const el = document.createElement('div');
const language = document.getElementById('language').value;
if (isSentByMe) {
el.innerHTML = `<strong>ME:</strong> <span>${message}</span>`;
el.classList.add('sent-message');
} else {
const detectedLanguage = await detectLanguage(message);
const shouldTranslate = detectedLanguage !== language;
const translatedMessage = shouldTranslate ? await translateMessage(message, language) : message;
el.innerHTML = `<strong>FRND:</strong> <span>${translatedMessage}</span>`;
el.classList.add('received-message');
if (shouldTranslate) {
const originalTextEl = document.createElement('span');
originalTextEl.classList.add('original-text');
originalTextEl.innerHTML = `Original: ${message}`;
el.appendChild(originalTextEl);
}
}
messages.appendChild(el);
messages.scrollTop = messages.scrollHeight;
}
messageForm.addEventListener('submit', event => {
event.preventDefault();
const message = messageInput.value;
if (!message) {
return;
}
sendMessage(message);
//receivedMessage(message, true);
// const language = document.getElementById('language').value;
// translateMessage(message, language).then(translatedMessage => {
// receivedMessage(translatedMessage, true);
// messageInput.value = '';
// });
receivedMessage(message, true);
messageInput.value = '';
});
async function translateMessage(text, targetLanguage) {
const detectedLanguage = await detectLanguage(text);
if (detectedLanguage === targetLanguage) {
return text; // No need to translate if the detected language is the same as the target language
}
const url = `${AZURE_TRANSLATOR_API_ENDPOINT}/translate?api-version=3.0&to=${targetLanguage}`;
const body = [{
text: text
}];
const response = await fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Ocp-Apim-Subscription-Key': AZURE_TRANSLATOR_API_KEY,
'Ocp-Apim-Subscription-Region': AZURE_TRANSLATOR_API_REGION
},
body: JSON.stringify(body)
});
const result = await response.json();
if (result.error) {
console.error('Error translating message:', result.error);
return text;
}
return result[0].translations[0].text;
}
async function detectLanguage(text) {
const url = `${AZURE_TRANSLATOR_API_ENDPOINT}/detect?api-version=3.0`;
const body = [{
text: text
}];
const response = await fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Ocp-Apim-Subscription-Key': AZURE_TRANSLATOR_API_KEY,
'Ocp-Apim-Subscription-Region': AZURE_TRANSLATOR_API_REGION
},
body: JSON.stringify(body)
});
const result = await response.json();
if (result.error) {
console.error('Error detecting language:', result.error);
return 'en'; // Default to English if an error occurs
}
return result[0].language;
}
let isVideoOff = false;
async function switchCamera() {
// Get all video devices
const devices = await navigator.mediaDevices.enumerateDevices();
const videoDevices = devices.filter(device => device.kind === 'videoinput');
// Find the index of the current video device
const currentDeviceIndex = videoDevices.findIndex(device => device.deviceId === videoDeviceId);
// Determine the new video device
const newDevice = videoDevices[(currentDeviceIndex + 1) % videoDevices.length];
// Update the video device ID
videoDeviceId = newDevice.deviceId;
// Stop the old video tracks
localStream.getVideoTracks().forEach(track => track.stop());
// Get the new video stream
const newStream = await navigator.mediaDevices.getUserMedia({
audio: true,
video: { deviceId: videoDeviceId },
});
// Update the local video stream
localVideo.srcObject = newStream;
// Get the video track from the new stream
const newVideoTrack = newStream.getVideoTracks()[0];
// Replace the video track in the RTCPeerConnection
const sender = pc.getSenders().find(sender => sender.track.kind === 'video');
sender.replaceTrack(newVideoTrack);
// Update the local stream
localStream = newStream;
}
let isMuted = false;
function toggleMute() {
if (!localStream) {
return;
}
localStream.getAudioTracks().forEach(track => {
track.enabled = isMuted;
});
isMuted = !isMuted;
const muteImage = document.getElementById('mute-switch');
muteImage.src = isMuted ? 'images/mic-muted.png' : 'images/mic.png';
muteImage.alt = isMuted ? 'Unmute' : 'Mute';
}
// async function getStream(audioEnabled = true) {
// const constraints = {
// audio: audioEnabled,
// video: videoDeviceId ? { deviceId: videoDeviceId } : true
// };
//
// localStream = await navigator.mediaDevices.getUserMedia(constraints);
//
// // Update videoDeviceId with the current video device
// const currentVideoTrack = localStream.getVideoTracks()[0];
// videoDeviceId = currentVideoTrack.getSettings().deviceId;
//
// return localStream;
// }
async function getStream(audioEnabled = true) {
const constraints = {
audio: audioEnabled,
video: videoDeviceId ? { deviceId: videoDeviceId } : true
};
localStream = await navigator.mediaDevices.getUserMedia(constraints);
// Update videoDeviceId with the current video device
const currentVideoTrack = localStream.getVideoTracks()[0];
videoDeviceId = currentVideoTrack.getSettings().deviceId;
return localStream;
}
async function replaceStream(newStream) {
const oldStream = localStream;
localStream = newStream;
localVideo.srcObject = localStream;
if (!pc) {
return;
}
const senders = pc.getSenders();
newStream.getTracks().forEach(track => {
const sender = senders.find(s => s.track && s.track.kind === track.kind);
if (sender) {
sender.replaceTrack(track);
} else {
pc.addTrack(track, newStream);
}
});
oldStream.getTracks().forEach(track => track.stop());
}
// Test
async function testTranslationAPI() {
const testText = 'This is just a test to see if this works...';
const targetLanguage = 'es'; // Change to a different language code if needed
try {
const translatedText = await translateMessage(testText, targetLanguage);
console.log(`Translation test result: '${testText}' translated to '${translatedText}'`);
} catch (error) {
console.error('Error testing translation API:', error);
}
}
testTranslationAPI();