mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
		
			Executable File
		
	
| import { registerTSPaths } from '../../server/helpers/register-ts-paths'
 | |
| registerTSPaths()
 | |
| 
 | |
| import { initDatabaseModels } from '../../server/initializers/database'
 | |
| import { program } from 'commander'
 | |
| import { PluginManager } from '../../server/lib/plugins/plugin-manager'
 | |
| import { isAbsolute } from 'path'
 | |
| 
 | |
| program
 | |
|   .option('-n, --npm-name [npmName]', 'Plugin to install')
 | |
|   .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)
 | |
| 
 | |
| const options = program.opts()
 | |
| 
 | |
| if (!options.npmName && !options.pluginPath) {
 | |
|   console.error('You need to specify a plugin name with the desired version, or a plugin path.')
 | |
|   process.exit(-1)
 | |
| }
 | |
| 
 | |
| if (options.pluginPath && !isAbsolute(options.pluginPath)) {
 | |
|   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)
 | |
| 
 | |
|   const toInstall = options.npmName || options.pluginPath
 | |
|   await PluginManager.Instance.install(toInstall, options.pluginVersion, !!options.pluginPath)
 | |
| }
 |