This app provides monitoring and information features for the common freifunk user and the technical stuff of a freifunk community.
Code base is taken from a TUM Practical Course project and added here to see if Freifunk Altdorf can use it.
https://www.freifunk-altdorf.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
826 B
36 lines
826 B
6 years ago
|
var path = require('path')
|
||
|
var fs = require('graceful-fs')
|
||
|
var mkdir = require('../mkdirs')
|
||
|
|
||
|
function outputFile (file, data, encoding, callback) {
|
||
|
if (typeof encoding === 'function') {
|
||
|
callback = encoding
|
||
|
encoding = 'utf8'
|
||
|
}
|
||
|
|
||
|
var dir = path.dirname(file)
|
||
|
fs.exists(dir, function (itDoes) {
|
||
|
if (itDoes) return fs.writeFile(file, data, encoding, callback)
|
||
|
|
||
|
mkdir.mkdirs(dir, function (err) {
|
||
|
if (err) return callback(err)
|
||
|
|
||
|
fs.writeFile(file, data, encoding, callback)
|
||
|
})
|
||
|
})
|
||
|
}
|
||
|
|
||
|
function outputFileSync (file, data, encoding) {
|
||
|
var dir = path.dirname(file)
|
||
|
if (fs.existsSync(dir)) {
|
||
|
return fs.writeFileSync.apply(fs, arguments)
|
||
|
}
|
||
|
mkdir.mkdirsSync(dir)
|
||
|
fs.writeFileSync.apply(fs, arguments)
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
outputFile: outputFile,
|
||
|
outputFileSync: outputFileSync
|
||
|
}
|