mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
* [ML] Changing all calls to ML endpoints to use internal user * updating alerting * updating documentation * [ML] Changing all calls to ML endpoints to use internal user * updating alerting * updating documentation * fixing missed types * adding authorization headers to endpoint calls * correcting has privileges call * updating security tests * odd eslint error * adding auth header to module setup * fixing missing auth argument * fixing delete DFA job permission checks * removing debug test tag * removing additional ml privilege checks * adding authorization header to _evaluate * updating alerting cluster client name * code clean up * changing authorizationHeader name * updating alterting documentation * fixing secondary credentials * adding management links * updating SIEM telemetry * fixing merge conflicts * granting access to index patterns Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
139 lines
4.1 KiB
TypeScript
139 lines
4.1 KiB
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License;
|
|
* you may not use this file except in compliance with the Elastic License.
|
|
*/
|
|
|
|
import { schema } from '@kbn/config-schema';
|
|
import { RequestHandlerContext } from 'kibana/server';
|
|
import { MAX_FILE_SIZE_BYTES } from '../../common/constants/file_datavisualizer';
|
|
import {
|
|
InputOverrides,
|
|
Settings,
|
|
IngestPipelineWrapper,
|
|
Mappings,
|
|
} from '../../common/types/file_datavisualizer';
|
|
import { wrapError } from '../client/error_wrapper';
|
|
import {
|
|
InputData,
|
|
fileDataVisualizerProvider,
|
|
importDataProvider,
|
|
} from '../models/file_data_visualizer';
|
|
|
|
import { RouteInitialization } from '../types';
|
|
import { updateTelemetry } from '../lib/telemetry';
|
|
import {
|
|
analyzeFileQuerySchema,
|
|
importFileBodySchema,
|
|
importFileQuerySchema,
|
|
} from './schemas/file_data_visualizer_schema';
|
|
|
|
function analyzeFiles(context: RequestHandlerContext, data: InputData, overrides: InputOverrides) {
|
|
const { analyzeFile } = fileDataVisualizerProvider(context.ml!.mlClient);
|
|
return analyzeFile(data, overrides);
|
|
}
|
|
|
|
function importData(
|
|
context: RequestHandlerContext,
|
|
id: string,
|
|
index: string,
|
|
settings: Settings,
|
|
mappings: Mappings,
|
|
ingestPipeline: IngestPipelineWrapper,
|
|
data: InputData
|
|
) {
|
|
const { importData: importDataFunc } = importDataProvider(context.ml!.mlClient);
|
|
return importDataFunc(id, index, settings, mappings, ingestPipeline, data);
|
|
}
|
|
|
|
/**
|
|
* Routes for the file data visualizer.
|
|
*/
|
|
export function fileDataVisualizerRoutes({ router, mlLicense }: RouteInitialization) {
|
|
/**
|
|
* @apiGroup FileDataVisualizer
|
|
*
|
|
* @api {post} /api/ml/file_data_visualizer/analyze_file Analyze file data
|
|
* @apiName AnalyzeFile
|
|
* @apiDescription Performs analysis of the file data.
|
|
*
|
|
* @apiSchema (query) analyzeFileQuerySchema
|
|
*/
|
|
router.post(
|
|
{
|
|
path: '/api/ml/file_data_visualizer/analyze_file',
|
|
validate: {
|
|
body: schema.any(),
|
|
query: analyzeFileQuerySchema,
|
|
},
|
|
options: {
|
|
body: {
|
|
accepts: ['text/*', 'application/json'],
|
|
maxBytes: MAX_FILE_SIZE_BYTES,
|
|
},
|
|
tags: ['access:ml:canFindFileStructure'],
|
|
},
|
|
},
|
|
mlLicense.basicLicenseAPIGuard(async (context, request, response) => {
|
|
try {
|
|
const result = await analyzeFiles(context, request.body, request.query);
|
|
return response.ok({ body: result });
|
|
} catch (e) {
|
|
return response.customError(wrapError(e));
|
|
}
|
|
})
|
|
);
|
|
|
|
/**
|
|
* @apiGroup FileDataVisualizer
|
|
*
|
|
* @api {post} /api/ml/file_data_visualizer/import Import file data
|
|
* @apiName ImportFile
|
|
* @apiDescription Imports file data into elasticsearch index.
|
|
*
|
|
* @apiSchema (query) importFileQuerySchema
|
|
* @apiSchema (body) importFileBodySchema
|
|
*/
|
|
router.post(
|
|
{
|
|
path: '/api/ml/file_data_visualizer/import',
|
|
validate: {
|
|
query: importFileQuerySchema,
|
|
body: importFileBodySchema,
|
|
},
|
|
options: {
|
|
body: {
|
|
accepts: ['application/json'],
|
|
maxBytes: MAX_FILE_SIZE_BYTES,
|
|
},
|
|
tags: ['access:ml:canFindFileStructure'],
|
|
},
|
|
},
|
|
mlLicense.basicLicenseAPIGuard(async (context, request, response) => {
|
|
try {
|
|
const { id } = request.query;
|
|
const { index, data, settings, mappings, ingestPipeline } = request.body;
|
|
|
|
// `id` being `undefined` tells us that this is a new import due to create a new index.
|
|
// follow-up import calls to just add additional data will include the `id` of the created
|
|
// index, we'll ignore those and don't increment the counter.
|
|
if (id === undefined) {
|
|
await updateTelemetry();
|
|
}
|
|
|
|
const result = await importData(
|
|
context,
|
|
id,
|
|
index,
|
|
settings,
|
|
mappings,
|
|
ingestPipeline,
|
|
data
|
|
);
|
|
return response.ok({ body: result });
|
|
} catch (e) {
|
|
return response.customError(wrapError(e));
|
|
}
|
|
})
|
|
);
|
|
}
|