]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/api/config.ts
Add short description in config
[github/Chocobozzz/PeerTube.git] / server / controllers / api / config.ts
CommitLineData
4d4e5cd4 1import * as express from 'express'
36f9424f 2import { omit } from 'lodash'
fd206f0b 3import { ServerConfig, UserRight } from '../../../shared'
09cababd
C
4import { About } from '../../../shared/models/server/about.model'
5import { CustomConfig } from '../../../shared/models/server/custom-config.model'
fd206f0b 6import { unlinkPromise, writeFilePromise } from '../../helpers/core-utils'
da854ddd 7import { isSignupAllowed } from '../../helpers/utils'
fd206f0b
C
8import { CONFIG, CONSTRAINTS_FIELDS, reloadConfig } from '../../initializers'
9import { asyncMiddleware, authenticate, ensureUserHasRight } from '../../middlewares'
10import { customConfigUpdateValidator } from '../../middlewares/validators/config'
65fcc311 11
915c5bbe 12const packageJSON = require('../../../../package.json')
65fcc311
C
13const configRouter = express.Router()
14
36f9424f 15configRouter.get('/about', getAbout)
eb080476
C
16configRouter.get('/',
17 asyncMiddleware(getConfig)
18)
36f9424f 19
fd206f0b
C
20configRouter.get('/custom',
21 authenticate,
22 ensureUserHasRight(UserRight.MANAGE_CONFIGURATION),
23 asyncMiddleware(getCustomConfig)
24)
25configRouter.put('/custom',
26 authenticate,
27 ensureUserHasRight(UserRight.MANAGE_CONFIGURATION),
28 asyncMiddleware(customConfigUpdateValidator),
29 asyncMiddleware(updateCustomConfig)
30)
31configRouter.delete('/custom',
32 authenticate,
33 ensureUserHasRight(UserRight.MANAGE_CONFIGURATION),
34 asyncMiddleware(deleteCustomConfig)
35)
65fcc311 36
eb080476
C
37async function getConfig (req: express.Request, res: express.Response, next: express.NextFunction) {
38 const allowed = await isSignupAllowed()
291e8d3e 39
eb080476
C
40 const enabledResolutions = Object.keys(CONFIG.TRANSCODING.RESOLUTIONS)
41 .filter(key => CONFIG.TRANSCODING.RESOLUTIONS[key] === true)
42 .map(r => parseInt(r, 10))
6a84aafd 43
eb080476 44 const json: ServerConfig = {
36f9424f 45 instance: {
00b5556c 46 name: CONFIG.INSTANCE.NAME,
2e3a0215 47 shortDescription: CONFIG.INSTANCE.SHORT_DESCRIPTION,
901637bb 48 defaultClientRoute: CONFIG.INSTANCE.DEFAULT_CLIENT_ROUTE,
00b5556c
C
49 customizations: {
50 javascript: CONFIG.INSTANCE.CUSTOMIZATIONS.JAVASCRIPT,
51 css: CONFIG.INSTANCE.CUSTOMIZATIONS.CSS
52 }
36f9424f 53 },
915c5bbe 54 serverVersion: packageJSON.version,
eb080476
C
55 signup: {
56 allowed
57 },
58 transcoding: {
59 enabledResolutions
01de67b9
C
60 },
61 avatar: {
62 file: {
63 size: {
64 max: CONSTRAINTS_FIELDS.ACTORS.AVATAR.FILE_SIZE.max
65 },
66 extensions: CONSTRAINTS_FIELDS.ACTORS.AVATAR.EXTNAME
67 }
68 },
69 video: {
6de36768
C
70 image: {
71 extensions: CONSTRAINTS_FIELDS.VIDEOS.IMAGE.EXTNAME,
72 size: {
73 max: CONSTRAINTS_FIELDS.VIDEOS.IMAGE.FILE_SIZE.max
74 }
75 },
01de67b9
C
76 file: {
77 extensions: CONSTRAINTS_FIELDS.VIDEOS.EXTNAME
78 }
65fcc311 79 }
eb080476 80 }
6a84aafd 81
eb080476 82 return res.json(json)
65fcc311
C
83}
84
36f9424f
C
85function getAbout (req: express.Request, res: express.Response, next: express.NextFunction) {
86 const about: About = {
87 instance: {
88 name: CONFIG.INSTANCE.NAME,
2e3a0215 89 shortDescription: CONFIG.INSTANCE.SHORT_DESCRIPTION,
36f9424f
C
90 description: CONFIG.INSTANCE.DESCRIPTION,
91 terms: CONFIG.INSTANCE.TERMS
92 }
93 }
94
95 return res.json(about).end()
96}
97
fd206f0b
C
98async function getCustomConfig (req: express.Request, res: express.Response, next: express.NextFunction) {
99 const data = customConfig()
100
101 return res.json(data).end()
102}
103
104async function deleteCustomConfig (req: express.Request, res: express.Response, next: express.NextFunction) {
105 await unlinkPromise(CONFIG.CUSTOM_FILE)
106
107 reloadConfig()
108
109 const data = customConfig()
110
111 return res.json(data).end()
112}
113
114async function updateCustomConfig (req: express.Request, res: express.Response, next: express.NextFunction) {
115 const toUpdate: CustomConfig = req.body
116
117 // Need to change the videoQuota key a little bit
118 const toUpdateJSON = omit(toUpdate, 'videoQuota')
119 toUpdateJSON.user['video_quota'] = toUpdate.user.videoQuota
901637bb 120 toUpdateJSON.instance['default_client_route'] = toUpdate.instance.defaultClientRoute
2e3a0215 121 toUpdateJSON.instance['short_description'] = toUpdate.instance.shortDescription
509cd56a 122 delete toUpdate.user.videoQuota
901637bb 123 delete toUpdate.instance.defaultClientRoute
2e3a0215 124 delete toUpdate.instance.shortDescription
fd206f0b 125
2ad42952 126 await writeFilePromise(CONFIG.CUSTOM_FILE, JSON.stringify(toUpdateJSON, undefined, 2))
fd206f0b
C
127
128 reloadConfig()
129
130 const data = customConfig()
131 return res.json(data).end()
132}
133
65fcc311
C
134// ---------------------------------------------------------------------------
135
136export {
137 configRouter
138}
fd206f0b
C
139
140// ---------------------------------------------------------------------------
141
142function customConfig (): CustomConfig {
143 return {
66b16caf
C
144 instance: {
145 name: CONFIG.INSTANCE.NAME,
2e3a0215 146 shortDescription: CONFIG.INSTANCE.SHORT_DESCRIPTION,
66b16caf 147 description: CONFIG.INSTANCE.DESCRIPTION,
00b5556c 148 terms: CONFIG.INSTANCE.TERMS,
901637bb 149 defaultClientRoute: CONFIG.INSTANCE.DEFAULT_CLIENT_ROUTE,
00b5556c
C
150 customizations: {
151 css: CONFIG.INSTANCE.CUSTOMIZATIONS.CSS,
152 javascript: CONFIG.INSTANCE.CUSTOMIZATIONS.JAVASCRIPT
153 }
66b16caf 154 },
fd206f0b
C
155 cache: {
156 previews: {
157 size: CONFIG.CACHE.PREVIEWS.SIZE
158 }
159 },
160 signup: {
161 enabled: CONFIG.SIGNUP.ENABLED,
162 limit: CONFIG.SIGNUP.LIMIT
163 },
164 admin: {
165 email: CONFIG.ADMIN.EMAIL
166 },
167 user: {
168 videoQuota: CONFIG.USER.VIDEO_QUOTA
169 },
170 transcoding: {
171 enabled: CONFIG.TRANSCODING.ENABLED,
172 threads: CONFIG.TRANSCODING.THREADS,
173 resolutions: {
174 '240p': CONFIG.TRANSCODING.RESOLUTIONS[ '240p' ],
175 '360p': CONFIG.TRANSCODING.RESOLUTIONS[ '360p' ],
176 '480p': CONFIG.TRANSCODING.RESOLUTIONS[ '480p' ],
177 '720p': CONFIG.TRANSCODING.RESOLUTIONS[ '720p' ],
178 '1080p': CONFIG.TRANSCODING.RESOLUTIONS[ '1080p' ]
179 }
180 }
181 }
182}