"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.registerReloadRoute = registerReloadRoute; var _configSchema = require("@kbn/config-schema"); var _fetch_indices = require("../../../lib/fetch_indices"); var _ = require(".."); /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ const bodySchema = _configSchema.schema.maybe(_configSchema.schema.object({ indexNames: _configSchema.schema.maybe(_configSchema.schema.arrayOf(_configSchema.schema.string())) })); function registerReloadRoute({ router, indexDataEnricher, lib: { handleEsError } }) { router.post({ path: (0, _.addBasePath)('/indices/reload'), validate: { body: bodySchema } }, async (context, request, response) => { var _ref; const { client } = (await context.core).elasticsearch; const { indexNames = [] } = (_ref = request.body) !== null && _ref !== void 0 ? _ref : {}; try { const indices = await (0, _fetch_indices.fetchIndices)(client, indexDataEnricher, indexNames); return response.ok({ body: indices }); } catch (error) { return handleEsError({ error, response }); } }); }