2015-04-26 22:28:16 +02:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2015-04-26 22:28:16 +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.
|
|
|
|
**/
|
2015-11-22 00:12:39 +01:00
|
|
|
var fs = require('fs');
|
|
|
|
var path = require('path');
|
2015-11-11 23:11:02 +01:00
|
|
|
var i18n;
|
2017-04-21 12:49:35 +02:00
|
|
|
var redNodes;
|
2015-11-22 00:12:39 +01:00
|
|
|
|
|
|
|
function determineLangFromHeaders(acceptedLanguages){
|
|
|
|
var lang = i18n.defaultLang;
|
|
|
|
acceptedLanguages = acceptedLanguages || [];
|
2017-03-08 10:58:39 +01:00
|
|
|
if (acceptedLanguages.length >= 1) {
|
|
|
|
lang = acceptedLanguages[0];
|
2015-11-22 00:12:39 +01:00
|
|
|
}
|
|
|
|
return lang;
|
|
|
|
}
|
2015-04-26 22:28:16 +02:00
|
|
|
module.exports = {
|
2015-11-11 23:11:02 +01:00
|
|
|
init: function(runtime) {
|
|
|
|
i18n = runtime.i18n;
|
2017-04-21 12:49:35 +02:00
|
|
|
redNodes = runtime.nodes;
|
2015-11-11 23:11:02 +01:00
|
|
|
},
|
2015-04-26 22:28:16 +02:00
|
|
|
get: function(req,res) {
|
2015-05-06 23:14:00 +02:00
|
|
|
var namespace = req.params[0];
|
2017-04-21 12:49:35 +02:00
|
|
|
var lngs = req.query.lng;
|
2015-05-06 23:14:00 +02:00
|
|
|
namespace = namespace.replace(/\.json$/,"");
|
2017-04-21 12:49:35 +02:00
|
|
|
var lang = req.query.lng; //determineLangFromHeaders(req.acceptsLanguages() || []);
|
2015-05-28 21:17:31 +02:00
|
|
|
var prevLang = i18n.i.lng();
|
2017-04-21 12:49:35 +02:00
|
|
|
// Trigger a load from disk of the language if it is not the default
|
2015-05-28 21:17:31 +02:00
|
|
|
i18n.i.setLng(lang, function(){
|
|
|
|
var catalog = i18n.catalog(namespace,lang);
|
|
|
|
res.json(catalog||{});
|
|
|
|
});
|
|
|
|
i18n.i.setLng(prevLang);
|
2017-04-21 12:49:35 +02:00
|
|
|
|
|
|
|
},
|
|
|
|
getAllNodes: function(req,res) {
|
|
|
|
var lngs = req.query.lng;
|
|
|
|
var nodeList = redNodes.getNodeList();
|
|
|
|
var result = {};
|
|
|
|
nodeList.forEach(function(n) {
|
|
|
|
if (n.module !== "node-red") {
|
|
|
|
result[n.id] = i18n.catalog(n.id,lngs)||{};
|
|
|
|
}
|
|
|
|
});
|
|
|
|
res.json(result);
|
2015-11-22 00:12:39 +01:00
|
|
|
},
|
|
|
|
determineLangFromHeaders: determineLangFromHeaders
|
2015-04-26 22:28:16 +02:00
|
|
|
}
|