]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/controllers/api/custom-page.ts
refactor API errors to standard error format
[github/Chocobozzz/PeerTube.git] / server / controllers / api / custom-page.ts
1 import * as express from 'express'
2 import { ServerConfigManager } from '@server/lib/server-config-manager'
3 import { ActorCustomPageModel } from '@server/models/account/actor-custom-page'
4 import { HttpStatusCode } from '@shared/core-utils'
5 import { UserRight } from '@shared/models'
6 import { asyncMiddleware, authenticate, ensureUserHasRight } from '../../middlewares'
7
8 const customPageRouter = express.Router()
9
10 customPageRouter.get('/homepage/instance',
11 asyncMiddleware(getInstanceHomepage)
12 )
13
14 customPageRouter.put('/homepage/instance',
15 authenticate,
16 ensureUserHasRight(UserRight.MANAGE_INSTANCE_CUSTOM_PAGE),
17 asyncMiddleware(updateInstanceHomepage)
18 )
19
20 // ---------------------------------------------------------------------------
21
22 export {
23 customPageRouter
24 }
25
26 // ---------------------------------------------------------------------------
27
28 async function getInstanceHomepage (req: express.Request, res: express.Response) {
29 const page = await ActorCustomPageModel.loadInstanceHomepage()
30 if (!page) {
31 return res.fail({
32 status: HttpStatusCode.NOT_FOUND_404,
33 message: 'Instance homepage could not be found'
34 })
35 }
36
37 return res.json(page.toFormattedJSON())
38 }
39
40 async function updateInstanceHomepage (req: express.Request, res: express.Response) {
41 const content = req.body.content
42
43 await ActorCustomPageModel.updateInstanceHomepage(content)
44 ServerConfigManager.Instance.updateHomepageState(content)
45
46 return res.status(HttpStatusCode.NO_CONTENT_204).end()
47 }