-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathindex.js
180 lines (141 loc) · 4.02 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
const isMac = process.platform === 'darwin'
function getPermissionsHandler() {
const permissions = require('bindings')('permissions.node')
return permissions
}
function getAuthStatus(type) {
if (!isMac) {
return
}
const validTypes = [
'accessibility',
'bluetooth',
'calendar',
'camera',
'contacts',
'full-disk-access',
'input-monitoring',
'location',
'microphone',
'music-library',
'photos-add-only',
'photos-read-write',
'reminders',
'speech-recognition',
'screen',
]
if (!validTypes.includes(type)) {
throw new TypeError(`${type} is not a valid type`)
}
return getPermissionsHandler().getAuthStatus.call(this, type)
}
function askForAccessibilityAccess() {
if (!isMac) {
return
}
return getPermissionsHandler().askForAccessibilityAccess.call(this)
}
function askForFoldersAccess(folder) {
if (!isMac) {
return
}
const validFolders = ['desktop', 'documents', 'downloads']
if (!validFolders.includes(folder)) {
throw new TypeError(`${folder} is not a valid protected folder`)
}
return getPermissionsHandler().askForFoldersAccess.call(this, folder)
}
function askForCalendarAccess(accessLevel = 'write-only') {
if (!isMac) {
return
}
if (!['write-only', 'full'].includes(accessLevel)) {
throw new TypeError(`${accessLevel} must be one of either 'write-only' or 'full'`)
}
return getPermissionsHandler().askForCalendarAccess.call(this, accessLevel)
}
function askForCameraAccess() {
if (!isMac) {
return
}
return getPermissionsHandler().askForCameraAccess.call(this)
}
function askForScreenCaptureAccess(openPreferences = false) {
if (!isMac) {
return
}
if (typeof openPreferences !== 'boolean') {
throw new TypeError('openPreferences must be a boolean')
}
return getPermissionsHandler().askForScreenCaptureAccess.call(this, openPreferences)
}
function askForPhotosAccess(accessLevel = 'add-only') {
if (!isMac) {
return
}
if (!['add-only', 'read-write'].includes(accessLevel)) {
throw new TypeError(`${accessLevel} must be one of either 'add-only' or 'read-write'`)
}
return getPermissionsHandler().askForPhotosAccess.call(this, accessLevel)
}
function askForInputMonitoringAccess(accessLevel = 'listen') {
if (!isMac) {
return
}
if (!['listen', 'post'].includes(accessLevel)) {
throw new TypeError(`${accessLevel} must be one of either 'listen' or 'post'`)
}
return getPermissionsHandler().askForInputMonitoringAccess.call(this, accessLevel)
}
function askForContactsAccess() {
if (!isMac) {
return
}
return getPermissionsHandler().askForContactsAccess.call(this)
}
function askForFullDiskAccess() {
if (!isMac) {
return
}
return getPermissionsHandler().askForFullDiskAccess.call(this)
}
function askForRemindersAccess() {
if (!isMac) {
return
}
return getPermissionsHandler().askForRemindersAccess.call(this)
}
function askForMicrophoneAccess() {
if (!isMac) {
return
}
return getPermissionsHandler().askForMicrophoneAccess.call(this)
}
function askForMusicLibraryAccess() {
if (!isMac) {
return
}
return getPermissionsHandler().askForMusicLibraryAccess.call(this)
}
function askForSpeechRecognitionAccess() {
if (!isMac) {
return
}
return getPermissionsHandler().askForSpeechRecognitionAccess.call(this)
}
module.exports = {
askForAccessibilityAccess: askForAccessibilityAccess,
askForCalendarAccess: askForCalendarAccess,
askForCameraAccess: askForCameraAccess,
askForContactsAccess: askForContactsAccess,
askForFoldersAccess: askForFoldersAccess,
askForFullDiskAccess: askForFullDiskAccess,
askForInputMonitoringAccess: askForInputMonitoringAccess,
askForRemindersAccess: askForRemindersAccess,
askForMicrophoneAccess: askForMicrophoneAccess,
askForMusicLibraryAccess: askForMusicLibraryAccess,
askForPhotosAccess: askForPhotosAccess,
askForSpeechRecognitionAccess: askForSpeechRecognitionAccess,
askForScreenCaptureAccess: askForScreenCaptureAccess,
getAuthStatus: getAuthStatus,
}