2019-09-25 05:42:21 +02:00
|
|
|
import Biometrics from 'react-native-biometrics';
|
|
|
|
const BlueApp = require('../BlueApp');
|
|
|
|
|
|
|
|
export default class Biometric {
|
|
|
|
static STORAGEKEY = 'Biometrics';
|
2019-10-06 00:36:16 +02:00
|
|
|
static FaceID = Biometrics.FaceID;
|
|
|
|
static TouchID = Biometrics.TouchID;
|
2019-09-25 05:42:21 +02:00
|
|
|
|
|
|
|
static async isDeviceBiometricCapable() {
|
2019-09-28 02:13:49 +02:00
|
|
|
const isDeviceBiometricCapable = await Biometric.biometricType();
|
|
|
|
if (typeof isDeviceBiometricCapable === 'string') {
|
|
|
|
return isDeviceBiometricCapable;
|
2019-09-25 05:42:21 +02:00
|
|
|
}
|
|
|
|
Biometric.setBiometricUseEnabled(false);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static async biometricType() {
|
|
|
|
return Biometrics.isSensorAvailable();
|
|
|
|
}
|
|
|
|
|
|
|
|
static async isBiometricUseEnabled() {
|
|
|
|
try {
|
|
|
|
const enabledBiometrics = await BlueApp.getItem(Biometric.STORAGEKEY);
|
|
|
|
return !!enabledBiometrics;
|
|
|
|
} catch (_e) {
|
|
|
|
await BlueApp.setItem(Biometric.STORAGEKEY, '');
|
2019-10-06 00:36:16 +02:00
|
|
|
return false;
|
2019-09-25 05:42:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static async isBiometricUseCapableAndEnabled() {
|
|
|
|
const isBiometricUseEnabled = await Biometric.isBiometricUseEnabled();
|
|
|
|
const isDeviceBiometricCapable = await Biometric.isDeviceBiometricCapable();
|
2019-10-06 00:36:16 +02:00
|
|
|
return isBiometricUseEnabled && isDeviceBiometricCapable;
|
2019-09-25 05:42:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static async setBiometricUseEnabled(value) {
|
|
|
|
await BlueApp.setItem(Biometric.STORAGEKEY, value === true ? '1' : '');
|
|
|
|
}
|
|
|
|
|
|
|
|
static async unlockWithBiometrics() {
|
|
|
|
const isDeviceBiometricCapable = await Biometric.isDeviceBiometricCapable();
|
|
|
|
if (isDeviceBiometricCapable) {
|
|
|
|
try {
|
|
|
|
await Biometrics.simplePrompt('Please confirm your identity.');
|
|
|
|
return true;
|
|
|
|
} catch (_e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|