-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
JitsiMeetJS.ts
499 lines (435 loc) · 17.8 KB
/
JitsiMeetJS.ts
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
import Logger from '@jitsi/logger';
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 JitsiTrackError from './JitsiTrackError';
import * as JitsiTrackErrors from './JitsiTrackErrors';
import * as JitsiTrackEvents from './JitsiTrackEvents';
import * as JitsiTranscriptionStatus from './JitsiTranscriptionStatus';
import RTC from './modules/RTC/RTC';
import RTCStats from './modules/RTCStats/RTCStats';
import browser from './modules/browser';
import NetworkInfo from './modules/connectivity/NetworkInfo';
import { TrackStreamingStatus } from './modules/connectivity/TrackStreamingStatus';
import getActiveAudioDevice from './modules/detection/ActiveDeviceDetector';
import * as DetectionEvents from './modules/detection/DetectionEvents';
import TrackVADEmitter from './modules/detection/TrackVADEmitter';
import ProxyConnectionService
from './modules/proxyconnection/ProxyConnectionService';
import recordingConstants from './modules/recording/recordingConstants';
import Settings from './modules/settings/Settings';
import LocalStatsCollector from './modules/statistics/LocalStatsCollector';
import Statistics from './modules/statistics/statistics';
import ScriptUtil from './modules/util/ScriptUtil';
import * as VideoSIPGWConstants from './modules/videosipgw/VideoSIPGWConstants';
import AudioMixer from './modules/webaudio/AudioMixer';
import { MediaType } from './service/RTC/MediaType';
import * as ConnectionQualityEvents
from './service/connectivity/ConnectionQualityEvents';
import * as E2ePingEvents from './service/e2eping/E2ePingEvents';
import { createGetUserMediaEvent } from './service/statistics/AnalyticsEvents';
import * as RTCStatsEvents from './modules/RTCStats/RTCStatsEvents';
import { VideoType } from './service/RTC/VideoType';
import runPreCallTest, { IceServer, PreCallResult } from './modules/statistics/PreCallTest';
const logger = Logger.getLogger(__filename);
// Settin the default log levels to info early so that we avoid overriding a log level set externally.
Logger.setLogLevel(Logger.levels.INFO);
/**
* Indicates whether GUM has been executed or not.
*/
let hasGUMExecuted = false;
/**
* 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: any = {};
attributes['audio_requested'] = options.devices.includes('audio');
attributes['video_requested'] = options.devices.includes('video');
attributes['screen_sharing_requested'] = options.devices.includes('desktop');
if (attributes.video_requested) {
attributes.resolution = options.resolution;
}
return attributes;
}
interface ICreateLocalTrackOptions {
cameraDeviceId?: string;
devices?: any[];
firePermissionPromptIsShownEvent?: boolean;
fireSlowPromiseEvent?: boolean;
micDeviceId?: string;
resolution?: string;
}
interface IJitsiMeetJSOptions {
enableAnalyticsLogging?: boolean;
enableWindowOnErrorHandler?: boolean;
externalStorage?: Storage;
flags?: {
runInLiteMode?: boolean;
ssrcRewritingEnabled?: boolean;
}
}
interface ICreateLocalTrackFromMediaStreamOptions {
stream: MediaStream,
sourceType: string,
mediaType: MediaType,
videoType?: VideoType
}
/**
* The public API of the Jitsi Meet library (a.k.a. {@code JitsiMeetJS}).
*/
export default {
version: '{#COMMIT_HASH#}',
JitsiConnection,
/**
* {@code ProxyConnectionService} is used to connect a remote peer to a
* local Jitsi participant without going through a Jitsi conference. It is
* currently used for room integration development, specifically wireless
* screensharing. Its API is experimental and will likely change; usage of
* it is advised against.
*/
ProxyConnectionService,
constants: {
recording: recordingConstants,
sipVideoGW: VideoSIPGWConstants,
transcriptionStatus: JitsiTranscriptionStatus,
trackStreamingStatus: TrackStreamingStatus
},
events: {
conference: JitsiConferenceEvents,
connection: JitsiConnectionEvents,
detection: DetectionEvents,
track: JitsiTrackEvents,
mediaDevices: JitsiMediaDevicesEvents,
connectionQuality: ConnectionQualityEvents,
e2eping: E2ePingEvents,
rtcstats: RTCStatsEvents
},
errors: {
conference: JitsiConferenceErrors,
connection: JitsiConnectionErrors,
track: JitsiTrackErrors
},
errorTypes: {
JitsiTrackError
},
logLevels: Logger.levels,
mediaDevices: JitsiMediaDevices as unknown,
analytics: Statistics.analytics as unknown,
init(options: IJitsiMeetJSOptions = {}) {
// @ts-ignore
logger.info(`This appears to be ${browser.getName()}, ver: ${browser.getVersion()}`);
JitsiMediaDevices.init();
Settings.init(options.externalStorage);
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();
}
return RTC.init(options);
},
/**
* Returns whether the desktop sharing is enabled or not.
*
* @returns {boolean}
*/
isDesktopSharingEnabled() {
return RTC.isDesktopSharingEnabled();
},
/**
* Returns whether the current execution environment supports WebRTC (for
* use within this library).
*
* @returns {boolean} {@code true} if WebRTC is supported in the current
* execution environment (for use within this library); {@code false},
* otherwise.
*/
isWebRtcSupported() {
return RTC.isWebRtcSupported();
},
setLogLevel(level) {
Logger.setLogLevel(level);
},
/**
* Expose rtcstats to the public API.
*/
rtcstats: {
/**
* Sends identity data to the rtcstats server. This data is used
* to identify the specifics of a particular client, it can be any object
* and will show in the generated rtcstats dump under "identity" entries.
*
* @param {Object} identityData - Identity data to send.
* @returns {void}
*/
sendIdentityEntry(identityData) {
RTCStats.sendIdentity(identityData);
},
/**
* Sends a stats entry to rtcstats server.
* @param {string} statsType - The type of stats to send.
* @param {Object} data - The stats data to send.
*/
sendStatsEntry(statsType, data) {
RTCStats.sendStatsEntry(statsType, null, data);
},
/**
* Events generated by rtcstats, such as PeerConnections state,
* and websocket connection state.
*
* @param {RTCStatsEvents} event - The event name.
* @param {function} handler - The event handler.
*/
on(event, handler) {
RTCStats.events.on(event, handler);
}
},
/**
* 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);
},
/**
* Sets global options which will be used by all loggers. Changing these
* works even after other loggers are created.
*
* @param options
* @see Logger.setGlobalOptions
*/
setGlobalLogOptions(options) {
Logger.setGlobalOptions(options);
},
/**
* Creates local media tracks.
*
* @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.effects optional effects array for the track
* @param {boolean} options.firePermissionPromptIsShownEvent - if event
* JitsiMediaDevicesEvents.PERMISSION_PROMPT_IS_SHOWN should be fired
* @param {Array} options.devices the devices that will be requested
* @param {string} options.resolution resolution constraints
* @param {string} options.cameraDeviceId
* @param {string} options.micDeviceId
*
* @returns {Promise.<{Array.<JitsiTrack>}, JitsiConferenceError>} A promise
* that returns an array of created JitsiTracks if resolved, or a
* JitsiConferenceError if rejected.
*/
createLocalTracks(options: ICreateLocalTrackOptions = {}) {
const { firePermissionPromptIsShownEvent, ...restOptions } = options;
if (firePermissionPromptIsShownEvent && !RTC.arePermissionsGrantedForAvailableDevices()) {
// @ts-ignore
JitsiMediaDevices.emit(JitsiMediaDevicesEvents.PERMISSION_PROMPT_IS_SHOWN, browser.getName());
}
let isFirstGUM = false;
let startTS = window.performance.now();
if (!window.connectionTimes) {
window.connectionTimes = {};
}
if (!hasGUMExecuted) {
hasGUMExecuted = true;
isFirstGUM = true;
window.connectionTimes['firstObtainPermissions.start'] = startTS;
}
window.connectionTimes['obtainPermissions.start'] = startTS;
return RTC.obtainAudioAndVideoPermissions(restOptions)
.then(tracks => {
let endTS = window.performance.now();
window.connectionTimes['obtainPermissions.end'] = endTS;
if (isFirstGUM) {
window.connectionTimes['firstObtainPermissions.end'] = endTS;
}
Statistics.sendAnalytics(
createGetUserMediaEvent(
'success',
getAnalyticsAttributesFromOptions(restOptions)));
if (this.isCollectingLocalStats()) {
for (let i = 0; i < tracks.length; i++) {
const track = tracks[i];
if (track.getType() === MediaType.AUDIO) {
Statistics.startLocalStats(track,
track.setAudioLevel.bind(track));
}
}
}
// 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 => {
if (error.name === JitsiTrackErrors.SCREENSHARING_USER_CANCELED) {
Statistics.sendAnalytics(
createGetUserMediaEvent(
'warning',
{
reason: 'extension install user canceled'
}));
} else if (error.name === JitsiTrackErrors.NOT_FOUND) {
const attributes
= getAnalyticsAttributesFromOptions(options);
attributes.reason = 'device not found';
attributes.devices = error.gum.devices.join('.');
Statistics.sendAnalytics(
createGetUserMediaEvent('error', attributes));
} else {
const attributes
= getAnalyticsAttributesFromOptions(options);
attributes.reason = error.name;
Statistics.sendAnalytics(
createGetUserMediaEvent('error', attributes));
}
let endTS = window.performance.now();
window.connectionTimes['obtainPermissions.end'] = endTS;
if (isFirstGUM) {
window.connectionTimes['firstObtainPermissions.end'] = endTS;
}
return Promise.reject(error);
});
},
/**
* Manually create JitsiLocalTrack's from the provided track info, by exposing the RTC method
*
* @param {Array<ICreateLocalTrackFromMediaStreamOptions>} tracksInfo - array of track information
* @returns {Array<JitsiLocalTrack>} - created local tracks
*/
createLocalTracksFromMediaStreams(tracksInfo) {
return RTC.createLocalTracks(tracksInfo.map((trackInfo) => {
const tracks = trackInfo.stream.getTracks()
.filter(track => track.kind === trackInfo.mediaType);
if (!tracks || tracks.length === 0) {
throw new JitsiTrackError(JitsiTrackErrors.TRACK_NO_STREAM_TRACKS_FOUND, null, null);
}
if (tracks.length > 1) {
throw new JitsiTrackError(JitsiTrackErrors.TRACK_TOO_MANY_TRACKS_IN_STREAM, null, null);
}
trackInfo.track = tracks[0];
return trackInfo;
}));
},
/**
* Create a TrackVADEmitter service that connects an audio track to an VAD (voice activity detection) processor in
* order to obtain VAD scores for individual PCM audio samples.
* @param {string} localAudioDeviceId - The target local audio device.
* @param {number} sampleRate - Sample rate at which the emitter will operate. Possible values 256, 512, 1024,
* 4096, 8192, 16384. Passing other values will default to closes neighbor.
* I.e. Providing a value of 4096 means that the emitter will process 4096 PCM samples at a time, higher values mean
* longer calls, lowers values mean more calls but shorter.
* @param {Object} vadProcessor - VAD Processors that does the actual compute on a PCM sample.The processor needs
* to implement the following functions:
* - <tt>getSampleLength()</tt> - Returns the sample size accepted by calculateAudioFrameVAD.
* - <tt>getRequiredPCMFrequency()</tt> - Returns the PCM frequency at which the processor operates.
* i.e. (16KHz, 44.1 KHz etc.)
* - <tt>calculateAudioFrameVAD(pcmSample)</tt> - Process a 32 float pcm sample of getSampleLength size.
* @returns {Promise<TrackVADEmitter>}
*/
createTrackVADEmitter(localAudioDeviceId, sampleRate, vadProcessor) {
return TrackVADEmitter.create(localAudioDeviceId, sampleRate, vadProcessor);
},
/**
* Create AudioMixer, which is essentially a wrapper over web audio ChannelMergerNode. It essentially allows the
* user to mix multiple MediaStreams into a single one.
*
* @returns {AudioMixer}
*/
createAudioMixer() {
return new AudioMixer();
},
/**
* Go through all audio devices on the system and return one that is active, i.e. has audio signal.
*
* @returns Promise<Object> - Object containing information about the found device.
*/
getActiveAudioDevice() {
return getActiveAudioDevice();
},
/**
* 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();
},
/**
* Informs lib-jitsi-meet about the current network status.
*
* @param {object} state - The network info state.
* @param {boolean} state.isOnline - {@code true} if the internet connectivity is online or {@code false}
* otherwise.
*/
setNetworkInfo({ isOnline }) {
NetworkInfo.updateNetworkInfo({ isOnline });
},
/**
* Run a pre-call test to check the network conditions.
*
* @param {IceServer} iceServers - The ICE servers to use for the test,
* @returns {Promise<PreCallResult | any>} - A Promise that resolves with the test results or rejects with an error message.
*/
runPreCallTest(iceServers) {
return runPreCallTest(iceServers);
},
/**
* Represents a hub/namespace for utility functionality which may be of
* interest to lib-jitsi-meet clients.
*/
util: {
ScriptUtil,
browser
}
};