2014-11-06 23:59:48 +01:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2014-11-06 23:59:48 +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-04-13 01:11:11 +02:00
|
|
|
var theme = require("./theme");
|
2015-02-06 14:16:19 +01:00
|
|
|
var util = require('util');
|
2016-10-12 23:30:32 +02:00
|
|
|
var runtime;
|
2015-11-11 23:11:02 +01:00
|
|
|
var settings;
|
2015-02-06 14:16:19 +01:00
|
|
|
|
2014-11-06 23:59:48 +01:00
|
|
|
module.exports = {
|
2016-10-12 23:30:32 +02:00
|
|
|
init: function(_runtime) {
|
|
|
|
runtime = _runtime;
|
2015-11-11 23:11:02 +01:00
|
|
|
settings = runtime.settings;
|
|
|
|
},
|
2014-11-06 23:59:48 +01:00
|
|
|
settings: function(req,res) {
|
|
|
|
var safeSettings = {
|
2016-10-21 14:50:47 +02:00
|
|
|
httpNodeRoot: settings.httpNodeRoot||"/",
|
2014-11-11 11:15:02 +01:00
|
|
|
version: settings.version,
|
|
|
|
user: req.user
|
2015-04-13 01:11:11 +02:00
|
|
|
}
|
2015-11-11 23:11:02 +01:00
|
|
|
|
2015-04-13 01:11:11 +02:00
|
|
|
var themeSettings = theme.settings();
|
|
|
|
if (themeSettings) {
|
|
|
|
safeSettings.editorTheme = themeSettings;
|
|
|
|
}
|
2015-11-11 23:11:02 +01:00
|
|
|
|
2015-02-06 14:16:19 +01:00
|
|
|
if (util.isArray(settings.paletteCategories)) {
|
|
|
|
safeSettings.paletteCategories = settings.paletteCategories;
|
|
|
|
}
|
2015-11-11 23:11:02 +01:00
|
|
|
|
2016-05-17 23:09:57 +02:00
|
|
|
if (settings.flowFilePretty) {
|
|
|
|
safeSettings.flowFilePretty = settings.flowFilePretty;
|
|
|
|
}
|
2016-11-14 20:10:02 +01:00
|
|
|
|
2016-10-12 23:30:32 +02:00
|
|
|
if (!runtime.nodes.paletteEditorEnabled()) {
|
|
|
|
safeSettings.editorTheme = safeSettings.editorTheme || {};
|
|
|
|
safeSettings.editorTheme.palette = safeSettings.editorTheme.palette || {};
|
|
|
|
safeSettings.editorTheme.palette.editable = false;
|
|
|
|
}
|
2017-03-09 22:06:49 +01:00
|
|
|
|
2017-03-01 16:01:07 +01:00
|
|
|
settings.exportNodeSettings(safeSettings);
|
2016-10-12 23:30:32 +02:00
|
|
|
|
2014-11-06 23:59:48 +01:00
|
|
|
res.json(safeSettings);
|
|
|
|
}
|
|
|
|
}
|