bitwarden-estensione-browser/electron/src/services/electronStorage.service.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
1.5 KiB
TypeScript
Raw Normal View History

import { ipcMain, ipcRenderer } from "electron";
2019-03-12 03:36:29 +01:00
import * as fs from "fs";
import { StorageService } from "jslib-common/abstractions/storage.service";
2019-03-12 03:36:29 +01:00
import { NodeUtils } from "jslib-common/misc/nodeUtils";
2019-03-12 03:36:29 +01:00
// tslint:disable-next-line
const Store = require("electron-store");
export class ElectronStorageService implements StorageService {
private store: any;
constructor(dir: string, defaults = {}) {
if (!fs.existsSync(dir)) {
NodeUtils.mkdirpSync(dir, "700");
}
2019-03-12 03:36:29 +01:00
const storeConfig: any = {
defaults: defaults,
name: "data",
2021-12-16 13:36:21 +01:00
};
2019-03-12 03:36:29 +01:00
this.store = new Store(storeConfig);
2021-12-16 13:36:21 +01:00
ipcMain.handle("storageService", (event, options) => {
switch (options.action) {
2021-12-16 13:36:21 +01:00
case "get":
return this.get(options.key);
2021-12-16 13:36:21 +01:00
case "has":
return this.has(options.key);
2021-12-16 13:36:21 +01:00
case "save":
return this.save(options.key, options.obj);
case "remove":
return this.remove(options.key);
2021-12-16 13:36:21 +01:00
}
});
}
2019-03-12 03:36:29 +01:00
get<T>(key: string): Promise<T> {
const val = this.store.get(key) as T;
return Promise.resolve(val != null ? val : null);
2021-12-16 13:36:21 +01:00
}
has(key: string): Promise<boolean> {
2019-03-12 03:36:29 +01:00
const val = this.store.get(key);
return Promise.resolve(val != null);
2021-12-16 13:36:21 +01:00
}
2019-03-12 03:36:29 +01:00
save(key: string, obj: any): Promise<any> {
if (obj instanceof Set) {
obj = Array.from(obj);
2019-03-12 03:36:29 +01:00
}
this.store.set(key, obj);
return Promise.resolve();
2021-12-16 13:36:21 +01:00
}
2019-03-12 03:36:29 +01:00
remove(key: string): Promise<any> {
this.store.delete(key);
return Promise.resolve();
2021-12-16 13:36:21 +01:00
}
2019-03-12 03:36:29 +01:00
}