2013-11-10 01:05:58 +01:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2013-11-10 01:05:58 +01:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
**/
|
|
|
|
|
2015-06-29 17:00:10 +02:00
|
|
|
var Path = require('path');
|
2016-10-09 23:02:24 +02:00
|
|
|
var crypto = require('crypto');
|
|
|
|
|
2020-12-02 10:25:10 +01:00
|
|
|
var log = require("@node-red/util").log;
|
2013-11-10 01:05:58 +01:00
|
|
|
|
2016-09-21 11:22:04 +02:00
|
|
|
var runtime;
|
2014-07-23 16:15:20 +02:00
|
|
|
var storageModule;
|
2014-08-28 01:35:07 +02:00
|
|
|
var settingsAvailable;
|
2015-01-28 23:41:13 +01:00
|
|
|
var sessionsAvailable;
|
2014-07-23 16:15:20 +02:00
|
|
|
|
2020-10-28 22:59:22 +01:00
|
|
|
var Mutex = require('async-mutex').Mutex;
|
|
|
|
const settingsSaveMutex = new Mutex();
|
|
|
|
|
2018-06-06 22:38:44 +02:00
|
|
|
var libraryFlowsCachedResult = null;
|
|
|
|
|
2014-07-23 16:15:20 +02:00
|
|
|
function moduleSelector(aSettings) {
|
|
|
|
var toReturn;
|
|
|
|
if (aSettings.storageModule) {
|
|
|
|
if (typeof aSettings.storageModule === "string") {
|
|
|
|
// TODO: allow storage modules to be specified by absolute path
|
|
|
|
toReturn = require("./"+aSettings.storageModule);
|
|
|
|
} else {
|
|
|
|
toReturn = aSettings.storageModule;
|
|
|
|
}
|
2013-12-19 12:05:03 +01:00
|
|
|
} else {
|
2014-07-23 16:15:20 +02:00
|
|
|
toReturn = require("./localfilesystem");
|
2013-12-19 12:05:03 +01:00
|
|
|
}
|
2014-07-23 16:15:20 +02:00
|
|
|
return toReturn;
|
2013-12-19 12:05:03 +01:00
|
|
|
}
|
|
|
|
|
2014-07-29 14:51:21 +02:00
|
|
|
function is_malicious(path) {
|
|
|
|
return path.indexOf('../') != -1 || path.indexOf('..\\') != -1;
|
|
|
|
}
|
|
|
|
|
2014-07-23 16:15:20 +02:00
|
|
|
var storageModuleInterface = {
|
2020-11-30 15:38:48 +01:00
|
|
|
init: async function(_runtime) {
|
2016-09-21 11:22:04 +02:00
|
|
|
runtime = _runtime;
|
2020-11-30 15:38:48 +01:00
|
|
|
// Any errors thrown by the module will get passed up to the called
|
|
|
|
// as a rejected promise
|
|
|
|
storageModule = moduleSelector(runtime.settings);
|
|
|
|
settingsAvailable = storageModule.hasOwnProperty("getSettings") && storageModule.hasOwnProperty("saveSettings");
|
|
|
|
sessionsAvailable = storageModule.hasOwnProperty("getSessions") && storageModule.hasOwnProperty("saveSessions");
|
2017-12-17 00:43:08 +01:00
|
|
|
if (!!storageModule.projects) {
|
2018-01-23 00:14:38 +01:00
|
|
|
var projectsEnabled = false;
|
2017-12-17 00:43:08 +01:00
|
|
|
if (runtime.settings.hasOwnProperty("editorTheme") && runtime.settings.editorTheme.hasOwnProperty("projects")) {
|
2018-01-23 00:14:38 +01:00
|
|
|
projectsEnabled = runtime.settings.editorTheme.projects.enabled === true;
|
2017-12-17 00:43:08 +01:00
|
|
|
}
|
|
|
|
if (projectsEnabled) {
|
2017-12-13 10:44:48 +01:00
|
|
|
storageModuleInterface.projects = storageModule.projects;
|
|
|
|
}
|
2017-09-20 11:30:07 +02:00
|
|
|
}
|
2017-12-07 15:11:24 +01:00
|
|
|
if (storageModule.sshkeys) {
|
|
|
|
storageModuleInterface.sshkeys = storageModule.sshkeys;
|
|
|
|
}
|
2017-09-20 11:30:07 +02:00
|
|
|
return storageModule.init(runtime.settings,runtime);
|
2014-07-23 16:15:20 +02:00
|
|
|
},
|
2020-11-30 15:38:48 +01:00
|
|
|
getFlows: async function() {
|
2016-09-21 22:58:50 +02:00
|
|
|
return storageModule.getFlows().then(function(flows) {
|
|
|
|
return storageModule.getCredentials().then(function(creds) {
|
2016-10-09 23:02:24 +02:00
|
|
|
var result = {
|
2016-09-21 22:58:50 +02:00
|
|
|
flows: flows,
|
|
|
|
credentials: creds
|
2016-10-09 23:02:24 +02:00
|
|
|
};
|
2017-09-28 23:34:21 +02:00
|
|
|
result.rev = crypto.createHash('md5').update(JSON.stringify(result.flows)).digest("hex");
|
2016-10-09 23:02:24 +02:00
|
|
|
return result;
|
2016-09-21 22:58:50 +02:00
|
|
|
})
|
|
|
|
});
|
2014-07-23 16:15:20 +02:00
|
|
|
},
|
2020-11-30 15:38:48 +01:00
|
|
|
saveFlows: async function(config, user) {
|
2016-09-21 22:58:50 +02:00
|
|
|
var flows = config.flows;
|
|
|
|
var credentials = config.credentials;
|
|
|
|
var credentialSavePromise;
|
|
|
|
if (config.credentialsDirty) {
|
|
|
|
credentialSavePromise = storageModule.saveCredentials(credentials);
|
|
|
|
} else {
|
2020-11-30 15:38:48 +01:00
|
|
|
credentialSavePromise = Promise.resolve();
|
2016-09-21 22:58:50 +02:00
|
|
|
}
|
2016-10-09 23:02:24 +02:00
|
|
|
delete config.credentialsDirty;
|
2016-09-21 22:58:50 +02:00
|
|
|
|
|
|
|
return credentialSavePromise.then(function() {
|
2019-01-21 16:20:56 +01:00
|
|
|
return storageModule.saveFlows(flows, user).then(function() {
|
2017-09-26 23:51:08 +02:00
|
|
|
return crypto.createHash('md5').update(JSON.stringify(config.flows)).digest("hex");
|
2016-10-09 23:02:24 +02:00
|
|
|
})
|
2016-09-21 22:58:50 +02:00
|
|
|
});
|
2014-07-23 16:15:20 +02:00
|
|
|
},
|
2016-09-21 22:58:50 +02:00
|
|
|
// getCredentials: function() {
|
|
|
|
// return storageModule.getCredentials();
|
|
|
|
// },
|
2020-11-30 15:38:48 +01:00
|
|
|
saveCredentials: async function(credentials) {
|
2017-09-26 23:51:08 +02:00
|
|
|
return storageModule.saveCredentials(credentials);
|
|
|
|
},
|
2020-11-30 15:38:48 +01:00
|
|
|
getSettings: async function() {
|
2014-08-28 01:35:07 +02:00
|
|
|
if (settingsAvailable) {
|
|
|
|
return storageModule.getSettings();
|
|
|
|
} else {
|
2020-11-30 15:38:48 +01:00
|
|
|
return null
|
2014-08-28 01:35:07 +02:00
|
|
|
}
|
|
|
|
},
|
2020-11-30 15:38:48 +01:00
|
|
|
saveSettings: async function(settings) {
|
2014-08-28 01:35:07 +02:00
|
|
|
if (settingsAvailable) {
|
2020-10-28 22:59:22 +01:00
|
|
|
return settingsSaveMutex.runExclusive(() => storageModule.saveSettings(settings))
|
2014-08-28 01:35:07 +02:00
|
|
|
}
|
|
|
|
},
|
2020-11-30 15:38:48 +01:00
|
|
|
getSessions: async function() {
|
2015-03-14 00:37:59 +01:00
|
|
|
if (sessionsAvailable) {
|
|
|
|
return storageModule.getSessions();
|
|
|
|
} else {
|
2020-11-30 15:38:48 +01:00
|
|
|
return null
|
2015-03-14 00:37:59 +01:00
|
|
|
}
|
|
|
|
},
|
2020-11-30 15:38:48 +01:00
|
|
|
saveSessions: async function(sessions) {
|
2015-03-14 00:37:59 +01:00
|
|
|
if (sessionsAvailable) {
|
|
|
|
return storageModule.saveSessions(sessions);
|
|
|
|
}
|
|
|
|
},
|
2015-06-29 17:00:10 +02:00
|
|
|
|
2014-08-28 01:35:07 +02:00
|
|
|
/* Library Functions */
|
2015-06-29 17:00:10 +02:00
|
|
|
|
2020-11-30 15:38:48 +01:00
|
|
|
getLibraryEntry: async function(type, path) {
|
2015-04-04 00:05:56 +02:00
|
|
|
if (is_malicious(path)) {
|
2015-05-21 00:46:49 +02:00
|
|
|
var err = new Error();
|
|
|
|
err.code = "forbidden";
|
2020-11-30 15:38:48 +01:00
|
|
|
throw err;
|
2015-04-04 00:05:56 +02:00
|
|
|
}
|
|
|
|
return storageModule.getLibraryEntry(type, path);
|
|
|
|
},
|
2020-11-30 15:38:48 +01:00
|
|
|
saveLibraryEntry: async function(type, path, meta, body) {
|
2015-04-04 00:05:56 +02:00
|
|
|
if (is_malicious(path)) {
|
2015-05-21 00:46:49 +02:00
|
|
|
var err = new Error();
|
|
|
|
err.code = "forbidden";
|
2020-11-30 15:38:48 +01:00
|
|
|
throw err;
|
2015-04-04 00:05:56 +02:00
|
|
|
}
|
|
|
|
return storageModule.saveLibraryEntry(type, path, meta, body);
|
|
|
|
},
|
2015-06-29 17:00:10 +02:00
|
|
|
|
2015-04-04 00:05:56 +02:00
|
|
|
/* Deprecated functions */
|
2020-11-30 15:38:48 +01:00
|
|
|
getAllFlows: async function() {
|
2015-04-04 00:05:56 +02:00
|
|
|
if (storageModule.hasOwnProperty("getAllFlows")) {
|
|
|
|
return storageModule.getAllFlows();
|
|
|
|
} else {
|
2018-06-06 22:38:44 +02:00
|
|
|
if (libraryFlowsCachedResult) {
|
2020-11-30 15:38:48 +01:00
|
|
|
return libraryFlowsCachedResult;
|
2018-06-06 22:38:44 +02:00
|
|
|
} else {
|
|
|
|
return listFlows("/").then(function(result) {
|
|
|
|
libraryFlowsCachedResult = result;
|
|
|
|
return result;
|
|
|
|
});
|
|
|
|
}
|
2015-04-04 00:05:56 +02:00
|
|
|
}
|
2014-07-23 16:15:20 +02:00
|
|
|
},
|
2014-08-28 01:35:07 +02:00
|
|
|
getFlow: function(fn) {
|
2014-07-29 14:51:21 +02:00
|
|
|
if (is_malicious(fn)) {
|
2015-05-21 00:46:49 +02:00
|
|
|
var err = new Error();
|
|
|
|
err.code = "forbidden";
|
2020-11-30 15:38:48 +01:00
|
|
|
throw err;
|
2014-07-29 14:51:21 +02:00
|
|
|
}
|
2015-04-04 00:05:56 +02:00
|
|
|
if (storageModule.hasOwnProperty("getFlow")) {
|
|
|
|
return storageModule.getFlow(fn);
|
|
|
|
} else {
|
|
|
|
return storageModule.getLibraryEntry("flows",fn);
|
|
|
|
}
|
2015-06-29 17:00:10 +02:00
|
|
|
|
2014-07-23 16:15:20 +02:00
|
|
|
},
|
2014-08-28 01:35:07 +02:00
|
|
|
saveFlow: function(fn, data) {
|
2014-07-29 14:51:21 +02:00
|
|
|
if (is_malicious(fn)) {
|
2015-05-21 00:46:49 +02:00
|
|
|
var err = new Error();
|
|
|
|
err.code = "forbidden";
|
2020-11-30 15:38:48 +01:00
|
|
|
throw err;
|
2014-07-29 14:51:21 +02:00
|
|
|
}
|
2018-06-06 22:38:44 +02:00
|
|
|
libraryFlowsCachedResult = null;
|
2015-04-04 00:05:56 +02:00
|
|
|
if (storageModule.hasOwnProperty("saveFlow")) {
|
|
|
|
return storageModule.saveFlow(fn, data);
|
|
|
|
} else {
|
|
|
|
return storageModule.saveLibraryEntry("flows",fn,{},data);
|
2014-07-29 14:51:21 +02:00
|
|
|
}
|
2014-07-23 16:15:20 +02:00
|
|
|
}
|
2015-04-04 00:05:56 +02:00
|
|
|
/* End deprecated functions */
|
2015-06-29 17:00:10 +02:00
|
|
|
|
2014-07-23 16:15:20 +02:00
|
|
|
}
|
2013-11-10 01:05:58 +01:00
|
|
|
|
2015-04-04 00:05:56 +02:00
|
|
|
|
|
|
|
function listFlows(path) {
|
|
|
|
return storageModule.getLibraryEntry("flows",path).then(function(res) {
|
2020-11-30 15:38:48 +01:00
|
|
|
const promises = [];
|
|
|
|
res.forEach(function(r) {
|
|
|
|
if (typeof r === "string") {
|
|
|
|
promises.push(listFlows(Path.join(path,r)));
|
|
|
|
} else {
|
|
|
|
promises.push(Promise.resolve(r));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return Promise.all(promises).then(res2 => {
|
|
|
|
let i = 0;
|
|
|
|
const result = {};
|
|
|
|
res2.forEach(function(r) {
|
|
|
|
// TODO: name||fn
|
|
|
|
if (r.fn) {
|
|
|
|
var name = r.name;
|
|
|
|
if (!name) {
|
|
|
|
name = r.fn.replace(/\.json$/, "");
|
|
|
|
}
|
|
|
|
result.f = result.f || [];
|
|
|
|
result.f.push(name);
|
2015-04-04 00:05:56 +02:00
|
|
|
} else {
|
2020-11-30 15:38:48 +01:00
|
|
|
result.d = result.d || {};
|
|
|
|
result.d[res[i]] = r;
|
|
|
|
//console.log(">",r.value);
|
2015-04-04 00:05:56 +02:00
|
|
|
}
|
2020-11-30 15:38:48 +01:00
|
|
|
i++;
|
2015-04-04 00:05:56 +02:00
|
|
|
});
|
2020-11-30 15:38:48 +01:00
|
|
|
return result;
|
2015-04-04 00:05:56 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-07-23 16:15:20 +02:00
|
|
|
module.exports = storageModuleInterface;
|