This repository has been archived on 2020-01-20. You can view files and clone it, but cannot push or open issues or pull requests.
node-spearhead/lib/do_package/do_get.js

70 lines
1.6 KiB
JavaScript
Raw Normal View History

/*
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-12-30 02:47:03 +02:00
* `triton package get ...`
*/
var format = require('util').format;
2015-12-30 02:47:03 +02:00
var errors = require('../errors');
2015-12-30 02:47:03 +02:00
function do_get(subcmd, opts, args, callback) {
if (opts.help) {
this.do_help('help', {}, [subcmd], callback);
return;
} else if (args.length !== 1) {
return callback(new errors.UsageError(format(
'incorrect number of args (%d)', args.length)));
}
2015-12-30 02:47:03 +02:00
this.top.tritonapi.getPackage(args[0], function onRes(err, pkg) {
if (err) {
return callback(err);
}
if (opts.json) {
console.log(JSON.stringify(pkg));
} else {
console.log(JSON.stringify(pkg, null, 4));
}
callback();
});
2015-09-01 19:00:45 +03:00
}
2015-12-30 02:47:03 +02:00
do_get.options = [
{
names: ['help', 'h'],
type: 'bool',
help: 'Show this help.'
},
{
names: ['json', 'j'],
type: 'bool',
help: 'JSON stream output.'
}
];
2015-12-30 02:47:03 +02:00
do_get.help = (
/* BEGIN JSSTYLED */
'Get a package.\n' +
'\n' +
'Usage:\n' +
' {{name}} get [<options>] ID|NAME\n' +
'\n' +
'{{options}}' +
'\n' +
'The given "NAME" must be a unique match.\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'
/* END JSSTYLED */
);
2015-12-30 02:47:03 +02:00
module.exports = do_get;