2015-08-25 15:47:29 -07:00
|
|
|
/*
|
2015-09-04 14:12:20 -04: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-09 16:55:12 -08:00
|
|
|
* Copyright 2016 Joyent, Inc.
|
2015-08-25 15:47:29 -07:00
|
|
|
*
|
2015-12-30 13:11:57 -08:00
|
|
|
* `triton image get ...`
|
2015-08-25 15:47:29 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
var format = require('util').format;
|
|
|
|
|
2015-12-30 13:11:57 -08:00
|
|
|
var errors = require('../errors');
|
2015-08-25 15:47:29 -07:00
|
|
|
|
|
|
|
|
2015-12-30 13:11:57 -08:00
|
|
|
function do_get(subcmd, opts, args, callback) {
|
2015-08-25 15:47:29 -07: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 01:04:20 -07:00
|
|
|
'incorrect number of args (%d)', args.length)));
|
2015-08-25 15:47:29 -07:00
|
|
|
}
|
|
|
|
|
2015-12-30 13:11:57 -08:00
|
|
|
this.top.tritonapi.getImage(args[0], function onRes(err, img) {
|
2015-08-25 15:47:29 -07: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 09:00:45 -07:00
|
|
|
}
|
2015-08-25 15:47:29 -07:00
|
|
|
|
2015-12-30 13:11:57 -08:00
|
|
|
do_get.options = [
|
2015-08-25 15:47:29 -07:00
|
|
|
{
|
|
|
|
names: ['help', 'h'],
|
|
|
|
type: 'bool',
|
|
|
|
help: 'Show this help.'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
names: ['json', 'j'],
|
|
|
|
type: 'bool',
|
|
|
|
help: 'JSON stream output.'
|
|
|
|
}
|
|
|
|
];
|
2015-12-30 13:11:57 -08:00
|
|
|
do_get.help = (
|
2015-08-25 15:47:29 -07:00
|
|
|
/* BEGIN JSSTYLED */
|
|
|
|
'Get an image.\n' +
|
|
|
|
'\n' +
|
|
|
|
'Usage:\n' +
|
2016-01-09 16:55:12 -08:00
|
|
|
' {{name}} get [<options>] ID|NAME\n' +
|
2015-08-25 21:06:27 -07:00
|
|
|
'\n' +
|
|
|
|
'{{options}}' +
|
2015-08-25 15:47:29 -07:00
|
|
|
'\n' +
|
2015-12-30 13:11:57 -08:00
|
|
|
'If there is more than one image with the given "NAME", the latest\n' +
|
2015-08-25 21:06:27 -07:00
|
|
|
'image (by "published_at") is returned.\n' +
|
|
|
|
'\n' +
|
|
|
|
'Note: Currently this dumps prettified JSON by default. That might change\n' +
|
|
|
|
'in the future. Use "-j" to explicitly get JSON output.\n'
|
2015-08-25 15:47:29 -07:00
|
|
|
/* END JSSTYLED */
|
|
|
|
);
|
|
|
|
|
2016-03-09 09:19:44 -08:00
|
|
|
do_get.completionArgtypes = ['tritonimage', 'none'];
|
|
|
|
|
2015-12-30 13:11:57 -08:00
|
|
|
module.exports = do_get;
|