forked from craftzing/react-native-biometrics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.ts
249 lines (217 loc) · 9.14 KB
/
index.ts
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
import { NativeModules } from 'react-native'
import { Platform } from 'react-native';
const { ReactNativeBiometrics: bridge } = NativeModules
/**
* Type alias for possible biometry types
*/
export type BiometryType = 'TouchID' | 'FaceID' | 'Biometrics'
interface RNBiometricsOptions {
allowDeviceCredentials?: boolean
}
interface IsSensorAvailableResult {
available: boolean
biometryType?: BiometryType
error?: string
}
interface CreateKeysResult {
publicKey: string
}
interface BiometricKeysExistResult {
keysExist: boolean
}
interface DeleteKeysResult {
keysDeleted: boolean
}
interface CreateSignatureOptions {
promptMessage: string
payload: string
cancelButtonText?: string
}
interface CreateSignatureResult {
success: boolean
signature?: string
error?: string
}
interface KeyguardAuthentication {
promptMessage: string
promptReason: string
}
interface SimplePromptOptions {
promptMessage: string
fallbackPromptMessage?: string
allowDeviceCredentials?: boolean
cancelButtonText?: string
}
interface SimplePromptResult {
success: boolean
error?: string
}
/**
* Enum for touch id sensor type
*/
export const TouchID = 'TouchID'
/**
* Enum for face id sensor type
*/
export const FaceID = 'FaceID'
/**
* Enum for generic biometrics (this is the only value available on android)
*/
export const Biometrics = 'Biometrics'
export const BiometryTypes = {
TouchID,
FaceID,
Biometrics
}
export module ReactNativeBiometricsLegacy {
/**
* Returns promise that resolves to an object with object.biometryType = Biometrics | TouchID | FaceID
* @returns {Promise<Object>} Promise that resolves to an object with details about biometrics available
*/
export function isSensorAvailable(): Promise<IsSensorAvailableResult> {
return new ReactNativeBiometrics().isSensorAvailable()
}
/**
* Creates a public private key pair,returns promise that resolves to
* an object with object.publicKey, which is the public key of the newly generated key pair
* @returns {Promise<Object>} Promise that resolves to object with details about the newly generated public key
*/
export function createKeys(): Promise<CreateKeysResult> {
return new ReactNativeBiometrics().createKeys()
}
/**
* Returns promise that resolves to an object with object.keysExists = true | false
* indicating if the keys were found to exist or not
* @returns {Promise<Object>} Promise that resolves to object with details aobut the existence of keys
*/
export function biometricKeysExist(): Promise<BiometricKeysExistResult> {
return new ReactNativeBiometrics().biometricKeysExist()
}
/**
* Returns promise that resolves to an object with true | false
* indicating if the keys were properly deleted
* @returns {Promise<Object>} Promise that resolves to an object with details about the deletion
*/
export function deleteKeys(): Promise<DeleteKeysResult> {
return new ReactNativeBiometrics().deleteKeys()
}
/**
* Prompts user with biometrics dialog using the passed in prompt message and
* returns promise that resolves to an object with object.signature,
* which is cryptographic signature of the payload
* @param {Object} createSignatureOptions
* @param {string} createSignatureOptions.promptMessage
* @param {string} createSignatureOptions.payload
* @returns {Promise<Object>} Promise that resolves to an object cryptographic signature details
*/
export function createSignature(createSignatureOptions: CreateSignatureOptions): Promise<CreateSignatureResult> {
return new ReactNativeBiometrics().createSignature(createSignatureOptions)
}
/**
* Prompts user with biometrics dialog using the passed in prompt message and
* returns promise that resolves to an object with object.success = true if the user passes,
* object.success = false if the user cancels, and rejects if anything fails
* @param {Object} simplePromptOptions
* @param {string} simplePromptOptions.promptMessage
* @param {string} simplePromptOptions.fallbackPromptMessage
* @returns {Promise<Object>} Promise that resolves an object with details about the biometrics result
*/
export function simplePrompt(simplePromptOptions: SimplePromptOptions): Promise<SimplePromptResult> {
return new ReactNativeBiometrics().simplePrompt(simplePromptOptions)
}
}
export default class ReactNativeBiometrics {
allowDeviceCredentials = false
/**
* @param {Object} rnBiometricsOptions
* @param {boolean} rnBiometricsOptions.allowDeviceCredentials
*/
constructor(rnBiometricsOptions?: RNBiometricsOptions) {
const allowDeviceCredentials = rnBiometricsOptions?.allowDeviceCredentials ?? false
this.allowDeviceCredentials = allowDeviceCredentials
}
/**
* Returns promise that resolves to an object with object.biometryType = Biometrics | TouchID | FaceID
* @returns {Promise<Object>} Promise that resolves to an object with details about biometrics available
*/
isSensorAvailable(): Promise<IsSensorAvailableResult> {
return bridge.isSensorAvailable({
allowDeviceCredentials: this.allowDeviceCredentials
})
}
/**
* Creates a public private key pair,returns promise that resolves to
* an object with object.publicKey, which is the public key of the newly generated key pair
* @returns {Promise<Object>} Promise that resolves to object with details about the newly generated public key
*/
createKeys(): Promise<CreateKeysResult> {
return bridge.createKeys({
allowDeviceCredentials: this.allowDeviceCredentials
})
}
/**
* Returns promise that resolves to an object with object.keysExists = true | false
* indicating if the keys were found to exist or not
* @returns {Promise<Object>} Promise that resolves to object with details aobut the existence of keys
*/
biometricKeysExist(): Promise<BiometricKeysExistResult> {
return bridge.biometricKeysExist()
}
/**
* Returns promise that resolves to an object with true | false
* indicating if the keys were properly deleted
* @returns {Promise<Object>} Promise that resolves to an object with details about the deletion
*/
deleteKeys(): Promise<DeleteKeysResult> {
return bridge.deleteKeys()
}
/**
* Prompts user with biometrics dialog using the passed in prompt message and
* returns promise that resolves to an object with object.signature,
* which is cryptographic signature of the payload
* @param {Object} createSignatureOptions
* @param {string} createSignatureOptions.promptMessage
* @param {string} createSignatureOptions.payload
* @returns {Promise<Object>} Promise that resolves to an object cryptographic signature details
*/
createSignature(createSignatureOptions: CreateSignatureOptions): Promise<CreateSignatureResult> {
createSignatureOptions.cancelButtonText = createSignatureOptions.cancelButtonText ?? 'Cancel'
return bridge.createSignature({
allowDeviceCredentials: this.allowDeviceCredentials,
...createSignatureOptions
})
}
/**
* Prompts user with biometrics dialog using the passed in prompt message and
* returns promise that resolves to an object with object.success = true if the user passes,
* object.success = false if the user cancels, and rejects if anything fails
* @param {Object} simplePromptOptions
* @param {string} simplePromptOptions.promptMessage
* @param {boolean} simplePromptOptions.allodDeviceCredentials
* @param {string} simplePromptOptions.fallbackPromptMessage
* @returns {Promise<Object>} Promise that resolves an object with details about the biometrics result
*/
simplePrompt(simplePromptOptions: SimplePromptOptions): Promise<SimplePromptResult> {
simplePromptOptions.cancelButtonText = simplePromptOptions.cancelButtonText ?? 'Cancel'
simplePromptOptions.fallbackPromptMessage = simplePromptOptions.fallbackPromptMessage ?? 'Use Passcode'
return bridge.simplePrompt({
allowDeviceCredentials: this.allowDeviceCredentials,
...simplePromptOptions
})
}
/**
* Prompts user with keyguardAuthentication dialog using the passed in prompt message and
* returns promise that resolves to an object with object.success = true if the user passes
* and rejects if anything fails
* @param {Object} keyguardAuthenticationProps
* @param {string} keyguardAuthenticationProps.promptMessage
* @param {string} keyguardAuthenticationProps.promptReason
* @returns {Promise<Object>} Promise that resolves an object with details about the biometrics result
*/
keyguardAuthentication(keyguardAuthenticationProps: KeyguardAuthentication): Promise<SimplePromptResult> {
if (Platform.OS === 'ios') {
return Promise.reject("keyguardAuthentication is not supported on iOS");
}
return bridge.keyguardAuthentication(keyguardAuthenticationProps)
}
}