mirror of
https://github.com/Retropex/umbrel-bitcoin.git
synced 2025-05-12 19:20:49 +02:00

Co-authored-by: Luke Childs <lukechilds123@gmail.com> Co-authored-by: Mayank Chhabra <mayankchhabra9@gmail.com> Co-authored-by: Steven Briscoe <me@stevenbriscoe.com>
126 lines
2.9 KiB
JavaScript
126 lines
2.9 KiB
JavaScript
/**
|
|
* Generic disk functions.
|
|
*/
|
|
|
|
const logger = require("utils/logger");
|
|
const fs = require("fs");
|
|
const crypto = require("crypto");
|
|
|
|
const UINT32_BYTES = 4;
|
|
|
|
// Asynchronously checks if a file exists
|
|
async function fileExists(filePath) {
|
|
try {
|
|
await fs.promises.access(filePath);
|
|
return true;
|
|
} catch (err) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// Reads a file. Wraps fs.readFile into a native promise
|
|
function readFile(filePath, encoding) {
|
|
return new Promise((resolve, reject) =>
|
|
fs.readFile(filePath, encoding, (err, str) => {
|
|
if (err) {
|
|
reject(err);
|
|
} else {
|
|
resolve(str);
|
|
}
|
|
})
|
|
);
|
|
}
|
|
|
|
// Reads a file as a utf8 string. Wraps fs.readFile into a native promise
|
|
async function readUtf8File(filePath) {
|
|
return (await readFile(filePath, "utf8")).trim();
|
|
}
|
|
|
|
async function readJsonFile(filePath) {
|
|
return readUtf8File(filePath).then(JSON.parse);
|
|
}
|
|
|
|
// Writes a string to a file. Wraps fs.writeFile into a native promise
|
|
// This is _not_ concurrency safe, so don't export it without making it like writeJsonFile
|
|
function writeFile(filePath, data, encoding) {
|
|
return new Promise((resolve, reject) =>
|
|
fs.writeFile(filePath, data, encoding, (err) => {
|
|
if (err) {
|
|
reject(err);
|
|
} else {
|
|
resolve();
|
|
}
|
|
})
|
|
);
|
|
}
|
|
|
|
function writeJsonFile(filePath, obj) {
|
|
const tempFileName = `${filePath}.${crypto
|
|
.randomBytes(UINT32_BYTES)
|
|
.readUInt32LE(0)}`;
|
|
|
|
return writeFile(tempFileName, JSON.stringify(obj, null, 2), "utf8")
|
|
.then(
|
|
() =>
|
|
new Promise((resolve, reject) =>
|
|
fs.rename(tempFileName, filePath, (err) => {
|
|
if (err) {
|
|
reject(err);
|
|
} else {
|
|
resolve();
|
|
}
|
|
})
|
|
)
|
|
)
|
|
.catch((err) => {
|
|
if (err) {
|
|
fs.unlink(tempFileName, (err) => {
|
|
logger.warn("Error removing temporary file after error", "disk", {
|
|
err,
|
|
tempFileName,
|
|
});
|
|
});
|
|
}
|
|
throw err;
|
|
});
|
|
}
|
|
|
|
function writePlainTextFile(filePath, string) {
|
|
const tempFileName = `${filePath}.${crypto
|
|
.randomBytes(UINT32_BYTES)
|
|
.readUInt32LE(0)}`;
|
|
|
|
return writeFile(tempFileName, string, "utf8")
|
|
.then(
|
|
() =>
|
|
new Promise((resolve, reject) =>
|
|
fs.rename(tempFileName, filePath, (err) => {
|
|
if (err) {
|
|
reject(err);
|
|
} else {
|
|
resolve();
|
|
}
|
|
})
|
|
)
|
|
).catch((err) => {
|
|
if (err) {
|
|
fs.unlink(tempFileName, (err) => {
|
|
logger.warn("Error removing temporary file after error", "disk", {
|
|
err,
|
|
tempFileName,
|
|
});
|
|
});
|
|
}
|
|
})
|
|
}
|
|
|
|
module.exports = {
|
|
fileExists,
|
|
readFile,
|
|
readUtf8File,
|
|
readJsonFile,
|
|
writeJsonFile,
|
|
writeFile,
|
|
writePlainTextFile
|
|
};
|
|
|