From b5f919ac8eb2a1c20e26582fdfd377d687710d8f Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 12 Jul 2019 11:39:58 +0200 Subject: WIP plugins: update plugin --- server/tools/peertube-plugins.ts | 44 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 43 insertions(+), 1 deletion(-) (limited to 'server/tools/peertube-plugins.ts') diff --git a/server/tools/peertube-plugins.ts b/server/tools/peertube-plugins.ts index d5e024383..10cff7dd7 100644 --- a/server/tools/peertube-plugins.ts +++ b/server/tools/peertube-plugins.ts @@ -2,7 +2,7 @@ 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 { installPlugin, listPlugins, uninstallPlugin, updatePlugin } 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' @@ -34,6 +34,16 @@ program .option('-n, --npm-name ', 'Install from npm') .action((options) => installPluginCLI(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) => updatePluginCLI(options)) + program .command('uninstall') .description('Uninstall a plugin or a theme') @@ -122,6 +132,38 @@ async function installPluginCLI (options: any) { process.exit(0) } +async function updatePluginCLI (options: any) { + 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'])) { + console.error('Path should be absolute.') + process.exit(-1) + } + + const { url, username, password } = await getServerCredentials(options) + const accessToken = await getAdminTokenOrDie(url, username, password) + + try { + await updatePlugin({ + url, + accessToken, + 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']) { console.error('You need to specify the npm name of the plugin/theme you want to uninstall.\n') -- cgit v1.2.3