forked from webrtc/samples
-
Notifications
You must be signed in to change notification settings - Fork 20
/
adapter.js
473 lines (435 loc) · 17.9 KB
/
adapter.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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
/*
* Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
* Copyright (c) 2014-2016 Doubango Telecom. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree.
*/
var RTCPeerConnection = null;
var getUserMedia = null;
var attachMediaStream = null;
var drawImage = null;
var reattachMediaStream = null;
var webrtcDetectedBrowser = null;
var webrtcDetectedVersion = null;
window.performance = window.performance || {} ;
window.performance.now = window.performance.now || (function () { var now = Date.now(); return function () { return Date.now() - now; } })();
window.URL = window.URL || window.webkitURL;
function trace(text) {
// This function is used for logging.
if (text[text.length - 1] == '\n') {
text = text.substring(0, text.length - 1);
}
console.log((performance.now() / 1000).toFixed(3) + ": " + text);
}
function maybeFixConfiguration(pcConfig) {
if (!pcConfig) {
return;
}
for (var i = 0; i < pcConfig.iceServers.length; i++) {
if (pcConfig.iceServers[i].hasOwnProperty('urls')){
pcConfig.iceServers[i]['url'] = pcConfig.iceServers[i]['urls'];
delete pcConfig.iceServers[i]['urls'];
}
}
}
drawImage = function (context, video, x, y, width, height) {
context.drawImage(video, x, y, width, height);
}
attachEventListener = function (video, type, listener, useCapture) {
video.addEventListener(type, listener, useCapture);
}
if (navigator.mozGetUserMedia) {
console.log("This appears to be Firefox");
webrtcDetectedBrowser = "firefox";
webrtcDetectedVersion =
parseInt(navigator.userAgent.match(/Firefox\/([0-9]+)\./)[1], 10);
// The RTCPeerConnection object.
var RTCPeerConnection = function(pcConfig, pcConstraints) {
// .urls is not supported in FF yet.
maybeFixConfiguration(pcConfig);
return new mozRTCPeerConnection(pcConfig, pcConstraints);
}
// The RTCSessionDescription object.
RTCSessionDescription = mozRTCSessionDescription;
// The RTCIceCandidate object.
RTCIceCandidate = mozRTCIceCandidate;
// Get UserMedia (only difference is the prefix).
// Code from Adam Barth.
getUserMedia = navigator.mozGetUserMedia.bind(navigator);
navigator.getUserMedia = getUserMedia;
// Creates iceServer from the url for FF.
createIceServer = function(url, username, password) {
var iceServer = null;
var url_parts = url.split(':');
if (url_parts[0].indexOf('stun') === 0) {
// Create iceServer with stun url.
iceServer = { 'url': url };
} else if (url_parts[0].indexOf('turn') === 0) {
if (webrtcDetectedVersion < 27) {
// Create iceServer with turn url.
// Ignore the transport parameter from TURN url for FF version <=27.
var turn_url_parts = url.split("?");
// Return null for createIceServer if transport=tcp.
if (turn_url_parts.length === 1 ||
turn_url_parts[1].indexOf('transport=udp') === 0) {
iceServer = {'url': turn_url_parts[0],
'credential': password,
'username': username};
}
} else {
// FF 27 and above supports transport parameters in TURN url,
// So passing in the full url to create iceServer.
iceServer = {'url': url,
'credential': password,
'username': username};
}
}
return iceServer;
};
createIceServers = function(urls, username, password) {
var iceServers = [];
// Use .url for FireFox.
for (i = 0; i < urls.length; i++) {
var iceServer = createIceServer(urls[i],
username,
password);
if (iceServer !== null) {
iceServers.push(iceServer);
}
}
return iceServers;
}
// Attach a media stream to an element.
attachMediaStream = function(element, stream) {
console.log("Attaching media stream");
element.mozSrcObject = stream;
element.play();
return element;
};
reattachMediaStream = function(to, from) {
console.log("Reattaching media stream");
to.mozSrcObject = from.mozSrcObject;
to.play();
};
} else if (navigator.webkitGetUserMedia) {
console.log("This appears to be Chrome");
webrtcDetectedBrowser = "chrome";
// Temporary fix until crbug/374263 is fixed.
// Setting Chrome version to 999, if version is unavailable.
var result = navigator.userAgent.match(/Chrom(e|ium)\/([0-9]+)\./);
if (result !== null) {
webrtcDetectedVersion = parseInt(result[2], 10);
} else {
webrtcDetectedVersion = 999;
}
// Creates iceServer from the url for Chrome M33 and earlier.
createIceServer = function(url, username, password) {
var iceServer = null;
var url_parts = url.split(':');
if (url_parts[0].indexOf('stun') === 0) {
// Create iceServer with stun url.
iceServer = { 'url': url };
} else if (url_parts[0].indexOf('turn') === 0) {
// Chrome M28 & above uses below TURN format.
iceServer = {'url': url,
'credential': password,
'username': username};
}
return iceServer;
};
// Creates iceServers from the urls for Chrome M34 and above.
createIceServers = function(urls, username, password) {
var iceServers = [];
if (webrtcDetectedVersion >= 34) {
// .urls is supported since Chrome M34.
iceServers = {'urls': urls,
'credential': password,
'username': username };
} else {
for (i = 0; i < urls.length; i++) {
var iceServer = createIceServer(urls[i],
username,
password);
if (iceServer !== null) {
iceServers.push(iceServer);
}
}
}
return iceServers;
};
// The RTCPeerConnection object.
var RTCPeerConnection = function(pcConfig, pcConstraints) {
// .urls is supported since Chrome M34.
if (webrtcDetectedVersion < 34) {
maybeFixConfiguration(pcConfig);
}
return new webkitRTCPeerConnection(pcConfig, pcConstraints);
}
// Get UserMedia (only difference is the prefix).
// Code from Adam Barth.
getUserMedia = navigator.webkitGetUserMedia.bind(navigator);
navigator.getUserMedia = getUserMedia;
// Attach a media stream to an element.
attachMediaStream = function(element, stream) {
if (typeof element.srcObject !== 'undefined') {
element.srcObject = stream;
} else if (typeof element.mozSrcObject !== 'undefined') {
element.mozSrcObject = stream;
} else if (typeof element.src !== 'undefined') {
if (stream) {
element.src = URL.createObjectURL(stream);
}
else if (element.src && typeof URL.revokeObjectURL !== 'undefined') {
// createObjectURL(null) -> Failed to execute 'createObjectURL' on 'URL': No function was found that matched the signature provided.
URL.revokeObjectURL(element.src);
element.src = null;
}
} else {
console.log('Error attaching stream to element.');
}
return element;
};
reattachMediaStream = function(to, from) {
to.src = from.src;
};
} else {
var console = console || {
"log": function(msg) {}
};
var createIceServer = function (url, username, password) {
var url_parts = url.split(':');
if (url_parts[0].indexOf('stun') === 0) {
return { 'url': url };
} else if (url_parts[0].indexOf('turn') === 0) {
return {
'url': url,
'credential': password,
'username': username
};
}
return null;
};
var extractPluginObj = function (elt) {
return elt.isWebRtcPlugin ? elt : elt.pluginObj;
}
var attachEventListener = function (elt, type, listener, useCapture) {
var _pluginObj = extractPluginObj(elt);
if (_pluginObj) {
_pluginObj.bindEventListener(type, listener, useCapture);
}
else {
if (typeof elt.addEventListener !== "undefined") {
elt.addEventListener(type, listener, useCapture);
}
else if (typeof elt.addEvent !== "undefined") {
elt.addEventListener("on" + type, listener, useCapture);
}
}
}
function getPlugin() {
return document.getElementById('WebrtcEverywherePluginId');
}
var installPlugin = function () {
if (document.getElementById("WebrtcEverywherePluginId")) {
return;
}
console.log("installPlugin() called");
var isInternetExplorer = !!((Object.getOwnPropertyDescriptor && Object.getOwnPropertyDescriptor(window, "ActiveXObject")) || ("ActiveXObject" in window));
var isSafari = !!navigator.userAgent.indexOf('Safari');
var pluginObj = document.createElement('object');
if (isInternetExplorer) {
pluginObj.setAttribute('classid', 'CLSID:7FD49E23-C8D7-4C4F-93A1-F7EACFA1EC53');
isInternetExplorer = true;
} else {
pluginObj.setAttribute('type', 'application/webrtc-everywhere');
}
pluginObj.setAttribute('id', 'WebrtcEverywherePluginId');
document.body.appendChild(pluginObj);
pluginObj.setAttribute('width', '0');
pluginObj.setAttribute('height', '0');
if (pluginObj.isWebRtcPlugin || (typeof navigator.plugins !== "undefined" && (!!navigator.plugins["WebRTC Everywhere"] || navigator.plugins["WebRTC Everywhere Plug-in for Safari"]))) {
console.log("Plugin version: " + pluginObj.versionName + ", adapter version: 1.3.1");
if (isInternetExplorer) {
console.log("This appears to be Internet Explorer");
webrtcDetectedBrowser = "Internet Explorer";
}
else if (isSafari) {
console.log("This appears to be Safari");
webrtcDetectedBrowser = "Safari";
}
else; // any other NAPAPI-capable browser comes here
}
else {
console.log("Browser does not appear to be WebRTC-capable");
}
} // end-of-installPlugin()
if (document.body) {
installPlugin();
}
else {
attachEventListener(window, "load", function () {
console.log("onload");
installPlugin();
});
attachEventListener(document, "readystatechange", function () {
console.log("onreadystatechange:" + document.readyState);
if (document.readyState == "complete") {
installPlugin();
}
});
}
var getUserMediaDelayed;
getUserMedia = navigator.getUserMedia = function (constraints, successCallback, errorCallback) {
if (document.readyState !== "complete") {
console.log("readyState = " + document.readyState + ", delaying getUserMedia...");
if (!getUserMediaDelayed) {
getUserMediaDelayed = true;
attachEventListener(document, "readystatechange", function () {
if (getUserMediaDelayed && document.readyState == "complete") {
getUserMediaDelayed = false;
getPlugin().getUserMedia(constraints, successCallback, errorCallback);
}
});
}
}
else {
getPlugin().getUserMedia(constraints, successCallback, errorCallback);
}
}
attachMediaStream = function(element, stream) {
console.log("Attaching media stream");
if (!element) {
return null;
}
if (element.isWebRtcPlugin) {
element.src = stream;
return element;
}
else if (element.nodeName.toLowerCase() === 'video') {
if (!element.pluginObj && stream) {
var _pluginObj = document.createElement('object');
var _isIE = (Object.getOwnPropertyDescriptor && Object.getOwnPropertyDescriptor(window, "ActiveXObject")) || ("ActiveXObject" in window);
if (_isIE) {
// windowless
var windowlessParam = document.createElement("param");
windowlessParam.setAttribute('name', 'windowless');
windowlessParam.setAttribute('value', true);
_pluginObj.appendChild(windowlessParam);
_pluginObj.setAttribute('classid', 'CLSID:7FD49E23-C8D7-4C4F-93A1-F7EACFA1EC53');
} else {
_pluginObj.setAttribute('type', 'application/webrtc-everywhere');
}
element.pluginObj = _pluginObj;
_pluginObj.setAttribute('className', element.className);
_pluginObj.setAttribute('innerHTML', element.innerHTML);
var width = element.getAttribute("width");
var height = element.getAttribute("height");
var bounds = element.getBoundingClientRect();
if (!width) width = bounds.right - bounds.left;
if (!height) height = bounds.bottom - bounds.top;
if ("getComputedStyle" in window) {
var computedStyle = window.getComputedStyle(element, null);
if (!width && computedStyle.width != 'auto' && computedStyle.width != '0px') {
width = computedStyle.width;
}
if (!height && computedStyle.height != 'auto' && computedStyle.height != '0px') {
height = computedStyle.height;
}
}
if (width) _pluginObj.setAttribute('width', width);
else _pluginObj.setAttribute('autowidth', true);
if (height) _pluginObj.setAttribute('height', height);
else _pluginObj.setAttribute('autoheight', true);
document.body.appendChild(_pluginObj);
if (element.parentNode) {
element.parentNode.replaceChild(_pluginObj, element); // replace (and remove) element
// add element again to be sure any query() will succeed
document.body.appendChild(element);
element.style.visibility = "hidden";
}
}
if (element.pluginObj) {
element.pluginObj.bindEventListener('play', function(objvid) {
if (element.pluginObj) {
if (element.pluginObj.getAttribute("autowidth") && objvid.videoWidth) {
element.pluginObj.setAttribute('width', objvid.videoWidth/* + "px"*/);
}
if (element.pluginObj.getAttribute("autoheight") && objvid.videoHeight) {
element.pluginObj.setAttribute('height', objvid.videoHeight/* + "px"*/);
}
}
});
element.pluginObj.src = stream;
}
return element.pluginObj;
}
else if (element.nodeName.toLowerCase() === 'audio') {
return element;
}
};
//TODO: not implemented yet beacuse "src" property is readonly
//reattachMediaStream = function(to, from) {
// var pluginObjTo = extractPluginObj(to);
// var pluginObjFrom = extractPluginObj(from);
// if (pluginObjTo && pluginObjFrom) {
// pluginObjTo.src = pluginObjFrom.src;
// }
// };
drawImage = function (context, video, x, y, width, height) {
var pluginObj = extractPluginObj(video);
if (pluginObj && pluginObj.isWebRtcPlugin && pluginObj.videoWidth > 0 && pluginObj.videoHeight > 0) {
if (typeof pluginObj.getScreenShot !== "undefined") {
var bmpBase64 = pluginObj.getScreenShot();
if (bmpBase64) {
var image = new Image();
image.onload = function () {
context.drawImage(image, 0, 0, width, height);
};
image.src = "data:image/png;base64," + bmpBase64;
}
}
else {
var imageData = context.createImageData(pluginObj.videoWidth, pluginObj.videoHeight);
if (imageData) {
pluginObj.fillImageData(imageData);
context.putImageData(imageData, x, y/*, width, height*/);
}
}
}
}
// http://www.w3.org/TR/mediacapture-streams/#idl-def-MediaStreamTrack
MediaStreamTrack = {};
var getSourcesDelayed;
MediaStreamTrack.getSources = function (gotSources) { // not part of the standard (at least, haven't found it)
if (document.readyState !== "complete") {
console.log("readyState = " + document.readyState + ", delaying getSources...");
if (!getSourcesDelayed) {
getSourcesDelayed = true;
attachEventListener(document, "readystatechange", function () {
if (getSourcesDelayed && document.readyState == "complete") {
getSourcesDelayed = false;
getPlugin().getSources(gotSources);
}
});
}
}
else {
getPlugin().getSources(gotSources);
}
}
// http://www.w3.org/TR/webrtc/#interface-definition
// http://www.w3.org/TR/webrtc/#rtcpeerconnection-interface-extensions-2
RTCPeerConnection = function (configuration, constraints) {
return getPlugin().createPeerConnection(configuration, constraints);
}
// http://www.w3.org/TR/webrtc/#rtcicecandidate-type
RTCIceCandidate = function (RTCIceCandidateInit) {
return getPlugin().createIceCandidate(RTCIceCandidateInit);
}
// http://www.w3.org/TR/webrtc/#session-description-model
RTCSessionDescription = function (RTCSessionDescriptionInit) {
return getPlugin().createSessionDescription(RTCSessionDescriptionInit);
}
}