node-red/red/runtime/nodes/context/localfilesystem.js

157 lines
4.9 KiB
JavaScript
Raw Normal View History

2018-03-15 21:52:17 +01:00
/**
* Copyright JS Foundation and other contributors, http://js.foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
var fs = require('fs-extra');
var path = require("path");
2018-05-30 03:24:27 +02:00
var when = require("when");
2018-06-07 13:17:51 +02:00
var util = require("../../util");
2018-03-15 21:52:17 +01:00
2018-06-07 13:17:51 +02:00
function getStoragePath(storageBaseDir, scope) {
2018-05-30 03:24:27 +02:00
if(scope.indexOf(":") === -1){
if(scope === "global"){
2018-06-07 13:17:51 +02:00
return path.join(storageBaseDir,"global",scope);
}else{ // scope:flow
2018-06-07 13:17:51 +02:00
return path.join(storageBaseDir,scope,"flow");
}
}else{ // scope:local
var ids = scope.split(":")
2018-06-07 13:17:51 +02:00
return path.join(storageBaseDir,ids[1],ids[0]);
}
2018-03-15 21:52:17 +01:00
}
2018-06-07 13:17:51 +02:00
function getBasePath(config) {
var base = config.base || "contexts";
var storageBaseDir;
if (!config.dir) {
if(config.settings && config.settings.userDir){
storageBaseDir = path.join(config.settings.userDir, base);
}else{
try {
fs.statSync(path.join(process.env.NODE_RED_HOME,".config.json"));
storageBaseDir = path.join(process.env.NODE_RED_HOME, base);
} catch(err) {
2018-03-15 21:52:17 +01:00
try {
// Consider compatibility for older versions
if (process.env.HOMEPATH) {
fs.statSync(path.join(process.env.HOMEPATH,".node-red",".config.json"));
storageBaseDir = path.join(process.env.HOMEPATH, ".node-red", base);
}
} catch(err) {
}
if (!storageBaseDir) {
storageBaseDir = path.join(process.env.HOME || process.env.USERPROFILE || process.env.HOMEPATH || process.env.NODE_RED_HOME,".node-red", base);
2018-03-15 21:52:17 +01:00
}
}
2018-03-15 21:52:17 +01:00
}
}else{
storageBaseDir = path.join(config.dir, base);
}
return storageBaseDir;
}
2018-03-15 21:52:17 +01:00
2018-06-07 13:17:51 +02:00
function loadFile(storagePath){
return fs.pathExists(storagePath).then(function(exists){
if(exists === true){
return fs.readFile(storagePath, "utf8");
}else{
return when.resolve(undefined);
}
}).catch(function(err){
throw when.reject(err);
});
}
function LocalFileSystem(config){
this.config = config;
2018-06-07 13:17:51 +02:00
this.storageBaseDir = getBasePath(this.config);
}
2018-05-30 03:24:27 +02:00
LocalFileSystem.prototype.open = function(){
return when.resolve();
}
LocalFileSystem.prototype.close = function(){
return when.resolve();
}
2018-06-07 13:17:51 +02:00
LocalFileSystem.prototype.getAsync = function(scope, key) {
var storagePath = getStoragePath(this.storageBaseDir ,scope);
return loadFile(storagePath).then(function(data){
if(data){
return util.getMessageProperty(JSON.parse(data),key);
}else{
2018-06-07 13:17:51 +02:00
return undefined
2018-03-15 21:52:17 +01:00
}
2018-06-07 13:17:51 +02:00
}).catch(function(err){
return when.reject(err);
});
};
LocalFileSystem.prototype.setAsync =function(scope, key, value) {
2018-06-07 13:17:51 +02:00
var storagePath = getStoragePath(this.storageBaseDir ,scope);
return loadFile(storagePath).then(function(data){
var obj = data ? JSON.parse(data) : {}
util.setMessageProperty(obj,key,value);
return obj;
}).then(function(obj){
var str = JSON.stringify(obj, undefined, 4);
return fs.outputFile(storagePath, str, "utf8");
}).catch(function(err){
return when.reject(err);
});
};
LocalFileSystem.prototype.keysAsync = function(scope){
2018-06-07 13:17:51 +02:00
var storagePath = getStoragePath(this.storageBaseDir ,scope);
return loadFile(storagePath).then(function(data){
if(data){
return Object.keys(JSON.parse(data));
}else{
return []
}
}).catch(function(err){
return when.reject(err);
});
};
LocalFileSystem.prototype.delete = function(scope){
2018-06-07 13:17:51 +02:00
var storagePath = getStoragePath(this.storageBaseDir ,scope);
return fs.remove(storagePath);
}
LocalFileSystem.prototype.clean = function(activeNodes){
var self = this;
return fs.readdir(self.storageBaseDir).then(function(dirs){
return when.all(dirs.reduce(function(result, item){
if(item !== "global" && activeNodes.indexOf(item) === -1){
result.push(fs.remove(path.join(self.storageBaseDir,item)));
}
return result;
},[]));
}).catch(function(err){
if(err.code == 'ENOENT') {
return when.resolve();
}else{
return when.reject(err);
}
});
}
module.exports = function(config){
return new LocalFileSystem(config);
2018-03-15 21:52:17 +01:00
};