forked from jitsi/lib-jitsi-meet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JitsiMeetJS.js
514 lines (445 loc) · 19.1 KB
/
JitsiMeetJS.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
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
/* global __filename */
import { createGetUserMediaEvent } from './service/statistics/AnalyticsEvents';
import AuthUtil from './modules/util/AuthUtil';
import * as ConnectionQualityEvents
from './service/connectivity/ConnectionQualityEvents';
import GlobalOnErrorHandler from './modules/util/GlobalOnErrorHandler';
import * as JitsiConferenceErrors from './JitsiConferenceErrors';
import * as JitsiConferenceEvents from './JitsiConferenceEvents';
import JitsiConnection from './JitsiConnection';
import * as JitsiConnectionErrors from './JitsiConnectionErrors';
import * as JitsiConnectionEvents from './JitsiConnectionEvents';
import JitsiMediaDevices from './JitsiMediaDevices';
import * as JitsiMediaDevicesEvents from './JitsiMediaDevicesEvents';
import JitsiRecorderErrors from './JitsiRecorderErrors';
import JitsiTrackError from './JitsiTrackError';
import * as JitsiTrackErrors from './JitsiTrackErrors';
import * as JitsiTrackEvents from './JitsiTrackEvents';
import * as JitsiTranscriptionStatus from './JitsiTranscriptionStatus';
import LocalStatsCollector from './modules/statistics/LocalStatsCollector';
import Recording from './modules/xmpp/recording';
import Logger from 'jitsi-meet-logger';
import * as MediaType from './service/RTC/MediaType';
import Resolutions from './service/RTC/Resolutions';
import { ParticipantConnectionStatus }
from './modules/connectivity/ParticipantConnectionStatus';
import RTC from './modules/RTC/RTC';
import browser from './modules/browser';
import RTCUIHelper from './modules/RTC/RTCUIHelper';
import ScriptUtil from './modules/util/ScriptUtil';
import Statistics from './modules/statistics/statistics';
import * as VideoSIPGWConstants from './modules/videosipgw/VideoSIPGWConstants';
const logger = Logger.getLogger(__filename);
// The amount of time to wait until firing
// JitsiMediaDevicesEvents.PERMISSION_PROMPT_IS_SHOWN event
const USER_MEDIA_PERMISSION_PROMPT_TIMEOUT = 1000;
/**
* Gets the next lowest desirable resolution to try for a camera. If the given
* resolution is already the lowest acceptable resolution, returns null.
*
* @param resolution the current resolution
* @return the next lowest resolution from the given one, or null if it is
* already the lowest acceptable resolution.
*/
function getLowerResolution(resolution) {
if (!Resolutions[resolution]) {
return null;
}
const order = Resolutions[resolution].order;
let res = null;
let resName = null;
Object.keys(Resolutions).forEach(r => {
const value = Resolutions[r];
if (!res || (res.order < value.order && value.order < order)) {
resName = r;
res = value;
}
});
if (resName === resolution) {
resName = null;
}
return resName;
}
/**
* Extracts from an 'options' objects with a specific format
* (TODO what IS the format?) the attributes which are to be logged in analytics
* events.
*
* @param options gum options (???)
* @returns {*} the attributes to attach to analytics events.
*/
function getAnalyticsAttributesFromOptions(options) {
const attributes = {
'audio_requested':
options.devices.includes('audio'),
'video_requested':
options.devices.includes('video'),
'screen_sharing_requested':
options.devices.includes('desktop')
};
if (attributes.video_requested) {
attributes.resolution = options.resolution;
}
return attributes;
}
/**
* The public API of the Jitsi Meet library (a.k.a. JitsiMeetJS).
*/
export default {
version: '{#COMMIT_HASH#}',
JitsiConnection,
constants: {
participantConnectionStatus: ParticipantConnectionStatus,
recordingStatus: Recording.status,
recordingTypes: Recording.types,
sipVideoGW: VideoSIPGWConstants,
transcriptionStatus: JitsiTranscriptionStatus
},
events: {
conference: JitsiConferenceEvents,
connection: JitsiConnectionEvents,
track: JitsiTrackEvents,
mediaDevices: JitsiMediaDevicesEvents,
connectionQuality: ConnectionQualityEvents
},
errors: {
conference: JitsiConferenceErrors,
connection: JitsiConnectionErrors,
recorder: JitsiRecorderErrors,
track: JitsiTrackErrors
},
errorTypes: {
JitsiTrackError
},
logLevels: Logger.levels,
mediaDevices: JitsiMediaDevices,
analytics: Statistics.analytics,
init(options) {
Statistics.init(options);
// Initialize global window.connectionTimes
// FIXME do not use 'window'
if (!window.connectionTimes) {
window.connectionTimes = {};
}
if (options.enableAnalyticsLogging !== true) {
logger.warn('Analytics disabled, disposing.');
this.analytics.dispose();
}
if (options.enableWindowOnErrorHandler) {
GlobalOnErrorHandler.addHandler(
this.getGlobalOnErrorHandler.bind(this));
}
// Log deployment-specific information, if available.
// Defined outside the application by individual deployments
const aprops = options.deploymentInfo;
if (aprops && Object.keys(aprops).length > 0) {
const logObject = {};
for (const attr in aprops) {
if (aprops.hasOwnProperty(attr)) {
logObject[attr] = aprops[attr];
}
}
logObject.id = 'deployment_info';
Statistics.sendLog(JSON.stringify(logObject));
}
if (this.version) {
const logObject = {
id: 'component_version',
component: 'lib-jitsi-meet',
version: this.version
};
Statistics.sendLog(JSON.stringify(logObject));
}
return RTC.init(options || {});
},
/**
* Returns whether the desktop sharing is enabled or not.
* @returns {boolean}
*/
isDesktopSharingEnabled() {
return RTC.isDesktopSharingEnabled();
},
setLogLevel(level) {
Logger.setLogLevel(level);
},
/**
* Sets the log level to the <tt>Logger</tt> instance with given id.
* @param {Logger.levels} level the logging level to be set
* @param {string} id the logger id to which new logging level will be set.
* Usually it's the name of the JavaScript source file including the path
* ex. "modules/xmpp/ChatRoom.js"
*/
setLogLevelById(level, id) {
Logger.setLogLevelById(level, id);
},
/**
* Registers new global logger transport to the library logging framework.
* @param globalTransport
* @see Logger.addGlobalTransport
*/
addGlobalLogTransport(globalTransport) {
Logger.addGlobalTransport(globalTransport);
},
/**
* Removes global logging transport from the library logging framework.
* @param globalTransport
* @see Logger.removeGlobalTransport
*/
removeGlobalLogTransport(globalTransport) {
Logger.removeGlobalTransport(globalTransport);
},
/**
* Creates the media tracks and returns them trough the callback.
* @param options Object with properties / settings specifying the tracks
* which should be created. should be created or some additional
* configurations about resolution for example.
* @param {Array} options.devices the devices that will be requested
* @param {string} options.resolution resolution constraints
* @param {bool} options.dontCreateJitsiTrack if <tt>true</tt> objects with
* the following structure {stream: the Media Stream, type: "audio" or
* "video", videoType: "camera" or "desktop"} will be returned trough the
* Promise, otherwise JitsiTrack objects will be returned.
* @param {string} options.cameraDeviceId
* @param {string} options.micDeviceId
* @param {object} options.desktopSharingExtensionExternalInstallation -
* enables external installation process for desktop sharing extension if
* the inline installation is not posible. The following properties should
* be provided:
* @param {intiger} interval - the interval (in ms) for
* checking whether the desktop sharing extension is installed or not
* @param {Function} checkAgain - returns boolean. While checkAgain()==true
* createLocalTracks will wait and check on every "interval" ms for the
* extension. If the desktop extension is not install and checkAgain()==true
* createLocalTracks will finish with rejected Promise.
* @param {Function} listener - The listener will be called to notify the
* user of lib-jitsi-meet that createLocalTracks is starting external
* extension installation process.
* NOTE: If the inline installation process is not possible and external
* installation is enabled the listener property will be called to notify
* the start of external installation process. After that createLocalTracks
* will start to check for the extension on every interval ms until the
* plugin is installed or until checkAgain return false. If the extension
* is found createLocalTracks will try to get the desktop sharing track and
* will finish the execution. If checkAgain returns false, createLocalTracks
* will finish the execution with rejected Promise.
*
* @param {boolean} (firePermissionPromptIsShownEvent) - if event
* JitsiMediaDevicesEvents.PERMISSION_PROMPT_IS_SHOWN should be fired
* @param originalOptions - internal use only, to be able to store the
* originally requested options.
* @returns {Promise.<{Array.<JitsiTrack>}, JitsiConferenceError>}
* A promise that returns an array of created JitsiTracks if resolved,
* or a JitsiConferenceError if rejected.
*/
createLocalTracks(
options = {}, firePermissionPromptIsShownEvent, originalOptions) {
let promiseFulfilled = false;
if (firePermissionPromptIsShownEvent === true) {
window.setTimeout(() => {
if (!promiseFulfilled) {
JitsiMediaDevices.emitEvent(
JitsiMediaDevicesEvents.PERMISSION_PROMPT_IS_SHOWN,
browser.getName());
}
}, USER_MEDIA_PERMISSION_PROMPT_TIMEOUT);
}
if (!window.connectionTimes) {
window.connectionTimes = {};
}
window.connectionTimes['obtainPermissions.start']
= window.performance.now();
return RTC.obtainAudioAndVideoPermissions(options)
.then(tracks => {
promiseFulfilled = true;
window.connectionTimes['obtainPermissions.end']
= window.performance.now();
Statistics.sendAnalytics(
createGetUserMediaEvent(
'success',
getAnalyticsAttributesFromOptions(options)));
if (!RTC.options.disableAudioLevels) {
for (let i = 0; i < tracks.length; i++) {
const track = tracks[i];
const mStream = track.getOriginalStream();
if (track.getType() === MediaType.AUDIO) {
Statistics.startLocalStats(mStream,
track.setAudioLevel.bind(track));
track.addEventListener(
JitsiTrackEvents.LOCAL_TRACK_STOPPED,
() => {
Statistics.stopLocalStats(mStream);
});
}
}
}
// set real device ids
const currentlyAvailableMediaDevices
= RTC.getCurrentlyAvailableMediaDevices();
if (currentlyAvailableMediaDevices) {
for (let i = 0; i < tracks.length; i++) {
const track = tracks[i];
track._setRealDeviceIdFromDeviceList(
currentlyAvailableMediaDevices);
}
}
return tracks;
})
.catch(error => {
promiseFulfilled = true;
if (error.name === JitsiTrackErrors.UNSUPPORTED_RESOLUTION
&& !browser.usesNewGumFlow()) {
const oldResolution = options.resolution || '720';
const newResolution = getLowerResolution(oldResolution);
if (newResolution !== null) {
options.resolution = newResolution;
logger.debug(
'Retry createLocalTracks with resolution',
newResolution);
Statistics.sendAnalytics(createGetUserMediaEvent(
'warning',
{
'old_resolution': oldResolution,
'new_resolution': newResolution,
reason: 'unsupported resolution'
}));
return this.createLocalTracks(
options,
undefined,
originalOptions || Object.assign({}, options));
}
// we tried everything, if there is a mandatory
// device id, remove it and let gum find a device to
// use
if (originalOptions
&& error.gum.constraints
&& error.gum.constraints.video
&& error.gum.constraints.video.mandatory
&& error.gum.constraints.video.mandatory.sourceId) {
originalOptions.cameraDeviceId = undefined;
return this.createLocalTracks(originalOptions);
}
}
if (error.name
=== JitsiTrackErrors.CHROME_EXTENSION_USER_CANCELED) {
// User cancelled action is not really an error, so only
// log it as an event to avoid having conference classified
// as partially failed
const logObject = {
id: 'chrome_extension_user_canceled',
message: error.message
};
Statistics.sendLog(JSON.stringify(logObject));
Statistics.sendAnalytics(
createGetUserMediaEvent(
'warning',
{
reason: 'extension install user canceled'
}));
} else if (error.name === JitsiTrackErrors.NOT_FOUND) {
// logs not found devices with just application log to cs
const logObject = {
id: 'usermedia_missing_device',
status: error.gum.devices
};
Statistics.sendLog(JSON.stringify(logObject));
const attributes
= getAnalyticsAttributesFromOptions(options);
attributes.reason = 'device not found';
attributes.devices = error.gum.devices.join('.');
Statistics.sendAnalytics(
createGetUserMediaEvent('error', attributes));
} else {
// Report gUM failed to the stats
Statistics.sendGetUserMediaFailed(error);
const attributes
= getAnalyticsAttributesFromOptions(options);
attributes.reason = error.name;
Statistics.sendAnalytics(
createGetUserMediaEvent('error', attributes));
}
window.connectionTimes['obtainPermissions.end']
= window.performance.now();
return Promise.reject(error);
});
},
/**
* Checks if its possible to enumerate available cameras/microphones.
* @returns {Promise<boolean>} a Promise which will be resolved only once
* the WebRTC stack is ready, either with true if the device listing is
* available available or with false otherwise.
* @deprecated use JitsiMeetJS.mediaDevices.isDeviceListAvailable instead
*/
isDeviceListAvailable() {
logger.warn('This method is deprecated, use '
+ 'JitsiMeetJS.mediaDevices.isDeviceListAvailable instead');
return this.mediaDevices.isDeviceListAvailable();
},
/**
* Returns true if changing the input (camera / microphone) or output
* (audio) device is supported and false if not.
* @params {string} [deviceType] - type of device to change. Default is
* undefined or 'input', 'output' - for audio output device change.
* @returns {boolean} true if available, false otherwise.
* @deprecated use JitsiMeetJS.mediaDevices.isDeviceChangeAvailable instead
*/
isDeviceChangeAvailable(deviceType) {
logger.warn('This method is deprecated, use '
+ 'JitsiMeetJS.mediaDevices.isDeviceChangeAvailable instead');
return this.mediaDevices.isDeviceChangeAvailable(deviceType);
},
/**
* Checks if the current environment supports having multiple audio
* input devices in use simultaneously.
*
* @returns {boolean} True if multiple audio input devices can be used.
*/
isMultipleAudioInputSupported() {
return this.mediaDevices.isMultipleAudioInputSupported();
},
/**
* Checks if local tracks can collect stats and collection is enabled.
*
* @param {boolean} True if stats are being collected for local tracks.
*/
isCollectingLocalStats() {
return Statistics.audioLevelsEnabled
&& LocalStatsCollector.isLocalStatsSupported();
},
/**
* Executes callback with list of media devices connected.
* @param {function} callback
* @deprecated use JitsiMeetJS.mediaDevices.enumerateDevices instead
*/
enumerateDevices(callback) {
logger.warn('This method is deprecated, use '
+ 'JitsiMeetJS.mediaDevices.enumerateDevices instead');
this.mediaDevices.enumerateDevices(callback);
},
/* eslint-disable max-params */
/**
* @returns function that can be used to be attached to window.onerror and
* if options.enableWindowOnErrorHandler is enabled returns
* the function used by the lib.
* (function(message, source, lineno, colno, error)).
*/
getGlobalOnErrorHandler(message, source, lineno, colno, error) {
logger.error(
`UnhandledError: ${message}`,
`Script: ${source}`,
`Line: ${lineno}`,
`Column: ${colno}`,
'StackTrace: ', error);
Statistics.reportGlobalError(error);
},
/* eslint-enable max-params */
/**
* Represents a hub/namespace for utility functionality which may be of
* interest to lib-jitsi-meet clients.
*/
util: {
AuthUtil,
RTCUIHelper,
ScriptUtil,
browser
}
};