X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftools%2Fpeertube-plugins.ts;h=63541bf2c8aed8bf30533285051f0f612deed4f2;hb=41d1d075011174e73dccb74006181a92a618d7b4;hp=b341c14c11673c862a0e88244b854acb0f1aed07;hpb=cf59a2a0c367683ba35758419499bf6087c192ec;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/tools/peertube-plugins.ts b/server/tools/peertube-plugins.ts index b341c14c1..63541bf2c 100644 --- a/server/tools/peertube-plugins.ts +++ b/server/tools/peertube-plugins.ts @@ -1,11 +1,11 @@ +// eslint-disable @typescript-eslint/no-unnecessary-type-assertion + import { registerTSPaths } from '../helpers/register-ts-paths' registerTSPaths() -import * as program from 'commander' -import { PluginType } from '../../shared/models/plugins/plugin.type' -import { installPlugin, listPlugins, uninstallPlugin, updatePlugin } from '../../shared/extra-utils/server/plugins' -import { getAdminTokenOrDie, getServerCredentials } from './cli' -import { PeerTubePlugin } from '../../shared/models/plugins/peertube-plugin.model' +import { program, Command, OptionValues } from 'commander' +import { buildServer, getAdminTokenOrDie, getServerCredentials } from './cli' +import { PluginType } from '../../shared/models' import { isAbsolute } from 'path' import * as CliTable3 from 'cli-table3' @@ -21,7 +21,7 @@ program .option('-p, --password ', 'Password') .option('-t, --only-themes', 'List themes only') .option('-P, --only-plugins', 'List plugins only') - .action(() => pluginsListCLI()) + .action((options, command) => pluginsListCLI(command, options)) program .command('install') @@ -31,7 +31,7 @@ program .option('-p, --password ', 'Password') .option('-P --path ', 'Install from a path') .option('-n, --npm-name ', 'Install from npm') - .action((options) => installPluginCLI(options)) + .action((options, command) => installPluginCLI(command, options)) program .command('update') @@ -41,7 +41,7 @@ program .option('-p, --password ', 'Password') .option('-P --path ', 'Update from a path') .option('-n, --npm-name ', 'Update from npm') - .action((options) => updatePluginCLI(options)) + .action((options, command) => updatePluginCLI(command, options)) program .command('uninstall') @@ -50,7 +50,7 @@ program .option('-U, --username ', 'Username') .option('-p, --password ', 'Password') .option('-n, --npm-name ', 'NPM plugin/theme name') - .action(options => uninstallPluginCLI(options)) + .action((options, command) => uninstallPluginCLI(command, options)) if (!process.argv.slice(2).length) { program.outputHelp() @@ -60,30 +60,23 @@ program.parse(process.argv) // ---------------------------------------------------------------------------- -async function pluginsListCLI () { - const { url, username, password } = await getServerCredentials(program) - const accessToken = await getAdminTokenOrDie(url, username, password) +async function pluginsListCLI (command: Command, options: OptionValues) { + const { url, username, password } = await getServerCredentials(command) + const token = await getAdminTokenOrDie(url, username, password) + const server = buildServer(url, token) let pluginType: PluginType - if (program['onlyThemes']) pluginType = PluginType.THEME - if (program['onlyPlugins']) pluginType = PluginType.PLUGIN - - const res = await listPlugins({ - url, - accessToken, - start: 0, - count: 100, - sort: 'name', - pluginType - }) - const plugins: PeerTubePlugin[] = res.body.data + if (options.onlyThemes) pluginType = PluginType.THEME + if (options.onlyPlugins) pluginType = PluginType.PLUGIN + + const { data } = await server.pluginsCommand.list({ start: 0, count: 100, sort: 'name', pluginType }) const table = new CliTable3({ - head: ['name', 'version', 'homepage'], + head: [ 'name', 'version', 'homepage' ], colWidths: [ 50, 10, 50 ] - }) as CliTable3.HorizontalTable + }) as any - for (const plugin of plugins) { + for (const plugin of data) { const npmName = plugin.type === PluginType.PLUGIN ? 'peertube-plugin-' + plugin.name : 'peertube-theme-' + plugin.name @@ -99,90 +92,76 @@ async function pluginsListCLI () { process.exit(0) } -async function installPluginCLI (options: any) { - if (!options['path'] && !options['npmName']) { +async function installPluginCLI (command: Command, options: OptionValues) { + if (!options.path && !options.npmName) { 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) } - if (options['path'] && !isAbsolute(options['path'])) { + if (options.path && !isAbsolute(options.path)) { console.error('Path should be absolute.') process.exit(-1) } - const { url, username, password } = await getServerCredentials(options) - const accessToken = await getAdminTokenOrDie(url, username, password) + const { url, username, password } = await getServerCredentials(command) + const token = await getAdminTokenOrDie(url, username, password) + const server = buildServer(url, token) try { - await installPlugin({ - url, - accessToken, - npmName: options['npmName'], - path: options['path'] - }) + await server.pluginsCommand.install({ npmName: options.npmName, path: options.path }) } catch (err) { console.error('Cannot install plugin.', err) process.exit(-1) - return } console.log('Plugin installed.') process.exit(0) } -async function updatePluginCLI (options: any) { - if (!options['path'] && !options['npmName']) { +async function updatePluginCLI (command: Command, options: OptionValues) { + if (!options.path && !options.npmName) { 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) } - if (options['path'] && !isAbsolute(options['path'])) { + if (options.path && !isAbsolute(options.path)) { console.error('Path should be absolute.') process.exit(-1) } - const { url, username, password } = await getServerCredentials(options) - const accessToken = await getAdminTokenOrDie(url, username, password) + const { url, username, password } = await getServerCredentials(command) + const token = await getAdminTokenOrDie(url, username, password) + const server = buildServer(url, token) try { - await updatePlugin({ - url, - accessToken, - npmName: options['npmName'], - path: options['path'] - }) + await server.pluginsCommand.update({ npmName: options.npmName, path: options.path }) } catch (err) { console.error('Cannot update plugin.', err) process.exit(-1) - return } console.log('Plugin updated.') process.exit(0) } -async function uninstallPluginCLI (options: any) { - if (!options['npmName']) { +async function uninstallPluginCLI (command: Command, options: OptionValues) { + if (!options.npmName) { console.error('You need to specify the npm name of the plugin/theme you want to uninstall.\n') program.outputHelp() process.exit(-1) } - const { url, username, password } = await getServerCredentials(options) - const accessToken = await getAdminTokenOrDie(url, username, password) + const { url, username, password } = await getServerCredentials(command) + const token = await getAdminTokenOrDie(url, username, password) + const server = buildServer(url, token) try { - await uninstallPlugin({ - url, - accessToken, - npmName: options[ 'npmName' ] - }) + await server.pluginsCommand.uninstall({ npmName: options.npmName }) } catch (err) { console.error('Cannot uninstall plugin.', err) process.exit(-1) - return } console.log('Plugin uninstalled.')