Files
inji-wallet/shared/storage.ts
Tilak Puli 0dc6139449 Inji-409: Add flipper config (#865)
* feat(inji-344): add flipper config for mmkv and xstate

* feat(inji-409): Add flipper config file and enable devtools for all machines

* feat(inji-409): Add react-navigation to flipper config
2023-10-04 16:38:34 +05:30

197 lines
5.7 KiB
TypeScript

import {MMKVLoader} from 'react-native-mmkv-storage';
import CryptoJS from 'crypto-js';
import {
DocumentDirectoryPath,
exists,
mkdir,
readFile,
stat,
unlink,
writeFile,
} from 'react-native-fs';
import getAllConfigurations from './commonprops/commonProps';
import {Platform} from 'react-native';
import {
getFreeDiskStorageOldSync,
getFreeDiskStorageSync,
} from 'react-native-device-info';
import SecureKeystore from 'react-native-secure-keystore';
import {
decryptJson,
encryptJson,
HMAC_ALIAS,
isCustomSecureKeystore,
} from './cryptoutil/cryptoUtil';
import {VCMetadata} from './VCMetadata';
export const MMKV = new MMKVLoader().initialize();
const vcDirectoryPath = `${DocumentDirectoryPath}/inji/VC`;
export const API_CACHED_STORAGE_KEYS = {
fetchIssuers: 'CACHE_FETCH_ISSUERS',
fetchIssuerConfig: (issuerId: string) =>
`CACHE_FETCH_ISSUER_CONFIG_${issuerId}`,
};
async function generateHmac(
encryptionKey: string,
data: string,
): Promise<string> {
if (!isCustomSecureKeystore()) {
return CryptoJS.HmacSHA256(encryptionKey, data).toString();
}
return await SecureKeystore.generateHmacSha(HMAC_ALIAS, data);
}
class Storage {
static isVCStorageInitialised = async (): Promise<boolean> => {
try {
const res = await stat(vcDirectoryPath);
return res.isDirectory();
} catch (_) {
return false;
}
};
static setItem = async (
key: string,
data: string,
encryptionKey?: string,
) => {
try {
const isSavingVC = VCMetadata.isVCKey(key);
if (isSavingVC) {
await this.storeVcHmac(encryptionKey, data, key);
return await this.storeVC(key, data);
}
await MMKV.setItem(key, data);
} catch (error) {
console.log('Error Occurred while saving in Storage.', error);
throw error;
}
};
static getItem = async (key: string, encryptionKey?: string) => {
try {
const isVCKey = VCMetadata.isVCKey(key);
if (isVCKey) {
const data = await this.readVCFromFile(key);
const isCorrupted = await this.isCorruptedVC(key, encryptionKey, data);
return isCorrupted ? null : data;
}
return await MMKV.getItem(key);
} catch (error) {
console.log('Error Occurred while retriving from Storage.', error);
throw error;
}
};
private static async isCorruptedVC(
key: string,
encryptionKey: string,
data: string,
) {
const storedHMACofCurrentVC = await this.readHmacForVC(key, encryptionKey);
const HMACofVC = await generateHmac(encryptionKey, data);
return HMACofVC !== storedHMACofCurrentVC;
}
private static async readHmacForVC(key: string, encryptionKey: string) {
const encryptedHMACofCurrentVC = await MMKV.getItem(getVCKeyName(key));
return decryptJson(encryptionKey, encryptedHMACofCurrentVC);
}
private static async readVCFromFile(key: string) {
const path = getFilePath(key);
return await readFile(path, 'utf8');
}
private static async storeVC(key: string, data: string) {
await mkdir(vcDirectoryPath);
const path = getFilePath(key);
return await writeFile(path, data, 'utf8');
}
private static async storeVcHmac(
encryptionKey: string,
data: string,
key: string,
) {
const HMACofVC = await generateHmac(encryptionKey, data);
const encryptedHMACofVC = await encryptJson(encryptionKey, HMACofVC);
await MMKV.setItem(getVCKeyName(key), encryptedHMACofVC);
}
static removeItem = async (key: string) => {
if (VCMetadata.isVCKey(key)) {
const path = getFilePath(key);
return await unlink(path);
}
MMKV.removeItem(key);
};
static clear = async () => {
try {
(await exists(`${vcDirectoryPath}`)) &&
(await unlink(`${vcDirectoryPath}`));
MMKV.clearStore();
} catch (e) {
console.log('Error Occurred while Clearing Storage.', e);
}
};
static isMinimumLimitReached = async (limitInMB: string) => {
const configurations = await getAllConfigurations();
if (!configurations[limitInMB]) return false;
const minimumStorageLimitInBytes = configurations[limitInMB] * 1000 * 1000;
const freeDiskStorageInBytes =
Platform.OS === 'android' && Platform.Version < 29
? getFreeDiskStorageOldSync()
: getFreeDiskStorageSync();
console.log('minimumStorageLimitInBytes ', minimumStorageLimitInBytes);
console.log('freeDiskStorageInBytes ', freeDiskStorageInBytes);
return freeDiskStorageInBytes <= minimumStorageLimitInBytes;
};
}
/**
* The VC file name will not have the pinned / unpinned state, we will splice the state as this will change.
* replace ':' with '_' in the key to get the file name as ':' are not allowed in filenames
* eg: "vc:UIN:6732935275:e7426576-112f-466a-961a-1ed9635db628" is changed to "vc_UIN_6732935275_e7426576-112f-466a-961a-1ed9635db628"
*/
const getFileName = (key: string) => {
return key.split(':').splice(0, 4).join('_');
};
/**
* iOS: /var/mobile/Containers/Data/Application/196A05AD-6B11-403D-BA2D-6DC1F30075E1/Documents/inji/VC/<filename>
* android: /data/user/0/io.mosip.residentapp/files/inji/VC/<filename>
* These paths are coming from DocumentDirectoryPath in react-native-fs.
*/
const getFilePath = (key: string) => {
return `${vcDirectoryPath}/${key}.txt`;
};
/**
* The VC key will not have the pinned / unpinned state, we will splice the state as this will change.
* eg: "vc:UIN:6732935275:e7426576-112f-466a-961a-1ed9635db628:true" is changed to "vc:UIN:6732935275:e7426576-112f-466a-961a-1ed9635db628"
*/
const getVCKeyName = (key: string) => {
return key;
};
// To print the MMKV data cal this function in getItem
const getMMKVData = async () => {
return await MMKV.indexer.getKeys();
};
export default Storage;