peertube-plugin-livechat/server/lib/routers/settings.ts

57 lines
1.6 KiB
TypeScript
Raw Normal View History

2024-05-23 09:42:14 +00:00
// SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
//
// SPDX-License-Identifier: AGPL-3.0-only
import type { RegisterServerOptions } from '@peertube/peertube-types'
2021-04-09 19:28:16 +00:00
import type { Router, Request, Response, NextFunction } from 'express'
import { diag } from '../diagnostic'
2021-04-10 11:57:47 +00:00
import { getBaseStaticRoute, isUserAdmin } from '../helpers'
2021-05-03 18:06:36 +00:00
import { asyncMiddleware } from '../middlewares/async'
2021-04-09 19:28:16 +00:00
async function initSettingsRouter (options: RegisterServerOptions): Promise<Router> {
const { peertubeHelpers, getRouter } = options
2021-04-09 19:28:16 +00:00
const router = getRouter()
const logger = peertubeHelpers.logger
2021-05-03 18:06:36 +00:00
router.get('/diagnostic', asyncMiddleware(
async (req: Request, res: Response, _next: NextFunction) => {
2021-04-09 19:28:16 +00:00
logger.info('Accessing peertube-plugin-livechat diagnostic tool.')
const src = getBaseStaticRoute(options) + 'settings/settings.js'
2021-04-09 19:28:16 +00:00
res.status(200)
res.type('html')
res.send(`<html>
<body><div>Loading...</div></body>
<script type="module" src="${src}"></script>
</html>
`)
2021-04-09 19:28:16 +00:00
}
2021-05-03 18:06:36 +00:00
))
2021-04-09 19:28:16 +00:00
2021-05-03 18:06:36 +00:00
router.post('/diagnostic/test', asyncMiddleware(
async (req: Request, res: Response, _next: NextFunction) => {
2021-04-09 19:28:16 +00:00
if (!res.locals.authenticated) {
2021-05-03 18:06:36 +00:00
res.sendStatus(403)
return
2021-04-09 19:28:16 +00:00
}
2021-05-05 13:55:38 +00:00
if (!await isUserAdmin(options, res)) {
2021-05-03 18:06:36 +00:00
res.sendStatus(403)
return
2021-04-10 11:57:47 +00:00
}
2021-04-09 19:28:16 +00:00
const test: string = req.body.test || ''
logger.info('Accessing peertube-plugin-livechat diagnostic tool, test "' + test + '".')
2021-04-10 02:16:25 +00:00
const result = await diag(test, options)
2021-04-09 19:28:16 +00:00
res.status(200)
res.json(result)
}
2021-05-03 18:06:36 +00:00
))
2021-04-09 19:28:16 +00:00
return router
}
export {
initSettingsRouter
}