mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
232 lines
8.2 KiB
JavaScript
232 lines
8.2 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
"use strict";
|
|
|
|
const {classes: Cc, interfaces: Ci, results: Cr, utils: Cu} = Components;
|
|
|
|
this.EXPORTED_SYMBOLS = [ "ContentWebRTC" ];
|
|
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
XPCOMUtils.defineLazyServiceGetter(this, "MediaManagerService",
|
|
"@mozilla.org/mediaManagerService;1",
|
|
"nsIMediaManagerService");
|
|
|
|
this.ContentWebRTC = {
|
|
_initialized: false,
|
|
|
|
init: function() {
|
|
if (this._initialized)
|
|
return;
|
|
|
|
this._initialized = true;
|
|
Services.obs.addObserver(handleRequest, "getUserMedia:request", false);
|
|
Services.obs.addObserver(updateIndicators, "recording-device-events", false);
|
|
Services.obs.addObserver(removeBrowserSpecificIndicator, "recording-window-ended", false);
|
|
},
|
|
|
|
receiveMessage: function(aMessage) {
|
|
switch (aMessage.name) {
|
|
case "webrtc:Allow":
|
|
let callID = aMessage.data.callID;
|
|
let contentWindow = Services.wm.getOuterWindowWithId(aMessage.data.windowID);
|
|
let devices = contentWindow.pendingGetUserMediaRequests.get(callID);
|
|
contentWindow.pendingGetUserMediaRequests.delete(callID);
|
|
|
|
let allowedDevices = Cc["@mozilla.org/supports-array;1"]
|
|
.createInstance(Ci.nsISupportsArray);
|
|
for (let deviceIndex of aMessage.data.devices)
|
|
allowedDevices.AppendElement(devices[deviceIndex]);
|
|
|
|
Services.obs.notifyObservers(allowedDevices, "getUserMedia:response:allow", callID);
|
|
break;
|
|
case "webrtc:Deny":
|
|
denyRequest(aMessage.data);
|
|
break;
|
|
case "webrtc:StopSharing":
|
|
Services.obs.notifyObservers(null, "getUserMedia:revoke", aMessage.data);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
|
|
function handleRequest(aSubject, aTopic, aData) {
|
|
let constraints = aSubject.getConstraints();
|
|
let secure = aSubject.isSecure;
|
|
let contentWindow = Services.wm.getOuterWindowWithId(aSubject.windowID);
|
|
|
|
contentWindow.navigator.mozGetUserMediaDevices(
|
|
constraints,
|
|
function (devices) {
|
|
prompt(contentWindow, aSubject.windowID, aSubject.callID,
|
|
constraints, devices, secure);
|
|
},
|
|
function (error) {
|
|
// bug 827146 -- In the future, the UI should catch NotFoundError
|
|
// and allow the user to plug in a device, instead of immediately failing.
|
|
denyRequest({callID: aSubject.callID}, error);
|
|
},
|
|
aSubject.innerWindowID);
|
|
}
|
|
|
|
function prompt(aContentWindow, aWindowID, aCallID, aConstraints, aDevices, aSecure) {
|
|
let audioDevices = [];
|
|
let videoDevices = [];
|
|
let devices = [];
|
|
|
|
// MediaStreamConstraints defines video as 'boolean or MediaTrackConstraints'.
|
|
let video = aConstraints.video || aConstraints.picture;
|
|
let sharingScreen = video && typeof(video) != "boolean" &&
|
|
video.mediaSource != "camera";
|
|
for (let device of aDevices) {
|
|
device = device.QueryInterface(Ci.nsIMediaDevice);
|
|
switch (device.type) {
|
|
case "audio":
|
|
if (aConstraints.audio) {
|
|
audioDevices.push({name: device.name, deviceIndex: devices.length});
|
|
devices.push(device);
|
|
}
|
|
break;
|
|
case "video":
|
|
// Verify that if we got a camera, we haven't requested a screen share,
|
|
// or that if we requested a screen share we aren't getting a camera.
|
|
if (video && (device.mediaSource == "camera") != sharingScreen) {
|
|
videoDevices.push({name: device.name, deviceIndex: devices.length,
|
|
mediaSource: device.mediaSource});
|
|
devices.push(device);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
let requestTypes = [];
|
|
if (videoDevices.length)
|
|
requestTypes.push(sharingScreen ? "Screen" : "Camera");
|
|
if (audioDevices.length)
|
|
requestTypes.push("Microphone");
|
|
|
|
if (!requestTypes.length) {
|
|
denyRequest({callID: aCallID}, "NotFoundError");
|
|
return;
|
|
}
|
|
|
|
if (!aContentWindow.pendingGetUserMediaRequests)
|
|
aContentWindow.pendingGetUserMediaRequests = new Map();
|
|
aContentWindow.pendingGetUserMediaRequests.set(aCallID, devices);
|
|
|
|
let request = {
|
|
callID: aCallID,
|
|
windowID: aWindowID,
|
|
documentURI: aContentWindow.document.documentURI,
|
|
secure: aSecure,
|
|
requestTypes: requestTypes,
|
|
sharingScreen: sharingScreen,
|
|
audioDevices: audioDevices,
|
|
videoDevices: videoDevices
|
|
};
|
|
|
|
let mm = getMessageManagerForWindow(aContentWindow);
|
|
mm.sendAsyncMessage("webrtc:Request", request);
|
|
}
|
|
|
|
function denyRequest(aData, aError) {
|
|
let msg = null;
|
|
if (aError) {
|
|
msg = Cc["@mozilla.org/supports-string;1"].createInstance(Ci.nsISupportsString);
|
|
msg.data = aError;
|
|
}
|
|
Services.obs.notifyObservers(msg, "getUserMedia:response:deny", aData.callID);
|
|
|
|
if (!aData.windowID)
|
|
return;
|
|
let contentWindow = Services.wm.getOuterWindowWithId(aData.windowID);
|
|
if (contentWindow.pendingGetUserMediaRequests)
|
|
contentWindow.pendingGetUserMediaRequests.delete(aData.callID);
|
|
}
|
|
|
|
|
|
function updateIndicators() {
|
|
let contentWindowSupportsArray = MediaManagerService.activeMediaCaptureWindows;
|
|
let count = contentWindowSupportsArray.Count();
|
|
|
|
let state = {
|
|
showGlobalIndicator: count > 0,
|
|
showCameraIndicator: false,
|
|
showMicrophoneIndicator: false,
|
|
showScreenSharingIndicator: ""
|
|
};
|
|
|
|
let cpmm = Cc["@mozilla.org/childprocessmessagemanager;1"]
|
|
.getService(Ci.nsIMessageSender);
|
|
cpmm.sendAsyncMessage("webrtc:UpdatingIndicators");
|
|
|
|
// If several iframes in the same page use media streams, it's possible to
|
|
// have the same top level window several times. We use a Set to avoid
|
|
// sending duplicate notifications.
|
|
let contentWindows = new Set();
|
|
for (let i = 0; i < count; ++i) {
|
|
contentWindows.add(contentWindowSupportsArray.GetElementAt(i).top);
|
|
}
|
|
|
|
for (let contentWindow of contentWindows) {
|
|
let camera = {}, microphone = {}, screen = {}, window = {}, app = {};
|
|
MediaManagerService.mediaCaptureWindowState(contentWindow, camera,
|
|
microphone, screen, window, app);
|
|
let tabState = {camera: camera.value, microphone: microphone.value};
|
|
if (camera.value)
|
|
state.showCameraIndicator = true;
|
|
if (microphone.value)
|
|
state.showMicrophoneIndicator = true;
|
|
if (screen.value) {
|
|
state.showScreenSharingIndicator = "Screen";
|
|
tabState.screen = "Screen";
|
|
}
|
|
else if (window.value) {
|
|
if (state.showScreenSharingIndicator != "Screen")
|
|
state.showScreenSharingIndicator = "Window";
|
|
tabState.screen = "Window";
|
|
}
|
|
else if (app.value) {
|
|
if (!state.showScreenSharingIndicator)
|
|
state.showScreenSharingIndicator = "Application";
|
|
tabState.screen = "Application";
|
|
}
|
|
|
|
tabState.windowId = getInnerWindowIDForWindow(contentWindow);
|
|
tabState.documentURI = contentWindow.document.documentURI;
|
|
let mm = getMessageManagerForWindow(contentWindow);
|
|
mm.sendAsyncMessage("webrtc:UpdateBrowserIndicators", tabState);
|
|
}
|
|
|
|
cpmm.sendAsyncMessage("webrtc:UpdateGlobalIndicators", state);
|
|
}
|
|
|
|
function removeBrowserSpecificIndicator(aSubject, aTopic, aData) {
|
|
let contentWindow = Services.wm.getOuterWindowWithId(aData);
|
|
let mm = getMessageManagerForWindow(contentWindow);
|
|
if (mm)
|
|
mm.sendAsyncMessage("webrtc:UpdateBrowserIndicators",
|
|
{windowId: getInnerWindowIDForWindow(contentWindow)});
|
|
}
|
|
|
|
function getInnerWindowIDForWindow(aContentWindow) {
|
|
return aContentWindow.QueryInterface(Ci.nsIInterfaceRequestor)
|
|
.getInterface(Ci.nsIDOMWindowUtils)
|
|
.currentInnerWindowID;
|
|
}
|
|
|
|
function getMessageManagerForWindow(aContentWindow) {
|
|
let ir = aContentWindow.QueryInterface(Ci.nsIInterfaceRequestor)
|
|
.getInterface(Ci.nsIDocShell)
|
|
.sameTypeRootTreeItem
|
|
.QueryInterface(Ci.nsIInterfaceRequestor);
|
|
try {
|
|
// If e10s is disabled, this throws NS_NOINTERFACE for closed tabs.
|
|
return ir.getInterface(Ci.nsIContentFrameMessageManager);
|
|
} catch(e if e.result == Cr.NS_NOINTERFACE) {
|
|
return null;
|
|
}
|
|
}
|