mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
36 lines
777 B
JavaScript
36 lines
777 B
JavaScript
/*
|
|
* notion-enhancer
|
|
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com>
|
|
* (c) 2020 TarasokUA
|
|
* (https://dragonwocky.me/) under the MIT license
|
|
*/
|
|
|
|
// a wrapper for accessing data stored in a JSON file
|
|
|
|
const path = require('path'),
|
|
fs = require('fs');
|
|
|
|
class Store {
|
|
constructor(opts) {
|
|
this.path = path.join(__dirname, opts.config + '.json');
|
|
this.data = parseDataFile(this.path, opts.defaults);
|
|
}
|
|
get(key) {
|
|
return this.data[key];
|
|
}
|
|
set(key, val) {
|
|
this.data[key] = val;
|
|
fs.writeFileSync(this.path, JSON.stringify(this.data));
|
|
}
|
|
}
|
|
|
|
function parseDataFile(path, defaults) {
|
|
try {
|
|
return JSON.parse(fs.readFileSync(path));
|
|
} catch (error) {
|
|
return defaults;
|
|
}
|
|
}
|
|
|
|
module.exports = Store;
|