gancio-upstream/server/api/controller/settings.js

86 lines
2.5 KiB
JavaScript
Raw Normal View History

2019-06-06 23:54:32 +02:00
const { setting: Setting } = require('../models')
const config = require('config')
2019-07-26 23:51:32 +02:00
const consola = require('consola')
2019-07-24 21:26:56 +02:00
const path = require('path')
const fs = require('fs')
2019-08-31 22:25:00 +02:00
const package = require('../../../package.json')
2019-07-24 21:26:56 +02:00
2019-04-03 00:25:12 +02:00
const settingsController = {
2019-06-25 01:05:38 +02:00
settings: { initialized: false },
2019-07-26 23:51:32 +02:00
user_locale: {},
2019-06-25 01:05:38 +02:00
secretSettings: {},
2019-06-06 23:54:32 +02:00
2019-06-25 01:05:38 +02:00
async initialize () {
if (!settingsController.settings.initialized) {
2019-07-26 23:51:32 +02:00
// initialize instance settings from db
// note that this is done only once when the server starts
// and not for each request (it's a kind of cache)!
const settings = await Setting.findAll()
2019-06-25 01:05:38 +02:00
settingsController.settings.initialized = true
settings.forEach( s => {
if (s.is_secret) {
settingsController.secretSettings[s.key] = s.value
} else {
settingsController.settings[s.key] = s.value
}
})
2019-07-26 23:51:32 +02:00
// initialize user_locale
if (config.user_locale && fs.existsSync(path.resolve(config.user_locale))) {
const user_locale = fs.readdirSync(path.resolve(config.user_locale))
user_locale.forEach( async f => {
consola.info(`Loading user locale ${f}`)
const locale = path.basename(f, '.js')
settingsController.user_locale[locale] =
(await import(path.resolve(config.user_locale, f))).default
})
}
}
},
async set(key, value, is_secret=false) {
try {
await Setting.findOrCreate({
where: { key },
defaults: { value, is_secret }
2019-07-13 01:02:11 +02:00
}).spread((setting, created) => {
if (!created) return setting.update({ value, is_secret })
2019-04-03 00:25:12 +02:00
})
settingsController[is_secret?'secretSettings':'settings'][key]=value
return true
} catch(e) {
console.error(e)
return false
}
2019-04-03 00:25:12 +02:00
},
async getUserLocale(req, res) {
// load user locale specified in configuration
2019-07-26 23:51:32 +02:00
res.json(settingsController.user_locale)
},
async setRequest(req, res) {
const { key, value, is_secret } = req.body
const ret = await settingsController.set(key, value, is_secret)
if (ret) res.sendStatus(200)
else res.sendStatus(400)
},
getAllRequest(req, res) {
2019-06-25 01:05:38 +02:00
// get public settings and public configuration
const settings = {
...settingsController.settings,
2019-07-08 00:06:56 +02:00
baseurl: config.baseurl,
title: config.title,
2019-08-31 22:25:00 +02:00
description: config.description,
version: package.version
2019-06-25 01:05:38 +02:00
}
res.json(settings)
2019-04-03 00:25:12 +02:00
},
}
2019-06-25 01:05:38 +02:00
setTimeout(settingsController.initialize, 200)
2019-04-03 00:25:12 +02:00
module.exports = settingsController