2014-08-28 01:35:07 +02:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2014-08-28 01:35:07 +02: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.
|
|
|
|
**/
|
|
|
|
|
|
|
|
var when = require("when");
|
2014-10-09 15:21:53 +02:00
|
|
|
var clone = require("clone");
|
2014-10-03 15:47:23 +02:00
|
|
|
var assert = require("assert");
|
2018-08-04 23:23:06 +02:00
|
|
|
var log = require("@node-red/util").log; // TODO: separate module
|
2018-08-17 23:10:54 +02:00
|
|
|
var util = require("@node-red/util").util;
|
2014-10-03 15:47:23 +02:00
|
|
|
|
2017-12-04 18:15:17 +01:00
|
|
|
// localSettings are those provided in the runtime settings.js file
|
|
|
|
var localSettings = null;
|
|
|
|
// globalSettings are provided by storage - .config.json on localfilesystem
|
2014-08-28 01:35:07 +02:00
|
|
|
var globalSettings = null;
|
2017-12-04 18:15:17 +01:00
|
|
|
// nodeSettings are those settings that a node module defines as being available
|
2017-03-01 16:01:07 +01:00
|
|
|
var nodeSettings = null;
|
2017-12-04 18:15:17 +01:00
|
|
|
|
|
|
|
// A subset of globalSettings that deal with per-user settings
|
|
|
|
var userSettings = null;
|
|
|
|
|
2017-03-08 15:38:33 +01:00
|
|
|
var disableNodeSettings = null;
|
2014-08-28 01:35:07 +02:00
|
|
|
var storage = null;
|
|
|
|
|
|
|
|
var persistentSettings = {
|
|
|
|
init: function(settings) {
|
2017-12-04 18:15:17 +01:00
|
|
|
localSettings = settings;
|
2014-08-28 01:35:07 +02:00
|
|
|
for (var i in settings) {
|
2015-03-06 11:18:33 +01:00
|
|
|
/* istanbul ignore else */
|
2016-01-29 12:55:28 +01:00
|
|
|
if (settings.hasOwnProperty(i) && i !== 'load' && i !== 'get' && i !== 'set' && i !== 'available' && i !== 'reset') {
|
|
|
|
// Don't allow any of the core functions get replaced via settings
|
2014-08-28 01:35:07 +02:00
|
|
|
(function() {
|
|
|
|
var j = i;
|
2017-12-04 18:15:17 +01:00
|
|
|
persistentSettings.__defineGetter__(j,function() { return localSettings[j]; });
|
2015-02-25 15:23:59 +01:00
|
|
|
persistentSettings.__defineSetter__(j,function() { throw new Error("Property '"+j+"' is read-only"); });
|
2014-08-28 01:35:07 +02:00
|
|
|
})();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
globalSettings = null;
|
2017-03-01 16:01:07 +01:00
|
|
|
nodeSettings = {};
|
2017-03-08 15:38:33 +01:00
|
|
|
disableNodeSettings = {};
|
2014-08-28 01:35:07 +02:00
|
|
|
},
|
|
|
|
load: function(_storage) {
|
|
|
|
storage = _storage;
|
|
|
|
return storage.getSettings().then(function(_settings) {
|
|
|
|
globalSettings = _settings;
|
2017-12-06 14:20:22 +01:00
|
|
|
if (globalSettings) {
|
2017-12-13 10:44:48 +01:00
|
|
|
userSettings = globalSettings.users || {};
|
2017-12-06 14:20:22 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
userSettings = {};
|
|
|
|
}
|
2014-08-28 01:35:07 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
get: function(prop) {
|
2017-12-04 18:15:17 +01:00
|
|
|
if (prop === 'users') {
|
|
|
|
throw new Error("Do not access user settings directly. Use settings.getUserSettings");
|
|
|
|
}
|
|
|
|
if (localSettings.hasOwnProperty(prop)) {
|
|
|
|
return clone(localSettings[prop]);
|
2014-08-28 01:35:07 +02:00
|
|
|
}
|
|
|
|
if (globalSettings === null) {
|
2015-05-21 00:46:49 +02:00
|
|
|
throw new Error(log._("settings.not-available"));
|
2014-08-28 01:35:07 +02:00
|
|
|
}
|
2014-10-09 15:21:53 +02:00
|
|
|
return clone(globalSettings[prop]);
|
2014-08-28 01:35:07 +02:00
|
|
|
},
|
2015-03-06 11:18:33 +01:00
|
|
|
|
2014-08-28 01:35:07 +02:00
|
|
|
set: function(prop,value) {
|
2017-12-04 18:15:17 +01:00
|
|
|
if (prop === 'users') {
|
|
|
|
throw new Error("Do not access user settings directly. Use settings.setUserSettings");
|
|
|
|
}
|
|
|
|
if (localSettings.hasOwnProperty(prop)) {
|
2015-05-21 00:46:49 +02:00
|
|
|
throw new Error(log._("settings.property-read-only", {prop:prop}));
|
2014-08-28 01:35:07 +02:00
|
|
|
}
|
|
|
|
if (globalSettings === null) {
|
2015-05-21 00:46:49 +02:00
|
|
|
throw new Error(log._("settings.not-available"));
|
2014-08-28 01:35:07 +02:00
|
|
|
}
|
2014-10-03 16:05:37 +02:00
|
|
|
var current = globalSettings[prop];
|
2020-05-31 14:44:31 +02:00
|
|
|
globalSettings[prop] = clone(value);
|
2014-10-03 15:47:23 +02:00
|
|
|
try {
|
|
|
|
assert.deepEqual(current,value);
|
|
|
|
return when.resolve();
|
|
|
|
} catch(err) {
|
2020-09-28 11:40:03 +02:00
|
|
|
return storage.saveSettings(clone(globalSettings));
|
2014-10-03 15:47:23 +02:00
|
|
|
}
|
2014-08-28 01:35:07 +02:00
|
|
|
},
|
2016-09-23 11:38:30 +02:00
|
|
|
delete: function(prop) {
|
2017-12-04 18:15:17 +01:00
|
|
|
if (localSettings.hasOwnProperty(prop)) {
|
2016-09-23 11:38:30 +02:00
|
|
|
throw new Error(log._("settings.property-read-only", {prop:prop}));
|
|
|
|
}
|
|
|
|
if (globalSettings === null) {
|
|
|
|
throw new Error(log._("settings.not-available"));
|
|
|
|
}
|
|
|
|
if (globalSettings.hasOwnProperty(prop)) {
|
|
|
|
delete globalSettings[prop];
|
2020-09-28 11:40:03 +02:00
|
|
|
return storage.saveSettings(clone(globalSettings));
|
2016-09-23 11:38:30 +02:00
|
|
|
}
|
|
|
|
return when.resolve();
|
|
|
|
},
|
2015-03-06 11:18:33 +01:00
|
|
|
|
2014-08-28 01:35:07 +02:00
|
|
|
available: function() {
|
|
|
|
return (globalSettings !== null);
|
2014-10-03 16:05:37 +02:00
|
|
|
},
|
2015-03-06 11:18:33 +01:00
|
|
|
|
2014-10-03 16:05:37 +02:00
|
|
|
reset: function() {
|
2017-12-04 18:15:17 +01:00
|
|
|
for (var i in localSettings) {
|
2015-03-06 11:18:33 +01:00
|
|
|
/* istanbul ignore else */
|
2017-12-04 18:15:17 +01:00
|
|
|
if (localSettings.hasOwnProperty(i)) {
|
2014-11-04 18:05:29 +01:00
|
|
|
delete persistentSettings[i];
|
|
|
|
}
|
|
|
|
}
|
2017-12-04 18:15:17 +01:00
|
|
|
localSettings = null;
|
2014-10-03 16:05:37 +02:00
|
|
|
globalSettings = null;
|
2017-12-04 18:15:17 +01:00
|
|
|
userSettings = null;
|
2014-10-03 16:05:37 +02:00
|
|
|
storage = null;
|
2017-03-01 16:01:07 +01:00
|
|
|
},
|
|
|
|
registerNodeSettings: function(type, opts) {
|
2017-03-09 22:06:49 +01:00
|
|
|
var normalisedType = util.normaliseNodeTypeName(type);
|
|
|
|
for (var property in opts) {
|
|
|
|
if (opts.hasOwnProperty(property)) {
|
|
|
|
if (!property.startsWith(normalisedType)) {
|
|
|
|
throw new Error("Registered invalid property name '"+property+"'. Properties for this node must start with '"+normalisedType+"'");
|
2017-03-08 15:38:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-03-09 22:06:49 +01:00
|
|
|
nodeSettings[type] = opts;
|
2017-03-01 16:01:07 +01:00
|
|
|
},
|
|
|
|
exportNodeSettings: function(safeSettings) {
|
2017-03-08 15:38:33 +01:00
|
|
|
for (var type in nodeSettings) {
|
|
|
|
if (nodeSettings.hasOwnProperty(type) && !disableNodeSettings[type]) {
|
|
|
|
var nodeTypeSettings = nodeSettings[type];
|
|
|
|
for (var property in nodeTypeSettings) {
|
|
|
|
if (nodeTypeSettings.hasOwnProperty(property)) {
|
|
|
|
var setting = nodeTypeSettings[property];
|
2017-03-09 20:58:34 +01:00
|
|
|
if (setting.exportable) {
|
2017-06-29 12:17:39 +02:00
|
|
|
if (safeSettings.hasOwnProperty(property)) {
|
|
|
|
// Cannot overwrite existing setting
|
2017-12-04 18:15:17 +01:00
|
|
|
} else if (localSettings.hasOwnProperty(property)) {
|
|
|
|
safeSettings[property] = localSettings[property];
|
2017-03-09 22:06:49 +01:00
|
|
|
} else if (setting.hasOwnProperty('value')) {
|
2017-06-29 12:17:39 +02:00
|
|
|
safeSettings[property] = setting.value;
|
2017-03-09 20:58:34 +01:00
|
|
|
}
|
2017-03-08 15:38:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-03-01 16:01:07 +01:00
|
|
|
|
|
|
|
return safeSettings;
|
2017-03-08 15:38:33 +01:00
|
|
|
},
|
|
|
|
enableNodeSettings: function(types) {
|
|
|
|
types.forEach(function(type) {
|
|
|
|
disableNodeSettings[type] = false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
disableNodeSettings: function(types) {
|
|
|
|
types.forEach(function(type) {
|
|
|
|
disableNodeSettings[type] = true;
|
|
|
|
});
|
2017-12-04 18:15:17 +01:00
|
|
|
},
|
|
|
|
getUserSettings: function(username) {
|
2017-12-06 00:50:32 +01:00
|
|
|
return clone(userSettings[username]);
|
2017-12-04 18:15:17 +01:00
|
|
|
},
|
|
|
|
setUserSettings: function(username,settings) {
|
2018-04-16 16:02:28 +02:00
|
|
|
if (globalSettings === null) {
|
|
|
|
throw new Error(log._("settings.not-available"));
|
|
|
|
}
|
2017-12-04 18:15:17 +01:00
|
|
|
var current = userSettings[username];
|
|
|
|
userSettings[username] = settings;
|
|
|
|
try {
|
|
|
|
assert.deepEqual(current,settings);
|
|
|
|
return when.resolve();
|
|
|
|
} catch(err) {
|
2017-12-05 17:23:55 +01:00
|
|
|
globalSettings.users = userSettings;
|
2020-09-28 11:40:03 +02:00
|
|
|
return storage.saveSettings(clone(globalSettings));
|
2017-12-04 18:15:17 +01:00
|
|
|
}
|
2014-08-28 01:35:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = persistentSettings;
|