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

254 lines
7.6 KiB
TypeScript
Raw Normal View History

import type { RegisterServerOptions } from '@peertube/peertube-types'
import { getProsodyConfig, getProsodyFilePaths, writeProsodyConfig } from './config'
2021-05-12 12:59:52 +00:00
import { startProsodyLogRotate, stopProsodyLogRotate } from './logrotate'
import { changeHttpBindRoute } from '../routers/webchat'
2021-04-14 13:26:00 +00:00
import * as fs from 'fs'
2021-04-14 14:14:56 +00:00
import * as child_process from 'child_process'
2021-04-13 15:13:41 +00:00
2021-04-14 16:15:43 +00:00
interface ProsodyCtlResult {
code: number | null
stdout: string
sterr: string
message: string
2021-04-13 16:00:45 +00:00
}
2021-04-14 16:15:43 +00:00
async function prosodyCtl (options: RegisterServerOptions, command: string): Promise<ProsodyCtlResult> {
2021-04-14 15:10:22 +00:00
const logger = options.peertubeHelpers.logger
logger.debug('Calling prosodyCtl with command ' + command)
2021-04-14 14:14:56 +00:00
const filePaths = await getProsodyFilePaths(options)
if (!/^\w+$/.test(command)) {
throw new Error(`Invalid prosodyctl command '${command}'`)
}
return new Promise((resolve, reject) => {
2021-04-14 14:14:56 +00:00
let d: string = ''
let e: string = ''
2021-04-14 16:15:43 +00:00
let m: string = ''
2021-04-14 14:14:56 +00:00
const spawned = child_process.spawn('prosodyctl', [
'--config',
filePaths.config,
command
], {
cwd: filePaths.dir,
env: {
...process.env,
PROSODY_CONFIG: filePaths.config
}
})
spawned.stdout.on('data', (data) => {
d += data as string
2021-04-14 16:15:43 +00:00
m += data as string
2021-04-14 14:14:56 +00:00
})
spawned.stderr.on('data', (data) => {
options.peertubeHelpers.logger.error(`Spawned command ${command} has errors: ${data as string}`)
e += data as string
2021-04-14 16:15:43 +00:00
m += data as string
2021-04-14 14:14:56 +00:00
})
spawned.on('error', reject)
2021-04-14 16:15:43 +00:00
spawned.on('exit', (code) => {
resolve({
code: code,
stdout: d,
sterr: e,
message: m
})
2021-04-14 14:14:56 +00:00
})
})
}
async function getProsodyAbout (options: RegisterServerOptions): Promise<string> {
2021-04-14 16:15:43 +00:00
const ctl = await prosodyCtl(options, 'about')
return ctl.message
2021-04-14 14:14:56 +00:00
}
2021-05-12 12:59:52 +00:00
async function reloadProsody (options: RegisterServerOptions): Promise<boolean> {
const reload = await prosodyCtl(options, 'reload')
if (reload.code) {
options.peertubeHelpers.logger.error('reloadProsody failed: ' + JSON.stringify(reload))
return false
}
return true
}
2021-04-14 16:15:43 +00:00
interface ProsodyRunning {
ok: boolean
messages: string[]
}
2021-04-14 13:26:00 +00:00
async function testProsodyRunning (options: RegisterServerOptions): Promise<ProsodyRunning> {
2021-04-13 15:13:41 +00:00
const { peertubeHelpers } = options
2021-04-14 15:10:22 +00:00
const logger = peertubeHelpers.logger
logger.info('Checking if Prosody is running')
2021-04-14 13:26:00 +00:00
const result: ProsodyRunning = {
2021-04-13 16:00:45 +00:00
ok: false,
messages: []
}
2021-04-14 13:26:00 +00:00
const filePaths = await getProsodyFilePaths(options)
try {
2021-04-14 15:10:22 +00:00
logger.debug('Trying to access the pid file')
2021-04-14 13:26:00 +00:00
await fs.promises.access(filePaths.pid, fs.constants.R_OK)
2021-04-14 14:14:56 +00:00
result.messages.push(`Pid file ${filePaths.pid} found`)
2021-04-14 13:26:00 +00:00
} catch (error) {
2021-04-14 15:10:22 +00:00
logger.debug(`Failed to access pid file: ${error as string}`)
2021-04-14 13:26:00 +00:00
result.messages.push(`Pid file ${filePaths.pid} not found`)
return result
}
2021-04-14 16:15:43 +00:00
const status = await prosodyCtl(options, 'status')
result.messages.push('Prosodyctl status: ' + status.message)
if (status.code) {
return result
}
2021-04-14 13:26:00 +00:00
result.ok = true
return result
}
async function testProsodyCorrectlyRunning (options: RegisterServerOptions): Promise<ProsodyRunning> {
const { peertubeHelpers } = options
peertubeHelpers.logger.info('Checking if Prosody is correctly running')
const result = await testProsodyRunning(options)
if (!result.ok) { return result }
result.ok = false // more tests to come
2021-04-13 15:13:41 +00:00
2021-04-14 16:15:43 +00:00
try {
const wantedConfig = await getProsodyConfig(options)
const filePath = wantedConfig.paths.config
2021-04-14 16:15:43 +00:00
await fs.promises.access(filePath, fs.constants.R_OK) // throw an error if file does not exist.
result.messages.push(`The prosody configuration file (${filePath}) exists`)
const actualContent = await fs.promises.readFile(filePath, {
encoding: 'utf-8'
})
const wantedContent = wantedConfig.content
if (actualContent === wantedContent) {
result.messages.push('Prosody configuration file content is correct.')
} else {
result.messages.push('Prosody configuration file content is not correct.')
return result
2021-04-14 16:15:43 +00:00
}
} catch (error) {
result.messages.push('Error when requiring the prosody config file: ' + (error as string))
return result
}
result.ok = true
2021-04-13 16:00:45 +00:00
return result
2021-04-13 15:13:41 +00:00
}
async function ensureProsodyRunning (options: RegisterServerOptions): Promise<void> {
const { peertubeHelpers } = options
2021-04-13 15:13:41 +00:00
const logger = peertubeHelpers.logger
2021-04-14 15:10:22 +00:00
logger.debug('Calling ensureProsodyRunning')
2021-04-13 15:13:41 +00:00
const r = await testProsodyCorrectlyRunning(options)
2021-04-13 16:00:45 +00:00
if (r.ok) {
2021-04-14 13:26:00 +00:00
r.messages.forEach(m => logger.debug(m))
2021-04-13 15:13:41 +00:00
logger.info('Prosody is already running correctly')
2021-04-14 15:10:22 +00:00
// Stop here. Nothing to change.
2021-04-13 15:13:41 +00:00
return
}
2021-04-14 13:26:00 +00:00
logger.info('Prosody is not running correctly: ')
r.messages.forEach(m => logger.info(m))
2021-04-13 15:13:41 +00:00
// Shutting down...
2021-04-14 15:10:22 +00:00
logger.debug('Shutting down prosody')
2021-04-13 15:13:41 +00:00
await ensureProsodyNotRunning(options)
// writing the configuration file
2021-04-14 15:10:22 +00:00
logger.debug('Writing the configuration file')
const config = await writeProsodyConfig(options)
2021-04-13 15:13:41 +00:00
const filePaths = config.paths
2021-04-14 13:26:00 +00:00
// launch prosody
2021-04-14 15:10:22 +00:00
logger.info('Going to launch prosody')
2021-04-14 15:55:26 +00:00
const prosody = child_process.exec('prosody', {
2021-04-14 13:26:00 +00:00
cwd: filePaths.dir,
env: {
...process.env,
PROSODY_CONFIG: filePaths.config
}
})
2021-04-14 15:55:26 +00:00
prosody.stdout?.on('data', (data) => {
logger.debug(`Prosody stdout: ${data as string}`)
})
prosody.stderr?.on('data', (data) => {
logger.error(`Prosody stderr: ${data as string}`)
})
prosody.on('error', (error) => {
logger.error(`Prosody exec error: ${JSON.stringify(error)}`)
})
2021-04-14 15:55:26 +00:00
prosody.on('close', (code) => {
logger.info(`Prosody process closed all stdio with code ${code ?? 'null'}`)
})
prosody.on('exit', (code) => {
logger.info(`Prosody process exited with code ${code ?? 'null'}`)
})
2021-04-14 15:48:46 +00:00
// Set the http-bind route.
changeHttpBindRoute(options, {
host: config.host,
port: config.port
})
2021-04-14 15:48:46 +00:00
async function sleep (ms: number): Promise<any> {
return new Promise((resolve) => {
setTimeout(resolve, ms)
})
}
logger.info('Waiting for the prosody process to launch')
let count: number = 0
let processStarted: boolean = false
while (!processStarted && count < 5) {
count++
await sleep(500)
logger.info('Verifying prosody is launched')
2021-04-14 16:15:43 +00:00
const status = await prosodyCtl(options, 'status')
if (!status.code) {
logger.info(`Prosody status: ${status.stdout}`)
2021-04-14 15:48:46 +00:00
processStarted = true
2021-04-14 16:15:43 +00:00
} else {
logger.warn(`Prosody status: ${status.message}`)
2021-04-14 15:48:46 +00:00
}
}
if (!processStarted) {
logger.error('It seems that the Prosody process is not up')
2021-05-12 12:59:52 +00:00
return
2021-04-14 15:48:46 +00:00
}
2021-05-12 12:59:52 +00:00
logger.info('Prosody is running')
startProsodyLogRotate(options, filePaths, reloadProsody)
2021-04-13 15:13:41 +00:00
}
async function ensureProsodyNotRunning (options: RegisterServerOptions): Promise<void> {
const { peertubeHelpers } = options
2021-04-14 15:10:22 +00:00
const logger = peertubeHelpers.logger
logger.info('Checking if Prosody is running, and shutting it down if so')
2021-05-12 12:59:52 +00:00
stopProsodyLogRotate(options)
2021-04-14 15:10:22 +00:00
// NB: this function is called on plugin unregister, even if prosody is not used
// so we must avoid creating the working dir now
const filePaths = await getProsodyFilePaths(options)
if (!fs.existsSync(filePaths.dir)) {
logger.info(`The working dir ${filePaths.dir} does not exist, assuming there is no prosody on this server`)
return
}
2021-04-13 15:13:41 +00:00
2021-04-14 15:10:22 +00:00
logger.debug('Calling prosodyctl to stop the process')
2021-04-14 16:15:43 +00:00
const status = await prosodyCtl(options, 'stop')
logger.info(`ProsodyCtl command returned: ${status.message}`)
2021-04-15 11:11:59 +00:00
logger.debug('Removing http-bind route')
changeHttpBindRoute(options, null)
2021-04-13 15:13:41 +00:00
}
export {
2021-04-14 14:14:56 +00:00
getProsodyAbout,
2021-04-14 13:26:00 +00:00
testProsodyRunning,
2021-04-13 15:13:41 +00:00
testProsodyCorrectlyRunning,
ensureProsodyRunning,
ensureProsodyNotRunning
}