2014-08-28 01:35:07 +02:00
|
|
|
/**
|
|
|
|
* Copyright 2014 IBM Corp.
|
|
|
|
*
|
|
|
|
* 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");
|
|
|
|
|
2014-08-28 01:35:07 +02:00
|
|
|
var userSettings = null;
|
|
|
|
var globalSettings = null;
|
|
|
|
var storage = null;
|
|
|
|
|
|
|
|
var persistentSettings = {
|
|
|
|
init: function(settings) {
|
|
|
|
userSettings = settings;
|
|
|
|
for (var i in settings) {
|
2015-03-06 11:18:33 +01:00
|
|
|
/* istanbul ignore else */
|
2014-08-28 01:35:07 +02:00
|
|
|
if (settings.hasOwnProperty(i)) {
|
|
|
|
(function() {
|
|
|
|
var j = i;
|
|
|
|
persistentSettings.__defineGetter__(j,function() { return userSettings[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;
|
|
|
|
},
|
|
|
|
load: function(_storage) {
|
|
|
|
storage = _storage;
|
|
|
|
return storage.getSettings().then(function(_settings) {
|
|
|
|
globalSettings = _settings;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
get: function(prop) {
|
|
|
|
if (userSettings.hasOwnProperty(prop)) {
|
2014-10-09 15:21:53 +02:00
|
|
|
return clone(userSettings[prop]);
|
2014-08-28 01:35:07 +02:00
|
|
|
}
|
|
|
|
if (globalSettings === null) {
|
|
|
|
throw new Error("Settings not available");
|
|
|
|
}
|
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) {
|
|
|
|
if (userSettings.hasOwnProperty(prop)) {
|
|
|
|
throw new Error("Property '"+prop+"' is read-only");
|
|
|
|
}
|
|
|
|
if (globalSettings === null) {
|
|
|
|
throw new Error("Settings not available");
|
|
|
|
}
|
2014-10-03 16:05:37 +02:00
|
|
|
var current = globalSettings[prop];
|
2014-08-28 01:35:07 +02:00
|
|
|
globalSettings[prop] = value;
|
2014-10-03 15:47:23 +02:00
|
|
|
try {
|
|
|
|
assert.deepEqual(current,value);
|
|
|
|
return when.resolve();
|
|
|
|
} catch(err) {
|
|
|
|
return storage.saveSettings(globalSettings);
|
|
|
|
}
|
2014-08-28 01:35:07 +02:00
|
|
|
},
|
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() {
|
2014-11-04 18:05:29 +01:00
|
|
|
for (var i in userSettings) {
|
2015-03-06 11:18:33 +01:00
|
|
|
/* istanbul ignore else */
|
2014-11-04 18:05:29 +01:00
|
|
|
if (userSettings.hasOwnProperty(i)) {
|
|
|
|
delete persistentSettings[i];
|
|
|
|
}
|
|
|
|
}
|
2014-10-03 16:05:37 +02:00
|
|
|
userSettings = null;
|
|
|
|
globalSettings = null;
|
|
|
|
storage = null;
|
2014-08-28 01:35:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = persistentSettings;
|