mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-19 05:37:51 +00:00
83286e6729
Change-type: patch Signed-off-by: Scott Lowe <scott@balena.io>
150 lines
4.3 KiB
JavaScript
150 lines
4.3 KiB
JavaScript
/*
|
|
Copyright 2016-2020 Balena
|
|
|
|
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.
|
|
*/
|
|
|
|
import * as Promise from 'bluebird';
|
|
|
|
import * as capitano from 'capitano';
|
|
import * as actions from './actions';
|
|
import * as events from './events';
|
|
|
|
capitano.permission('user', done =>
|
|
require('./utils/patterns')
|
|
.checkLoggedIn()
|
|
.then(done, done),
|
|
);
|
|
|
|
capitano.command({
|
|
signature: '*',
|
|
action(_params, _options, done) {
|
|
capitano.execute({ command: 'help' }, done);
|
|
process.exitCode = process.exitCode || 1;
|
|
},
|
|
});
|
|
|
|
capitano.globalOption({
|
|
signature: 'help',
|
|
boolean: true,
|
|
alias: 'h',
|
|
});
|
|
|
|
capitano.globalOption({
|
|
signature: 'version',
|
|
boolean: true,
|
|
alias: 'v',
|
|
});
|
|
|
|
// ---------- Help Module ----------
|
|
capitano.command(actions.help.help);
|
|
|
|
// ---------- Auth Module ----------
|
|
capitano.command(actions.auth.login);
|
|
capitano.command(actions.auth.logout);
|
|
capitano.command(actions.auth.whoami);
|
|
|
|
// ---------- Device Module ----------
|
|
capitano.command(actions.device.list);
|
|
capitano.command(actions.device.rename);
|
|
capitano.command(actions.device.init);
|
|
capitano.command(actions.device.remove);
|
|
capitano.command(actions.device.identify);
|
|
capitano.command(actions.device.reboot);
|
|
capitano.command(actions.device.shutdown);
|
|
capitano.command(actions.device.enableDeviceUrl);
|
|
capitano.command(actions.device.disableDeviceUrl);
|
|
capitano.command(actions.device.getDeviceUrl);
|
|
capitano.command(actions.device.hasDeviceUrl);
|
|
capitano.command(actions.device.register);
|
|
capitano.command(actions.device.move);
|
|
capitano.command(actions.device.osUpdate);
|
|
capitano.command(actions.device.info);
|
|
|
|
// ---------- Tags Module ----------
|
|
capitano.command(actions.tags.list);
|
|
capitano.command(actions.tags.set);
|
|
capitano.command(actions.tags.remove);
|
|
|
|
// ---------- OS Module ----------
|
|
capitano.command(actions.os.versions);
|
|
capitano.command(actions.os.download);
|
|
capitano.command(actions.os.buildConfig);
|
|
capitano.command(actions.os.initialize);
|
|
|
|
// ---------- Config Module ----------
|
|
capitano.command(actions.config.read);
|
|
capitano.command(actions.config.write);
|
|
capitano.command(actions.config.inject);
|
|
capitano.command(actions.config.reconfigure);
|
|
capitano.command(actions.config.generate);
|
|
|
|
// ---------- Logs Module ----------
|
|
capitano.command(actions.logs.logs);
|
|
|
|
// ---------- Tunnel Module ----------
|
|
capitano.command(actions.tunnel.tunnel);
|
|
|
|
// ---------- Preload Module ----------
|
|
capitano.command(actions.preload);
|
|
|
|
// ---------- SSH Module ----------
|
|
capitano.command(actions.ssh.ssh);
|
|
|
|
// ---------- Local balenaOS Module ----------
|
|
capitano.command(actions.local.configure);
|
|
capitano.command(actions.local.flash);
|
|
|
|
// ---------- Public utils ----------
|
|
capitano.command(actions.util.availableDrives);
|
|
|
|
//------------ Local build and deploy -------
|
|
capitano.command(actions.build);
|
|
capitano.command(actions.deploy);
|
|
|
|
//------------ Push/remote builds -------
|
|
capitano.command(actions.push.push);
|
|
|
|
export function run(argv) {
|
|
const cli = capitano.parse(argv.slice(2));
|
|
const runCommand = function() {
|
|
const capitanoExecuteAsync = Promise.promisify(capitano.execute);
|
|
if (cli.global?.help) {
|
|
return capitanoExecuteAsync({
|
|
command: `help ${cli.command ?? ''}`,
|
|
});
|
|
} else {
|
|
return capitanoExecuteAsync(cli);
|
|
}
|
|
};
|
|
|
|
const trackCommand = function() {
|
|
const getMatchCommandAsync = Promise.promisify(
|
|
capitano.state.getMatchCommand,
|
|
);
|
|
return getMatchCommandAsync(cli.command).then(function(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 nonexistent or invalid command,
|
|
// command.signature.toString() returns '*'
|
|
const cmdSignature = command.signature.toString();
|
|
return events.trackCommand(cmdSignature);
|
|
});
|
|
};
|
|
|
|
return Promise.all([trackCommand(), runCommand()]).catch(
|
|
require('./errors').handleError,
|
|
);
|
|
}
|