Optimize config endpoint

This commit is contained in:
Chocobozzz 2018-11-23 11:06:10 +01:00
parent f95cb03a29
commit 1b5e2d7290
No known key found for this signature in database
GPG key ID: 583A612D890159BE
3 changed files with 9 additions and 12 deletions

View file

@ -10,7 +10,7 @@ import { customConfigUpdateValidator } from '../../middlewares/validators/config
import { ClientHtml } from '../../lib/client-html'
import { auditLoggerFactory, CustomConfigAuditView, getAuditIdFromRes } from '../../helpers/audit-logger'
import { remove, writeJSON } from 'fs-extra'
import { getVersion } from '../../helpers/utils'
import { getServerCommit } from '../../helpers/utils'
const packageJSON = require('../../../../package.json')
const configRouter = express.Router()
@ -40,11 +40,11 @@ configRouter.delete('/custom',
)
let serverCommit: string
async function getConfig (req: express.Request, res: express.Response, next: express.NextFunction) {
async function getConfig (req: express.Request, res: express.Response) {
const allowed = await isSignupAllowed()
const allowedForCurrentIP = isSignupAllowedForCurrentIP(req.ip)
serverCommit = (serverCommit) ? serverCommit : await getVersion()
if (serverCommit === packageJSON.version) serverCommit = ''
if (serverCommit === undefined) serverCommit = await getServerCommit()
const enabledResolutions = Object.keys(CONFIG.TRANSCODING.RESOLUTIONS)
.filter(key => CONFIG.TRANSCODING.ENABLED === CONFIG.TRANSCODING.RESOLUTIONS[key] === true)