balena-cli/build/actions/keys.js

80 lines
2.8 KiB
JavaScript
Raw Normal View History

2015-02-26 15:47:56 +00:00
(function() {
2015-08-17 13:28:10 +00:00
var Promise, _, capitano, commandOptions, fs, helpers, resin, visuals;
2015-02-26 15:47:56 +00:00
2015-08-17 13:28:10 +00:00
Promise = require('bluebird');
2015-02-26 15:47:56 +00:00
2015-08-17 13:28:10 +00:00
fs = Promise.promisifyAll(require('fs'));
2015-02-26 15:47:56 +00:00
2015-08-17 13:28:10 +00:00
_ = require('lodash');
2015-02-26 15:47:56 +00:00
resin = require('resin-sdk');
capitano = require('capitano');
visuals = require('resin-cli-visuals');
commandOptions = require('./command-options');
2015-08-17 13:28:10 +00:00
helpers = require('../utils/helpers');
2015-07-27 12:08:55 +00:00
2015-02-26 15:47:56 +00:00
exports.list = {
signature: 'keys',
description: 'list all ssh keys',
help: 'Use this command to list all your SSH keys.\n\nExamples:\n\n $ resin keys',
2015-02-26 15:47:56 +00:00
permission: 'user',
action: function(params, options, done) {
return resin.models.key.getAll().then(function(keys) {
return console.log(visuals.table.horizontal(keys, ['id', 'title']));
}).nodeify(done);
2015-02-26 15:47:56 +00:00
}
};
exports.info = {
signature: 'key <id>',
description: 'list a single ssh key',
help: 'Use this command to show information about a single SSH key.\n\nExamples:\n\n $ resin key 17',
2015-02-26 15:47:56 +00:00
permission: 'user',
action: function(params, options, done) {
return resin.models.key.get(params.id).then(function(key) {
console.log(visuals.table.vertical(key, ['id', 'title']));
return console.log('\n' + key.public_key);
}).nodeify(done);
2015-02-26 15:47:56 +00:00
}
};
exports.remove = {
signature: 'key rm <id>',
description: 'remove a ssh key',
help: 'Use this command to remove a SSH key from resin.io.\n\nNotice this command asks for confirmation interactively.\nYou can avoid this by passing the `--yes` boolean option.\n\nExamples:\n\n $ resin key rm 17\n $ resin key rm 17 --yes',
2015-02-26 15:47:56 +00:00
options: [commandOptions.yes],
permission: 'user',
action: function(params, options, done) {
return helpers.confirm(options.yes, 'Are you sure you want to delete the key?').then(function() {
2015-08-17 13:28:10 +00:00
return resin.models.key.remove(params.id);
}).nodeify(done);
2015-02-26 15:47:56 +00:00
}
};
exports.add = {
signature: 'key add <name> [path]',
description: 'add a SSH key to resin.io',
help: 'Use this command to associate a new SSH key with your account.\n\nIf `path` is omitted, the command will attempt\nto read the SSH key from stdin.\n\nExamples:\n\n $ resin key add Main ~/.ssh/id_rsa.pub\n $ cat ~/.ssh/id_rsa.pub | resin key add Main',
2015-02-26 15:47:56 +00:00
permission: 'user',
action: function(params, options, done) {
2015-08-17 13:28:10 +00:00
return Promise["try"](function() {
if (params.path != null) {
return fs.readFileAsync(params.path, {
encoding: 'utf8'
});
2015-02-26 15:47:56 +00:00
}
2015-08-17 13:28:10 +00:00
return Promise.fromNode(function(callback) {
return capitano.utils.getStdin(function(data) {
return callback(null, data);
});
});
}).then(_.partial(resin.models.key.create, params.name)).nodeify(done);
2015-02-26 15:47:56 +00:00
}
};
}).call(this);