mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2024-11-17 02:48:31 -07:00
37 lines
886 B
JavaScript
37 lines
886 B
JavaScript
const yaml = require('js-yaml');
|
|
const fs = require('fs');
|
|
const equals = require('fast-deep-equal/es6');
|
|
|
|
function read(file) {
|
|
try {
|
|
return yaml.safeLoad(fs.readFileSync(file, 'utf8'));
|
|
} catch (error) {
|
|
if (error.name === 'YAMLException') {
|
|
error.file = file;
|
|
}
|
|
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
function readIfExists(file, default_=null) {
|
|
return fs.existsSync(file) ? read(file) : default_;
|
|
}
|
|
|
|
function writeIfChanged(file, content) {
|
|
const before = readIfExists(file);
|
|
if (!equals(before, content)) {
|
|
fs.writeFileSync(file, yaml.safeDump(content));
|
|
}
|
|
}
|
|
|
|
function updateIfChanged(file, key, value) {
|
|
const content = read(file);
|
|
if (content[key] !== value) {
|
|
content[key] = value;
|
|
writeIfChanged(file, content);
|
|
}
|
|
}
|
|
|
|
module.exports = {read, readIfExists, writeIfChanged, updateIfChanged};
|