mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-21 22:47:48 +00:00
a803d4f646
Since we're now forcing users to rely on `npm` directly for updates, we can also get rid of plugin commands that attempt to install/update/remove using npm programatically and require users to use `npm` directly as well. This commit removes the following commands: - `plugins` - `plugin install` - `plugin update` - `plugin remove` Despite plugin related commands being removed, *the functionality that scans for plugins and registers them remains intact*.
110 lines
2.2 KiB
JavaScript
110 lines
2.2 KiB
JavaScript
(function() {
|
|
var _, actions, async, capitano, errors, plugins, resin, update;
|
|
|
|
_ = require('lodash');
|
|
|
|
async = require('async');
|
|
|
|
capitano = require('capitano');
|
|
|
|
resin = require('resin-sdk');
|
|
|
|
actions = require('./actions');
|
|
|
|
errors = require('./errors');
|
|
|
|
plugins = require('./plugins');
|
|
|
|
update = require('./utils/update');
|
|
|
|
capitano.permission('user', function(done) {
|
|
return resin.auth.isLoggedIn().then(function(isLoggedIn) {
|
|
if (!isLoggedIn) {
|
|
throw new Error('You have to log in');
|
|
}
|
|
}).nodeify(done);
|
|
});
|
|
|
|
capitano.command({
|
|
signature: '*',
|
|
action: function() {
|
|
return capitano.execute({
|
|
command: 'help'
|
|
});
|
|
}
|
|
});
|
|
|
|
capitano.command(actions.info.version);
|
|
|
|
capitano.command(actions.help.help);
|
|
|
|
capitano.command(actions.wizard.wizard);
|
|
|
|
capitano.command(actions.auth.login);
|
|
|
|
capitano.command(actions.auth.logout);
|
|
|
|
capitano.command(actions.auth.signup);
|
|
|
|
capitano.command(actions.auth.whoami);
|
|
|
|
capitano.command(actions.app.create);
|
|
|
|
capitano.command(actions.app.list);
|
|
|
|
capitano.command(actions.app.remove);
|
|
|
|
capitano.command(actions.app.restart);
|
|
|
|
capitano.command(actions.app.associate);
|
|
|
|
capitano.command(actions.app.info);
|
|
|
|
capitano.command(actions.device.list);
|
|
|
|
capitano.command(actions.device.rename);
|
|
|
|
capitano.command(actions.device.init);
|
|
|
|
capitano.command(actions.device.await);
|
|
|
|
capitano.command(actions.device.info);
|
|
|
|
capitano.command(actions.device.remove);
|
|
|
|
capitano.command(actions.device.identify);
|
|
|
|
capitano.command(actions.notes.set);
|
|
|
|
capitano.command(actions.keys.list);
|
|
|
|
capitano.command(actions.keys.add);
|
|
|
|
capitano.command(actions.keys.info);
|
|
|
|
capitano.command(actions.keys.remove);
|
|
|
|
capitano.command(actions.env.list);
|
|
|
|
capitano.command(actions.env.add);
|
|
|
|
capitano.command(actions.env.rename);
|
|
|
|
capitano.command(actions.env.remove);
|
|
|
|
capitano.command(actions.logs);
|
|
|
|
update.notify();
|
|
|
|
async.waterfall([
|
|
function(callback) {
|
|
return plugins.register('resin-plugin-', callback);
|
|
}, function(callback) {
|
|
var cli;
|
|
cli = capitano.parse(process.argv);
|
|
return capitano.execute(cli, callback);
|
|
}
|
|
], errors.handle);
|
|
|
|
}).call(this);
|