2016-01-04 03:58:51 +00:00
|
|
|
###
|
2019-04-02 11:26:21 +00:00
|
|
|
Copyright 2016-2019 Balena
|
2016-01-04 03:58:51 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
###
|
|
|
|
|
2015-08-19 15:21:08 +00:00
|
|
|
Promise = require('bluebird')
|
2017-03-27 09:14:55 +00:00
|
|
|
capitano = require('capitano')
|
2014-11-26 19:11:34 +00:00
|
|
|
actions = require('./actions')
|
2016-02-12 18:34:16 +00:00
|
|
|
events = require('./events')
|
2017-03-29 11:03:40 +00:00
|
|
|
|
2015-01-16 12:34:59 +00:00
|
|
|
capitano.permission 'user', (done) ->
|
2019-04-02 11:26:21 +00:00
|
|
|
require('./utils/patterns').exitIfNotLoggedIn()
|
2019-03-25 15:16:23 +00:00
|
|
|
.then(done, done)
|
2015-01-16 12:34:59 +00:00
|
|
|
|
2014-12-12 21:20:29 +00:00
|
|
|
capitano.command
|
|
|
|
signature: '*'
|
2019-11-01 13:45:45 +00:00
|
|
|
action: (params, options, done) ->
|
|
|
|
capitano.execute(command: 'help', done)
|
2014-11-27 13:28:24 +00:00
|
|
|
|
2016-07-29 12:32:12 +00:00
|
|
|
capitano.globalOption
|
|
|
|
signature: 'help'
|
|
|
|
boolean: true
|
|
|
|
alias: 'h'
|
|
|
|
|
2019-06-24 15:51:07 +00:00
|
|
|
capitano.globalOption
|
|
|
|
signature: 'version'
|
|
|
|
boolean: true
|
|
|
|
alias: 'v'
|
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
|
|
|
|
2018-04-04 12:42:57 +00:00
|
|
|
# ---------- Api key module ----------
|
|
|
|
capitano.command(actions.apiKey.generate)
|
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
|
|
|
|
2018-04-04 12:42:57 +00:00
|
|
|
# ---------- Auth Module ----------
|
|
|
|
capitano.command(actions.auth.login)
|
|
|
|
capitano.command(actions.auth.logout)
|
|
|
|
capitano.command(actions.auth.whoami)
|
|
|
|
|
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)
|
2019-06-11 12:08:15 +00:00
|
|
|
capitano.command(actions.device.osUpdate)
|
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
|
|
|
|
2018-12-10 21:05:35 +00:00
|
|
|
# ---------- Tags Module ----------
|
|
|
|
capitano.command(actions.tags.list)
|
|
|
|
capitano.command(actions.tags.set)
|
|
|
|
capitano.command(actions.tags.remove)
|
|
|
|
|
2015-09-29 17:03:14 +00:00
|
|
|
# ---------- OS Module ----------
|
2017-06-08 19:58:37 +00:00
|
|
|
capitano.command(actions.os.versions)
|
2015-09-29 17:03:14 +00:00
|
|
|
capitano.command(actions.os.download)
|
2017-06-12 08:42:08 +00:00
|
|
|
capitano.command(actions.os.buildConfig)
|
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 ----------
|
2019-04-24 10:59:30 +00:00
|
|
|
capitano.command(actions.logs.logs)
|
2014-11-28 16:46:24 +00:00
|
|
|
|
2019-02-15 15:27:03 +00:00
|
|
|
# ---------- Tunnel Module ----------
|
|
|
|
capitano.command(actions.tunnel.tunnel)
|
|
|
|
|
2017-08-04 12:53:31 +00:00
|
|
|
# ---------- Preload Module ----------
|
|
|
|
capitano.command(actions.preload)
|
|
|
|
|
2016-04-24 19:52:41 +00:00
|
|
|
# ---------- SSH Module ----------
|
2019-04-24 17:45:19 +00:00
|
|
|
capitano.command(actions.ssh.ssh)
|
2016-04-24 19:52:41 +00:00
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
# ---------- Local balenaOS Module ----------
|
2017-03-08 19:26:08 +00:00
|
|
|
capitano.command(actions.local.configure)
|
2019-05-30 14:18:58 +00:00
|
|
|
capitano.command(actions.local.flash)
|
2019-05-16 07:53:24 +00:00
|
|
|
capitano.command(actions.scan)
|
2017-03-08 19:26:08 +00:00
|
|
|
|
2017-06-14 21:20:15 +00:00
|
|
|
# ---------- Public utils ----------
|
|
|
|
capitano.command(actions.util.availableDrives)
|
|
|
|
|
2017-03-24 09:48:14 +00:00
|
|
|
# ---------- Internal utils ----------
|
|
|
|
capitano.command(actions.internal.osInit)
|
2018-05-22 15:12:51 +00:00
|
|
|
capitano.command(actions.internal.scanDevices)
|
2017-03-24 09:48:14 +00:00
|
|
|
|
2017-03-29 11:03:40 +00:00
|
|
|
#------------ Local build and deploy -------
|
|
|
|
capitano.command(actions.build)
|
|
|
|
capitano.command(actions.deploy)
|
|
|
|
|
2018-04-25 14:20:07 +00:00
|
|
|
#------------ Push/remote builds -------
|
|
|
|
capitano.command(actions.push.push)
|
|
|
|
|
2018-05-22 15:12:51 +00:00
|
|
|
#------------ Join/Leave -------
|
|
|
|
capitano.command(actions.join.join)
|
|
|
|
capitano.command(actions.leave.leave)
|
|
|
|
|
2019-08-09 17:36:52 +00:00
|
|
|
exports.run = (argv) ->
|
2019-08-15 12:40:55 +00:00
|
|
|
cli = capitano.parse(argv.slice(2))
|
2019-08-09 17:36:52 +00:00
|
|
|
runCommand = ->
|
|
|
|
capitanoExecuteAsync = Promise.promisify(capitano.execute)
|
|
|
|
if cli.global?.help
|
|
|
|
capitanoExecuteAsync(command: "help #{cli.command ? ''}")
|
|
|
|
else
|
|
|
|
capitanoExecuteAsync(cli)
|
|
|
|
|
2019-08-28 01:14:19 +00:00
|
|
|
trackCommand = ->
|
|
|
|
getMatchCommandAsync = Promise.promisify(capitano.state.getMatchCommand)
|
|
|
|
getMatchCommandAsync(cli.command)
|
|
|
|
.then (command) ->
|
|
|
|
# cmdSignature is literally a string like, for example:
|
|
|
|
# "push <applicationOrDevice>"
|
|
|
|
# ("applicationOrDevice" is NOT replaced with its actual value)
|
|
|
|
# In case of failures like an inexistent or invalid command,
|
|
|
|
# command.signature.toString() returns '*'
|
|
|
|
cmdSignature = command.signature.toString()
|
|
|
|
events.trackCommand(cmdSignature)
|
|
|
|
|
|
|
|
Promise.all([trackCommand(), runCommand()])
|
2019-08-09 17:36:52 +00:00
|
|
|
.catch(require('./errors').handleError)
|