/*
* 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 2016 Joyent, Inc.
*
* `triton fwrule disable ...`
var assert = require('assert-plus');
var vasync = require('vasync');
var common = require('../common');
var errors = require('../errors');
function do_disable(subcmd, opts, args, cb) {
assert.func(cb, 'cb');
if (opts.help) {
this.do_help('help', {}, [subcmd], cb);
return;
}
if (args.length === 0) {
cb(new errors.UsageError('Missing FWRULE-ID argument(s)'));
var cli = this.top;
vasync.forEachParallel({
inputs: args,
func: function disableOne(id, nextId) {
if (common.isUUID(id)) {
enable();
// we need to look up the full UUID if the given id is a short id
cli.tritonapi.getFirewallRule(id, function onRule(err, fwrule) {
if (err) {
nextId(err);
id = fwrule.id;
});
function enable() {
cli.tritonapi.cloudapi.disableFirewallRule(id, function (err) {
console.log('Disabled firewall rule %s', id);
nextId();
}, cb);
do_disable.options = [
{
names: ['help', 'h'],
type: 'bool',
help: 'Show this help.'
];
do_disable.help = [
'Disable a specific firewall rule.',
'',
'Usage:',
' {{name}} disable FWRULE-ID',
'{{options}}'
].join('\n');
module.exports = do_disable;