fchat-rising/electron/secure-store.ts

47 lines
1.3 KiB
TypeScript
Raw Normal View History

2023-09-04 00:55:52 +00:00
import * as electronRemote from '@electron/remote';
2023-09-04 03:05:46 +00:00
import settings from 'electron-settings';
2023-09-04 00:55:52 +00:00
export class SecureStore {
2023-09-04 03:05:46 +00:00
constructor(protected storeName: string) {
2023-09-04 00:55:52 +00:00
}
private getKey(domain: string, account: string): string {
2023-09-04 03:05:46 +00:00
return `${this.storeName}__${domain}__${account}`.replace(/[^a-zA-Z0-9_]/g, '__');
2023-09-04 00:55:52 +00:00
}
2023-09-04 03:05:46 +00:00
async setPassword(domain: string, account: string, password: string): Promise<void> {
2023-09-04 00:55:52 +00:00
if ((electronRemote as any).safeStorage.isEncryptionAvailable() === false) {
return;
}
const buffer = (electronRemote as any).safeStorage.encryptString(password);
2023-09-04 03:05:46 +00:00
await settings.set(this.getKey(domain, account), buffer.toString('binary'));
2023-09-04 00:55:52 +00:00
}
2023-09-04 03:05:46 +00:00
async deletePassword(domain: string, account: string): Promise<void> {
2023-09-04 00:55:52 +00:00
if ((electronRemote as any).safeStorage.isEncryptionAvailable() === false) {
return;
}
2023-09-04 03:05:46 +00:00
await settings.unset(this.getKey(domain, account));
2023-09-04 00:55:52 +00:00
}
2023-09-04 03:05:46 +00:00
async getPassword(domain: string, account: string): Promise<string | null> {
2023-09-04 00:55:52 +00:00
if ((electronRemote as any).safeStorage.isEncryptionAvailable() === false) {
return null;
}
2023-09-04 03:05:46 +00:00
const pw = await settings.get(this.getKey(domain, account));
2023-09-04 00:55:52 +00:00
if (!pw) {
return null;
}
2023-09-04 03:05:46 +00:00
const buffer = Buffer.from(pw.toString(), 'binary');
2023-09-04 00:55:52 +00:00
const decrypted = (electronRemote as any).safeStorage.decryptString(buffer);
return decrypted;
}
}