2016-01-03 23:58:51 -04:00
|
|
|
###
|
|
|
|
Copyright 2016 Resin.io
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
###
|
|
|
|
|
2014-11-24 12:12:12 -04:00
|
|
|
_ = require('lodash')
|
2015-08-19 11:21:08 -04:00
|
|
|
Promise = require('bluebird')
|
|
|
|
capitano = Promise.promisifyAll(require('capitano'))
|
2015-01-08 09:04:37 -03:00
|
|
|
resin = require('resin-sdk')
|
2014-11-26 15:11:34 -04:00
|
|
|
actions = require('./actions')
|
2015-02-10 11:38:19 -04:00
|
|
|
errors = require('./errors')
|
2016-02-12 14:34:16 -04:00
|
|
|
events = require('./events')
|
2015-08-19 11:21:08 -04:00
|
|
|
plugins = require('./utils/plugins')
|
2015-08-18 08:53:06 -04:00
|
|
|
update = require('./utils/update')
|
2014-11-17 15:48:26 -04:00
|
|
|
|
2015-01-16 09:34:59 -03:00
|
|
|
capitano.permission 'user', (done) ->
|
2015-07-23 01:06:53 +03:00
|
|
|
resin.auth.isLoggedIn().then (isLoggedIn) ->
|
2015-01-16 09:34:59 -03:00
|
|
|
if not isLoggedIn
|
2016-01-21 23:07:08 -04:00
|
|
|
throw new Error '''
|
|
|
|
You have to log in to continue
|
|
|
|
|
|
|
|
Run the following command to go through the login wizard:
|
|
|
|
|
|
|
|
$ resin login
|
|
|
|
'''
|
2015-07-23 01:06:53 +03:00
|
|
|
.nodeify(done)
|
2015-01-16 09:34:59 -03:00
|
|
|
|
2014-12-12 17:20:29 -04:00
|
|
|
capitano.command
|
|
|
|
signature: '*'
|
|
|
|
action: ->
|
|
|
|
capitano.execute(command: 'help')
|
2014-11-27 09:28:24 -04:00
|
|
|
|
2016-07-29 15:32:12 +03:00
|
|
|
capitano.globalOption
|
|
|
|
signature: 'help'
|
|
|
|
boolean: true
|
|
|
|
alias: 'h'
|
|
|
|
|
2015-01-15 14:10:14 -03:00
|
|
|
# ---------- Info Module ----------
|
|
|
|
capitano.command(actions.info.version)
|
2014-12-19 14:07:53 -04:00
|
|
|
|
2015-01-15 14:10:14 -03:00
|
|
|
# ---------- Help Module ----------
|
|
|
|
capitano.command(actions.help.help)
|
2014-12-24 12:40:40 -04:00
|
|
|
|
2015-05-07 12:40:12 -03:00
|
|
|
# ---------- Wizard Module ----------
|
|
|
|
capitano.command(actions.wizard.wizard)
|
|
|
|
|
2014-11-18 11:37:29 -04:00
|
|
|
# ---------- Auth Module ----------
|
2015-01-15 14:10:14 -03:00
|
|
|
capitano.command(actions.auth.login)
|
|
|
|
capitano.command(actions.auth.logout)
|
|
|
|
capitano.command(actions.auth.signup)
|
|
|
|
capitano.command(actions.auth.whoami)
|
2014-12-12 10:25:32 -04:00
|
|
|
|
2014-11-18 11:37:29 -04:00
|
|
|
# ---------- App Module ----------
|
2015-01-15 14:10:14 -03:00
|
|
|
capitano.command(actions.app.create)
|
|
|
|
capitano.command(actions.app.list)
|
|
|
|
capitano.command(actions.app.remove)
|
|
|
|
capitano.command(actions.app.restart)
|
2015-06-04 11:54:15 -04:00
|
|
|
capitano.command(actions.app.info)
|
2014-12-11 11:31:56 -04:00
|
|
|
|
2014-11-19 13:38:15 -04:00
|
|
|
# ---------- Device Module ----------
|
2015-01-15 14:10:14 -03:00
|
|
|
capitano.command(actions.device.list)
|
2016-09-25 19:49:06 -04:00
|
|
|
capitano.command(actions.device.supported)
|
2015-01-15 14:10:14 -03:00
|
|
|
capitano.command(actions.device.rename)
|
2015-02-04 14:13:28 -04:00
|
|
|
capitano.command(actions.device.init)
|
2015-01-15 14:10:14 -03:00
|
|
|
capitano.command(actions.device.remove)
|
|
|
|
capitano.command(actions.device.identify)
|
2016-03-04 09:38:11 -04:00
|
|
|
capitano.command(actions.device.reboot)
|
2016-08-09 18:44:50 +05:30
|
|
|
capitano.command(actions.device.enableDeviceUrl)
|
|
|
|
capitano.command(actions.device.disableDeviceUrl)
|
|
|
|
capitano.command(actions.device.getDeviceUrl)
|
|
|
|
capitano.command(actions.device.hasDeviceUrl)
|
2015-09-29 14:33:31 -04:00
|
|
|
capitano.command(actions.device.register)
|
2015-11-11 15:00:02 -04:00
|
|
|
capitano.command(actions.device.move)
|
2015-10-19 14:14:04 -04:00
|
|
|
capitano.command(actions.device.info)
|
2014-11-21 14:21:47 -04:00
|
|
|
|
2015-01-30 08:45:38 -04:00
|
|
|
# ---------- Notes Module ----------
|
2015-01-15 14:10:14 -03:00
|
|
|
capitano.command(actions.notes.set)
|
2014-12-24 12:40:40 -04:00
|
|
|
|
2014-11-20 13:02:29 -04:00
|
|
|
# ---------- Keys Module ----------
|
2015-01-15 14:10:14 -03:00
|
|
|
capitano.command(actions.keys.list)
|
|
|
|
capitano.command(actions.keys.add)
|
|
|
|
capitano.command(actions.keys.info)
|
|
|
|
capitano.command(actions.keys.remove)
|
2014-11-21 13:56:11 -04:00
|
|
|
|
2014-11-24 12:12:12 -04:00
|
|
|
# ---------- Env Module ----------
|
2015-01-15 14:10:14 -03:00
|
|
|
capitano.command(actions.env.list)
|
|
|
|
capitano.command(actions.env.add)
|
|
|
|
capitano.command(actions.env.rename)
|
|
|
|
capitano.command(actions.env.remove)
|
2014-11-24 13:00:36 -04:00
|
|
|
|
2015-09-29 13:03:14 -04:00
|
|
|
# ---------- OS Module ----------
|
|
|
|
capitano.command(actions.os.download)
|
2015-09-29 13:36:29 -04:00
|
|
|
capitano.command(actions.os.configure)
|
2015-09-29 14:52:34 -04:00
|
|
|
capitano.command(actions.os.initialize)
|
2015-09-29 13:03:14 -04:00
|
|
|
|
2015-11-10 12:53:34 -04:00
|
|
|
# ---------- Config Module ----------
|
|
|
|
capitano.command(actions.config.read)
|
2015-11-10 14:27:01 -04:00
|
|
|
capitano.command(actions.config.write)
|
2016-03-17 16:07:19 -04:00
|
|
|
capitano.command(actions.config.inject)
|
2015-11-11 10:38:45 -04:00
|
|
|
capitano.command(actions.config.reconfigure)
|
2016-02-26 22:37:15 -04:00
|
|
|
capitano.command(actions.config.generate)
|
2015-11-10 12:53:34 -04:00
|
|
|
|
2015-11-15 22:08:02 -04:00
|
|
|
# ---------- Settings Module ----------
|
|
|
|
capitano.command(actions.settings.list)
|
|
|
|
|
2014-11-28 12:46:24 -04:00
|
|
|
# ---------- Logs Module ----------
|
2015-05-18 09:37:27 -04:00
|
|
|
capitano.command(actions.logs)
|
2014-11-28 12:46:24 -04:00
|
|
|
|
2016-03-28 09:21:25 -04:00
|
|
|
# ---------- Sync Module ----------
|
|
|
|
capitano.command(actions.sync)
|
|
|
|
|
2016-04-24 22:52:41 +03:00
|
|
|
# ---------- SSH Module ----------
|
|
|
|
capitano.command(actions.ssh)
|
|
|
|
|
2015-08-18 08:53:06 -04:00
|
|
|
update.notify()
|
|
|
|
|
2015-08-19 11:21:08 -04:00
|
|
|
plugins.register(/^resin-plugin-(.+)$/).then ->
|
|
|
|
cli = capitano.parse(process.argv)
|
2016-02-12 14:34:16 -04:00
|
|
|
|
|
|
|
events.trackCommand(cli).then ->
|
2016-07-29 15:32:12 +03:00
|
|
|
if cli.global?.help
|
|
|
|
return capitano.executeAsync(command: "help #{cli.command ? ''}")
|
2016-02-12 14:34:16 -04:00
|
|
|
capitano.executeAsync(cli)
|
|
|
|
|
2015-08-19 11:21:08 -04:00
|
|
|
.catch(errors.handle)
|