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