2015-08-26 01:47:29 +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-10 02:55:12 +02:00
|
|
|
* Copyright 2016 Joyent, Inc.
|
2015-08-26 01:47:29 +03:00
|
|
|
*
|
2015-12-30 23:11:57 +02:00
|
|
|
* `triton image get ...`
|
2015-08-26 01:47:29 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
var format = require('util').format;
|
|
|
|
|
2015-12-30 23:11:57 +02:00
|
|
|
var errors = require('../errors');
|
2015-08-26 01:47:29 +03:00
|
|
|
|
|
|
|
|
2015-12-30 23:11:57 +02:00
|
|
|
function do_get(subcmd, opts, args, callback) {
|
2015-08-26 01:47:29 +03:00
|
|
|
if (opts.help) {
|
|
|
|
this.do_help('help', {}, [subcmd], callback);
|
|
|
|
return;
|
|
|
|
} else if (args.length !== 1) {
|
|
|
|
return callback(new errors.UsageError(format(
|
2015-09-02 11:04:20 +03:00
|
|
|
'incorrect number of args (%d)', args.length)));
|
2015-08-26 01:47:29 +03:00
|
|
|
}
|
|
|
|
|
2015-12-30 23:11:57 +02:00
|
|
|
this.top.tritonapi.getImage(args[0], function onRes(err, img) {
|
2015-08-26 01:47:29 +03:00
|
|
|
if (err) {
|
|
|
|
return callback(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opts.json) {
|
|
|
|
console.log(JSON.stringify(img));
|
|
|
|
} else {
|
|
|
|
console.log(JSON.stringify(img, null, 4));
|
|
|
|
}
|
|
|
|
callback();
|
|
|
|
});
|
2015-09-01 19:00:45 +03:00
|
|
|
}
|
2015-08-26 01:47:29 +03:00
|
|
|
|
2015-12-30 23:11:57 +02:00
|
|
|
do_get.options = [
|
2015-08-26 01:47:29 +03:00
|
|
|
{
|
|
|
|
names: ['help', 'h'],
|
|
|
|
type: 'bool',
|
|
|
|
help: 'Show this help.'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
names: ['json', 'j'],
|
|
|
|
type: 'bool',
|
|
|
|
help: 'JSON stream output.'
|
|
|
|
}
|
|
|
|
];
|
2016-06-09 00:13:16 +03:00
|
|
|
|
|
|
|
do_get.synopses = ['{{name}} {{cmd}} [OPTIONS] IMAGE'];
|
|
|
|
|
|
|
|
do_get.help = [
|
2015-08-26 01:47:29 +03:00
|
|
|
/* BEGIN JSSTYLED */
|
2016-06-09 00:13:16 +03:00
|
|
|
'Get an image.',
|
|
|
|
'',
|
|
|
|
'{{usage}}',
|
|
|
|
'',
|
|
|
|
'{{options}}',
|
|
|
|
'Where "IMAGE" is an image id (a full UUID), an image name (selects the',
|
|
|
|
'latest, by "published_at", image with that name), an image "name@version"',
|
|
|
|
'(selects latest match by "published_at"), or an image short ID (ID prefix).',
|
|
|
|
'',
|
|
|
|
'Note: Currently this dumps prettified JSON by default. That might change',
|
|
|
|
'in the future. Use "-j" to explicitly get JSON output.'
|
2015-08-26 01:47:29 +03:00
|
|
|
/* END JSSTYLED */
|
2016-06-09 00:13:16 +03:00
|
|
|
].join('\n');
|
2015-08-26 01:47:29 +03:00
|
|
|
|
2016-03-09 19:19:44 +02:00
|
|
|
do_get.completionArgtypes = ['tritonimage', 'none'];
|
|
|
|
|
2015-12-30 23:11:57 +02:00
|
|
|
module.exports = do_get;
|