Files
notesnook/apps/mobile/app/common/database/storage.js
ammarahm-ed 2c900739b5 refactor
2022-08-16 16:48:10 +05:00

122 lines
2.6 KiB
JavaScript

import { Platform } from 'react-native';
import RNFetchBlob from 'rn-fetch-blob';
import {
decrypt,
deriveCryptoKey,
encrypt,
generateCryptoKey,
getCryptoKey,
getRandomBytes,
hash,
removeCryptoKey
} from './encryption';
import { MMKV } from './mmkv';
export class KV {
storage = null;
constructor(storage) {
this.storage = storage;
}
async read(key) {
if (!key) return null;
let data = this.storage.getString(key);
if (!data) return null;
try {
let parse = JSON.parse(data);
return parse;
} catch (e) {
return data;
}
}
async write(key, data) {
this.storage.setString(key, typeof data === 'string' ? data : JSON.stringify(data));
return true;
}
async readMulti(keys) {
if (keys.length <= 0) {
return [];
} else {
let data = await this.storage.getMultipleItemsAsync(keys.slice());
return data.map(([key, value]) => {
let obj;
try {
obj = JSON.parse(value);
} catch (e) {
obj = value;
}
return [key, obj];
});
}
}
async remove(key) {
return await this.storage.removeItem(key);
}
async clear() {
return await this.storage.clearStore();
}
async getAllKeys() {
let keys = (await this.storage.indexer.getKeys()) || [];
keys = keys.filter(
k =>
k !== 'stringIndex' &&
k !== 'boolIndex' &&
k !== 'mapIndex' &&
k !== 'arrayIndex' &&
k !== 'numberIndex' &&
k !== this.storage.instanceID
);
return keys;
}
}
const DefaultStorage = new KV(MMKV);
async function requestPermission() {
if (Platform.OS === 'ios') return true;
return true;
}
async function checkAndCreateDir(path) {
let dir =
Platform.OS === 'ios'
? RNFetchBlob.fs.dirs.DocumentDir + path
: RNFetchBlob.fs.dirs.SDCardDir + '/Notesnook/' + path;
try {
let exists = await RNFetchBlob.fs.exists(dir);
let isDir = await RNFetchBlob.fs.isDir(dir);
if (!exists || !isDir) {
await RNFetchBlob.fs.mkdir(dir);
}
} catch (e) {
await RNFetchBlob.fs.mkdir(dir);
} finally {
}
return dir;
}
export default {
read: key => DefaultStorage.read(key),
write: (key, value) => DefaultStorage.write(key, value),
readMulti: keys => DefaultStorage.readMulti(keys),
remove: key => DefaultStorage.remove(key),
clear: () => DefaultStorage.clear(),
getAllKeys: () => DefaultStorage.getAllKeys(),
encrypt,
decrypt,
getRandomBytes,
checkAndCreateDir,
requestPermission,
deriveCryptoKey,
getCryptoKey,
removeCryptoKey,
hash,
generateCryptoKey
};