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
|
|
|
|
|
2023-08-01 16:42:24 +00:00
|
|
|
import type { RegisterServerOptions } from '@peertube/peertube-types'
|
2022-08-23 18:34:03 +00:00
|
|
|
import type { Router, Request, Response, NextFunction } from 'express'
|
2024-04-04 08:58:16 +00:00
|
|
|
import type {
|
|
|
|
InitConverseJSParamsError, ProsodyListRoomsResult, ProsodyListRoomsResultRoom
|
|
|
|
} from '../../../shared/lib/types'
|
2022-08-23 18:34:03 +00:00
|
|
|
import { createProxyServer } from 'http-proxy'
|
2023-08-01 16:42:24 +00:00
|
|
|
import { RegisterServerOptionsV5, isUserAdmin } from '../helpers'
|
2021-05-03 18:37:23 +00:00
|
|
|
import { asyncMiddleware } from '../middlewares/async'
|
2021-11-19 15:45:10 +00:00
|
|
|
import { isAutoColorsAvailable, areAutoColorsValid, AutoColors } from '../../../shared/lib/autocolors'
|
2023-05-24 14:09:55 +00:00
|
|
|
import { fetchMissingRemoteServerInfos } from '../federation/fetch-infos'
|
2023-08-01 16:42:24 +00:00
|
|
|
import { getConverseJSParams } from '../conversejs/params'
|
2023-09-11 15:38:31 +00:00
|
|
|
import { setCurrentProsody, delCurrentProsody } from '../prosody/api/host'
|
|
|
|
import { getChannelInfosById } from '../database/channel'
|
2024-03-07 15:22:14 +00:00
|
|
|
import { listProsodyRooms } from '../prosody/api/manage-rooms'
|
2024-04-04 08:58:16 +00:00
|
|
|
import { loc } from '../loc'
|
2021-04-08 00:43:13 +00:00
|
|
|
import * as path from 'path'
|
2021-04-16 11:42:07 +00:00
|
|
|
|
2024-04-04 08:58:16 +00:00
|
|
|
const escapeHTML = require('escape-html')
|
|
|
|
|
2021-04-08 00:43:13 +00:00
|
|
|
const fs = require('fs').promises
|
2021-04-15 10:17:08 +00:00
|
|
|
|
2022-08-23 18:34:03 +00:00
|
|
|
interface ProsodyProxyInfo {
|
2021-07-20 00:52:58 +00:00
|
|
|
host: string
|
|
|
|
port: string
|
|
|
|
}
|
2022-08-23 18:34:03 +00:00
|
|
|
let currentHttpBindProxy: ReturnType<typeof createProxyServer> | null = null
|
2022-08-24 15:55:24 +00:00
|
|
|
let currentWebsocketProxy: ReturnType<typeof createProxyServer> | null = null
|
2023-05-19 10:52:52 +00:00
|
|
|
let currentS2SWebsocketProxy: ReturnType<typeof createProxyServer> | null = null
|
2021-04-15 10:17:08 +00:00
|
|
|
|
2024-04-04 08:58:16 +00:00
|
|
|
class LivechatError extends Error {
|
|
|
|
livechatError: InitConverseJSParamsError
|
|
|
|
constructor (e: InitConverseJSParamsError) {
|
|
|
|
super(e.message)
|
|
|
|
this.livechatError = e
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-13 16:34:41 +00:00
|
|
|
async function initWebchatRouter (options: RegisterServerOptionsV5): Promise<Router> {
|
2021-04-15 10:17:08 +00:00
|
|
|
const {
|
|
|
|
getRouter,
|
2022-10-13 16:34:41 +00:00
|
|
|
registerWebSocketRoute,
|
2023-08-01 16:42:24 +00:00
|
|
|
peertubeHelpers
|
2021-04-15 10:17:08 +00:00
|
|
|
} = options
|
2021-04-08 00:43:13 +00:00
|
|
|
|
2021-04-09 17:29:44 +00:00
|
|
|
const converseJSIndex = await fs.readFile(path.resolve(__dirname, '../../conversejs/index.html'))
|
2021-04-08 00:43:13 +00:00
|
|
|
|
2021-04-15 10:17:08 +00:00
|
|
|
const router: Router = getRouter()
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-misused-promises
|
2024-04-04 08:58:16 +00:00
|
|
|
router.get('/room/:roomKey',
|
|
|
|
asyncMiddleware(async (req: Request, res: Response, _next: NextFunction): Promise<void> => {
|
|
|
|
try {
|
|
|
|
res.removeHeader('X-Frame-Options') // this route can be opened in an iframe
|
2021-04-08 00:43:13 +00:00
|
|
|
|
2024-04-04 08:58:16 +00:00
|
|
|
const roomKey = req.params.roomKey
|
|
|
|
let readonly: boolean | 'noscroll' = false
|
|
|
|
if (req.query._readonly === 'true') {
|
|
|
|
readonly = true
|
|
|
|
} else if (req.query._readonly === 'noscroll') {
|
|
|
|
readonly = 'noscroll'
|
|
|
|
}
|
|
|
|
|
|
|
|
const initConverseJSParam = await getConverseJSParams(options, roomKey, {
|
|
|
|
readonly,
|
|
|
|
transparent: req.query._transparent === 'true',
|
|
|
|
forcetype: req.query.forcetype === '1',
|
|
|
|
forceDefaultHideMucParticipants: req.query.force_default_hide_muc_participants === '1'
|
|
|
|
})
|
2021-04-08 00:43:13 +00:00
|
|
|
|
2024-04-04 08:58:16 +00:00
|
|
|
if (('isError' in initConverseJSParam)) {
|
|
|
|
throw new LivechatError(initConverseJSParam)
|
2021-11-19 15:45:10 +00:00
|
|
|
}
|
2024-04-04 08:58:16 +00:00
|
|
|
|
|
|
|
let page = '' + (converseJSIndex as string)
|
|
|
|
page = page.replace(/{{BASE_STATIC_URL}}/g, initConverseJSParam.staticBaseUrl)
|
|
|
|
|
|
|
|
const settings = await options.settingsManager.getSettings([
|
|
|
|
'converse-theme', 'converse-autocolors'
|
|
|
|
])
|
|
|
|
|
|
|
|
// Adding some custom CSS if relevant...
|
|
|
|
let autocolorsStyles = ''
|
|
|
|
if (
|
|
|
|
settings['converse-autocolors'] &&
|
|
|
|
isAutoColorsAvailable(settings['converse-theme'] as string)
|
|
|
|
) {
|
|
|
|
peertubeHelpers.logger.debug('Trying to load AutoColors...')
|
|
|
|
const autocolors: AutoColors = {
|
|
|
|
mainForeground: req.query._ac_mainForeground?.toString() ?? '',
|
|
|
|
mainBackground: req.query._ac_mainBackground?.toString() ?? '',
|
|
|
|
greyForeground: req.query._ac_greyForeground?.toString() ?? '',
|
|
|
|
greyBackground: req.query._ac_greyBackground?.toString() ?? '',
|
|
|
|
menuForeground: req.query._ac_menuForeground?.toString() ?? '',
|
|
|
|
menuBackground: req.query._ac_menuBackground?.toString() ?? '',
|
|
|
|
inputForeground: req.query._ac_inputForeground?.toString() ?? '',
|
|
|
|
inputBackground: req.query._ac_inputBackground?.toString() ?? '',
|
|
|
|
buttonForeground: req.query._ac_buttonForeground?.toString() ?? '',
|
|
|
|
buttonBackground: req.query._ac_buttonBackground?.toString() ?? '',
|
|
|
|
link: req.query._ac_link?.toString() ?? '',
|
|
|
|
linkHover: req.query._ac_linkHover?.toString() ?? ''
|
|
|
|
}
|
|
|
|
if (!Object.values(autocolors).find(c => c !== '')) {
|
|
|
|
peertubeHelpers.logger.debug('All AutoColors are empty.')
|
2022-11-01 14:17:21 +00:00
|
|
|
} else {
|
2024-04-04 08:58:16 +00:00
|
|
|
const autoColorsTest = areAutoColorsValid(autocolors)
|
|
|
|
if (autoColorsTest === true) {
|
2024-05-21 13:22:09 +00:00
|
|
|
// Note: we use body.converse-fullscreen.theme-peertube to be more specific than code in _variable.scss.
|
2024-04-04 08:58:16 +00:00
|
|
|
autocolorsStyles = `
|
|
|
|
<style>
|
2024-05-21 13:22:09 +00:00
|
|
|
body.converse-fullscreen.theme-peertube {
|
2024-04-04 08:58:16 +00:00
|
|
|
--peertube-main-foreground: ${autocolors.mainForeground};
|
|
|
|
--peertube-main-background: ${autocolors.mainBackground};
|
|
|
|
--peertube-grey-foreground: ${autocolors.greyForeground};
|
|
|
|
--peertube-grey-background: ${autocolors.greyBackground};
|
|
|
|
--peertube-menu-foreground: ${autocolors.menuForeground};
|
|
|
|
--peertube-menu-background: ${autocolors.menuBackground};
|
|
|
|
--peertube-input-foreground: ${autocolors.inputForeground};
|
|
|
|
--peertube-input-background: ${autocolors.inputBackground};
|
|
|
|
--peertube-button-foreground: ${autocolors.buttonForeground};
|
|
|
|
--peertube-button-background: ${autocolors.buttonBackground};
|
|
|
|
--peertube-link: ${autocolors.link};
|
|
|
|
--peertube-link-hover: ${autocolors.linkHover};
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
`
|
|
|
|
} else {
|
|
|
|
peertubeHelpers.logger.error('Provided AutoColors are invalid.', autoColorsTest)
|
|
|
|
}
|
2022-11-01 14:17:21 +00:00
|
|
|
}
|
2024-04-04 08:58:16 +00:00
|
|
|
} else {
|
|
|
|
peertubeHelpers.logger.debug('No AutoColors.')
|
2021-11-19 15:45:10 +00:00
|
|
|
}
|
2021-12-14 12:02:15 +00:00
|
|
|
|
2024-04-04 08:58:16 +00:00
|
|
|
// ... then insert CSS in the page.
|
|
|
|
page = page.replace(/{{CONVERSEJS_AUTOCOLORS}}/g, autocolorsStyles)
|
2021-04-08 00:43:13 +00:00
|
|
|
|
2024-04-04 08:58:16 +00:00
|
|
|
// ... and finaly inject all other parameters
|
|
|
|
page = page.replace('{INIT_CONVERSE_PARAMS}', JSON.stringify(initConverseJSParam))
|
|
|
|
res.status(200)
|
|
|
|
res.type('html')
|
|
|
|
res.send(page)
|
|
|
|
} catch (err: LivechatError | any) {
|
|
|
|
const code = err.livechatError?.code ?? 500
|
|
|
|
const additionnalMessage: string = escapeHTML(err.livechatError?.message as string ?? '')
|
|
|
|
const message: string = escapeHTML(loc('chatroom_not_accessible'))
|
|
|
|
|
|
|
|
res.status(code)
|
|
|
|
res.send(`<!DOCTYPE html PUBLIC "-//IETF//DTD HTML 2.0//EN"><html>
|
|
|
|
<head><title>${message}</title></head>
|
|
|
|
<body>
|
|
|
|
<h1>${message}</h1>
|
|
|
|
<p>${additionnalMessage}</p>
|
|
|
|
</body>
|
|
|
|
</html>`)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
)
|
2021-04-15 10:17:08 +00:00
|
|
|
|
2022-08-24 09:03:29 +00:00
|
|
|
await disableProxyRoute(options)
|
2022-08-25 10:31:45 +00:00
|
|
|
router.post('/http-bind',
|
2021-04-16 11:44:24 +00:00
|
|
|
(req: Request, res: Response, next: NextFunction) => {
|
2022-08-23 18:34:03 +00:00
|
|
|
try {
|
|
|
|
if (!currentHttpBindProxy) {
|
|
|
|
res.status(404)
|
|
|
|
res.send('Not found')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
req.url = 'http-bind'
|
|
|
|
currentHttpBindProxy.web(req, res)
|
|
|
|
} catch (err) {
|
|
|
|
next(err)
|
|
|
|
}
|
2021-04-16 11:44:24 +00:00
|
|
|
}
|
|
|
|
)
|
2023-04-21 16:49:15 +00:00
|
|
|
// We should also forward OPTIONS request, for CORS.
|
|
|
|
router.options('/http-bind',
|
|
|
|
(req: Request, res: Response, next: NextFunction) => {
|
|
|
|
try {
|
|
|
|
if (!currentHttpBindProxy) {
|
|
|
|
res.status(404)
|
|
|
|
res.send('Not found')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
req.url = 'http-bind'
|
|
|
|
currentHttpBindProxy.web(req, res)
|
|
|
|
} catch (err) {
|
|
|
|
next(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
2022-08-25 10:31:45 +00:00
|
|
|
|
2022-10-13 16:34:41 +00:00
|
|
|
// Peertube >=5.0.0: Adding the websocket route.
|
|
|
|
if (registerWebSocketRoute) {
|
|
|
|
registerWebSocketRoute({
|
|
|
|
route: '/xmpp-websocket',
|
|
|
|
handler: (request, socket, head) => {
|
2023-05-24 13:09:56 +00:00
|
|
|
try {
|
|
|
|
if (!currentWebsocketProxy) {
|
|
|
|
peertubeHelpers.logger.error('There is no current websocket proxy, should not get here.')
|
|
|
|
// no need to close the socket, Peertube will
|
|
|
|
// (see https://github.com/Chocobozzz/PeerTube/issues/5752#issuecomment-1510870894)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
currentWebsocketProxy.ws(request, socket, head)
|
|
|
|
} catch (err) {
|
|
|
|
peertubeHelpers.logger.error('Got an error when trying to connect to S2S', err)
|
2022-08-25 10:31:45 +00:00
|
|
|
}
|
2022-08-24 15:55:24 +00:00
|
|
|
}
|
2022-10-13 16:34:41 +00:00
|
|
|
})
|
2023-05-19 10:52:52 +00:00
|
|
|
|
|
|
|
registerWebSocketRoute({
|
|
|
|
route: '/xmpp-websocket-s2s',
|
2023-05-24 13:09:56 +00:00
|
|
|
handler: async (request, socket, head) => {
|
|
|
|
try {
|
|
|
|
if (!currentS2SWebsocketProxy) {
|
|
|
|
peertubeHelpers.logger.error('There is no current websocket s2s proxy, should not get here.')
|
|
|
|
// no need to close the socket, Peertube will
|
|
|
|
// (see https://github.com/Chocobozzz/PeerTube/issues/5752#issuecomment-1510870894)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// If the incomming request is from a remote Peertube instance, we must ensure that we know
|
|
|
|
// how to connect to it using Websocket S2S (for the dialback mecanism).
|
|
|
|
const remoteInstanceUrl = request.headers['peertube-livechat-ws-s2s-instance-url']
|
2023-05-24 14:09:55 +00:00
|
|
|
if (remoteInstanceUrl && (typeof remoteInstanceUrl === 'string')) {
|
|
|
|
// Note: fetchMissingRemoteServerInfos will store the information,
|
2023-05-24 13:09:56 +00:00
|
|
|
// so that the Prosody mod_s2s_peertubelivechat module can access them.
|
2023-05-24 14:09:55 +00:00
|
|
|
// We dont need to read the result.
|
|
|
|
await fetchMissingRemoteServerInfos(options, remoteInstanceUrl)
|
2023-05-24 13:09:56 +00:00
|
|
|
}
|
|
|
|
currentS2SWebsocketProxy.ws(request, socket, head)
|
|
|
|
} catch (err) {
|
|
|
|
peertubeHelpers.logger.error('Got an error when trying to connect to Websocket S2S', err)
|
2023-05-19 10:52:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2022-10-13 16:34:41 +00:00
|
|
|
}
|
2021-06-12 01:52:45 +00:00
|
|
|
|
|
|
|
router.get('/prosody-list-rooms', asyncMiddleware(
|
|
|
|
async (req: Request, res: Response, _next: NextFunction) => {
|
|
|
|
if (!res.locals.authenticated) {
|
|
|
|
res.sendStatus(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if (!await isUserAdmin(options, res)) {
|
|
|
|
res.sendStatus(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-09-11 15:38:31 +00:00
|
|
|
const rooms = await listProsodyRooms(options)
|
|
|
|
// For the frontend, we are adding channel data if the room is channel specific
|
2021-08-05 16:25:27 +00:00
|
|
|
if (Array.isArray(rooms)) {
|
|
|
|
for (let i = 0; i < rooms.length; i++) {
|
|
|
|
const room: ProsodyListRoomsResultRoom = rooms[i]
|
|
|
|
const matches = room.localpart.match(/^channel\.(\d+)$/)
|
|
|
|
if (matches?.[1]) {
|
|
|
|
const channelId = parseInt(matches[1])
|
|
|
|
const channelInfos = await getChannelInfosById(options, channelId)
|
|
|
|
if (channelInfos) {
|
|
|
|
room.channel = {
|
|
|
|
id: channelInfos.id,
|
|
|
|
name: channelInfos.name,
|
|
|
|
displayName: channelInfos.displayName
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-12 01:52:45 +00:00
|
|
|
res.status(200)
|
|
|
|
const r: ProsodyListRoomsResult = {
|
|
|
|
ok: true,
|
|
|
|
rooms: rooms
|
|
|
|
}
|
|
|
|
res.json(r)
|
|
|
|
}
|
|
|
|
))
|
|
|
|
|
2021-04-09 17:29:44 +00:00
|
|
|
return router
|
|
|
|
}
|
|
|
|
|
2022-08-24 09:03:29 +00:00
|
|
|
async function disableProxyRoute ({ peertubeHelpers }: RegisterServerOptions): Promise<void> {
|
2022-08-24 10:24:35 +00:00
|
|
|
// Note: I tried to promisify the httpbind proxy closing (by waiting for the callback call).
|
|
|
|
// But this seems to never happen, and stucked the plugin uninstallation.
|
|
|
|
// So I don't wait.
|
|
|
|
try {
|
2023-09-11 15:38:31 +00:00
|
|
|
delCurrentProsody()
|
2022-08-24 10:24:35 +00:00
|
|
|
if (currentHttpBindProxy) {
|
2022-08-24 15:55:24 +00:00
|
|
|
peertubeHelpers.logger.info('Closing the http bind proxy...')
|
2022-08-24 10:24:35 +00:00
|
|
|
currentHttpBindProxy.close()
|
2022-08-24 09:03:29 +00:00
|
|
|
currentHttpBindProxy = null
|
|
|
|
}
|
2022-08-24 15:55:24 +00:00
|
|
|
|
|
|
|
if (currentWebsocketProxy) {
|
|
|
|
peertubeHelpers.logger.info('Closing the websocket proxy...')
|
|
|
|
currentWebsocketProxy.close()
|
|
|
|
currentWebsocketProxy = null
|
|
|
|
}
|
2023-05-19 10:52:52 +00:00
|
|
|
if (currentS2SWebsocketProxy) {
|
|
|
|
peertubeHelpers.logger.info('Closing the s2s websocket proxy...')
|
|
|
|
currentS2SWebsocketProxy.close()
|
|
|
|
currentS2SWebsocketProxy = null
|
|
|
|
}
|
2022-08-24 10:24:35 +00:00
|
|
|
} catch (err) {
|
|
|
|
peertubeHelpers.logger.error('Seems that the http bind proxy close has failed: ' + (err as string))
|
|
|
|
}
|
2022-08-23 18:34:03 +00:00
|
|
|
}
|
|
|
|
|
2022-08-24 09:03:29 +00:00
|
|
|
async function enableProxyRoute (
|
2021-07-20 00:52:58 +00:00
|
|
|
{ peertubeHelpers }: RegisterServerOptions,
|
2022-08-23 18:34:03 +00:00
|
|
|
prosodyProxyInfo: ProsodyProxyInfo
|
2022-08-24 09:03:29 +00:00
|
|
|
): Promise<void> {
|
2021-04-15 10:17:08 +00:00
|
|
|
const logger = peertubeHelpers.logger
|
2022-08-23 18:34:03 +00:00
|
|
|
if (!/^\d+$/.test(prosodyProxyInfo.port)) {
|
|
|
|
logger.error(`Port '${prosodyProxyInfo.port}' is not valid. Aborting.`)
|
|
|
|
return
|
2021-04-15 10:17:08 +00:00
|
|
|
}
|
2023-09-11 15:38:31 +00:00
|
|
|
setCurrentProsody(prosodyProxyInfo.host, prosodyProxyInfo.port)
|
2022-08-24 10:24:35 +00:00
|
|
|
|
|
|
|
logger.info('Creating a new http bind proxy')
|
2022-08-23 18:34:03 +00:00
|
|
|
currentHttpBindProxy = createProxyServer({
|
|
|
|
target: 'http://localhost:' + prosodyProxyInfo.port + '/http-bind',
|
|
|
|
ignorePath: true
|
|
|
|
})
|
2022-08-24 10:24:35 +00:00
|
|
|
currentHttpBindProxy.on('error', (err, req, res) => {
|
|
|
|
// We must handle errors, otherwise Peertube server crashes!
|
|
|
|
logger.error(
|
2022-08-24 15:55:24 +00:00
|
|
|
'The http bind proxy got an error ' +
|
2022-08-24 10:24:35 +00:00
|
|
|
'(this can be normal if you updated/uninstalled the plugin, or shutdowned peertube while users were chatting): ' +
|
2022-12-08 10:25:57 +00:00
|
|
|
err.message
|
2022-08-24 10:24:35 +00:00
|
|
|
)
|
|
|
|
if ('writeHead' in res) {
|
|
|
|
res.writeHead(500)
|
|
|
|
}
|
|
|
|
res.end('')
|
|
|
|
})
|
|
|
|
currentHttpBindProxy.on('close', () => {
|
|
|
|
logger.info('Got a close event for the http bind proxy')
|
|
|
|
})
|
2022-08-24 15:55:24 +00:00
|
|
|
|
|
|
|
logger.info('Creating a new websocket proxy')
|
|
|
|
currentWebsocketProxy = createProxyServer({
|
|
|
|
target: 'http://localhost:' + prosodyProxyInfo.port + '/xmpp-websocket',
|
|
|
|
ignorePath: true,
|
|
|
|
ws: true
|
|
|
|
})
|
|
|
|
currentWebsocketProxy.on('error', (err, req, res) => {
|
|
|
|
// We must handle errors, otherwise Peertube server crashes!
|
|
|
|
logger.error(
|
|
|
|
'The websocket proxy got an error ' +
|
|
|
|
'(this can be normal if you updated/uninstalled the plugin, or shutdowned peertube while users were chatting): ' +
|
2022-12-08 10:25:57 +00:00
|
|
|
err.message
|
2022-08-24 15:55:24 +00:00
|
|
|
)
|
|
|
|
if ('writeHead' in res) {
|
|
|
|
res.writeHead(500)
|
|
|
|
}
|
|
|
|
res.end('')
|
|
|
|
})
|
|
|
|
currentWebsocketProxy.on('close', () => {
|
|
|
|
logger.info('Got a close event for the websocket proxy')
|
|
|
|
})
|
2023-05-19 10:52:52 +00:00
|
|
|
|
|
|
|
logger.info('Creating a new s2s websocket proxy')
|
|
|
|
currentS2SWebsocketProxy = createProxyServer({
|
|
|
|
target: 'http://localhost:' + prosodyProxyInfo.port + '/xmpp-websocket-s2s',
|
|
|
|
ignorePath: true,
|
|
|
|
ws: true
|
|
|
|
})
|
|
|
|
currentS2SWebsocketProxy.on('error', (err, req, res) => {
|
|
|
|
// We must handle errors, otherwise Peertube server crashes!
|
|
|
|
logger.error(
|
|
|
|
'The s2s websocket proxy got an error ' +
|
|
|
|
'(this can be normal if you updated/uninstalled the plugin, or shutdowned peertube while users were chatting): ' +
|
|
|
|
err.message
|
|
|
|
)
|
|
|
|
if ('writeHead' in res) {
|
|
|
|
res.writeHead(500)
|
|
|
|
}
|
|
|
|
res.end('')
|
|
|
|
})
|
|
|
|
currentS2SWebsocketProxy.on('close', () => {
|
|
|
|
logger.info('Got a close event for the s2s websocket proxy')
|
|
|
|
})
|
2021-04-15 10:17:08 +00:00
|
|
|
}
|
|
|
|
|
2021-04-09 17:29:44 +00:00
|
|
|
export {
|
2021-04-15 10:17:08 +00:00
|
|
|
initWebchatRouter,
|
2022-08-23 18:34:03 +00:00
|
|
|
disableProxyRoute,
|
|
|
|
enableProxyRoute
|
2021-04-08 00:43:13 +00:00
|
|
|
}
|