forked from butorenjin/easyrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheasyrtc_sc.js
273 lines (219 loc) · 9.72 KB
/
easyrtc_sc.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
/* global define, module, require */
/*!
Script: easyrtc_sc.js
Patch easyrtc media constraints for sharing screen Chrome using
the experimental chromeMediaSource and chromeMediaSourceId
properties.
About: License
Copyright (c) 2016, Priologic Software Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
//RequireJS (AMD) build system
define(['easyrtc'], factory);
} else if (typeof module === 'object' && module.exports) {
//CommonJS build system
module.exports = factory(require('easyrtc'));
} else {
//Vanilla JS, ensure dependencies are loaded correctly
if (typeof window.easyrtc !== 'object' || !window.easyrtc) {
throw new Error("easyrtc_sc requires easyrtc");
}
root.easyrtc_sc = factory(window.easyrtc);
}
}(this, function (easyrtc, undefined) {
"use strict";
var easyrtc_sc;
var getUserMediaConstraints = easyrtc.getUserMediaConstraints;
easyrtc.getUserMediaConstraints = function () {
var constraints = getUserMediaConstraints();
// Apply screen constraints
if (
constraints.video &&
constraints.video.mandatory &&
constraints.video.mandatory.chromeMediaSource === 'screen' &&
easyrtc_sc.chromeMediaSource === 'desktop'
) {
constraints.video.mandatory.chromeMediaSource = easyrtc_sc.chromeMediaSource;
constraints.video.mandatory.chromeMediaSourceId = easyrtc_sc.chromeMediaSourceId;
}
return constraints;
};
/**
* EasyRTC Sceen Capture api.
* @note Require EasyRTC Chome Extension (see easyrtc_sc/README.md dir)
*/
easyrtc_sc = {
// chromeMedia extension prop
chromeMedia: null, // Chrome Extention listener
chromeMediaExtention: null, // Chrome Extention availability
chromeMediaSource: 'screen', // constraint value for video chromeMediaSource
chromeMediaSourceId: null, // constraint value for video chromeMediaSourceId
/**
* Request screenshare stream via EasyRTC chrome extension if available or
* fallback on chrome experimental screen share feature then fail if not avaialble.
* @param {function(Object)} successCallback - will be called with localmedia stream on success.
* @param {function(String,String)} errorCallback - is called with an error code and error description.
*
* @example
* easyrtc_sc.getUserScreen(
* function () {
* console.log('ok', arguments);
* },
* function (error) {
* console.log('error', error);
* }
* );
*/
getUserScreen: function (onSuccess, onFailure) {
function requestUserScreen() {
easyrtc.enableAudio(false);
easyrtc.enableVideo(true);
easyrtc.setScreenCapture();
easyrtc.initMediaSource(
onSuccess,
onFailure
);
}
function requestUserScreenId() {
// Handle Permission Denied Errore
if (easyrtc_sc.chromeMediaSource === 'PermissionDeniedError') {
onFailure('PermissionDeniedError');
} else if (easyrtc_sc.chromeMediaSourceId) {
requestUserScreen();
} else {
// Request extension chromeMediaSourceId value
if (easyrtc_sc.chromeMediaSourceId === null) {
window.postMessage('get-sourceId', '*');
easyrtc_sc.chromeMediaSourceId = false;
}
setTimeout(requestUserScreenId, 1000);
}
}
if (!easyrtc.supportsGetUserMedia()) {
onFailure("Do not support getUserMedia");
} else if (easyrtc.localScreenStream) {
if (onSuccess) {
// Make it async anyway
setTimeout(function () {
onSuccess(easyrtc_sc.localScreenStream);
});
}
} else {
easyrtc_sc.isChromeExtensionAvailable(function (isAvailable) {
if (isAvailable) {
requestUserScreenId();
} else {
requestUserScreen();
}
});
}
},
/**
* Install a chrome exention using appid.
* - Need to be inside a click event
* - App host need to be whitelisted inside appstore.
*
* @param {String} appid - google chrome webstore unique app id.
* @param {function(Object)} successCallback - will be called with localmedia stream on success.
* @param {function(String,String)} errorCallback - is called with an error code and error description.
*
* @example
*
* document.body.addEventListener('click', function () {
* easyrtc_sc.installChromeExtension(
* 'hpmoipogpkhegoblaoomcmjiijipjnfg',
* function () {
* console.log('ok', arguments);
* },
* function (error) {
* console.log('error', error);
* }
* );
* });
*/
installChromeExtension: function (appid, onSucess, onFailure) {
window.chrome.webstore.install(
'https://chrome.google.com/webstore/detail/'+ appid,
onSucess,
onFailure
);
},
/**
* Check if easyRTC Chrome version is valid and support chrome extension.
* @return bool true if valid else false.
*/
isChrome: function () {
return window.navigator.webkitGetUserMedia && window.chrome &&
window.chrome.webstore && window.chrome.webstore.install;
},
/**
* Check if easyRTC Chrome extension is available.
* @param {String} callback gets boolean, true if Chrome extension is available.
*/
isChromeExtensionAvailable: function (callback) {
callback = callback || function () {};
if (!easyrtc_sc.isChrome()) {
callback(false);
// Init postMessage listener
} else {
if (!easyrtc_sc.chromeMedia) {
// Save listener for future CG
easyrtc_sc.chromeMedia = easyrtc_sc.chromeExtentionListener.bind(easyrtc_sc);
window.addEventListener('message', easyrtc_sc.chromeMedia);
}
// Check cache
if (easyrtc_sc.chromeMediaExtention) {
callback(true);
// Send message to extension
} else {
// ask extension if it is available
window.postMessage('is-extension-loaded', '*');
// Under 2000 ms may create failure due chrome exention response delay.
setTimeout(function () {
easyrtc_sc.chromeMediaExtention = easyrtc_sc.chromeMediaSource === 'desktop';
callback(easyrtc_sc.chromeMediaExtention);
}, 2000);
}
}
},
chromeExtentionListener: function (event) {
if (event.origin !== window.location.origin) {
return;
}
// "cancel" button is clicked
if (event.data === 'PermissionDeniedError') {
easyrtc_sc.chromeMediaSource = 'PermissionDeniedError';
// extension notified his presence
} else if (event.data === 'extension-loaded') {
easyrtc_sc.chromeMediaSource = 'desktop';
// extension shared temp sourceId
} else if (event.data.chromeMediaSourceId) {
easyrtc_sc.chromeMediaSourceId = event.data.chromeMediaSourceId;
// Remove listener
window.removeEventListener('message', easyrtc_sc.chromeMedia);
easyrtc_sc.chromeMedia = null;
}
}
};
return easyrtc_sc;
}));