2014-11-24 16:12:12 +00:00
|
|
|
_ = require('lodash')
|
2015-02-10 15:55:30 +00:00
|
|
|
async = require('async')
|
2014-12-12 21:20:29 +00:00
|
|
|
capitano = require('capitano')
|
2015-01-08 12:04:37 +00:00
|
|
|
resin = require('resin-sdk')
|
2014-11-26 19:11:34 +00:00
|
|
|
actions = require('./actions')
|
2015-02-10 15:38:19 +00:00
|
|
|
errors = require('./errors')
|
2015-02-10 15:46:22 +00:00
|
|
|
plugins = require('./plugins')
|
2015-03-04 18:40:40 +00:00
|
|
|
update = require('./update')
|
2014-11-17 19:48:26 +00:00
|
|
|
|
2015-01-16 12:34:59 +00:00
|
|
|
capitano.permission 'user', (done) ->
|
|
|
|
resin.auth.isLoggedIn (isLoggedIn) ->
|
|
|
|
if not isLoggedIn
|
|
|
|
return done(new Error('You have to log in'))
|
|
|
|
return done()
|
|
|
|
|
2014-12-12 21:20:29 +00:00
|
|
|
capitano.command
|
|
|
|
signature: '*'
|
|
|
|
action: ->
|
|
|
|
capitano.execute(command: 'help')
|
2014-11-27 13:28:24 +00:00
|
|
|
|
2014-12-12 21:20:29 +00:00
|
|
|
# ---------- Options ----------
|
|
|
|
capitano.globalOption
|
|
|
|
signature: 'quiet'
|
2014-11-27 13:28:24 +00:00
|
|
|
description: 'quiet (no output)'
|
2014-12-12 21:20:29 +00:00
|
|
|
boolean: true
|
|
|
|
alias: 'q'
|
2014-11-27 13:28:24 +00:00
|
|
|
|
2014-12-22 14:08:12 +00:00
|
|
|
capitano.globalOption
|
|
|
|
signature: 'project'
|
|
|
|
parameter: 'path'
|
|
|
|
description: 'project path'
|
2015-02-09 15:47:49 +00:00
|
|
|
alias: 'j'
|
2014-12-22 14:08:12 +00:00
|
|
|
|
2015-04-30 15:56:15 +00:00
|
|
|
capitano.globalOption
|
|
|
|
signature: 'version'
|
|
|
|
description: actions.info.version.description
|
|
|
|
boolean: true
|
|
|
|
alias: 'v'
|
|
|
|
|
2014-12-23 13:21:11 +00:00
|
|
|
# We don't do anything in response to this options
|
|
|
|
# explicitly. We use InquirerJS to provide CLI widgets,
|
|
|
|
# and that module understands --no-color automatically.
|
|
|
|
capitano.globalOption
|
|
|
|
signature: 'no-color'
|
|
|
|
description: 'disable colour highlighting'
|
|
|
|
boolean: true
|
|
|
|
|
2015-01-15 17:10:14 +00:00
|
|
|
# ---------- Info Module ----------
|
|
|
|
capitano.command(actions.info.version)
|
2014-12-19 18:07:53 +00:00
|
|
|
|
2015-01-15 17:10:14 +00:00
|
|
|
# ---------- Help Module ----------
|
|
|
|
capitano.command(actions.help.help)
|
2014-12-24 16:40:40 +00:00
|
|
|
|
2014-11-18 15:37:29 +00:00
|
|
|
# ---------- Auth Module ----------
|
2015-01-15 17:10:14 +00:00
|
|
|
capitano.command(actions.auth.login)
|
|
|
|
capitano.command(actions.auth.logout)
|
|
|
|
capitano.command(actions.auth.signup)
|
|
|
|
capitano.command(actions.auth.whoami)
|
2014-12-12 14:25:32 +00:00
|
|
|
|
2014-11-18 15:37:29 +00:00
|
|
|
# ---------- App Module ----------
|
2015-01-15 17:10:14 +00:00
|
|
|
capitano.command(actions.app.create)
|
|
|
|
capitano.command(actions.app.list)
|
|
|
|
capitano.command(actions.app.info)
|
|
|
|
capitano.command(actions.app.remove)
|
|
|
|
capitano.command(actions.app.restart)
|
2015-03-09 13:14:39 +00:00
|
|
|
capitano.command(actions.app.associate)
|
2015-01-15 17:10:14 +00:00
|
|
|
capitano.command(actions.app.init)
|
2014-12-11 15:31:56 +00:00
|
|
|
|
2014-11-19 17:38:15 +00:00
|
|
|
# ---------- Device Module ----------
|
2015-01-15 17:10:14 +00:00
|
|
|
capitano.command(actions.device.list)
|
|
|
|
capitano.command(actions.device.supported)
|
|
|
|
capitano.command(actions.device.rename)
|
2015-02-04 18:13:28 +00:00
|
|
|
capitano.command(actions.device.init)
|
2015-05-27 19:14:36 +00:00
|
|
|
capitano.command(actions.device.await)
|
2015-01-15 17:10:14 +00:00
|
|
|
capitano.command(actions.device.info)
|
|
|
|
capitano.command(actions.device.remove)
|
|
|
|
capitano.command(actions.device.identify)
|
2014-11-21 18:21:47 +00:00
|
|
|
|
2015-01-30 12:45:38 +00:00
|
|
|
# ---------- Drive Module ----------
|
|
|
|
capitano.command(actions.drive.list)
|
|
|
|
|
|
|
|
# ---------- Notes Module ----------
|
2015-01-15 17:10:14 +00:00
|
|
|
capitano.command(actions.notes.set)
|
2014-12-24 16:40:40 +00:00
|
|
|
|
2014-11-19 12:59:17 +00:00
|
|
|
# ---------- Preferences Module ----------
|
2015-01-15 17:10:14 +00:00
|
|
|
capitano.command(actions.preferences.preferences)
|
2014-11-20 16:13:59 +00:00
|
|
|
|
2014-11-20 17:02:29 +00:00
|
|
|
# ---------- Keys Module ----------
|
2015-01-15 17:10:14 +00:00
|
|
|
capitano.command(actions.keys.list)
|
|
|
|
capitano.command(actions.keys.add)
|
|
|
|
capitano.command(actions.keys.info)
|
|
|
|
capitano.command(actions.keys.remove)
|
2014-11-21 17:56:11 +00:00
|
|
|
|
2014-11-24 16:12:12 +00:00
|
|
|
# ---------- Env Module ----------
|
2015-01-15 17:10:14 +00:00
|
|
|
capitano.command(actions.env.list)
|
|
|
|
capitano.command(actions.env.add)
|
|
|
|
capitano.command(actions.env.rename)
|
|
|
|
capitano.command(actions.env.remove)
|
2014-11-24 17:00:36 +00:00
|
|
|
|
2014-11-28 16:46:24 +00:00
|
|
|
# ---------- Logs Module ----------
|
2015-05-18 13:37:27 +00:00
|
|
|
capitano.command(actions.logs)
|
2014-11-28 16:46:24 +00:00
|
|
|
|
2014-12-02 15:08:22 +00:00
|
|
|
# ---------- OS Module ----------
|
2015-01-15 17:10:14 +00:00
|
|
|
capitano.command(actions.os.download)
|
2015-02-03 17:31:16 +00:00
|
|
|
capitano.command(actions.os.install)
|
2014-12-12 21:20:29 +00:00
|
|
|
|
2014-12-22 16:00:01 +00:00
|
|
|
# ---------- Examples Module ----------
|
2015-01-15 17:10:14 +00:00
|
|
|
capitano.command(actions.examples.list)
|
|
|
|
capitano.command(actions.examples.clone)
|
|
|
|
capitano.command(actions.examples.info)
|
2014-12-22 16:00:01 +00:00
|
|
|
|
2015-02-12 13:41:25 +00:00
|
|
|
# ---------- Plugins Module ----------
|
|
|
|
capitano.command(actions.plugin.list)
|
2015-02-12 16:23:01 +00:00
|
|
|
capitano.command(actions.plugin.install)
|
2015-03-02 14:41:08 +00:00
|
|
|
capitano.command(actions.plugin.update)
|
2015-02-12 16:50:40 +00:00
|
|
|
capitano.command(actions.plugin.remove)
|
2015-02-12 13:41:25 +00:00
|
|
|
|
2015-03-04 18:03:08 +00:00
|
|
|
# ---------- Update Module ----------
|
|
|
|
capitano.command(actions.update.update)
|
|
|
|
|
2015-01-23 17:54:30 +00:00
|
|
|
changeProjectDirectory = (directory) ->
|
|
|
|
try
|
|
|
|
process.chdir(directory)
|
|
|
|
catch
|
|
|
|
errors.handle(new Error("Invalid project: #{directory}"))
|
|
|
|
|
2015-02-10 15:55:30 +00:00
|
|
|
async.waterfall([
|
2015-02-10 15:46:22 +00:00
|
|
|
|
2015-03-04 18:40:40 +00:00
|
|
|
(callback) ->
|
|
|
|
update.check(callback)
|
|
|
|
|
2015-02-10 15:55:30 +00:00
|
|
|
(callback) ->
|
2015-02-24 17:36:10 +00:00
|
|
|
plugins.register('resin-plugin-', callback)
|
2015-01-14 17:25:16 +00:00
|
|
|
|
2015-02-10 15:55:30 +00:00
|
|
|
(callback) ->
|
|
|
|
cli = capitano.parse(process.argv)
|
2014-11-26 19:05:00 +00:00
|
|
|
|
2015-06-02 16:36:17 +00:00
|
|
|
if cli.global.quiet or not process.stdout.isTTY
|
2015-01-23 17:24:57 +00:00
|
|
|
console.info = _.noop
|
2014-11-26 19:05:00 +00:00
|
|
|
|
2015-01-23 17:24:57 +00:00
|
|
|
if cli.global.project?
|
|
|
|
changeProjectDirectory(cli.global.project)
|
2014-12-22 14:08:12 +00:00
|
|
|
|
2015-04-30 15:56:15 +00:00
|
|
|
if cli.global.version
|
|
|
|
actions.info.version.action(null, null, callback)
|
|
|
|
else
|
|
|
|
capitano.execute(cli, callback)
|
2015-02-10 15:55:30 +00:00
|
|
|
|
|
|
|
], errors.handle)
|