Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[file_upload] move ml Importer classes to file_upload plugin #91559

Merged
merged 16 commits into from
Feb 22, 2021
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions x-pack/plugins/file_upload/common/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* 2.0.
*/

export const MB = Math.pow(2, 20);
export const MAX_FILE_SIZE = '100MB';
export const MAX_FILE_SIZE_BYTES = 104857600; // 100MB

Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/file_upload/common/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export interface Doc {
message: string;
}

export type ImportDoc = Doc | string;
export type ImportDoc = Doc | string | object;

export interface Settings {
pipeline?: string;
Expand Down
30 changes: 30 additions & 0 deletions x-pack/plugins/file_upload/public/api/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/*
* 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.
*/

import React from 'react';
import { FileUploadComponentProps, lazyLoadFileUploadModules } from '../lazy_load_bundle';
import type { IImporter, ImportFactoryOptions } from '../importer';

export interface FileUploadStartApi {
getFileUploadComponent(): Promise<React.ComponentType<FileUploadComponentProps>>;
importerFactory(format: string, options: ImportFactoryOptions): Promise<IImporter | undefined>;
}

export async function getFileUploadComponent(): Promise<
React.ComponentType<FileUploadComponentProps>
> {
const fileUploadModules = await lazyLoadFileUploadModules();
return fileUploadModules.JsonUploadAndParse;
}

export async function importerFactory(
format: string,
options: ImportFactoryOptions
): Promise<IImporter | undefined> {
const fileUploadModules = await lazyLoadFileUploadModules();
return fileUploadModules.importerFactory(format, options);
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import React, { Fragment, Component } from 'react';
import { i18n } from '@kbn/i18n';
import { EuiCodeBlock, EuiSpacer, EuiText, EuiTitle, EuiProgress, EuiCallOut } from '@elastic/eui';
import { FormattedMessage } from '@kbn/i18n/react';
import { basePath } from '../kibana_services';
import { getHttp } from '../kibana_services';

export class JsonImportProgress extends Component {
state = {
Expand Down Expand Up @@ -118,7 +118,7 @@ export class JsonImportProgress extends Component {
<a
data-test-subj="indexManagementNewIndexLink"
target="_blank"
href={`${basePath}/app/management/kibana/indexPatterns`}
href={getHttp().basePath.prepend('/app/management/kibana/indexPatterns')}
>
{i18n.translate('xpack.fileUpload.jsonImport.indexMgmtLink', {
defaultMessage: 'Index Management',
Expand Down
120 changes: 44 additions & 76 deletions x-pack/plugins/file_upload/public/components/json_index_file_picker.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import React, { Fragment, Component } from 'react';
import { EuiFilePicker, EuiFormRow, EuiProgress } from '@elastic/eui';
import { FormattedMessage } from '@kbn/i18n/react';
import { i18n } from '@kbn/i18n';
import { parseFile } from '../util/file_parser';

const MAX_FILE_SIZE = 52428800;
nreese marked this conversation as resolved.
Show resolved Hide resolved
const ACCEPTABLE_FILETYPES = ['json', 'geojson'];
Expand All @@ -33,7 +32,7 @@ export class JsonIndexFilePicker extends Component {
this._isMounted = false;
}

getFileParseActive = () => this._isMounted && this.state.fileParseActive;
isFileParseActive = () => this._isMounted && this.state.fileParseActive;

_fileHandler = (fileList) => {
const fileArr = Array.from(fileList);
Expand Down Expand Up @@ -61,36 +60,6 @@ export class JsonIndexFilePicker extends Component {
);
};

_checkFileSize = ({ size }) => {
const fileSizeValid = true;
try {
if (size > MAX_FILE_SIZE) {
const humanReadableSize = bytesToSize(size);
const humanReadableMaxSize = bytesToSize(MAX_FILE_SIZE);
throw new Error(
i18n.translate('xpack.fileUpload.jsonIndexFilePicker.acceptableFileSize', {
defaultMessage: 'File size {fileSize} exceeds max file size of {maxFileSize}',
values: {
fileSize: humanReadableSize,
maxFileSize: humanReadableMaxSize,
},
})
);
}
} catch (error) {
this.setState({
fileUploadError: i18n.translate('xpack.fileUpload.jsonIndexFilePicker.fileSizeError', {
defaultMessage: 'File size error: {errorMessage}',
values: {
errorMessage: error.message,
},
}),
});
return;
}
return fileSizeValid;
};

_getFileNameAndCheckType({ name }) {
let fileNameOnly;
try {
Expand Down Expand Up @@ -136,54 +105,58 @@ export class JsonIndexFilePicker extends Component {

setFileProgress = ({ featuresProcessed, bytesProcessed, totalBytes }) => {
const percentageProcessed = parseInt((100 * bytesProcessed) / totalBytes);
if (this.getFileParseActive()) {
if (this.isFileParseActive()) {
this.setState({ featuresProcessed, percentageProcessed });
}
};

async _parseFile(file) {
const { currentFileTracker } = this.state;
const {
setFileRef,
setParsedFile,
resetFileAndIndexSettings,
onFileUpload,
transformDetails,
setIndexName,
} = this.props;
const { setFileRef, setParsedFile, resetFileAndIndexSettings } = this.props;

if (file.size > MAX_FILE_SIZE) {
this.setState({
fileUploadError: i18n.translate('xpack.fileUpload.jsonIndexFilePicker.acceptableFileSize', {
defaultMessage: 'File size {fileSize} exceeds maximum file size of {maxFileSize}',
values: {
fileSize: bytesToSize(file.size),
maxFileSize: bytesToSize(MAX_FILE_SIZE),
},
}),
});
resetFileAndIndexSettings();
return;
}

const fileSizeValid = this._checkFileSize(file);
const defaultIndexName = this._getFileNameAndCheckType(file);
if (!fileSizeValid || !defaultIndexName) {
if (!defaultIndexName) {
resetFileAndIndexSettings();
return;
}
// Parse file

const fileResult = await parseFile({
file,
transformDetails,
onFileUpload,
setFileProgress: this.setFileProgress,
getFileParseActive: this.getFileParseActive,
}).catch((err) => {
if (this._isMounted) {
this.setState({
fileParseActive: false,
percentageProcessed: 0,
featuresProcessed: 0,
fileUploadError: (
<FormattedMessage
id="xpack.fileUpload.jsonIndexFilePicker.unableParseFile"
defaultMessage="Unable to parse file: {error}"
values={{
error: err.message,
}}
/>
),
});
}
});
const fileResult = await this.props.geojsonImporter
.readFile(file, this.setFileProgress, this.isFileParseActive)
.catch((err) => {
if (this._isMounted) {
this.setState({
fileParseActive: false,
percentageProcessed: 0,
featuresProcessed: 0,
fileUploadError: (
<FormattedMessage
id="xpack.fileUpload.jsonIndexFilePicker.unableParseFile"
defaultMessage="Unable to parse file: {error}"
values={{
error: err.message,
}}
/>
),
});
resetFileAndIndexSettings();
return;
}
});

if (!this._isMounted) {
return;
}
Expand All @@ -198,25 +171,20 @@ export class JsonIndexFilePicker extends Component {
resetFileAndIndexSettings();
return;
}
const { errors, parsedGeojson } = fileResult;

if (errors.length) {
// Set only the first error for now (since there's only one).
// TODO: Add handling in case of further errors
const error = errors[0];
if (fileResult.errors.length) {
this.setState({
fileUploadError: (
<FormattedMessage
id="xpack.fileUpload.jsonIndexFilePicker.fileParseError"
defaultMessage="File parse error(s) detected: {error}"
values={{ error }}
values={{ error: fileResult.errors[0] }}
/>
),
});
}
setIndexName(defaultIndexName);
setFileRef(file);
setParsedFile(parsedGeojson);
setParsedFile(fileResult, defaultIndexName);
}

render() {
Expand Down
Loading