This repository has been archived on 2020-01-20. You can view files and clone it, but cannot push or open issues or pull requests.
node-spearhead/lib/do_instances.js

156 lines
3.8 KiB
JavaScript
Raw Normal View History

/*
2015-09-04 21:12:20 +03:00
* 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.
*
2015-08-26 01:15:02 +03:00
* `triton instances ...`
*/
var format = require('util').format;
var tabula = require('tabula');
var vasync = require('vasync');
2015-08-26 02:46:14 +03:00
var common = require('./common');
2015-08-26 02:46:14 +03:00
// to be passed as query string args to /my/machines
var validFilters = [
'name',
'image',
'state',
'memory',
'tombstone',
'credentials'
];
// columns default without -o
var columnsDefault = 'shortid,name,img,state,primaryIp,ago';
// columns default with -l
var columnsDefaultLong = 'id,name,img,package,state,primaryIp,created';
// sort default with -s
var sortDefault = 'created';
2015-08-26 01:15:02 +03:00
function do_instances(subcmd, opts, args, callback) {
var self = this;
if (opts.help) {
this.do_help('help', {}, [subcmd], callback);
return;
2015-08-26 02:46:14 +03:00
}
var columns = columnsDefault;
if (opts.o) {
columns = opts.o;
} else if (opts.long) {
columns = columnsDefaultLong;
}
columns = columns.split(',');
var sort = opts.s.split(',');
2015-08-26 02:46:14 +03:00
var listOpts;
try {
listOpts = common.kvToObj(args, validFilters);
} catch (e) {
callback(e);
return;
}
2015-08-26 19:59:12 +03:00
var imgs;
var insts;
2015-08-26 19:59:12 +03:00
vasync.parallel({funcs: [
function getTheImages(next) {
self.tritonapi.listImages({useCache: true}, function (err, _imgs) {
if (err) {
next(err);
} else {
imgs = _imgs;
next();
}
});
},
function getTheMachines(next) {
self.tritonapi.cloudapi.listMachines(listOpts,
function (err, _insts) {
if (err) {
next(err);
} else {
insts = _insts;
next();
}
});
}
]}, function (err, results) {
/*
* Error handling: vasync.parallel's `err` is always a MultiError. We
* want to prefer the `getTheMachines` err, e.g. if both get a
* self-signed cert error.
*/
2015-08-26 19:59:12 +03:00
if (err) {
err = results.operations[1].err || err;
return callback(err);
2015-08-26 19:59:12 +03:00
}
// map "uuid" => "image_name"
var imgmap = {};
imgs.forEach(function (img) {
imgmap[img.id] = format('%s@%s', img.name, img.version);
2015-08-26 19:59:12 +03:00
});
2015-08-26 03:00:50 +03:00
// Add extra fields for nice output.
// XXX FWIW, the "extra fields" for images and packages are not added
// for `opts.json`. Thoughts? We should be consistent there. --TM
2015-08-26 03:00:50 +03:00
var now = new Date();
insts.forEach(function (inst) {
var created = new Date(inst.created);
inst.ago = common.longAgo(created, now);
inst.img = imgmap[inst.image] || inst.image;
inst.shortid = inst.id.split('-', 1)[0];
2015-08-26 03:00:50 +03:00
});
if (opts.json) {
common.jsonStream(insts);
} else {
tabula(insts, {
2015-08-26 02:46:14 +03:00
skipHeader: opts.H,
columns: columns,
sort: sort,
dottedLookup: true
});
}
2015-08-26 02:46:14 +03:00
callback();
});
2015-08-26 02:46:14 +03:00
}
2015-08-26 01:15:02 +03:00
do_instances.options = [
{
names: ['help', 'h'],
type: 'bool',
help: 'Show this help.'
}
].concat(common.getCliTableOptions({
includeLong: true,
sortDefault: sortDefault
}));
2015-08-26 01:15:02 +03:00
do_instances.help = (
'List instances.\n'
+ '\n'
+ 'Usage:\n'
2015-08-26 01:15:02 +03:00
+ ' {{name}} instances [<filters>...]\n'
+ '\n'
+ '{{options}}'
);
do_instances.aliases = ['insts', 'list', 'ls'];
2015-08-26 01:15:02 +03:00
module.exports = do_instances;