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

138 lines
4.1 KiB
JavaScript
Raw Normal View History

2020-06-27 02:10:10 +02:00
const Setting = require('../models/setting')
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-11-06 11:31:56 +01:00
const pkg = require('../../../package.json')
const debug = require('debug')('settings')
const crypto = require('crypto')
const util = require('util')
2020-07-05 23:53:37 +02:00
const toIco = require('to-ico')
const generateKeyPair = util.promisify(crypto.generateKeyPair)
2020-07-05 23:53:37 +02:00
const readFile = util.promisify(fs.readFile)
const writeFile = util.promisify(fs.writeFile)
const defaultSettings = {
instance_timezone: 'Europe/Rome',
2020-02-20 18:37:10 +01:00
instance_locale: 'en',
instance_name: config.title.toLowerCase().replace(/ /g, ''),
2020-03-18 10:11:24 +01:00
instance_place: '',
allow_registration: true,
allow_anon_event: true,
allow_recurrent_event: false,
recurrent_event_visible: false,
enable_federation: true,
enable_resources: false,
2020-03-14 18:45:20 +01:00
hide_boosts: true,
2020-03-18 10:11:24 +01:00
enable_trusted_instances: true,
2020-03-14 18:45:20 +01:00
trusted_instances: []
}
2019-10-11 18:34:14 +02:00
/**
* Settings controller: store instance settings
*/
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
async load () {
2019-06-25 01:05:38 +02:00
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
settingsController.settings = defaultSettings
2019-11-06 11:31:56 +01:00
settings.forEach(s => {
2019-06-25 01:05:38 +02:00
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
// add pub/priv instance key if needed
if (!settingsController.settings.publicKey) {
debug('Instance priv/pub key not found')
const { publicKey, privateKey } = await generateKeyPair('rsa', {
modulusLength: 4096,
publicKeyEncoding: {
type: 'spki',
format: 'pem'
},
privateKeyEncoding: {
type: 'pkcs8',
format: 'pem'
}
})
await settingsController.set('publicKey', publicKey)
await settingsController.set('privateKey', privateKey, true)
2019-09-26 22:46:04 +02:00
}
// initialize user_locale
2019-07-26 23:51:32 +02:00
if (config.user_locale && fs.existsSync(path.resolve(config.user_locale))) {
const user_locale = fs.readdirSync(path.resolve(config.user_locale))
2019-11-06 11:31:56 +01:00
user_locale.forEach(async f => {
2019-07-26 23:51:32 +02:00
consola.info(`Loading user locale ${f}`)
const locale = path.basename(f, '.js')
settingsController.user_locale[locale] =
2019-09-19 16:23:46 +02:00
(await require(path.resolve(config.user_locale, f))).default
2019-07-26 23:51:32 +02:00
})
}
}
},
2019-11-06 11:31:56 +01:00
async set (key, value, is_secret = false) {
try {
2020-07-05 23:50:10 +02:00
const [setting, created] = await Setting.findOrCreate({
where: { key },
defaults: { value, is_secret }
2019-04-03 00:25:12 +02:00
})
2020-07-05 23:50:10 +02:00
2020-07-06 00:52:32 +02:00
if (!created) { setting.update({ value, is_secret }) }
2019-11-06 11:31:56 +01:00
settingsController[is_secret ? 'secretSettings' : 'settings'][key] = value
return true
2019-11-06 11:31:56 +01:00
} catch (e) {
return false
}
2019-04-03 00:25:12 +02:00
},
2019-11-06 11:31:56 +01:00
async setRequest (req, res) {
const { key, value, is_secret } = req.body
const ret = await settingsController.set(key, value, is_secret)
2019-11-06 11:31:56 +01:00
if (ret) { res.sendStatus(200) } else { res.sendStatus(400) }
},
2020-07-05 23:53:37 +02:00
async setLogo (req, res) {
2020-02-01 22:39:31 +01:00
if (!req.file) {
return res.status(400).send('Mmmmm sould not be here!')
}
2020-07-05 23:53:37 +02:00
const image = await readFile(path.join(req.file.destination, req.file.filename))
const favicon_path = path.resolve(config.upload_path, 'favicon.ico')
const favicon = await toIco([image], { sizes: [64], resize: true })
writeFile(favicon_path, favicon)
settingsController.set('favicon', favicon_path)
2020-01-15 23:51:09 +01:00
res.sendStatus(200)
},
2019-11-06 11:31:56 +01:00
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,
2019-11-06 11:31:56 +01:00
version: pkg.version
2019-06-25 01:05:38 +02:00
}
res.json(settings)
2019-11-06 11:31:56 +01:00
}
2019-04-03 00:25:12 +02:00
}
module.exports = settingsController