2020-01-31 10:56:52 -05:00
|
|
|
// eslint-disable @typescript-eslint/no-unnecessary-type-assertion
|
|
|
|
|
2019-10-21 11:13:07 -04:00
|
|
|
import { registerTSPaths } from '../helpers/register-ts-paths'
|
|
|
|
registerTSPaths()
|
|
|
|
|
2019-07-11 11:23:24 -04:00
|
|
|
import * as program from 'commander'
|
|
|
|
import { PluginType } from '../../shared/models/plugins/plugin.type'
|
2019-07-12 05:39:58 -04:00
|
|
|
import { installPlugin, listPlugins, uninstallPlugin, updatePlugin } from '../../shared/extra-utils/server/plugins'
|
2020-01-28 05:07:23 -05:00
|
|
|
import { getAdminTokenOrDie, getServerCredentials } from './cli'
|
2019-07-11 11:23:24 -04:00
|
|
|
import { PeerTubePlugin } from '../../shared/models/plugins/peertube-plugin.model'
|
|
|
|
import { isAbsolute } from 'path'
|
2020-01-28 05:07:23 -05:00
|
|
|
import * as CliTable3 from 'cli-table3'
|
2021-02-03 03:33:05 -05:00
|
|
|
import commander = require('commander')
|
2019-07-11 11:23:24 -04:00
|
|
|
|
|
|
|
program
|
|
|
|
.name('plugins')
|
|
|
|
.usage('[command] [options]')
|
|
|
|
|
|
|
|
program
|
|
|
|
.command('list')
|
|
|
|
.description('List installed plugins')
|
|
|
|
.option('-u, --url <url>', 'Server url')
|
|
|
|
.option('-U, --username <username>', 'Username')
|
|
|
|
.option('-p, --password <token>', 'Password')
|
|
|
|
.option('-t, --only-themes', 'List themes only')
|
|
|
|
.option('-P, --only-plugins', 'List plugins only')
|
|
|
|
.action(() => pluginsListCLI())
|
|
|
|
|
|
|
|
program
|
|
|
|
.command('install')
|
|
|
|
.description('Install a plugin or a theme')
|
|
|
|
.option('-u, --url <url>', 'Server url')
|
|
|
|
.option('-U, --username <username>', 'Username')
|
|
|
|
.option('-p, --password <token>', 'Password')
|
|
|
|
.option('-P --path <path>', 'Install from a path')
|
|
|
|
.option('-n, --npm-name <npmName>', 'Install from npm')
|
2021-02-03 03:33:05 -05:00
|
|
|
.action((options, command) => installPluginCLI(command, options))
|
2019-07-11 11:23:24 -04:00
|
|
|
|
2019-07-12 05:39:58 -04:00
|
|
|
program
|
|
|
|
.command('update')
|
|
|
|
.description('Update a plugin or a theme')
|
|
|
|
.option('-u, --url <url>', 'Server url')
|
|
|
|
.option('-U, --username <username>', 'Username')
|
|
|
|
.option('-p, --password <token>', 'Password')
|
|
|
|
.option('-P --path <path>', 'Update from a path')
|
|
|
|
.option('-n, --npm-name <npmName>', 'Update from npm')
|
2021-02-03 03:33:05 -05:00
|
|
|
.action((options, command) => updatePluginCLI(command, options))
|
2019-07-12 05:39:58 -04:00
|
|
|
|
2019-07-11 11:23:24 -04:00
|
|
|
program
|
|
|
|
.command('uninstall')
|
|
|
|
.description('Uninstall a plugin or a theme')
|
|
|
|
.option('-u, --url <url>', 'Server url')
|
|
|
|
.option('-U, --username <username>', 'Username')
|
|
|
|
.option('-p, --password <token>', 'Password')
|
|
|
|
.option('-n, --npm-name <npmName>', 'NPM plugin/theme name')
|
2021-02-03 03:33:05 -05:00
|
|
|
.action((options, command) => uninstallPluginCLI(command, options))
|
2019-07-11 11:23:24 -04:00
|
|
|
|
|
|
|
if (!process.argv.slice(2).length) {
|
|
|
|
program.outputHelp()
|
|
|
|
}
|
|
|
|
|
|
|
|
program.parse(process.argv)
|
|
|
|
|
2021-02-03 03:33:05 -05:00
|
|
|
const options = program.opts()
|
|
|
|
|
2019-07-11 11:23:24 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
async function pluginsListCLI () {
|
|
|
|
const { url, username, password } = await getServerCredentials(program)
|
|
|
|
const accessToken = await getAdminTokenOrDie(url, username, password)
|
|
|
|
|
2019-07-19 08:36:04 -04:00
|
|
|
let pluginType: PluginType
|
2021-02-03 03:33:05 -05:00
|
|
|
if (options.onlyThemes) pluginType = PluginType.THEME
|
|
|
|
if (options.onlyPlugins) pluginType = PluginType.PLUGIN
|
2019-07-11 11:23:24 -04:00
|
|
|
|
|
|
|
const res = await listPlugins({
|
|
|
|
url,
|
|
|
|
accessToken,
|
|
|
|
start: 0,
|
|
|
|
count: 100,
|
|
|
|
sort: 'name',
|
2019-07-19 08:36:04 -04:00
|
|
|
pluginType
|
2019-07-11 11:23:24 -04:00
|
|
|
})
|
|
|
|
const plugins: PeerTubePlugin[] = res.body.data
|
|
|
|
|
2020-01-28 05:07:23 -05:00
|
|
|
const table = new CliTable3({
|
2020-01-31 10:56:52 -05:00
|
|
|
head: [ 'name', 'version', 'homepage' ],
|
2019-07-11 11:23:24 -04:00
|
|
|
colWidths: [ 50, 10, 50 ]
|
2020-01-31 10:56:52 -05:00
|
|
|
}) as any
|
2019-07-11 11:23:24 -04:00
|
|
|
|
|
|
|
for (const plugin of plugins) {
|
|
|
|
const npmName = plugin.type === PluginType.PLUGIN
|
|
|
|
? 'peertube-plugin-' + plugin.name
|
|
|
|
: 'peertube-theme-' + plugin.name
|
|
|
|
|
|
|
|
table.push([
|
|
|
|
npmName,
|
|
|
|
plugin.version,
|
|
|
|
plugin.homepage
|
|
|
|
])
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log(table.toString())
|
|
|
|
process.exit(0)
|
|
|
|
}
|
|
|
|
|
2021-02-03 03:33:05 -05:00
|
|
|
async function installPluginCLI (command: commander.CommanderStatic, options: commander.OptionValues) {
|
|
|
|
if (!options.path && !options.npmName) {
|
2019-07-11 11:23:24 -04:00
|
|
|
console.error('You need to specify the npm name or the path of the plugin you want to install.\n')
|
|
|
|
program.outputHelp()
|
|
|
|
process.exit(-1)
|
|
|
|
}
|
|
|
|
|
2021-02-03 03:33:05 -05:00
|
|
|
if (options.path && !isAbsolute(options.path)) {
|
2019-07-11 11:23:24 -04:00
|
|
|
console.error('Path should be absolute.')
|
|
|
|
process.exit(-1)
|
|
|
|
}
|
|
|
|
|
2021-02-03 03:33:05 -05:00
|
|
|
const { url, username, password } = await getServerCredentials(command)
|
2019-07-11 11:23:24 -04:00
|
|
|
const accessToken = await getAdminTokenOrDie(url, username, password)
|
|
|
|
|
|
|
|
try {
|
|
|
|
await installPlugin({
|
|
|
|
url,
|
|
|
|
accessToken,
|
2021-02-03 03:33:05 -05:00
|
|
|
npmName: options.npmName,
|
|
|
|
path: options.path
|
2019-07-11 11:23:24 -04:00
|
|
|
})
|
|
|
|
} catch (err) {
|
|
|
|
console.error('Cannot install plugin.', err)
|
|
|
|
process.exit(-1)
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log('Plugin installed.')
|
|
|
|
process.exit(0)
|
|
|
|
}
|
|
|
|
|
2021-02-03 03:33:05 -05:00
|
|
|
async function updatePluginCLI (command: commander.CommanderStatic, options: commander.OptionValues) {
|
|
|
|
if (!options.path && !options.npmName) {
|
2019-07-12 05:39:58 -04:00
|
|
|
console.error('You need to specify the npm name or the path of the plugin you want to update.\n')
|
|
|
|
program.outputHelp()
|
|
|
|
process.exit(-1)
|
|
|
|
}
|
|
|
|
|
2021-02-03 03:33:05 -05:00
|
|
|
if (options.path && !isAbsolute(options.path)) {
|
2019-07-12 05:39:58 -04:00
|
|
|
console.error('Path should be absolute.')
|
|
|
|
process.exit(-1)
|
|
|
|
}
|
|
|
|
|
2021-02-03 03:33:05 -05:00
|
|
|
const { url, username, password } = await getServerCredentials(command)
|
2019-07-12 05:39:58 -04:00
|
|
|
const accessToken = await getAdminTokenOrDie(url, username, password)
|
|
|
|
|
|
|
|
try {
|
|
|
|
await updatePlugin({
|
|
|
|
url,
|
|
|
|
accessToken,
|
2021-02-03 03:33:05 -05:00
|
|
|
npmName: options.npmName,
|
|
|
|
path: options.path
|
2019-07-12 05:39:58 -04:00
|
|
|
})
|
|
|
|
} catch (err) {
|
|
|
|
console.error('Cannot update plugin.', err)
|
|
|
|
process.exit(-1)
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log('Plugin updated.')
|
|
|
|
process.exit(0)
|
|
|
|
}
|
|
|
|
|
2021-02-03 03:33:05 -05:00
|
|
|
async function uninstallPluginCLI (command: commander.CommanderStatic, options: commander.OptionValues) {
|
|
|
|
if (!options.npmName) {
|
2019-07-11 11:23:24 -04:00
|
|
|
console.error('You need to specify the npm name of the plugin/theme you want to uninstall.\n')
|
|
|
|
program.outputHelp()
|
|
|
|
process.exit(-1)
|
|
|
|
}
|
|
|
|
|
2021-02-03 03:33:05 -05:00
|
|
|
const { url, username, password } = await getServerCredentials(command)
|
2019-07-11 11:23:24 -04:00
|
|
|
const accessToken = await getAdminTokenOrDie(url, username, password)
|
|
|
|
|
|
|
|
try {
|
|
|
|
await uninstallPlugin({
|
|
|
|
url,
|
|
|
|
accessToken,
|
2021-02-03 03:33:05 -05:00
|
|
|
npmName: options.npmName
|
2019-07-11 11:23:24 -04:00
|
|
|
})
|
|
|
|
} catch (err) {
|
|
|
|
console.error('Cannot uninstall plugin.', err)
|
|
|
|
process.exit(-1)
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log('Plugin uninstalled.')
|
|
|
|
process.exit(0)
|
|
|
|
}
|