2012-11-28 23:54:23 +01:00
|
|
|
var http = require ('http')
|
2012-11-10 14:12:17 +01:00
|
|
|
, fs = require('fs')
|
|
|
|
, path = require('path')
|
2012-11-14 17:01:59 +01:00
|
|
|
, express = require('express')
|
2012-11-10 14:12:17 +01:00
|
|
|
|
2012-11-14 17:01:59 +01:00
|
|
|
var localesPath = __dirname+"/../../locales";
|
|
|
|
|
2012-11-17 14:33:01 +01:00
|
|
|
// Serve English strings directly with /locales.ini
|
|
|
|
var localeIndex = fs.readFileSync(localesPath+'/en.ini')+'\r\n';
|
|
|
|
|
2012-11-28 23:54:23 +01:00
|
|
|
exports.availableLangs = {'en': {'nativeName': 'English'}};
|
|
|
|
|
|
|
|
// build availableLangs with translatewiki web API
|
|
|
|
var request = http.request ('http://translatewiki.net/w/api.php?action=query&meta=siteinfo&siprop=languages&format=json',
|
|
|
|
function (res) {
|
|
|
|
var twLangs = '';
|
|
|
|
res.setEncoding ('utf8');
|
|
|
|
res.on ('data', function (chunk) { twLangs += chunk; });
|
|
|
|
res.on ('end', function () {
|
|
|
|
// twLangs = [{code: 'en', '*': 'English'}...]
|
|
|
|
twLangs = JSON.parse(twLangs)['query']['languages'];
|
|
|
|
|
|
|
|
fs.readdir(localesPath, function(er, files) {
|
|
|
|
files.forEach(function(locale) {
|
|
|
|
locale = locale.split('.')[0];
|
|
|
|
if(locale.toLowerCase() == 'en') return;
|
|
|
|
|
|
|
|
// build locale index
|
|
|
|
localeIndex += '['+locale+']\r\n@import url(locales/'+locale+'.ini)\r\n';
|
2012-11-14 17:01:59 +01:00
|
|
|
|
2012-11-28 23:54:23 +01:00
|
|
|
for (var l = 0; l < twLangs.length; l++) {
|
|
|
|
var code = twLangs[l]['code'];
|
|
|
|
if (locale == code) {
|
|
|
|
var nativeName = twLangs[l]['*'];
|
|
|
|
exports.availableLangs[code] = {'nativeName': nativeName};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}).on ('error', function(e) {
|
|
|
|
console.error('While query translatewiki API: '+e.message);
|
|
|
|
}).end();
|
2012-11-28 04:02:55 +01:00
|
|
|
|
2012-11-10 14:12:17 +01:00
|
|
|
exports.expressCreateServer = function(n, args) {
|
|
|
|
|
2012-11-14 17:01:59 +01:00
|
|
|
args.app.use('/locales', express.static(localesPath));
|
|
|
|
|
|
|
|
args.app.get('/locales.ini', function(req, res) {
|
|
|
|
res.send(localeIndex);
|
2012-11-10 14:12:17 +01:00
|
|
|
})
|
|
|
|
|
2012-11-20 19:46:17 +01:00
|
|
|
}
|