2015-08-27 00:09:50 +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/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2016-01-05 07:53:52 +02:00
|
|
|
* Copyright 2016 Joyent, Inc.
|
2015-08-27 00:09:50 +03:00
|
|
|
*
|
2016-01-05 07:53:52 +02:00
|
|
|
* `triton network get ...`
|
2015-08-27 00:09:50 +03:00
|
|
|
*/
|
|
|
|
|
2015-09-02 10:03:17 +03:00
|
|
|
var format = require('util').format;
|
|
|
|
|
2016-01-05 07:53:52 +02:00
|
|
|
var common = require('../common');
|
|
|
|
var errors = require('../errors');
|
2015-09-02 10:03:17 +03:00
|
|
|
|
2015-08-27 00:09:50 +03:00
|
|
|
|
2016-01-05 07:53:52 +02:00
|
|
|
function do_get(subcmd, opts, args, cb) {
|
2015-08-27 00:09:50 +03:00
|
|
|
if (opts.help) {
|
|
|
|
this.do_help('help', {}, [subcmd], cb);
|
|
|
|
return;
|
|
|
|
} else if (args.length !== 1) {
|
2015-09-02 10:03:17 +03:00
|
|
|
return cb(new errors.UsageError(format(
|
2015-09-02 11:04:20 +03:00
|
|
|
'incorrect number of args (%d)', args.length)));
|
2015-08-27 00:09:50 +03:00
|
|
|
}
|
|
|
|
|
2016-12-13 20:04:41 +02:00
|
|
|
var tritonapi = this.top.tritonapi;
|
2015-08-27 00:09:50 +03:00
|
|
|
|
2016-12-13 20:04:41 +02:00
|
|
|
common.cliSetupTritonApi({cli: this.top}, function onSetup(setupErr) {
|
|
|
|
if (setupErr) {
|
|
|
|
cb(setupErr);
|
2015-08-27 00:09:50 +03:00
|
|
|
}
|
2016-12-13 20:04:41 +02:00
|
|
|
tritonapi.getNetwork(args[0], function (err, net) {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opts.json) {
|
|
|
|
console.log(JSON.stringify(net));
|
|
|
|
} else {
|
|
|
|
console.log(JSON.stringify(net, null, 4));
|
|
|
|
}
|
|
|
|
cb();
|
|
|
|
});
|
2015-09-02 10:03:17 +03:00
|
|
|
});
|
2015-08-27 00:09:50 +03:00
|
|
|
}
|
|
|
|
|
2016-01-05 07:53:52 +02:00
|
|
|
do_get.options = [
|
2015-08-27 00:09:50 +03:00
|
|
|
{
|
|
|
|
names: ['help', 'h'],
|
|
|
|
type: 'bool',
|
|
|
|
help: 'Show this help.'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
names: ['json', 'j'],
|
|
|
|
type: 'bool',
|
|
|
|
help: 'JSON output.'
|
|
|
|
}
|
|
|
|
];
|
2016-06-09 00:13:16 +03:00
|
|
|
|
|
|
|
do_get.synopses = ['{{name}} {{cmd}} NETWORK'];
|
|
|
|
|
|
|
|
do_get.help = [
|
|
|
|
'Show a network.',
|
|
|
|
'',
|
|
|
|
'{{usage}}',
|
|
|
|
'',
|
|
|
|
'{{options}}',
|
|
|
|
'Where NETWORK is a network id (full UUID), name, or short id.'
|
|
|
|
].join('\n');
|
2015-08-27 00:09:50 +03:00
|
|
|
|
2016-03-09 19:19:44 +02:00
|
|
|
do_get.completionArgtypes = ['tritonnetwork', 'none'];
|
|
|
|
|
2016-01-05 07:53:52 +02:00
|
|
|
module.exports = do_get;
|