| Current Path : /etc/kibana/src/cli_keystore/ |
| Current File : //etc/kibana/src/cli_keystore/add.js |
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.add = add;
exports.addCli = addCli;
var _logger = _interopRequireDefault(require("../cli_plugin/lib/logger"));
var _utils = require("../legacy/server/utils");
var _utils2 = require("../legacy/utils");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
/*
* Licensed to Elasticsearch B.V. under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch B.V. licenses this file to you under
* the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/**
* @param {Keystore} keystore
* @param {String} key
* @param {Object|null} options
* @property {Boolean} options.force - if true, will overwrite without prompting
* @property {Stream} options.stdinStream - defaults to process.stdin
* @property {Boolean} options.stdin - if true, uses options.stdin to read value
*/
async function add(keystore, key, options = {}) {
const logger = new _logger.default(options);
let value;
if (!keystore.exists()) {
return logger.error("ERROR: Kibana keystore not found. Use 'create' command to create one.");
}
if (!options.force && keystore.has(key)) {
if (options.stdin) {
return logger.log(`Setting ${key} already exists, exiting without modifying keystore.`);
} else {
const overwrite = await (0, _utils.confirm)(`Setting ${key} already exists. Overwrite?`);
if (!overwrite) {
return logger.log('Exiting without modifying keystore.');
}
}
}
if (options.stdin) {
value = await (0, _utils2.createPromiseFromStreams)([options.stdinStream || process.stdin, (0, _utils2.createConcatStream)('')]);
} else {
value = await (0, _utils.question)(`Enter value for ${key}`, {
mask: '*'
});
}
keystore.add(key, value.trim());
keystore.save();
}
function addCli(program, keystore) {
program.command('add <key>').description('Add a string setting to the keystore').option('-f, --force', 'overwrite existing setting without prompting').option('-x, --stdin', 'read setting value from stdin').option('-s, --silent', 'prevent all logging').action(add.bind(null, keystore));
}