2016-01-04 03:58:51 +00: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.
|
|
|
|
###
|
|
|
|
|
2017-03-17 17:37:07 +00:00
|
|
|
Raven = require('raven')
|
|
|
|
Raven.disableConsoleAlerts()
|
|
|
|
Raven.config(
|
2017-03-23 12:10:15 +00:00
|
|
|
require('./config').sentryDsn
|
2017-03-17 17:37:07 +00:00
|
|
|
captureUnhandledRejections: true
|
|
|
|
release: require('../package.json').version
|
|
|
|
).install()
|
|
|
|
|
2014-11-24 16:12:12 +00:00
|
|
|
_ = require('lodash')
|
2015-08-19 15:21:08 +00:00
|
|
|
Promise = require('bluebird')
|
|
|
|
capitano = Promise.promisifyAll(require('capitano'))
|
2017-01-25 18:32:07 +00:00
|
|
|
resin = require('resin-sdk-preconfigured')
|
2014-11-26 19:11:34 +00:00
|
|
|
actions = require('./actions')
|
2015-02-10 15:38:19 +00:00
|
|
|
errors = require('./errors')
|
2016-02-12 18:34:16 +00:00
|
|
|
events = require('./events')
|
2015-08-19 15:21:08 +00:00
|
|
|
plugins = require('./utils/plugins')
|
2015-08-18 12:53:06 +00:00
|
|
|
update = require('./utils/update')
|
2014-11-17 19:48:26 +00:00
|
|
|
|
2015-01-16 12:34:59 +00:00
|
|
|
capitano.permission 'user', (done) ->
|
2015-07-22 22:06:53 +00:00
|
|
|
resin.auth.isLoggedIn().then (isLoggedIn) ->
|
2015-01-16 12:34:59 +00:00
|
|
|
if not isLoggedIn
|
2016-01-22 03:07:08 +00: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-22 22:06:53 +00:00
|
|
|
.nodeify(done)
|
2015-01-16 12:34:59 +00:00
|
|
|
|
2014-12-12 21:20:29 +00:00
|
|
|
capitano.command
|
|
|
|
signature: '*'
|
|
|
|
action: ->
|
|
|
|
capitano.execute(command: 'help')
|
2014-11-27 13:28:24 +00:00
|
|
|
|
2016-07-29 12:32:12 +00:00
|
|
|
capitano.globalOption
|
|
|
|
signature: 'help'
|
|
|
|
boolean: true
|
|
|
|
alias: 'h'
|
|
|
|
|
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
|
|
|
|
2015-05-07 15:40:12 +00:00
|
|
|
# ---------- Wizard Module ----------
|
|
|
|
capitano.command(actions.wizard.wizard)
|
|
|
|
|
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.remove)
|
|
|
|
capitano.command(actions.app.restart)
|
2015-06-04 15:54:15 +00:00
|
|
|
capitano.command(actions.app.info)
|
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)
|
2016-09-25 23:49:06 +00:00
|
|
|
capitano.command(actions.device.supported)
|
2015-01-15 17:10:14 +00:00
|
|
|
capitano.command(actions.device.rename)
|
2015-02-04 18:13:28 +00:00
|
|
|
capitano.command(actions.device.init)
|
2015-01-15 17:10:14 +00:00
|
|
|
capitano.command(actions.device.remove)
|
|
|
|
capitano.command(actions.device.identify)
|
2016-03-04 13:38:11 +00:00
|
|
|
capitano.command(actions.device.reboot)
|
2016-11-01 15:41:16 +00:00
|
|
|
capitano.command(actions.device.shutdown)
|
2016-08-09 13:14:50 +00:00
|
|
|
capitano.command(actions.device.enableDeviceUrl)
|
|
|
|
capitano.command(actions.device.disableDeviceUrl)
|
|
|
|
capitano.command(actions.device.getDeviceUrl)
|
|
|
|
capitano.command(actions.device.hasDeviceUrl)
|
2015-09-29 18:33:31 +00:00
|
|
|
capitano.command(actions.device.register)
|
2015-11-11 19:00:02 +00:00
|
|
|
capitano.command(actions.device.move)
|
2015-10-19 18:14:04 +00:00
|
|
|
capitano.command(actions.device.info)
|
2014-11-21 18:21:47 +00:00
|
|
|
|
2015-01-30 12:45:38 +00:00
|
|
|
# ---------- 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-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
|
|
|
|
2015-09-29 17:03:14 +00:00
|
|
|
# ---------- OS Module ----------
|
|
|
|
capitano.command(actions.os.download)
|
2015-09-29 17:36:29 +00:00
|
|
|
capitano.command(actions.os.configure)
|
2015-09-29 18:52:34 +00:00
|
|
|
capitano.command(actions.os.initialize)
|
2015-09-29 17:03:14 +00:00
|
|
|
|
2015-11-10 16:53:34 +00:00
|
|
|
# ---------- Config Module ----------
|
|
|
|
capitano.command(actions.config.read)
|
2015-11-10 18:27:01 +00:00
|
|
|
capitano.command(actions.config.write)
|
2016-03-17 20:07:19 +00:00
|
|
|
capitano.command(actions.config.inject)
|
2015-11-11 14:38:45 +00:00
|
|
|
capitano.command(actions.config.reconfigure)
|
2016-02-27 02:37:15 +00:00
|
|
|
capitano.command(actions.config.generate)
|
2015-11-10 16:53:34 +00:00
|
|
|
|
2015-11-16 02:08:02 +00:00
|
|
|
# ---------- Settings Module ----------
|
|
|
|
capitano.command(actions.settings.list)
|
|
|
|
|
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
|
|
|
|
2016-03-28 13:21:25 +00:00
|
|
|
# ---------- Sync Module ----------
|
|
|
|
capitano.command(actions.sync)
|
|
|
|
|
2016-04-24 19:52:41 +00:00
|
|
|
# ---------- SSH Module ----------
|
|
|
|
capitano.command(actions.ssh)
|
|
|
|
|
2017-03-08 19:26:08 +00:00
|
|
|
# ---------- Local ResinOS Module ----------
|
|
|
|
capitano.command(actions.local.configure)
|
|
|
|
capitano.command(actions.local.flash)
|
|
|
|
capitano.command(actions.local.logs)
|
|
|
|
capitano.command(actions.local.promote)
|
|
|
|
capitano.command(actions.local.push)
|
|
|
|
capitano.command(actions.local.ssh)
|
|
|
|
capitano.command(actions.local.scan)
|
2017-03-09 19:14:25 +00:00
|
|
|
capitano.command(actions.local.stop)
|
2017-03-08 19:26:08 +00:00
|
|
|
|
2017-03-24 09:48:14 +00:00
|
|
|
# ---------- Internal utils ----------
|
|
|
|
capitano.command(actions.internal.osInit)
|
|
|
|
|
2015-08-18 12:53:06 +00:00
|
|
|
update.notify()
|
|
|
|
|
2015-08-19 15:21:08 +00:00
|
|
|
plugins.register(/^resin-plugin-(.+)$/).then ->
|
|
|
|
cli = capitano.parse(process.argv)
|
2016-02-12 18:34:16 +00:00
|
|
|
|
|
|
|
events.trackCommand(cli).then ->
|
2016-07-29 12:32:12 +00:00
|
|
|
if cli.global?.help
|
|
|
|
return capitano.executeAsync(command: "help #{cli.command ? ''}")
|
2016-02-12 18:34:16 +00:00
|
|
|
capitano.executeAsync(cli)
|
|
|
|
|
2015-08-19 15:21:08 +00:00
|
|
|
.catch(errors.handle)
|