From d37d7af667545cf3ccf5accb6d0f62bc87a970ff Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Tue, 29 Mar 2022 12:33:09 +1100 Subject: [PATCH] moved permissions.js to ts --- app/permissions.js => ts/node/permissions.ts | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) rename app/permissions.js => ts/node/permissions.ts (70%) diff --git a/app/permissions.js b/ts/node/permissions.ts similarity index 70% rename from app/permissions.js rename to ts/node/permissions.ts index e28b8df9c..d5a0871b6 100644 --- a/app/permissions.js +++ b/ts/node/permissions.ts @@ -1,7 +1,10 @@ // The list of permissions is here: // https://electronjs.org/docs/api/session#sessetpermissionrequesthandlerhandler +// tslint:disable: no-console -const PERMISSIONS = { +import { UserConfig } from './config/user_config'; + +const PERMISSIONS: Record = { // Allowed fullscreen: true, // required to show videos in full-screen notifications: true, // required to show OS notifications for new messages @@ -16,8 +19,8 @@ const PERMISSIONS = { pointerLock: false, }; -function _createPermissionHandler(userConfig) { - return (webContents, permission, callback) => { +function createPermissionHandler(userConfig: UserConfig) { + return (_webContents: any, permission: any, callback: any) => { // We default 'media' permission to false, but the user can override that if (permission === 'media' && userConfig.get('mediaPermissions')) { return callback(true); @@ -33,15 +36,11 @@ function _createPermissionHandler(userConfig) { }; } -function installPermissionsHandler({ session, userConfig }) { +export function installPermissionsHandler({ userConfig }: { userConfig: UserConfig }) { // Setting the permission request handler to null first forces any permissions to be // requested again. Without this, revoked permissions might still be available if // they've already been used successfully. - session.defaultSession.setPermissionRequestHandler(null); + Electron.Session.defaultSession.setPermissionRequestHandler(null); - session.defaultSession.setPermissionRequestHandler(_createPermissionHandler(userConfig)); + Electron.Session.defaultSession.setPermissionRequestHandler(createPermissionHandler(userConfig)); } - -module.exports = { - installPermissionsHandler, -};