2015-08-27 02:59:28 +03:00
|
|
|
/*
|
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-27 02:59:28 +03:00
|
|
|
*
|
|
|
|
* `triton datacenters ...`
|
|
|
|
*/
|
|
|
|
|
2015-09-03 06:24:08 +03:00
|
|
|
var tabula = require('tabula');
|
|
|
|
|
2015-08-27 02:59:28 +03:00
|
|
|
var common = require('./common');
|
|
|
|
|
2015-09-04 01:09:21 +03:00
|
|
|
// columns default without -o
|
|
|
|
var columnsDefault = 'name,url';
|
|
|
|
|
|
|
|
// sort default with -s
|
|
|
|
var sortDefault = 'name';
|
|
|
|
|
2015-08-27 02:59:28 +03:00
|
|
|
function do_datacenters(subcmd, opts, args, callback) {
|
|
|
|
if (opts.help) {
|
|
|
|
this.do_help('help', {}, [subcmd], callback);
|
|
|
|
return;
|
|
|
|
} else if (args.length !== 0) {
|
|
|
|
callback(new Error('invalid args: ' + args));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-09-04 01:09:21 +03:00
|
|
|
var columns = opts.o.split(',');
|
|
|
|
var sort = opts.s.split(',');
|
2016-12-13 20:04:41 +02:00
|
|
|
var tritonapi = this.tritonapi;
|
2015-09-03 06:24:08 +03:00
|
|
|
|
2016-12-13 20:04:41 +02:00
|
|
|
common.cliSetupTritonApi({cli: this}, function onSetup(setupErr) {
|
|
|
|
if (setupErr) {
|
|
|
|
callback(setupErr);
|
2015-08-27 02:59:28 +03:00
|
|
|
}
|
2016-12-13 20:04:41 +02:00
|
|
|
tritonapi.cloudapi.listDatacenters(function (err, datacenters) {
|
|
|
|
if (err) {
|
|
|
|
callback(err);
|
|
|
|
return;
|
|
|
|
}
|
2015-08-27 02:59:28 +03:00
|
|
|
|
2016-12-13 20:04:41 +02:00
|
|
|
if (opts.json) {
|
|
|
|
console.log(JSON.stringify(datacenters));
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* datacenters are returned in the form of:
|
|
|
|
* {name: 'url', name2: 'url2', ...}
|
|
|
|
* we "normalize" them for use by tabula by making them an array
|
|
|
|
*/
|
|
|
|
var dcs = [];
|
|
|
|
Object.keys(datacenters).forEach(function (key) {
|
|
|
|
dcs.push({
|
|
|
|
name: key,
|
|
|
|
url: datacenters[key]
|
|
|
|
});
|
2015-09-04 01:09:21 +03:00
|
|
|
});
|
2016-12-13 20:04:41 +02:00
|
|
|
tabula(dcs, {
|
|
|
|
skipHeader: opts.H,
|
|
|
|
columns: columns,
|
|
|
|
sort: sort,
|
|
|
|
dottedLookup: true
|
|
|
|
});
|
|
|
|
}
|
|
|
|
callback();
|
|
|
|
});
|
2015-08-27 02:59:28 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
do_datacenters.options = [
|
|
|
|
{
|
|
|
|
names: ['help', 'h'],
|
|
|
|
type: 'bool',
|
|
|
|
help: 'Show this help.'
|
|
|
|
}
|
2015-09-04 01:09:21 +03:00
|
|
|
].concat(common.getCliTableOptions({
|
|
|
|
columnsDefault: columnsDefault,
|
|
|
|
sortDefault: sortDefault
|
|
|
|
}));
|
|
|
|
|
2016-06-09 00:13:16 +03:00
|
|
|
do_datacenters.synopses = ['{{name}} {{cmd}}'];
|
|
|
|
|
|
|
|
do_datacenters.help = [
|
|
|
|
'Show datacenters in this cloud.',
|
|
|
|
'A "cloud" is a set of related datacenters that share account',
|
|
|
|
'information.',
|
|
|
|
'',
|
|
|
|
'{{usage}}',
|
|
|
|
'',
|
|
|
|
'{{options}}'
|
|
|
|
].join('\n');
|
2015-08-27 02:59:28 +03:00
|
|
|
|
|
|
|
module.exports = do_datacenters;
|