| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827 | 
							- /* global config, require, attachMediaStream, getUserMedia,
 -    RTCPeerConnection, RTCSessionDescription, RTCIceCandidate, MediaStreamTrack,
 -    mozRTCPeerConnection, mozRTCSessionDescription, mozRTCIceCandidate,
 -    webkitRTCPeerConnection, webkitMediaStream, webkitURL
 - */
 - /* jshint -W101 */
 - 
 - var logger = require("jitsi-meet-logger").getLogger(__filename);
 - var RTCBrowserType = require("./RTCBrowserType");
 - var Resolutions = require("../../service/RTC/Resolutions");
 - var RTCEvents = require("../../service/RTC/RTCEvents");
 - var AdapterJS = require("./adapter.screenshare");
 - var SDPUtil = require("../xmpp/SDPUtil");
 - var EventEmitter = require("events");
 - var screenObtainer = require("./ScreenObtainer");
 - var JitsiTrackErrors = require("../../JitsiTrackErrors");
 - 
 - var eventEmitter = new EventEmitter();
 - 
 - var devices = {
 -     audio: true,
 -     video: true
 - };
 - 
 - var rtcReady = false;
 - 
 - function setResolutionConstraints(constraints, resolution) {
 -     var isAndroid = RTCBrowserType.isAndroid();
 - 
 -     if (Resolutions[resolution]) {
 -         constraints.video.mandatory.minWidth = Resolutions[resolution].width;
 -         constraints.video.mandatory.minHeight = Resolutions[resolution].height;
 -     }
 -     else if (isAndroid) {
 -         // FIXME can't remember if the purpose of this was to always request
 -         //       low resolution on Android ? if yes it should be moved up front
 -         constraints.video.mandatory.minWidth = 320;
 -         constraints.video.mandatory.minHeight = 240;
 -         constraints.video.mandatory.maxFrameRate = 15;
 -     }
 - 
 -     if (constraints.video.mandatory.minWidth)
 -         constraints.video.mandatory.maxWidth =
 -             constraints.video.mandatory.minWidth;
 -     if (constraints.video.mandatory.minHeight)
 -         constraints.video.mandatory.maxHeight =
 -             constraints.video.mandatory.minHeight;
 - }
 - 
 - /**
 -  * @param {string[]} um required user media types
 -  *
 -  * @param {Object} [options={}] optional parameters
 -  * @param {string} options.resolution
 -  * @param {number} options.bandwidth
 -  * @param {number} options.fps
 -  * @param {string} options.desktopStream
 -  * @param {string} options.cameraDeviceId
 -  * @param {string} options.micDeviceId
 -  * @param {bool} firefox_fake_device
 -  */
 - function getConstraints(um, options) {
 -     var constraints = {audio: false, video: false};
 - 
 -     if (um.indexOf('video') >= 0) {
 -         // same behaviour as true
 -         constraints.video = { mandatory: {}, optional: [] };
 - 
 -         if (options.cameraDeviceId) {
 -             constraints.video.optional.push({
 -                 sourceId: options.cameraDeviceId
 -             });
 -         }
 - 
 -         constraints.video.optional.push({ googLeakyBucket: true });
 - 
 -         setResolutionConstraints(constraints, options.resolution);
 -     }
 -     if (um.indexOf('audio') >= 0) {
 -         if (!RTCBrowserType.isFirefox()) {
 -             // same behaviour as true
 -             constraints.audio = { mandatory: {}, optional: []};
 -             if (options.micDeviceId) {
 -                 constraints.audio.optional.push({
 -                     sourceId: options.micDeviceId
 -                 });
 -             }
 -             // if it is good enough for hangouts...
 -             constraints.audio.optional.push(
 -                 {googEchoCancellation: true},
 -                 {googAutoGainControl: true},
 -                 {googNoiseSupression: true},
 -                 {googHighpassFilter: true},
 -                 {googNoisesuppression2: true},
 -                 {googEchoCancellation2: true},
 -                 {googAutoGainControl2: true}
 -             );
 -         } else {
 -             if (options.micDeviceId) {
 -                 constraints.audio = {
 -                     mandatory: {},
 -                     optional: [{
 -                         sourceId: options.micDeviceId
 -                     }]};
 -             } else {
 -                 constraints.audio = true;
 -             }
 -         }
 -     }
 -     if (um.indexOf('screen') >= 0) {
 -         if (RTCBrowserType.isChrome()) {
 -             constraints.video = {
 -                 mandatory: {
 -                     chromeMediaSource: "screen",
 -                     googLeakyBucket: true,
 -                     maxWidth: window.screen.width,
 -                     maxHeight: window.screen.height,
 -                     maxFrameRate: 3
 -                 },
 -                 optional: []
 -             };
 -         } else if (RTCBrowserType.isTemasysPluginUsed()) {
 -             constraints.video = {
 -                 optional: [
 -                     {
 -                         sourceId: AdapterJS.WebRTCPlugin.plugin.screensharingKey
 -                     }
 -                 ]
 -             };
 -         } else if (RTCBrowserType.isFirefox()) {
 -             constraints.video = {
 -                 mozMediaSource: "window",
 -                 mediaSource: "window"
 -             };
 - 
 -         } else {
 -             logger.error(
 -                 "'screen' WebRTC media source is supported only in Chrome" +
 -                 " and with Temasys plugin");
 -         }
 -     }
 -     if (um.indexOf('desktop') >= 0) {
 -         constraints.video = {
 -             mandatory: {
 -                 chromeMediaSource: "desktop",
 -                 chromeMediaSourceId: options.desktopStream,
 -                 googLeakyBucket: true,
 -                 maxWidth: window.screen.width,
 -                 maxHeight: window.screen.height,
 -                 maxFrameRate: 3
 -             },
 -             optional: []
 -         };
 -     }
 - 
 -     if (options.bandwidth) {
 -         if (!constraints.video) {
 -             //same behaviour as true
 -             constraints.video = {mandatory: {}, optional: []};
 -         }
 -         constraints.video.optional.push({bandwidth: options.bandwidth});
 -     }
 -     if (options.fps) {
 -         // for some cameras it might be necessary to request 30fps
 -         // so they choose 30fps mjpg over 10fps yuy2
 -         if (!constraints.video) {
 -             // same behaviour as true;
 -             constraints.video = {mandatory: {}, optional: []};
 -         }
 -         constraints.video.mandatory.minFrameRate = options.fps;
 -     }
 - 
 -     // we turn audio for both audio and video tracks, the fake audio & video seems to work
 -     // only when enabled in one getUserMedia call, we cannot get fake audio separate by fake video
 -     // this later can be a problem with some of the tests
 -     if(RTCBrowserType.isFirefox() && options.firefox_fake_device)
 -     {
 -         // seems to be fixed now, removing this experimental fix, as having
 -         // multiple audio tracks brake the tests
 -         //constraints.audio = true;
 -         constraints.fake = true;
 -     }
 - 
 -     return constraints;
 - }
 - 
 - function setAvailableDevices(um, available) {
 -     if (um.indexOf("video") != -1) {
 -         devices.video = available;
 -     }
 -     if (um.indexOf("audio") != -1) {
 -         devices.audio = available;
 -     }
 - 
 -     eventEmitter.emit(RTCEvents.AVAILABLE_DEVICES_CHANGED, devices);
 - }
 - 
 - // In case of IE we continue from 'onReady' callback
 - // passed to RTCUtils constructor. It will be invoked by Temasys plugin
 - // once it is initialized.
 - function onReady (options, GUM) {
 -     rtcReady = true;
 -     eventEmitter.emit(RTCEvents.RTC_READY, true);
 -     screenObtainer.init(options, GUM);
 - }
 - 
 - /**
 -  * Apply function with arguments if function exists.
 -  * Do nothing if function not provided.
 -  * @param {function} [fn] function to apply
 -  * @param {Array} [args=[]] arguments for function
 -  */
 - function maybeApply(fn, args) {
 -   if (fn) {
 -     fn.apply(null, args || []);
 -   }
 - }
 - 
 - var getUserMediaStatus = {
 -   initialized: false,
 -   callbacks: []
 - };
 - 
 - /**
 -  * Wrap `getUserMedia` to allow others to know if it was executed at least
 -  * once or not. Wrapper function uses `getUserMediaStatus` object.
 -  * @param {Function} getUserMedia native function
 -  * @returns {Function} wrapped function
 -  */
 - function wrapGetUserMedia(getUserMedia) {
 -   return function (constraints, successCallback, errorCallback) {
 -     getUserMedia(constraints, function (stream) {
 -       maybeApply(successCallback, [stream]);
 -       if (!getUserMediaStatus.initialized) {
 -         getUserMediaStatus.initialized = true;
 -         getUserMediaStatus.callbacks.forEach(function (callback) {
 -           callback();
 -         });
 -         getUserMediaStatus.callbacks.length = 0;
 -       }
 -     }, function (error) {
 -       maybeApply(errorCallback, [error]);
 -     });
 -   };
 - }
 - 
 - /**
 -  * Create stub device which equals to auto selected device.
 -  * @param {string} kind if that should be `audio` or `video` device
 -  * @returns {Object} stub device description in `enumerateDevices` format
 -  */
 - function createAutoDeviceInfo(kind) {
 -     return {
 -         facing: null,
 -         label: 'Auto',
 -         kind: kind,
 -         deviceId: '',
 -         groupId: null
 -     };
 - }
 - 
 - 
 - /**
 -  * Execute function after getUserMedia was executed at least once.
 -  * @param {Function} callback function to execute after getUserMedia
 -  */
 - function afterUserMediaInitialized(callback) {
 -     if (getUserMediaStatus.initialized) {
 -         callback();
 -     } else {
 -         getUserMediaStatus.callbacks.push(callback);
 -     }
 - }
 - 
 - /**
 -  * Wrapper function which makes enumerateDevices to wait
 -  * until someone executes getUserMedia first time.
 -  * @param {Function} enumerateDevices native function
 -  * @returns {Funtion} wrapped function
 -  */
 - function wrapEnumerateDevices(enumerateDevices) {
 -     return function (callback) {
 -         // enumerate devices only after initial getUserMedia
 -         afterUserMediaInitialized(function () {
 - 
 -             enumerateDevices().then(function (devices) {
 -                 //add auto devices
 -                 devices.unshift(
 -                     createAutoDeviceInfo('audioinput'),
 -                     createAutoDeviceInfo('videoinput')
 -                 );
 - 
 -                 callback(devices);
 -             }, function (err) {
 -                 console.error('cannot enumerate devices: ', err);
 - 
 -                 // return only auto devices
 -                 callback([createAutoDeviceInfo('audioInput'),
 -                           createAutoDeviceInfo('videoinput')]);
 -             });
 -         });
 -     };
 - }
 - 
 - /**
 -  * Use old MediaStreamTrack to get devices list and
 -  * convert it to enumerateDevices format.
 -  * @param {Function} callback function to call when received devices list.
 -  */
 - function enumerateDevicesThroughMediaStreamTrack (callback) {
 -     MediaStreamTrack.getSources(function (sources) {
 -         var devices = sources.map(function (source) {
 -             var kind = (source.kind || '').toLowerCase();
 -             return {
 -                 facing: source.facing || null,
 -                 label: source.label,
 -                 kind: kind ? kind + 'input': null,
 -                 deviceId: source.id,
 -                 groupId: source.groupId || null
 -             };
 -         });
 - 
 -         //add auto devices
 -         devices.unshift(
 -             createAutoDeviceInfo('audioinput'),
 -             createAutoDeviceInfo('videoinput')
 -         );
 -         callback(devices);
 -     });
 - }
 - 
 - function obtainDevices(options) {
 -     if(!options.devices || options.devices.length === 0) {
 -         return options.successCallback(options.streams || {});
 -     }
 - 
 -     var device = options.devices.splice(0, 1);
 -     var devices = [];
 -     devices.push(device);
 -     options.deviceGUM[device](function (stream) {
 -             options.streams = options.streams || {};
 -             options.streams[device] = stream;
 -             obtainDevices(options);
 -         },
 -         function (error) {
 -             Object.keys(options.streams).forEach(function(device) {
 -                 RTCUtils.stopMediaStream(options.streams[device]);
 -             });
 -             logger.error(
 -                 "failed to obtain " + device + " stream - stop", error);
 -             options.errorCallback(JitsiTrackErrors.parseError(error, devices));
 -         });
 - }
 - 
 - 
 - /**
 -  * Handles the newly created Media Streams.
 -  * @param streams the new Media Streams
 -  * @param resolution the resolution of the video streams
 -  * @returns {*[]} object that describes the new streams
 -  */
 - function handleLocalStream(streams, resolution) {
 -     var audioStream, videoStream, desktopStream, res = [];
 -     // If this is FF, the stream parameter is *not* a MediaStream object, it's
 -     // an object with two properties: audioStream, videoStream.
 -     if (window.webkitMediaStream) {
 -         var audioVideo = streams.audioVideo;
 -         if (audioVideo) {
 -             var audioTracks = audioVideo.getAudioTracks();
 -             if(audioTracks.length) {
 -                 audioStream = new webkitMediaStream();
 -                 for (var i = 0; i < audioTracks.length; i++) {
 -                     audioStream.addTrack(audioTracks[i]);
 -                 }
 -             }
 - 
 -             var videoTracks = audioVideo.getVideoTracks();
 -             if(videoTracks.length) {
 -                 videoStream = new webkitMediaStream();
 -                 for (var j = 0; j < videoTracks.length; j++) {
 -                     videoStream.addTrack(videoTracks[j]);
 -                 }
 -             }
 -         }
 - 
 -         if (streams && streams.desktopStream)
 -             desktopStream = streams.desktopStream;
 - 
 -     }
 -     else if (RTCBrowserType.isFirefox() || RTCBrowserType.isTemasysPluginUsed()) {   // Firefox and Temasys plugin
 -         if (streams && streams.audio)
 -             audioStream = streams.audio;
 - 
 -         if (streams && streams.video)
 -             videoStream = streams.video;
 - 
 -         if(streams && streams.desktop)
 -             desktopStream = streams.desktop;
 -     }
 - 
 -     if (desktopStream)
 -         res.push({stream: desktopStream,
 -             type: "video", videoType: "desktop"});
 - 
 -     if(audioStream)
 -         res.push({stream: audioStream, type: "audio", videoType: null});
 - 
 -     if(videoStream)
 -         res.push({stream: videoStream, type: "video", videoType: "camera",
 -             resolution: resolution});
 - 
 -     return res;
 - }
 - 
 - //Options parameter is to pass config options. Currently uses only "useIPv6".
 - var RTCUtils = {
 -     init: function (options) {
 -         return new Promise(function(resolve, reject) {
 -             if (RTCBrowserType.isFirefox()) {
 -                 var FFversion = RTCBrowserType.getFirefoxVersion();
 -                 if (FFversion < 40) {
 -                     logger.error(
 -                             "Firefox version too old: " + FFversion +
 -                             ". Required >= 40.");
 -                     reject(new Error("Firefox version too old: " + FFversion +
 -                     ". Required >= 40."));
 -                     return;
 -                 }
 -                 this.peerconnection = mozRTCPeerConnection;
 -                 this.getUserMedia = wrapGetUserMedia(navigator.mozGetUserMedia.bind(navigator));
 -                 this.enumerateDevices = wrapEnumerateDevices(
 -                     navigator.mediaDevices.enumerateDevices.bind(navigator.mediaDevices)
 -                 );
 -                 this.pc_constraints = {};
 -                 this.attachMediaStream = function (element, stream) {
 -                     //  srcObject is being standardized and FF will eventually
 -                     //  support that unprefixed. FF also supports the
 -                     //  "element.src = URL.createObjectURL(...)" combo, but that
 -                     //  will be deprecated in favour of srcObject.
 -                     //
 -                     // https://groups.google.com/forum/#!topic/mozilla.dev.media/pKOiioXonJg
 -                     // https://github.com/webrtc/samples/issues/302
 -                     if (!element)
 -                         return;
 -                     element.mozSrcObject = stream;
 -                     element.play();
 - 
 -                     return element;
 -                 };
 -                 this.getStreamID = function (stream) {
 -                     var id = stream.id;
 -                     if (!id) {
 -                         var tracks = stream.getVideoTracks();
 -                         if (!tracks || tracks.length === 0) {
 -                             tracks = stream.getAudioTracks();
 -                         }
 -                         id = tracks[0].id;
 -                     }
 -                     return SDPUtil.filter_special_chars(id);
 -                 };
 -                 this.getVideoSrc = function (element) {
 -                     if (!element)
 -                         return null;
 -                     return element.mozSrcObject;
 -                 };
 -                 this.setVideoSrc = function (element, src) {
 -                     if (element)
 -                         element.mozSrcObject = src;
 -                 };
 -                 RTCSessionDescription = mozRTCSessionDescription;
 -                 RTCIceCandidate = mozRTCIceCandidate;
 -             } else if (RTCBrowserType.isChrome() || RTCBrowserType.isOpera()) {
 -                 this.peerconnection = webkitRTCPeerConnection;
 -                 var getUserMedia = navigator.webkitGetUserMedia.bind(navigator);
 -                 if (navigator.mediaDevices) {
 -                     this.getUserMedia = wrapGetUserMedia(getUserMedia);
 -                     this.enumerateDevices = wrapEnumerateDevices(
 -                         navigator.mediaDevices.enumerateDevices.bind(navigator.mediaDevices)
 -                     );
 -                 } else {
 -                     this.getUserMedia = getUserMedia;
 -                     this.enumerateDevices = enumerateDevicesThroughMediaStreamTrack;
 -                 }
 -                 this.attachMediaStream = function (element, stream) {
 - 
 -                     // saves the created url for the stream, so we can reuse it
 -                     // and not keep creating urls
 -                     if (!stream.jitsiObjectURL) {
 -                         stream.jitsiObjectURL
 -                             = webkitURL.createObjectURL(stream);
 -                     }
 - 
 -                     element.src = stream.jitsiObjectURL;
 - 
 -                     return element;
 -                 };
 -                 this.getStreamID = function (stream) {
 -                     // streams from FF endpoints have the characters '{' and '}'
 -                     // that make jQuery choke.
 -                     return SDPUtil.filter_special_chars(stream.id);
 -                 };
 -                 this.getVideoSrc = function (element) {
 -                     if (!element)
 -                         return null;
 -                     return element.getAttribute("src");
 -                 };
 -                 this.setVideoSrc = function (element, src) {
 -                     if (element)
 -                         element.setAttribute("src", src);
 -                 };
 -                 // DTLS should now be enabled by default but..
 -                 this.pc_constraints = {'optional': [
 -                     {'DtlsSrtpKeyAgreement': 'true'}
 -                 ]};
 -                 if (options.useIPv6) {
 -                     // https://code.google.com/p/webrtc/issues/detail?id=2828
 -                     this.pc_constraints.optional.push({googIPv6: true});
 -                 }
 -                 if (RTCBrowserType.isAndroid()) {
 -                     this.pc_constraints = {}; // disable DTLS on Android
 -                 }
 -                 if (!webkitMediaStream.prototype.getVideoTracks) {
 -                     webkitMediaStream.prototype.getVideoTracks = function () {
 -                         return this.videoTracks;
 -                     };
 -                 }
 -                 if (!webkitMediaStream.prototype.getAudioTracks) {
 -                     webkitMediaStream.prototype.getAudioTracks = function () {
 -                         return this.audioTracks;
 -                     };
 -                 }
 -             }
 -             // Detect IE/Safari
 -             else if (RTCBrowserType.isTemasysPluginUsed()) {
 - 
 -                 //AdapterJS.WebRTCPlugin.setLogLevel(
 -                 //    AdapterJS.WebRTCPlugin.PLUGIN_LOG_LEVELS.VERBOSE);
 -                 var self = this;
 -                 AdapterJS.webRTCReady(function (isPlugin) {
 - 
 -                     self.peerconnection = RTCPeerConnection;
 -                     self.getUserMedia = window.getUserMedia;
 -                     self.enumerateDevices = enumerateDevicesThroughMediaStreamTrack;
 -                     self.attachMediaStream = function (element, stream) {
 - 
 -                         if (stream.id === "dummyAudio" || stream.id === "dummyVideo") {
 -                             return;
 -                         }
 - 
 -                         var isVideoStream = !!stream.getVideoTracks().length;
 -                         if (isVideoStream && !$(element).is(':visible')) {
 -                             throw new Error('video element must be visible to attach video stream');
 -                         }
 - 
 -                         return attachMediaStream(element, stream);
 -                     };
 -                     self.getStreamID = function (stream) {
 -                         var id = SDPUtil.filter_special_chars(stream.label);
 -                         return id;
 -                     };
 -                     self.getVideoSrc = function (element) {
 -                         if (!element) {
 -                             logger.warn("Attempt to get video SRC of null element");
 -                             return null;
 -                         }
 -                         var children = element.children;
 -                         for (var i = 0; i !== children.length; ++i) {
 -                             if (children[i].name === 'streamId') {
 -                                 return children[i].value;
 -                             }
 -                         }
 -                         //logger.info(element.id + " SRC: " + src);
 -                         return null;
 -                     };
 -                     self.setVideoSrc = function (element, src) {
 -                         //logger.info("Set video src: ", element, src);
 -                         if (!src) {
 -                             attachMediaStream(element, null);
 -                         } else {
 -                             AdapterJS.WebRTCPlugin.WaitForPluginReady();
 -                             var stream
 -                                 = AdapterJS.WebRTCPlugin.plugin
 -                                     .getStreamWithId(
 -                                         AdapterJS.WebRTCPlugin.pageId, src);
 -                             attachMediaStream(element, stream);
 -                         }
 -                     };
 - 
 -                     onReady(options, self.getUserMediaWithConstraints);
 -                     resolve();
 -                 });
 -             } else {
 -                 try {
 -                     logger.error('Browser does not appear to be WebRTC-capable');
 -                 } catch (e) {
 -                 }
 -                 reject('Browser does not appear to be WebRTC-capable');
 -                 return;
 -             }
 - 
 -             // Call onReady() if Temasys plugin is not used
 -             if (!RTCBrowserType.isTemasysPluginUsed()) {
 -                 onReady(options, this.getUserMediaWithConstraints);
 -                 resolve();
 -             }
 -         }.bind(this));
 -     },
 -     /**
 -     * @param {string[]} um required user media types
 -     * @param {function} success_callback
 -     * @param {Function} failure_callback
 -     * @param {Object} [options] optional parameters
 -     * @param {string} options.resolution
 -     * @param {number} options.bandwidth
 -     * @param {number} options.fps
 -     * @param {string} options.desktopStream
 -     * @param {string} options.cameraDeviceId
 -     * @param {string} options.micDeviceId
 -     **/
 -     getUserMediaWithConstraints: function ( um, success_callback, failure_callback, options) {
 -         options = options || {};
 -         var resolution = options.resolution;
 -         var constraints = getConstraints(um, options);
 - 
 -         logger.info("Get media constraints", constraints);
 - 
 -         try {
 -             this.getUserMedia(constraints,
 -                 function (stream) {
 -                     logger.log('onUserMediaSuccess');
 -                     setAvailableDevices(um, true);
 -                     success_callback(stream);
 -                 },
 -                 function (error) {
 -                     setAvailableDevices(um, false);
 -                     logger.warn('Failed to get access to local media. Error ',
 -                         error, constraints);
 -                     if (failure_callback) {
 -                         failure_callback(error, resolution);
 -                     }
 -                 });
 -         } catch (e) {
 -             logger.error('GUM failed: ', e);
 -             if (failure_callback) {
 -                 failure_callback(e);
 -             }
 -         }
 -     },
 - 
 -     /**
 -      * Creates the local MediaStreams.
 -      * @param {Object} [options] optional parameters
 -      * @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
 -      * @returns {*} Promise object that will receive the new JitsiTracks
 -      */
 -     obtainAudioAndVideoPermissions: function (options) {
 -         var self = this;
 - 
 -         options = options || {};
 -         return new Promise(function (resolve, reject) {
 -             var successCallback = function (stream) {
 -                 resolve(handleLocalStream(stream, options.resolution));
 -             };
 - 
 -             options.devices = options.devices || ['audio', 'video'];
 -             if(!screenObtainer.isSupported()
 -                 && options.devices.indexOf("desktop") !== -1){
 -                 reject(new Error("Desktop sharing is not supported!"));
 -             }
 -             if (RTCBrowserType.isFirefox() ||
 -                 RTCBrowserType.isTemasysPluginUsed()) {
 -                 var GUM = function (device, s, e) {
 -                     this.getUserMediaWithConstraints(device, s, e, options);
 -                 };
 - 
 -                 var deviceGUM = {
 -                     "audio": GUM.bind(self, ["audio"]),
 -                     "video": GUM.bind(self, ["video"])
 -                 };
 - 
 -                 if(screenObtainer.isSupported()){
 -                     deviceGUM["desktop"] = screenObtainer.obtainStream.bind(
 -                         screenObtainer);
 -                 }
 -                 // With FF/IE we can't split the stream into audio and video because FF
 -                 // doesn't support media stream constructors. So, we need to get the
 -                 // audio stream separately from the video stream using two distinct GUM
 -                 // calls. Not very user friendly :-( but we don't have many other
 -                 // options neither.
 -                 //
 -                 // Note that we pack those 2 streams in a single object and pass it to
 -                 // the successCallback method.
 -                 obtainDevices({
 -                     devices: options.devices,
 -                     streams: [],
 -                     successCallback: successCallback,
 -                     errorCallback: reject,
 -                     deviceGUM: deviceGUM
 -                 });
 -             } else {
 -                 var hasDesktop = options.devices.indexOf('desktop') > -1;
 -                 if (hasDesktop) {
 -                     options.devices.splice(options.devices.indexOf("desktop"), 1);
 -                 }
 -                 options.resolution = options.resolution || '360';
 -                 if(options.devices.length) {
 -                     this.getUserMediaWithConstraints(
 -                         options.devices,
 -                         function (stream) {
 -                             if((options.devices.indexOf("audio") !== -1 &&
 -                                 !stream.getAudioTracks().length) ||
 -                                 (options.devices.indexOf("video") !== -1 &&
 -                                 !stream.getVideoTracks().length))
 -                             {
 -                                 self.stopMediaStream(stream);
 -                                 reject(JitsiTrackErrors.parseError(
 -                                     new Error("Unable to get the audio and " +
 -                                         "video tracks."),
 -                                     options.devices));
 -                                     return;
 -                             }
 -                             if(hasDesktop) {
 -                                 screenObtainer.obtainStream(
 -                                     function (desktopStream) {
 -                                         successCallback({audioVideo: stream,
 -                                             desktopStream: desktopStream});
 -                                     }, function (error) {
 -                                         self.stopMediaStream(stream);
 -                                         reject(
 -                                             JitsiTrackErrors.parseError(error,
 -                                                 options.devices));
 -                                     });
 -                             } else {
 -                                 successCallback({audioVideo: stream});
 -                             }
 -                         },
 -                         function (error) {
 -                             reject(JitsiTrackErrors.parseError(error,
 -                                 options.devices));
 -                         },
 -                         options);
 -                 } else if (hasDesktop) {
 -                     screenObtainer.obtainStream(
 -                         function (stream) {
 -                             successCallback({desktopStream: stream});
 -                         }, function (error) {
 -                             reject(
 -                                 JitsiTrackErrors.parseError(error,
 -                                     ["desktop"]));
 -                         });
 -                 }
 -             }
 -         }.bind(this));
 -     },
 -     addListener: function (eventType, listener) {
 -         eventEmitter.on(eventType, listener);
 -     },
 -     removeListener: function (eventType, listener) {
 -         eventEmitter.removeListener(eventType, listener);
 -     },
 -     getDeviceAvailability: function () {
 -         return devices;
 -     },
 -     isRTCReady: function () {
 -         return rtcReady;
 -     },
 -     /**
 -      * Checks if its possible to enumerate available cameras/micropones.
 -      * @returns {boolean} true if available, false otherwise.
 -      */
 -     isDeviceListAvailable: function () {
 -         var isEnumerateDevicesAvailable = navigator.mediaDevices && navigator.mediaDevices.enumerateDevices;
 -         if (isEnumerateDevicesAvailable) {
 -             return true;
 -         }
 -         return (MediaStreamTrack && MediaStreamTrack.getSources)? true : false;
 -     },
 -     /**
 -      * Returns true if changing the camera / microphone device is supported and
 -      * false if not.
 -      */
 -     isDeviceChangeAvailable: function () {
 -         if(RTCBrowserType.isChrome() || RTCBrowserType.isOpera() ||
 -             RTCBrowserType.isTemasysPluginUsed())
 -             return true;
 -         return false;
 -     },
 -     /**
 -      * A method to handle stopping of the stream.
 -      * One point to handle the differences in various implementations.
 -      * @param mediaStream MediaStream object to stop.
 -      */
 -     stopMediaStream: function (mediaStream) {
 -         mediaStream.getTracks().forEach(function (track) {
 -             // stop() not supported with IE
 -             if (!RTCBrowserType.isTemasysPluginUsed() && track.stop) {
 -                 track.stop();
 -             }
 -         });
 - 
 -         // leave stop for implementation still using it
 -         if (mediaStream.stop) {
 -             mediaStream.stop();
 -         }
 - 
 -         // if we have done createObjectURL, lets clean it
 -         if (mediaStream.jitsiObjectURL) {
 -             webkitURL.revokeObjectURL(mediaStream.jitsiObjectURL);
 -         }
 -     },
 -     /**
 -      * Returns whether the desktop sharing is enabled or not.
 -      * @returns {boolean}
 -      */
 -     isDesktopSharingEnabled: function () {
 -         return screenObtainer.isSupported();
 -     }
 - 
 - };
 - 
 - module.exports = RTCUtils;
 
 
  |