123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- const graphHelper = require('../../helpers/graph')
- const _ = require('lodash')
- /* global WIKI */
- module.exports = {
- Query: {
- async localization() { return {} }
- },
- Mutation: {
- async localization() { return {} }
- },
- LocalizationQuery: {
- async locales(obj, args, context, info) {
- let remoteLocales = await WIKI.redis.get('locales')
- let localLocales = await WIKI.db.locales.query().select('id', 'code', 'isRTL', 'name', 'nativeName', 'createdAt', 'updatedAt')
- remoteLocales = (remoteLocales) ? JSON.parse(remoteLocales) : localLocales
- return _.map(remoteLocales, rl => {
- let isInstalled = _.some(localLocales, ['code', rl.code])
- return {
- ...rl,
- isInstalled,
- installDate: isInstalled ? _.find(localLocales, ['code', rl.code]).updatedAt : null
- }
- })
- },
- async config(obj, args, context, info) {
- return {
- locale: WIKI.config.site.lang,
- autoUpdate: WIKI.config.site.langAutoUpdate
- }
- }
- },
- LocalizationMutation: {
- async downloadLocale(obj, args, context) {
- try {
- const job = await WIKI.queue.job.fetchGraphLocale.add({
- locale: args.locale
- }, {
- timeout: 30000
- })
- await job.finished()
- return {
- responseResult: graphHelper.generateSuccess('Locale downloaded successfully')
- }
- } catch (err) {
- return graphHelper.generateError(err)
- }
- },
- async updateLocale(obj, args, context) {
- try {
- WIKI.config.site.lang = args.locale
- WIKI.config.site.langAutoUpdate = args.autoUpdate
- await WIKI.configSvc.saveToDb(['site'])
- await WIKI.lang.setCurrentLocale(args.locale)
- return {
- responseResult: graphHelper.generateSuccess('Locale config updated')
- }
- } catch (err) {
- return graphHelper.generateError(err)
- }
- }
- }
- }
|