37 lines
808 B
JavaScript
37 lines
808 B
JavaScript
const fs = require('fs')
|
|
const path = require('path')
|
|
|
|
async function readFile(filePath) {
|
|
try {
|
|
const content = await fs.readFileSync(filePath)
|
|
const json = JSON.parse(content)
|
|
const timeDiff = Math.floor(Date.now() / 1000) - json.lastChecked
|
|
return Object.assign({}, json, { timeDiff })
|
|
} catch (e) {
|
|
console.error(e)
|
|
return {
|
|
error: 'the bridge statistics are not available'
|
|
}
|
|
}
|
|
}
|
|
|
|
function writeFile(filePath, object) {
|
|
fs.writeFileSync(path.join(process.cwd(), filePath), JSON.stringify(object, null, 4))
|
|
}
|
|
|
|
function createDir(dirPath) {
|
|
try {
|
|
fs.mkdirSync(path.join(process.cwd(), dirPath), { recursive: true })
|
|
} catch (e) {
|
|
if (!e.message.includes('exists')) {
|
|
throw e
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
readFile,
|
|
writeFile,
|
|
createDir
|
|
}
|