wikijs-fork/server/core/localization.js

74 lines
1.9 KiB
JavaScript
Raw Normal View History

const _ = require('lodash')
const dotize = require('dotize')
const i18nMW = require('i18next-express-middleware')
const i18next = require('i18next')
const Promise = require('bluebird')
/* global WIKI */
module.exports = {
engine: null,
2018-01-10 01:41:53 +00:00
namespaces: [],
init() {
this.namespaces = WIKI.data.localeNamespaces
this.engine = i18next
this.engine.init({
load: 'languageOnly',
ns: this.namespaces,
defaultNS: 'common',
saveMissing: false,
2018-05-28 18:46:55 +00:00
lng: WIKI.config.lang,
fallbackLng: 'en'
})
2018-05-06 20:19:37 +00:00
// Load fallback defaults
const enFallback = require('../locales/default.json')
if (_.isPlainObject(enFallback)) {
_.forOwn(enFallback, (data, ns) => {
this.namespaces.push(ns)
this.engine.addResourceBundle('en', ns, data)
})
}
// Load current language
2018-05-28 18:46:55 +00:00
this.loadLocale(WIKI.config.lang, { silent: true })
2018-05-06 20:19:37 +00:00
return this
},
attachMiddleware (app) {
app.use(i18nMW.handle(this.engine))
},
2018-01-10 01:41:53 +00:00
async getByNamespace(locale, namespace) {
if (this.engine.hasResourceBundle(locale, namespace)) {
let data = this.engine.getResourceBundle(locale, namespace)
return _.map(dotize.convert(data), (value, key) => {
return {
key,
value
}
})
} else {
throw new Error('Invalid locale or namespace')
}
},
2018-05-06 20:19:37 +00:00
async loadLocale(locale, opts = { silent: false }) {
const res = await WIKI.db.locales.query().findOne('code', locale)
2018-05-06 20:19:37 +00:00
if (res) {
if (_.isPlainObject(res.strings)) {
2018-05-28 18:46:55 +00:00
console.info(res.strings)
2018-05-06 20:19:37 +00:00
_.forOwn(res.strings, (data, ns) => {
this.namespaces.push(ns)
this.engine.addResourceBundle(locale, ns, data, true, true)
})
}
} else if (!opts.silent) {
throw new Error('No such locale in local store.')
}
},
2018-01-10 01:41:53 +00:00
async setCurrentLocale(locale) {
return Promise.fromCallback(cb => {
return this.engine.changeLanguage(locale, cb)
})
}
}