PeerTube/shared/extra-utils/cli/cli-command.ts

24 lines
548 B
TypeScript
Raw Normal View History

2017-09-07 15:27:35 +02:00
import { exec } from 'child_process'
2021-07-05 16:37:50 +02:00
import { AbstractCommand } from '../shared'
2017-09-07 15:27:35 +02:00
2021-07-06 09:55:05 +02:00
export class CLICommand extends AbstractCommand {
2017-09-07 15:27:35 +02:00
2021-07-05 16:37:50 +02:00
static exec (command: string) {
return new Promise<string>((res, rej) => {
exec(command, (err, stdout, _stderr) => {
if (err) return rej(err)
2017-09-07 15:27:35 +02:00
2021-07-05 16:37:50 +02:00
return res(stdout)
})
2017-09-07 15:27:35 +02:00
})
2021-07-05 16:37:50 +02:00
}
2017-09-07 15:27:35 +02:00
2021-07-05 16:37:50 +02:00
getEnv () {
return `NODE_ENV=test NODE_APP_INSTANCE=${this.server.internalServerNumber}`
}
async execWithEnv (command: string) {
return CLICommand.exec(`${this.getEnv()} ${command}`)
}
}