2016-01-11 19:58:35 +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.
|
|
|
|
*/
|
|
|
|
|
2015-02-26 15:47:56 +00:00
|
|
|
(function() {
|
2016-02-12 18:34:16 +00:00
|
|
|
var Promise, _, actions, capitano, errors, events, plugins, resin, update;
|
2015-02-26 15:47:56 +00:00
|
|
|
|
|
|
|
_ = require('lodash');
|
|
|
|
|
2015-08-19 15:21:08 +00:00
|
|
|
Promise = require('bluebird');
|
2015-02-26 15:47:56 +00:00
|
|
|
|
2015-08-19 15:21:08 +00:00
|
|
|
capitano = Promise.promisifyAll(require('capitano'));
|
2015-02-26 15:47:56 +00:00
|
|
|
|
|
|
|
resin = require('resin-sdk');
|
|
|
|
|
|
|
|
actions = require('./actions');
|
|
|
|
|
|
|
|
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-02-26 15:47:56 +00:00
|
|
|
|
2015-08-18 12:53:06 +00:00
|
|
|
update = require('./utils/update');
|
|
|
|
|
2015-02-26 15:47:56 +00:00
|
|
|
capitano.permission('user', function(done) {
|
2015-07-22 22:06:53 +00:00
|
|
|
return resin.auth.isLoggedIn().then(function(isLoggedIn) {
|
2015-02-26 15:47:56 +00:00
|
|
|
if (!isLoggedIn) {
|
2016-01-22 03:07:08 +00:00
|
|
|
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
|
|
|
}
|
2015-07-22 22:06:53 +00:00
|
|
|
}).nodeify(done);
|
2015-02-26 15:47:56 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
capitano.command({
|
|
|
|
signature: '*',
|
|
|
|
action: function() {
|
|
|
|
return capitano.execute({
|
|
|
|
command: 'help'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
capitano.command(actions.info.version);
|
|
|
|
|
|
|
|
capitano.command(actions.help.help);
|
|
|
|
|
2015-05-07 15:40:12 +00:00
|
|
|
capitano.command(actions.wizard.wizard);
|
|
|
|
|
2015-02-26 15:47:56 +00:00
|
|
|
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);
|
|
|
|
|
2015-06-04 15:54:15 +00:00
|
|
|
capitano.command(actions.app.info);
|
|
|
|
|
2015-02-26 15:47:56 +00:00
|
|
|
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);
|
|
|
|
|
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);
|
|
|
|
|
2015-02-26 15:47:56 +00:00
|
|
|
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);
|
|
|
|
|
2015-09-29 17:03:14 +00:00
|
|
|
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-11-10 16:53:34 +00:00
|
|
|
capitano.command(actions.config.read);
|
|
|
|
|
2015-11-10 18:27:01 +00:00
|
|
|
capitano.command(actions.config.write);
|
|
|
|
|
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-16 02:08:02 +00:00
|
|
|
capitano.command(actions.settings.list);
|
|
|
|
|
2015-05-18 13:37:27 +00:00
|
|
|
capitano.command(actions.logs);
|
2015-02-26 15:47:56 +00:00
|
|
|
|
2015-08-18 12:53:06 +00:00
|
|
|
update.notify();
|
|
|
|
|
2015-08-19 15:21:08 +00:00
|
|
|
plugins.register(/^resin-plugin-(.+)$/).then(function() {
|
|
|
|
var cli;
|
|
|
|
cli = capitano.parse(process.argv);
|
2016-02-12 18:34:16 +00:00
|
|
|
return events.trackCommand(cli).then(function() {
|
|
|
|
return capitano.executeAsync(cli);
|
|
|
|
});
|
2015-08-19 15:21:08 +00:00
|
|
|
})["catch"](errors.handle);
|
2015-02-26 15:47:56 +00:00
|
|
|
|
|
|
|
}).call(this);
|