X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftools%2Fpeertube-plugins.ts;h=47090b3a51dd234c07245b5196652564db09af39;hb=8db61f80ea0c5f4f4d085bb43d93797ef839fd63;hp=d5e024383678d6a0f06091d0c7340adec33b95e0;hpb=8d2be0ed7bb87283a1ec98609df6b82d83db706a;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/tools/peertube-plugins.ts b/server/tools/peertube-plugins.ts index d5e024383..47090b3a5 100644 --- a/server/tools/peertube-plugins.ts +++ b/server/tools/peertube-plugins.ts @@ -1,14 +1,8 @@ -import * as program from 'commander' -import { PluginType } from '../../shared/models/plugins/plugin.type' -import { getAccessToken } from '../../shared/extra-utils/users/login' -import { getMyUserInformation } from '../../shared/extra-utils/users/users' -import { installPlugin, listPlugins, uninstallPlugin } from '../../shared/extra-utils/server/plugins' -import { getServerCredentials } from './cli' -import { User, UserRole } from '../../shared/models/users' -import { PeerTubePlugin } from '../../shared/models/plugins/peertube-plugin.model' +import CliTable3 from 'cli-table3' +import { Command, OptionValues, program } from 'commander' import { isAbsolute } from 'path' - -const Table = require('cli-table') +import { PluginType } from '../../shared/models' +import { assignToken, buildServer, getServerCredentials } from './cli' program .name('plugins') @@ -22,7 +16,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') @@ -32,7 +26,18 @@ program .option('-p, --password ', 'Password') .option('-P --path ', 'Install from a path') .option('-n, --npm-name ', 'Install from npm') - .action((options) => installPluginCLI(options)) + .option('--plugin-version ', 'Specify the plugin version to install (only available when installing from npm)') + .action((options, command) => installPluginCLI(command, options)) + +program + .command('update') + .description('Update a plugin or a theme') + .option('-u, --url ', 'Server url') + .option('-U, --username ', 'Username') + .option('-p, --password ', 'Password') + .option('-P --path ', 'Update from a path') + .option('-n, --npm-name ', 'Update from npm') + .action((options, command) => updatePluginCLI(command, options)) program .command('uninstall') @@ -41,7 +46,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() @@ -51,30 +56,23 @@ program.parse(process.argv) // ---------------------------------------------------------------------------- -async function pluginsListCLI () { - const { url, username, password } = await getServerCredentials(program) - const accessToken = await getAdminTokenOrDie(url, username, password) - - let type: PluginType - if (program['onlyThemes']) type = PluginType.THEME - if (program['onlyPlugins']) type = PluginType.PLUGIN - - const res = await listPlugins({ - url, - accessToken, - start: 0, - count: 100, - sort: 'name', - type - }) - const plugins: PeerTubePlugin[] = res.body.data - - const table = new Table({ - head: ['name', 'version', 'homepage'], +async function pluginsListCLI (command: Command, options: OptionValues) { + const { url, username, password } = await getServerCredentials(command) + const server = buildServer(url) + await assignToken(server, username, password) + + let pluginType: PluginType + if (options.onlyThemes) pluginType = PluginType.THEME + if (options.onlyPlugins) pluginType = PluginType.PLUGIN + + const { data } = await server.plugins.list({ start: 0, count: 100, sort: 'name', pluginType }) + + const table = new CliTable3({ + head: [ 'name', 'version', 'homepage' ], colWidths: [ 50, 10, 50 ] - }) + }) 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 @@ -90,73 +88,78 @@ 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 server = buildServer(url) + await assignToken(server, username, password) try { - await installPlugin({ - url, - accessToken, - npmName: options['npmName'], - path: options['path'] - }) + await server.plugins.install({ npmName: options.npmName, path: options.path, pluginVersion: options.pluginVersion }) } catch (err) { console.error('Cannot install plugin.', err) process.exit(-1) - return } console.log('Plugin installed.') process.exit(0) } -async function uninstallPluginCLI (options: any) { - if (!options['npmName']) { - console.error('You need to specify the npm name of the plugin/theme you want to uninstall.\n') +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) } - const { url, username, password } = await getServerCredentials(options) - const accessToken = await getAdminTokenOrDie(url, username, password) + if (options.path && !isAbsolute(options.path)) { + console.error('Path should be absolute.') + process.exit(-1) + } + + const { url, username, password } = await getServerCredentials(command) + const server = buildServer(url) + await assignToken(server, username, password) try { - await uninstallPlugin({ - url, - accessToken, - npmName: options[ 'npmName' ] - }) + await server.plugins.update({ npmName: options.npmName, path: options.path }) } catch (err) { - console.error('Cannot uninstall plugin.', err) + console.error('Cannot update plugin.', err) process.exit(-1) - return } - console.log('Plugin uninstalled.') + console.log('Plugin updated.') process.exit(0) } -async function getAdminTokenOrDie (url: string, username: string, password: string) { - const accessToken = await getAccessToken(url, username, password) - const resMe = await getMyUserInformation(url, accessToken) - const me: User = resMe.body +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) + } - if (me.role !== UserRole.ADMINISTRATOR) { - console.error('Cannot list plugins if you are not administrator.') + const { url, username, password } = await getServerCredentials(command) + const server = buildServer(url) + await assignToken(server, username, password) + + try { + await server.plugins.uninstall({ npmName: options.npmName }) + } catch (err) { + console.error('Cannot uninstall plugin.', err) process.exit(-1) } - return accessToken + console.log('Plugin uninstalled.') + process.exit(0) }