105 lines
2.3 KiB
JavaScript
105 lines
2.3 KiB
JavaScript
/*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
/*
|
|
* Copyright 2015 Joyent, Inc.
|
|
*
|
|
* `triton key list ...`
|
|
*/
|
|
|
|
var assert = require('assert-plus');
|
|
var tabula = require('tabula');
|
|
|
|
var common = require('../common');
|
|
var errors = require('../errors');
|
|
|
|
|
|
var COLUMNS_DEFAULT = 'fingerprint,name';
|
|
var COLUMNS_LONG = 'fingerprint,name,key';
|
|
var SORT_DEFAULT = 'name';
|
|
|
|
|
|
function do_list(subcmd, opts, args, cb) {
|
|
assert.func(cb, 'cb');
|
|
|
|
if (opts.help) {
|
|
this.do_help('help', {}, [subcmd], cb);
|
|
return;
|
|
}
|
|
|
|
if (args.length > 0) {
|
|
cb(new errors.UsageError('incorrect number of arguments'));
|
|
return;
|
|
}
|
|
|
|
var cli = this.top;
|
|
|
|
cli.tritonapi.cloudapi.listKeys({}, function onKeys(err, keys) {
|
|
if (err) {
|
|
cb(err);
|
|
return;
|
|
}
|
|
|
|
if (opts.json) {
|
|
common.jsonStream(keys);
|
|
} else if (opts.authorized_keys) {
|
|
keys.forEach(function (key) {
|
|
console.log(common.chomp(key.key));
|
|
});
|
|
} else {
|
|
var columns = COLUMNS_DEFAULT;
|
|
|
|
if (opts.o) {
|
|
columns = opts.o;
|
|
} else if (opts.long) {
|
|
columns = COLUMNS_LONG;
|
|
}
|
|
|
|
columns = columns.split(',');
|
|
var sort = opts.s.split(',');
|
|
|
|
tabula(keys, {
|
|
skipHeader: false,
|
|
columns: columns,
|
|
sort: sort
|
|
});
|
|
}
|
|
cb();
|
|
});
|
|
}
|
|
|
|
|
|
do_list.options = [
|
|
{
|
|
names: ['help', 'h'],
|
|
type: 'bool',
|
|
help: 'Show this help.'
|
|
}
|
|
].concat(common.getCliTableOptions({
|
|
includeLong: true,
|
|
sortDefault: SORT_DEFAULT
|
|
})).concat([
|
|
{
|
|
names: ['authorized-keys', 'A'],
|
|
type: 'bool',
|
|
help: 'Just output public key data, one per line -- i.e. output ' +
|
|
'appropriate for a "~/.ssh/authorized_keys" file.'
|
|
}
|
|
]);
|
|
|
|
do_list.help = [
|
|
'Show all of an account\'s SSH keys.',
|
|
'',
|
|
'Usage:',
|
|
' {{name}} list [<options>]',
|
|
'',
|
|
'{{options}}'
|
|
].join('\n');
|
|
|
|
do_list.aliases = ['ls'];
|
|
|
|
module.exports = do_list;
|