2014-11-24 16:12:12 +00:00
|
|
|
_ = require('lodash')
|
2015-01-14 17:25:16 +00:00
|
|
|
path = require('path')
|
2014-12-12 21:20:29 +00:00
|
|
|
capitano = require('capitano')
|
2015-01-08 12:04:37 +00:00
|
|
|
resin = require('resin-sdk')
|
2015-01-23 14:23:47 +00:00
|
|
|
nplugm = require('nplugm')
|
2014-11-26 19:11:34 +00:00
|
|
|
actions = require('./actions')
|
2014-12-22 19:28:11 +00:00
|
|
|
errors = require('./errors/errors')
|
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'
|
|
|
|
alias: 'p'
|
|
|
|
|
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)
|
|
|
|
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)
|
|
|
|
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-01-15 17:10:14 +00:00
|
|
|
capitano.command(actions.logs.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-01-23 15:16:31 +00:00
|
|
|
registerPlugin = (plugin) ->
|
|
|
|
return capitano.command(plugin) if not _.isArray(plugin)
|
|
|
|
return _.each(plugin, capitano.command)
|
|
|
|
|
2015-01-23 17:54:30 +00:00
|
|
|
changeProjectDirectory = (directory) ->
|
|
|
|
try
|
|
|
|
process.chdir(directory)
|
|
|
|
catch
|
|
|
|
errors.handle(new Error("Invalid project: #{directory}"))
|
|
|
|
|
2015-01-23 17:24:57 +00:00
|
|
|
nplugm.load 'resin-plugin-*', (error, plugin) ->
|
|
|
|
return console.error(error.message) if error?
|
|
|
|
registerPlugin(plugin.require())
|
|
|
|
, (error, loadedPlugins) ->
|
|
|
|
errors.handle(error) if error?
|
2015-01-14 17:25:16 +00:00
|
|
|
|
2015-01-23 17:24:57 +00:00
|
|
|
cli = capitano.parse(process.argv)
|
2014-12-02 15:08:22 +00:00
|
|
|
|
2015-01-23 17:24:57 +00:00
|
|
|
resin.data.prefix.set resin.settings.get('dataPrefix'), (error) ->
|
|
|
|
errors.handle(error) if error?
|
2014-11-26 19:05:00 +00:00
|
|
|
|
2015-01-23 17:24:57 +00:00
|
|
|
if cli.global.quiet
|
|
|
|
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-01-23 17:24:57 +00:00
|
|
|
capitano.execute cli, (error) ->
|
|
|
|
errors.handle(error) if error?
|