2015-08-26 02:12:35 +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-26 02:12:35 +03:00
|
|
|
*
|
2015-12-30 02:47:03 +02:00
|
|
|
* `triton package get ...`
|
2015-08-26 02:12:35 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
var format = require('util').format;
|
|
|
|
|
2016-12-13 20:04:41 +02:00
|
|
|
var common = require('../common');
|
2015-12-30 02:47:03 +02:00
|
|
|
var errors = require('../errors');
|
2015-08-26 02:12:35 +03:00
|
|
|
|
|
|
|
|
2015-12-30 02:47:03 +02:00
|
|
|
function do_get(subcmd, opts, args, callback) {
|
2015-08-26 02:12:35 +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 02:12:35 +03:00
|
|
|
}
|
|
|
|
|
2016-12-13 20:04:41 +02:00
|
|
|
var tritonapi = this.top.tritonapi;
|
|
|
|
common.cliSetupTritonApi({cli: this.top}, function onSetup(setupErr) {
|
|
|
|
if (setupErr) {
|
|
|
|
callback(setupErr);
|
2015-08-26 02:12:35 +03:00
|
|
|
}
|
2016-12-13 20:04:41 +02:00
|
|
|
tritonapi.getPackage(args[0], function onRes(err, pkg) {
|
|
|
|
if (err) {
|
|
|
|
return callback(err);
|
|
|
|
}
|
2015-08-26 02:12:35 +03:00
|
|
|
|
2016-12-13 20:04:41 +02:00
|
|
|
if (opts.json) {
|
|
|
|
console.log(JSON.stringify(pkg));
|
|
|
|
} else {
|
|
|
|
console.log(JSON.stringify(pkg, null, 4));
|
|
|
|
}
|
|
|
|
callback();
|
|
|
|
});
|
2015-08-26 02:12:35 +03:00
|
|
|
});
|
2015-09-01 19:00:45 +03:00
|
|
|
}
|
2015-08-26 02:12:35 +03:00
|
|
|
|
2015-12-30 02:47:03 +02:00
|
|
|
do_get.options = [
|
2015-08-26 02:12:35 +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] PACKAGE'];
|
|
|
|
|
|
|
|
do_get.help = [
|
2015-08-26 02:12:35 +03:00
|
|
|
/* BEGIN JSSTYLED */
|
2016-06-09 00:13:16 +03:00
|
|
|
'Get a package.',
|
|
|
|
'',
|
|
|
|
'{{usage}}',
|
|
|
|
'',
|
|
|
|
'{{options}}',
|
|
|
|
'',
|
|
|
|
'Where PACKAGE is a package id (full UUID), exact name, or short id.',
|
|
|
|
'',
|
2016-12-13 20:04:41 +02:00
|
|
|
'Note: Currently this dumps perttified JSON by default. That might change',
|
2016-06-09 00:13:16 +03:00
|
|
|
'in the future. Use "-j" to explicitly get JSON output.'
|
2015-08-26 02:12:35 +03:00
|
|
|
/* END JSSTYLED */
|
2016-06-09 00:13:16 +03:00
|
|
|
].join('\n');
|
2015-08-26 02:12:35 +03:00
|
|
|
|
2016-03-09 19:19:44 +02:00
|
|
|
do_get.completionArgtypes = ['tritonpackage', 'none'];
|
|
|
|
|
2015-12-30 02:47:03 +02:00
|
|
|
module.exports = do_get;
|