PeerTube/scripts/plugin/install.ts

37 lines
1.1 KiB
TypeScript
Raw Normal View History

2021-06-25 17:39:27 +02:00
import { program } from 'commander'
2019-07-12 11:39:58 +02:00
import { isAbsolute } from 'path'
import { initDatabaseModels } from '../../server/initializers/database'
import { PluginManager } from '../../server/lib/plugins/plugin-manager'
2019-07-12 11:39:58 +02:00
program
2019-07-19 10:37:35 +02:00
.option('-n, --npm-name [npmName]', 'Plugin to install')
2019-07-12 11:39:58 +02:00
.option('-v, --plugin-version [pluginVersion]', 'Plugin version to install')
.option('-p, --plugin-path [pluginPath]', 'Path of the plugin you want to install')
.parse(process.argv)
2021-02-03 09:33:05 +01:00
const options = program.opts()
if (!options.npmName && !options.pluginPath) {
2019-07-12 11:39:58 +02:00
console.error('You need to specify a plugin name with the desired version, or a plugin path.')
process.exit(-1)
}
2021-02-03 09:33:05 +01:00
if (options.pluginPath && !isAbsolute(options.pluginPath)) {
2019-07-12 11:39:58 +02:00
console.error('Plugin path should be absolute.')
process.exit(-1)
}
run()
.then(() => process.exit(0))
.catch(err => {
console.error(err)
process.exit(-1)
})
async function run () {
await initDatabaseModels(true)
2021-02-03 09:33:05 +01:00
const toInstall = options.npmName || options.pluginPath
await PluginManager.Instance.install(toInstall, options.pluginVersion, !!options.pluginPath)
2019-07-12 11:39:58 +02:00
}