Split configuration into low and high traffic files
Also, we're now handling config ourselves instead of using electron-config and config dependencies.pull/27/head^2
parent
f59ec92fef
commit
998c35dcb3
@ -0,0 +1,58 @@
|
|||||||
|
const fs = require('fs');
|
||||||
|
|
||||||
|
const _ = require('lodash');
|
||||||
|
|
||||||
|
const ENCODING = 'utf8';
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
start,
|
||||||
|
};
|
||||||
|
|
||||||
|
function start(name, targetPath) {
|
||||||
|
let cachedValue = null;
|
||||||
|
|
||||||
|
try {
|
||||||
|
const text = fs.readFileSync(targetPath, ENCODING);
|
||||||
|
cachedValue = JSON.parse(text);
|
||||||
|
console.log(`config/get: Successfully read ${name} config file`);
|
||||||
|
|
||||||
|
if (!cachedValue) {
|
||||||
|
console.log(
|
||||||
|
`config/get: ${name} config value was falsy, cache is now empty object`
|
||||||
|
);
|
||||||
|
cachedValue = Object.create(null);
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
if (error.code !== 'ENOENT') {
|
||||||
|
throw error;
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log(
|
||||||
|
`config/get: Did not find ${name} config file, cache is now empty object`
|
||||||
|
);
|
||||||
|
cachedValue = Object.create(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
function get(keyPath) {
|
||||||
|
return _.get(cachedValue, keyPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
function set(keyPath, value) {
|
||||||
|
_.set(cachedValue, keyPath, value);
|
||||||
|
console.log(`config/set: Saving ${name} config to disk`);
|
||||||
|
const text = JSON.stringify(cachedValue, null, ' ');
|
||||||
|
fs.writeFileSync(targetPath, text, ENCODING);
|
||||||
|
}
|
||||||
|
|
||||||
|
function remove() {
|
||||||
|
console.log(`config/remove: Deleting ${name} config from disk`);
|
||||||
|
fs.unlinkSync(targetPath);
|
||||||
|
cachedValue = Object.create(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
set,
|
||||||
|
get,
|
||||||
|
remove,
|
||||||
|
};
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
const path = require('path');
|
||||||
|
|
||||||
|
const { app } = require('electron');
|
||||||
|
|
||||||
|
const { start } = require('./base_config');
|
||||||
|
|
||||||
|
const userDataPath = app.getPath('userData');
|
||||||
|
const targetPath = path.join(userDataPath, 'ephemeral.json');
|
||||||
|
|
||||||
|
const ephemeralConfig = start('ephemeral', targetPath);
|
||||||
|
|
||||||
|
module.exports = ephemeralConfig;
|
@ -1,62 +0,0 @@
|
|||||||
const fs = require('fs');
|
|
||||||
const path = require('path');
|
|
||||||
const crypto = require('crypto');
|
|
||||||
|
|
||||||
const { app } = require('electron');
|
|
||||||
|
|
||||||
const ENCODING = 'utf8';
|
|
||||||
const userDataPath = app.getPath('userData');
|
|
||||||
const targetPath = path.join(userDataPath, 'key.txt');
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
get,
|
|
||||||
set,
|
|
||||||
initialize,
|
|
||||||
remove,
|
|
||||||
};
|
|
||||||
|
|
||||||
function get() {
|
|
||||||
try {
|
|
||||||
const key = fs.readFileSync(targetPath, ENCODING);
|
|
||||||
console.log('key/get: Successfully read key file');
|
|
||||||
return key;
|
|
||||||
} catch (error) {
|
|
||||||
if (error.code === 'ENOENT') {
|
|
||||||
console.log('key/get: Could not find key file, returning null');
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function set(key) {
|
|
||||||
console.log('key/set: Saving key to disk');
|
|
||||||
fs.writeFileSync(targetPath, key, ENCODING);
|
|
||||||
}
|
|
||||||
|
|
||||||
function remove() {
|
|
||||||
console.log('key/remove: Deleting key from disk');
|
|
||||||
fs.unlinkSync(targetPath);
|
|
||||||
}
|
|
||||||
|
|
||||||
function initialize({ userConfig }) {
|
|
||||||
const keyFromConfig = userConfig.get('key');
|
|
||||||
const keyFromStore = get();
|
|
||||||
|
|
||||||
let key = keyFromStore || keyFromConfig;
|
|
||||||
if (!key) {
|
|
||||||
console.log(
|
|
||||||
'key/initialize: Generating new encryption key, since we did not find it on disk'
|
|
||||||
);
|
|
||||||
// https://www.zetetic.net/sqlcipher/sqlcipher-api/#key
|
|
||||||
key = crypto.randomBytes(32).toString('hex');
|
|
||||||
set(key);
|
|
||||||
} else if (keyFromConfig) {
|
|
||||||
set(key);
|
|
||||||
console.log('key/initialize: Removing key from config.json');
|
|
||||||
userConfig.delete('key');
|
|
||||||
}
|
|
||||||
|
|
||||||
return key;
|
|
||||||
}
|
|
Loading…
Reference in New Issue