2017-04-28 19:21:22 +02:00
|
|
|
/*
|
|
|
|
Copyright 2017 Michael Telatynski <7t3chguy@gmail.com>
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import * as Matrix from 'matrix-js-sdk';
|
2017-11-04 06:19:45 +01:00
|
|
|
import SettingsStore, {SettingLevel} from "./settings/SettingsStore";
|
2017-04-28 19:21:22 +02:00
|
|
|
|
|
|
|
export default {
|
2019-06-26 18:54:15 +02:00
|
|
|
hasAnyLabeledDevices: async function() {
|
|
|
|
const devices = await navigator.mediaDevices.enumerateDevices();
|
|
|
|
return devices.some(d => !!d.label);
|
|
|
|
},
|
|
|
|
|
2017-04-28 19:21:22 +02:00
|
|
|
getDevices: function() {
|
|
|
|
// Only needed for Electron atm, though should work in modern browsers
|
|
|
|
// once permission has been granted to the webapp
|
|
|
|
return navigator.mediaDevices.enumerateDevices().then(function(devices) {
|
2018-05-26 18:22:23 +02:00
|
|
|
const audiooutput = [];
|
|
|
|
const audioinput = [];
|
|
|
|
const videoinput = [];
|
2017-04-28 19:21:22 +02:00
|
|
|
|
|
|
|
devices.forEach((device) => {
|
|
|
|
switch (device.kind) {
|
2018-05-26 18:22:23 +02:00
|
|
|
case 'audiooutput': audiooutput.push(device); break;
|
|
|
|
case 'audioinput': audioinput.push(device); break;
|
|
|
|
case 'videoinput': videoinput.push(device); break;
|
2017-04-28 19:21:22 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// console.log("Loaded WebRTC Devices", mediaDevices);
|
|
|
|
return {
|
2018-05-26 18:22:23 +02:00
|
|
|
audiooutput,
|
|
|
|
audioinput,
|
|
|
|
videoinput,
|
2017-04-28 19:21:22 +02:00
|
|
|
};
|
|
|
|
}, (error) => { console.log('Unable to refresh WebRTC Devices: ', error); });
|
|
|
|
},
|
|
|
|
|
|
|
|
loadDevices: function() {
|
2018-05-26 18:22:23 +02:00
|
|
|
const audioOutDeviceId = SettingsStore.getValue("webrtc_audiooutput");
|
2017-10-29 23:53:00 +01:00
|
|
|
const audioDeviceId = SettingsStore.getValue("webrtc_audioinput");
|
|
|
|
const videoDeviceId = SettingsStore.getValue("webrtc_videoinput");
|
|
|
|
|
2018-05-26 18:22:23 +02:00
|
|
|
Matrix.setMatrixCallAudioOutput(audioOutDeviceId);
|
2017-10-29 23:53:00 +01:00
|
|
|
Matrix.setMatrixCallAudioInput(audioDeviceId);
|
|
|
|
Matrix.setMatrixCallVideoInput(videoDeviceId);
|
2017-04-28 19:21:22 +02:00
|
|
|
},
|
|
|
|
|
2018-05-26 18:22:23 +02:00
|
|
|
setAudioOutput: function(deviceId) {
|
|
|
|
SettingsStore.setValue("webrtc_audiooutput", null, SettingLevel.DEVICE, deviceId);
|
|
|
|
Matrix.setMatrixCallAudioOutput(deviceId);
|
|
|
|
},
|
|
|
|
|
2017-04-28 19:21:22 +02:00
|
|
|
setAudioInput: function(deviceId) {
|
2017-11-04 06:19:45 +01:00
|
|
|
SettingsStore.setValue("webrtc_audioinput", null, SettingLevel.DEVICE, deviceId);
|
2017-04-28 19:21:22 +02:00
|
|
|
Matrix.setMatrixCallAudioInput(deviceId);
|
|
|
|
},
|
|
|
|
|
|
|
|
setVideoInput: function(deviceId) {
|
2017-11-04 06:19:45 +01:00
|
|
|
SettingsStore.setValue("webrtc_videoinput", null, SettingLevel.DEVICE, deviceId);
|
2017-04-28 19:21:22 +02:00
|
|
|
Matrix.setMatrixCallVideoInput(deviceId);
|
|
|
|
},
|
2019-01-24 21:33:22 +01:00
|
|
|
|
|
|
|
getAudioOutput: function() {
|
|
|
|
return SettingsStore.getValueAt(SettingLevel.DEVICE, "webrtc_audiooutput");
|
|
|
|
},
|
|
|
|
|
|
|
|
getAudioInput: function() {
|
|
|
|
return SettingsStore.getValueAt(SettingLevel.DEVICE, "webrtc_audioinput");
|
|
|
|
},
|
|
|
|
|
|
|
|
getVideoInput: function() {
|
|
|
|
return SettingsStore.getValueAt(SettingLevel.DEVICE, "webrtc_videoinput");
|
|
|
|
},
|
2017-04-28 19:21:22 +02:00
|
|
|
};
|