2014-12-12 21:20:29 +00:00
|
|
|
_ = require('lodash')
|
|
|
|
_.str = require('underscore.string')
|
|
|
|
capitano = require('capitano')
|
2015-08-13 12:11:58 +00:00
|
|
|
columnify = require('columnify')
|
2014-12-12 21:20:29 +00:00
|
|
|
|
2015-08-13 12:11:58 +00:00
|
|
|
parse = (object) ->
|
|
|
|
return _.object _.map object, (item) ->
|
2014-12-12 21:20:29 +00:00
|
|
|
|
2015-08-13 12:11:58 +00:00
|
|
|
# Hacky way to determine if an object is
|
|
|
|
# a function or a command
|
|
|
|
if item.alias?
|
|
|
|
signature = item.toString()
|
|
|
|
else
|
|
|
|
signature = item.signature.toString()
|
2014-12-12 21:20:29 +00:00
|
|
|
|
2015-08-13 12:11:58 +00:00
|
|
|
return [
|
|
|
|
signature
|
|
|
|
item.description
|
|
|
|
]
|
2014-12-12 21:20:29 +00:00
|
|
|
|
2015-08-13 12:11:58 +00:00
|
|
|
indent = (text) ->
|
|
|
|
text = _.map _.str.lines(text), (line) ->
|
|
|
|
return ' ' + line
|
|
|
|
return text.join('\n')
|
2014-12-12 21:20:29 +00:00
|
|
|
|
2015-08-13 12:11:58 +00:00
|
|
|
print = (data) ->
|
|
|
|
console.log indent columnify data,
|
|
|
|
showHeaders: false
|
|
|
|
minWidth: 35
|
2014-12-12 21:20:29 +00:00
|
|
|
|
2015-08-13 12:11:58 +00:00
|
|
|
general = (params, options, done) ->
|
2015-02-26 15:38:48 +00:00
|
|
|
console.log('Usage: resin [COMMAND] [OPTIONS]\n')
|
2015-01-15 14:36:43 +00:00
|
|
|
console.log('Commands:\n')
|
2014-12-12 21:20:29 +00:00
|
|
|
|
2015-08-13 12:11:58 +00:00
|
|
|
# We do not want the wildcard command
|
|
|
|
# to be printed in the help screen.
|
|
|
|
commands = _.reject capitano.state.commands, (command) ->
|
|
|
|
return command.isWildcard()
|
|
|
|
|
|
|
|
print(parse(commands))
|
2014-12-12 21:20:29 +00:00
|
|
|
|
2015-08-12 12:17:46 +00:00
|
|
|
if not _.isEmpty(capitano.state.globalOptions)
|
|
|
|
console.log('\nGlobal Options:\n')
|
2015-08-13 12:11:58 +00:00
|
|
|
print(parse(capitano.state.globalOptions))
|
2014-12-12 21:20:29 +00:00
|
|
|
|
2015-08-13 12:11:58 +00:00
|
|
|
return done()
|
2014-12-12 21:20:29 +00:00
|
|
|
|
2015-03-03 14:14:16 +00:00
|
|
|
command = (params, options, done) ->
|
2015-02-10 18:44:39 +00:00
|
|
|
capitano.state.getMatchCommand params.command, (error, command) ->
|
|
|
|
return done(error) if error?
|
2014-12-12 21:20:29 +00:00
|
|
|
|
2015-02-10 18:44:39 +00:00
|
|
|
if not command? or command.isWildcard()
|
2015-08-13 12:11:58 +00:00
|
|
|
return done(new Error("Command not found: #{params.command}"))
|
2014-12-12 21:20:29 +00:00
|
|
|
|
2015-02-10 18:44:39 +00:00
|
|
|
console.log("Usage: #{command.signature}")
|
2014-12-12 21:20:29 +00:00
|
|
|
|
2015-02-10 18:44:39 +00:00
|
|
|
if command.help?
|
|
|
|
console.log("\n#{command.help}")
|
|
|
|
else if command.description?
|
|
|
|
console.log("\n#{_.str.humanize(command.description)}")
|
2014-12-12 21:20:29 +00:00
|
|
|
|
2015-02-10 18:44:39 +00:00
|
|
|
if not _.isEmpty(command.options)
|
|
|
|
console.log('\nOptions:\n')
|
2015-08-13 12:11:58 +00:00
|
|
|
print(parse(command.options))
|
2015-02-10 18:44:39 +00:00
|
|
|
|
|
|
|
return done()
|
2015-01-15 14:18:34 +00:00
|
|
|
|
2015-01-15 17:10:14 +00:00
|
|
|
exports.help =
|
|
|
|
signature: 'help [command...]'
|
|
|
|
description: 'show help'
|
2015-03-03 14:14:16 +00:00
|
|
|
help: '''
|
|
|
|
Get detailed help for an specific command.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ resin help apps
|
|
|
|
$ resin help os download
|
|
|
|
'''
|
2015-02-10 18:44:39 +00:00
|
|
|
action: (params, options, done) ->
|
2015-01-15 17:10:14 +00:00
|
|
|
if params.command?
|
2015-03-03 14:14:16 +00:00
|
|
|
command(params, options, done)
|
2015-01-15 17:10:14 +00:00
|
|
|
else
|
2015-03-03 14:14:16 +00:00
|
|
|
general(params, options, done)
|