PeerTube/server/controllers/api/config.ts

36 lines
891 B
TypeScript
Raw Normal View History

2017-06-05 21:53:49 +02:00
import * as express from 'express'
2017-05-15 22:22:03 +02:00
import { isSignupAllowed } from '../../helpers'
import { CONFIG } from '../../initializers'
2017-06-17 11:28:11 +02:00
import { ServerConfig } from '../../../shared'
2017-05-15 22:22:03 +02:00
const configRouter = express.Router()
configRouter.get('/', getConfig)
2017-06-10 22:15:25 +02:00
function getConfig (req: express.Request, res: express.Response, next: express.NextFunction) {
isSignupAllowed().then(allowed => {
const enabledResolutions = Object.keys(CONFIG.TRANSCODING.RESOLUTIONS)
.filter(key => CONFIG.TRANSCODING.RESOLUTIONS[key] === true)
.map(r => parseInt(r, 10))
const json: ServerConfig = {
signup: {
allowed
},
transcoding: {
enabledResolutions
}
2017-05-15 22:22:03 +02:00
}
res.json(json)
})
2017-05-15 22:22:03 +02:00
}
// ---------------------------------------------------------------------------
export {
configRouter
}