peertube-plugin-livechat/server/lib/prosody/config.ts

174 lines
5.9 KiB
TypeScript
Raw Normal View History

2021-04-12 18:52:21 +00:00
import * as fs from 'fs'
2021-04-13 15:13:41 +00:00
import * as path from 'path'
import { getBaseRouterRoute } from '../helpers'
import { ProsodyFilePaths } from './config/paths'
import { ProsodyConfigContent } from './config/content'
import { getProsodyDomain } from './config/domain'
2021-05-05 15:06:19 +00:00
import { getAPIKey } from '../apikey'
import type { ProsodyLogLevel } from './config/content'
2021-04-12 18:52:21 +00:00
async function getWorkingDir (options: RegisterServerOptions): Promise<string> {
const peertubeHelpers = options.peertubeHelpers
const logger = peertubeHelpers.logger
logger.debug('Calling getWorkingDir')
if (!peertubeHelpers.plugin) {
throw new Error('Missing peertubeHelpers.plugin, have you the correct Peertube version?')
}
const dir = path.resolve(peertubeHelpers.plugin.getDataDirectoryPath(), 'prosody')
logger.debug('getWorkingDir will return the dir ' + dir)
return dir
}
2021-04-14 15:10:22 +00:00
/**
* Creates the working dir if needed, and returns it.
*/
async function ensureWorkingDir (options: RegisterServerOptions): Promise<string> {
const logger = options.peertubeHelpers.logger
logger.debug('Calling ensureworkingDir')
2021-04-16 12:26:21 +00:00
const paths = await getProsodyFilePaths(options)
const dir = paths.dir
2021-04-14 15:10:22 +00:00
if (!fs.existsSync(dir)) {
logger.info(`The working dir ${dir} does not exists, trying to create it`)
await fs.promises.mkdir(dir)
logger.debug(`Working dir ${dir} was created`)
2021-04-12 18:52:21 +00:00
}
2021-04-14 15:10:22 +00:00
logger.debug(`Testing write access on ${dir}`)
await fs.promises.access(dir, fs.constants.W_OK) // will throw an error if no access
logger.debug(`Write access ok on ${dir}`)
2021-04-16 12:26:21 +00:00
if (!fs.existsSync(paths.data)) {
logger.info(`The data dir ${paths.data} does not exists, trying to create it`)
await fs.promises.mkdir(paths.data)
logger.debug(`Working dir ${paths.data} was created`)
}
2021-04-14 15:10:22 +00:00
return dir
2021-04-12 18:52:21 +00:00
}
2021-04-13 15:13:41 +00:00
async function getProsodyFilePaths (options: RegisterServerOptions): Promise<ProsodyFilePaths> {
2021-04-14 15:10:22 +00:00
const logger = options.peertubeHelpers.logger
logger.debug('Calling getProsodyFilePaths')
const dir = await getWorkingDir(options)
2021-04-13 15:13:41 +00:00
return {
2021-04-14 13:26:00 +00:00
dir: dir,
2021-04-13 15:13:41 +00:00
pid: path.resolve(dir, 'prosody.pid'),
error: path.resolve(dir, 'prosody.err'),
log: path.resolve(dir, 'prosody.log'),
2021-04-16 12:26:21 +00:00
config: path.resolve(dir, 'prosody.cfg.lua'),
data: path.resolve(dir, 'data'),
modules: path.resolve(__dirname, '../../prosody-modules')
2021-04-13 15:13:41 +00:00
}
}
interface ProsodyConfig {
content: string
paths: ProsodyFilePaths
host: string
port: string
baseApiUrl: string
roomType: 'video' | 'channel'
}
async function getProsodyConfig (options: RegisterServerOptions): Promise<ProsodyConfig> {
2021-04-14 15:10:22 +00:00
const logger = options.peertubeHelpers.logger
logger.debug('Calling getProsodyConfig')
2021-04-14 15:10:22 +00:00
2021-04-16 13:13:46 +00:00
const port = (await options.settingsManager.getSetting('prosody-port') as string) || '52800'
if (!/^\d+$/.test(port)) {
throw new Error('Invalid port')
}
2021-07-13 15:40:29 +00:00
const enableC2s = (await options.settingsManager.getSetting('prosody-c2s') as boolean) || false
const prosodyDomain = await getProsodyDomain(options)
2021-04-13 15:13:41 +00:00
const paths = await getProsodyFilePaths(options)
const roomType = (await options.settingsManager.getSetting('prosody-room-type')) === 'channel' ? 'channel' : 'video'
2021-04-12 18:52:21 +00:00
2021-05-05 15:06:19 +00:00
const apikey = await getAPIKey(options)
let baseApiUrl = await options.settingsManager.getSetting('prosody-peertube-uri') as string
if (baseApiUrl && !/^https?:\/\/[a-z0-9.-_]+(?::\d+)?$/.test(baseApiUrl)) {
throw new Error('Invalid prosody-peertube-uri')
}
if (!baseApiUrl) {
baseApiUrl = options.peertubeHelpers.config.getWebserverUrl()
}
baseApiUrl += getBaseRouterRoute(options) + 'api/'
2021-05-05 15:06:19 +00:00
const authApiUrl = baseApiUrl + 'user' // FIXME: should be protected by apikey, but mod_auth_http cant handle params
const roomApiUrl = baseApiUrl + 'room?apikey=' + apikey + '&jid={room.jid|jid_node}'
const testApiUrl = baseApiUrl + 'test?apikey=' + apikey
2021-04-12 18:52:21 +00:00
const config = new ProsodyConfigContent(paths, prosodyDomain)
2021-05-03 18:37:23 +00:00
config.useHttpAuthentication(authApiUrl)
config.usePeertubeBosh(prosodyDomain, port)
config.useMucHttpDefault(roomApiUrl)
2021-07-14 16:46:08 +00:00
if (enableC2s) {
const c2sPort = (await options.settingsManager.getSetting('prosody-c2s-port') as string) || '52822'
if (!/^\d+$/.test(c2sPort)) {
throw new Error('Invalid c2s port')
}
config.useC2S(c2sPort)
}
// TODO: add a settings so that admin can choose? (on/off and duration)
config.useMam('1w') // Remove archived messages after 1 week
// TODO: add a settings to choose?
config.useDefaultPersistent()
2021-06-12 01:52:45 +00:00
config.useListRoomsApi(apikey)
config.useTestModule(apikey, testApiUrl)
let logLevel: ProsodyLogLevel | undefined
if (logger.level && (typeof logger.level === 'string')) {
if (logger.level === 'error' || logger.level === 'info' || logger.level === 'debug') {
logLevel = logger.level
} else if (logger.level === 'warn' || logger.level === 'warning') {
// Should be 'warn', but just in case... (this value was buggy with peertube <= 3.2.0-rc1)
logLevel = 'warn'
}
}
if (logLevel === undefined) {
logger.info('No log level found in Peertube, will use default "info" for Prosody')
logLevel = 'info'
}
config.setLog(logLevel)
const content = config.write()
return {
content,
paths,
port,
baseApiUrl,
host: prosodyDomain,
roomType
}
2021-04-12 18:52:21 +00:00
}
async function writeProsodyConfig (options: RegisterServerOptions): Promise<ProsodyConfig> {
2021-04-13 15:13:41 +00:00
const logger = options.peertubeHelpers.logger
2021-04-14 15:10:22 +00:00
logger.debug('Calling writeProsodyConfig')
logger.debug('Ensuring that the working dir exists')
await ensureWorkingDir(options)
logger.debug('Computing the Prosody config content')
const config = await getProsodyConfig(options)
const content = config.content
const fileName = config.paths.config
2021-04-14 15:10:22 +00:00
2021-04-13 15:13:41 +00:00
logger.info(`Writing prosody configuration file to ${fileName}`)
await fs.promises.writeFile(fileName, content)
2021-04-14 15:10:22 +00:00
logger.debug('Prosody configuration file writen')
return config
2021-04-13 15:13:41 +00:00
}
2021-04-12 18:52:21 +00:00
export {
getProsodyConfig,
2021-04-13 15:13:41 +00:00
getWorkingDir,
2021-04-14 15:10:22 +00:00
ensureWorkingDir,
2021-04-13 15:13:41 +00:00
getProsodyFilePaths,
writeProsodyConfig
2021-04-12 18:52:21 +00:00
}