balena-cli/build/app.js

222 lines
4.8 KiB
JavaScript
Raw Normal View History

// Generated by CoffeeScript 1.12.5
/*
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-04-26 13:16:06 +00:00
var Promise, Raven, _, actions, capitano, capitanoExecuteAsync, errors, events, globalTunnel, plugins, proxy, resin, settings, update;
2017-03-17 17:37:07 +00:00
Raven = require('raven');
Raven.disableConsoleAlerts();
2017-03-23 12:10:15 +00:00
Raven.config(require('./config').sentryDsn, {
2017-03-17 17:37:07 +00:00
captureUnhandledRejections: true,
release: require('../package.json').version
2017-04-21 10:10:30 +00:00
}).install(function(logged, error) {
console.error(error);
return process.exit(1);
});
2017-04-26 13:16:06 +00:00
globalTunnel = require('global-tunnel-ng');
settings = require('resin-settings-client');
try {
proxy = settings.get('proxy') || null;
} catch (error1) {
proxy = null;
}
globalTunnel.initialize(proxy);
2017-03-22 09:46:06 +00:00
_ = require('lodash');
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
Promise = require('bluebird');
2015-02-26 15:47:56 +00:00
capitano = require('capitano');
capitanoExecuteAsync = Promise.promisify(capitano.execute);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
resin = require('resin-sdk-preconfigured');
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
actions = require('./actions');
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
errors = require('./errors');
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
events = require('./events');
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
plugins = require('./utils/plugins');
2016-02-12 18:34:16 +00:00
2017-03-22 09:46:06 +00:00
update = require('./utils/update');
2015-02-26 15:47:56 +00:00
require('any-promise/register/bluebird');
2017-03-22 09:46:06 +00:00
capitano.permission('user', function(done) {
return resin.auth.isLoggedIn().then(function(isLoggedIn) {
if (!isLoggedIn) {
throw new Error('You have to log in to continue\n\nRun the following command to go through the login wizard:\n\n $ resin login');
2015-02-26 15:47:56 +00:00
}
2017-03-22 09:46:06 +00:00
}).nodeify(done);
});
capitano.command({
signature: '*',
action: function() {
return capitano.execute({
command: 'help'
});
}
});
2016-07-29 12:32:12 +00:00
2017-03-22 09:46:06 +00:00
capitano.globalOption({
signature: 'help',
boolean: true,
alias: 'h'
});
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.info.version);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.help.help);
2015-05-07 15:40:12 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.wizard.wizard);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.auth.login);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.auth.logout);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.auth.signup);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.auth.whoami);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.app.create);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.app.list);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.app.remove);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.app.restart);
2017-03-22 09:46:06 +00:00
capitano.command(actions.app.info);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.device.list);
2017-03-22 09:46:06 +00:00
capitano.command(actions.device.supported);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.device.rename);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.device.init);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.device.remove);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.device.identify);
2017-03-22 09:46:06 +00:00
capitano.command(actions.device.reboot);
2016-11-01 15:41:16 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.device.shutdown);
2017-03-22 09:46:06 +00:00
capitano.command(actions.device.enableDeviceUrl);
2017-03-22 09:46:06 +00:00
capitano.command(actions.device.disableDeviceUrl);
2017-03-22 09:46:06 +00:00
capitano.command(actions.device.getDeviceUrl);
2017-03-22 09:46:06 +00:00
capitano.command(actions.device.hasDeviceUrl);
2017-03-22 09:46:06 +00:00
capitano.command(actions.device.register);
2017-03-22 09:46:06 +00:00
capitano.command(actions.device.move);
2017-03-22 09:46:06 +00:00
capitano.command(actions.device.info);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.notes.set);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.keys.list);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.keys.add);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.keys.info);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.keys.remove);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.env.list);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.env.add);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.env.rename);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.env.remove);
2017-03-22 09:46:06 +00:00
capitano.command(actions.os.download);
2017-03-22 09:46:06 +00:00
capitano.command(actions.os.configure);
2017-03-22 09:46:06 +00:00
capitano.command(actions.os.initialize);
2017-03-22 09:46:06 +00:00
capitano.command(actions.config.read);
2017-03-22 09:46:06 +00:00
capitano.command(actions.config.write);
2017-03-22 09:46:06 +00:00
capitano.command(actions.config.inject);
2017-03-22 09:46:06 +00:00
capitano.command(actions.config.reconfigure);
2017-03-22 09:46:06 +00:00
capitano.command(actions.config.generate);
2017-03-22 09:46:06 +00:00
capitano.command(actions.settings.list);
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.logs);
2016-03-28 13:21:25 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.sync);
2016-04-24 19:52:41 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.ssh);
2017-03-08 23:30:24 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.local.configure);
2017-03-08 23:30:24 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.local.flash);
2017-03-08 23:30:24 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.local.logs);
2017-03-08 23:30:24 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.local.promote);
2017-03-08 23:30:24 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.local.push);
2017-03-08 23:30:24 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.local.ssh);
2017-03-08 23:30:24 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.local.scan);
2017-03-09 19:16:06 +00:00
2017-03-22 09:46:06 +00:00
capitano.command(actions.local.stop);
2017-03-24 09:48:14 +00:00
capitano.command(actions.internal.osInit);
capitano.command(actions.build);
capitano.command(actions.deploy);
2017-03-22 09:46:06 +00:00
update.notify();
2015-02-26 15:47:56 +00:00
2017-03-22 09:46:06 +00:00
plugins.register(/^resin-plugin-(.+)$/).then(function() {
var cli;
cli = capitano.parse(process.argv);
return events.trackCommand(cli).then(function() {
var ref, ref1;
if ((ref = cli.global) != null ? ref.help : void 0) {
return capitanoExecuteAsync({
2017-03-22 09:46:06 +00:00
command: "help " + ((ref1 = cli.command) != null ? ref1 : '')
});
}
return capitanoExecuteAsync(cli);
2017-03-22 09:46:06 +00:00
});
})["catch"](errors.handle);