]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - scripts/plugin/install.ts
Save logs on ci failure
[github/Chocobozzz/PeerTube.git] / scripts / plugin / install.ts
CommitLineData
2aaa1a3f
C
1import { registerTSPaths } from '../../server/helpers/register-ts-paths'
2registerTSPaths()
3
b5f919ac
C
4import { initDatabaseModels } from '../../server/initializers/database'
5import * as program from 'commander'
6import { PluginManager } from '../../server/lib/plugins/plugin-manager'
7import { isAbsolute } from 'path'
8
9program
9b474844 10 .option('-n, --npm-name [npmName]', 'Plugin to install')
b5f919ac
C
11 .option('-v, --plugin-version [pluginVersion]', 'Plugin version to install')
12 .option('-p, --plugin-path [pluginPath]', 'Path of the plugin you want to install')
13 .parse(process.argv)
14
9b474844 15if (!program['npmName'] && !program['pluginPath']) {
b5f919ac
C
16 console.error('You need to specify a plugin name with the desired version, or a plugin path.')
17 process.exit(-1)
18}
19
b5f919ac
C
20if (program['pluginPath'] && !isAbsolute(program['pluginPath'])) {
21 console.error('Plugin path should be absolute.')
22 process.exit(-1)
23}
24
25run()
26 .then(() => process.exit(0))
27 .catch(err => {
28 console.error(err)
29 process.exit(-1)
30 })
31
32async function run () {
33 await initDatabaseModels(true)
34
9b474844 35 const toInstall = program['npmName'] || program['pluginPath']
b5f919ac
C
36 await PluginManager.Instance.install(toInstall, program['pluginVersion'], !!program['pluginPath'])
37}