mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Load flows file from userDir when appropriate
This commit is contained in:
parent
4d48c72146
commit
f78a71e8ed
6
red.js
6
red.js
@ -69,6 +69,10 @@ if (parsedArgs.settings) {
|
|||||||
} else if (parsedArgs.userDir && fs.existsSync(path.join(parsedArgs.userDir,"settings.js"))) {
|
} else if (parsedArgs.userDir && fs.existsSync(path.join(parsedArgs.userDir,"settings.js"))) {
|
||||||
// User-specified userDir that contains a settings.js
|
// User-specified userDir that contains a settings.js
|
||||||
settingsFile = path.join(parsedArgs.userDir,"settings.js");
|
settingsFile = path.join(parsedArgs.userDir,"settings.js");
|
||||||
|
} else {
|
||||||
|
if (fs.existsSync(path.join(process.env.NODE_RED_HOME,".config.json"))) {
|
||||||
|
// NODE_RED_HOME contains user data - use its settings.js
|
||||||
|
settingsFile = path.join(process.env.NODE_RED_HOME,"settings.js");
|
||||||
} else {
|
} else {
|
||||||
var userSettingsFile = path.join(process.env.HOME || process.env.HOMEPATH || process.env.USERPROFILE,".node-red","settings.js");
|
var userSettingsFile = path.join(process.env.HOME || process.env.HOMEPATH || process.env.USERPROFILE,".node-red","settings.js");
|
||||||
if (fs.existsSync(userSettingsFile)) {
|
if (fs.existsSync(userSettingsFile)) {
|
||||||
@ -79,9 +83,11 @@ if (parsedArgs.settings) {
|
|||||||
settingsFile = "./settings";
|
settingsFile = "./settings";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
var settings = require(settingsFile);
|
var settings = require(settingsFile);
|
||||||
|
settings.settingsFile = settingsFile;
|
||||||
} catch(err) {
|
} catch(err) {
|
||||||
if (err.code == 'MODULE_NOT_FOUND') {
|
if (err.code == 'MODULE_NOT_FOUND') {
|
||||||
console.log("Unable to load settings file: "+settingsFile);
|
console.log("Unable to load settings file: "+settingsFile);
|
||||||
|
@ -158,7 +158,23 @@ var localfilesystem = {
|
|||||||
|
|
||||||
if (settings.flowFile) {
|
if (settings.flowFile) {
|
||||||
flowsFile = settings.flowFile;
|
flowsFile = settings.flowFile;
|
||||||
|
|
||||||
|
if (flowsFile[0] == "/") {
|
||||||
|
// Absolute path
|
||||||
flowsFullPath = flowsFile;
|
flowsFullPath = flowsFile;
|
||||||
|
} else if (flowsFile.substring(0,2) === "./") {
|
||||||
|
// Relative to cwd
|
||||||
|
flowsFullPath = fspath.join(process.cwd(),flowsFile);
|
||||||
|
} else {
|
||||||
|
if (fs.existsSync(fspath.join(process.cwd(),flowsFile))) {
|
||||||
|
// Found in cwd
|
||||||
|
flowsFullPath = fspath.join(process.cwd(),flowsFile);
|
||||||
|
} else {
|
||||||
|
// Use userDir
|
||||||
|
flowsFullPath = fspath.join(settings.userDir,flowsFile);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
flowsFile = 'flows_'+require('os').hostname()+'.json';
|
flowsFile = 'flows_'+require('os').hostname()+'.json';
|
||||||
flowsFullPath = fspath.join(settings.userDir,flowsFile);
|
flowsFullPath = fspath.join(settings.userDir,flowsFile);
|
||||||
@ -186,20 +202,20 @@ var localfilesystem = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
getFlows: function() {
|
getFlows: function() {
|
||||||
var defer = when.defer();
|
return when.promise(function(resolve) {
|
||||||
log.info("User Directory : "+settings.userDir);
|
log.info("User Directory : "+settings.userDir);
|
||||||
|
log.info("Flows file : "+flowsFullPath);
|
||||||
fs.exists(flowsFullPath, function(exists) {
|
fs.exists(flowsFullPath, function(exists) {
|
||||||
if (exists) {
|
if (exists) {
|
||||||
log.info("Loading flows : "+flowsFile);
|
resolve(nodeFn.call(fs.readFile,flowsFullPath,'utf8').then(function(data) {
|
||||||
defer.resolve(nodeFn.call(fs.readFile,flowsFullPath,'utf8').then(function(data) {
|
|
||||||
return JSON.parse(data);
|
return JSON.parse(data);
|
||||||
}));
|
}));
|
||||||
} else {
|
} else {
|
||||||
log.info("Creating new flows file : "+flowsFile );
|
log.info("Creating new flows file");
|
||||||
defer.resolve([]);
|
resolve([]);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return defer.promise;
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
saveFlows: function(flows) {
|
saveFlows: function(flows) {
|
||||||
@ -218,25 +234,25 @@ var localfilesystem = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
getCredentials: function() {
|
getCredentials: function() {
|
||||||
var defer = when.defer();
|
return when.promise(function(resolve) {
|
||||||
fs.exists(credentialsFile, function(exists) {
|
fs.exists(credentialsFile, function(exists) {
|
||||||
if (exists) {
|
if (exists) {
|
||||||
defer.resolve(nodeFn.call(fs.readFile, credentialsFile, 'utf8').then(function(data) {
|
resolve(nodeFn.call(fs.readFile, credentialsFile, 'utf8').then(function(data) {
|
||||||
return JSON.parse(data)
|
return JSON.parse(data)
|
||||||
}));
|
}));
|
||||||
} else {
|
} else {
|
||||||
fs.exists(oldCredentialsFile, function(exists) {
|
fs.exists(oldCredentialsFile, function(exists) {
|
||||||
if (exists) {
|
if (exists) {
|
||||||
defer.resolve(nodeFn.call(fs.readFile, oldCredentialsFile, 'utf8').then(function(data) {
|
resolve(nodeFn.call(fs.readFile, oldCredentialsFile, 'utf8').then(function(data) {
|
||||||
return JSON.parse(data)
|
return JSON.parse(data)
|
||||||
}));
|
}));
|
||||||
} else {
|
} else {
|
||||||
defer.resolve({});
|
resolve({});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return defer.promise;
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
saveCredentials: function(credentials) {
|
saveCredentials: function(credentials) {
|
||||||
|
Loading…
Reference in New Issue
Block a user