utils class for input device monitoring

This commit is contained in:
cupcakearmy 2021-06-09 12:12:58 +02:00
parent 8854566336
commit 82142ccb14
No known key found for this signature in database
GPG Key ID: D28129AE5654D9D9
1 changed files with 49 additions and 0 deletions

49
src/back/utils.ts Normal file
View File

@ -0,0 +1,49 @@
import cp from 'child_process'
import Settings from './settings'
export async function isCameraActive(): Promise<boolean> {
if (process.platform === 'darwin') {
return new Promise((resolve) => {
// Check number of processes using the camera
cp.exec(`lsof -n | grep "AppleCamera"`, (_, out) => {
const processesUsingCamera = out.trim().split('\n').length
resolve(processesUsingCamera > 1) // One is the apple daemon that is always active
})
})
}
return false
}
export async function isMicrophoneActive(): Promise<boolean> {
if (process.platform === 'darwin') {
return new Promise((resolve) => {
cp.exec(`ioreg -c AppleHDAEngineInput | grep IOAudioEngineState`, (_, out) => {
const parsed = parseInt(out.trim().replace(/[^\d]/gim, ''))
resolve(parsed > 0)
})
})
}
return false
}
export class InputDevicesStatus {
static status = {
mic: false,
camera: false,
}
static init() {
setInterval(() => {
isMicrophoneActive().then((result) => (this.status.mic = result))
isCameraActive().then((result) => (this.status.camera = result))
}, 2000)
}
static areCameraOrMicrophoneActive(): boolean {
if (Settings.load('skipOnCameraOrMic')) {
return this.status.mic || this.status.camera
}
return false
}
}