|
|
|
@ -27,6 +27,7 @@ import { HooksService } from '../../../services/hooks.service';
|
|
|
|
|
import { ViewsService } from '../../../services/views.service'; |
|
|
|
|
import NcPluginMgrv2 from '../../../helpers/NcPluginMgrv2'; |
|
|
|
|
import { BulkDataAliasService } from '../../../services/bulk-data-alias.service'; |
|
|
|
|
import type { Readable } from 'stream'; |
|
|
|
|
import type { ViewCreateReqType } from 'nocodb-sdk'; |
|
|
|
|
import type { LinkToAnotherRecordColumn, User, View } from '../../../models'; |
|
|
|
|
|
|
|
|
@ -1125,6 +1126,13 @@ export class ImportService {
|
|
|
|
|
console.log(...args); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const destProject = await Project.get(projectId); |
|
|
|
|
const destBase = await Base.get(baseId); |
|
|
|
|
|
|
|
|
|
if (!destProject || !destBase) { |
|
|
|
|
throw NcError.badRequest('Project or Base not found'); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
let start = process.hrtime(); |
|
|
|
|
|
|
|
|
|
const elapsedTime = function (label?: string) { |
|
|
|
@ -1148,7 +1156,7 @@ export class ImportService {
|
|
|
|
|
elapsedTime('read schema'); |
|
|
|
|
|
|
|
|
|
// store fk_mm_model_id (mm) to link once
|
|
|
|
|
const handledLinks = []; |
|
|
|
|
let handledLinks = []; |
|
|
|
|
|
|
|
|
|
const idMap = await this.importModels({ |
|
|
|
|
user, |
|
|
|
@ -1174,9 +1182,6 @@ export class ImportService {
|
|
|
|
|
`${path}/data/${file}`, |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
const headers: string[] = []; |
|
|
|
|
let chunk = []; |
|
|
|
|
|
|
|
|
|
const modelId = findWithIdentifier( |
|
|
|
|
idMap, |
|
|
|
|
file.replace(/\.csv$/, ''), |
|
|
|
@ -1186,8 +1191,63 @@ export class ImportService {
|
|
|
|
|
|
|
|
|
|
debugLog(`Importing ${model.title}...`); |
|
|
|
|
|
|
|
|
|
await new Promise((resolve) => { |
|
|
|
|
papaparse.parse(readStream, { |
|
|
|
|
await this.importDataFromCsvStream({ |
|
|
|
|
idMap, |
|
|
|
|
dataStream: readStream, |
|
|
|
|
destProject, |
|
|
|
|
destBase, |
|
|
|
|
destModel: model, |
|
|
|
|
debugLog, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
elapsedTime(`import ${model.title}`); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// reset timer
|
|
|
|
|
elapsedTime(); |
|
|
|
|
|
|
|
|
|
const linkReadStream = await ( |
|
|
|
|
storageAdapter as any |
|
|
|
|
).fileReadByStream(linkFile); |
|
|
|
|
|
|
|
|
|
handledLinks = await this.importLinkFromCsvStream({ |
|
|
|
|
idMap, |
|
|
|
|
linkStream: linkReadStream, |
|
|
|
|
destProject, |
|
|
|
|
destBase, |
|
|
|
|
handledLinks, |
|
|
|
|
debugLog, |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} catch (e) { |
|
|
|
|
throw new Error(e); |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
case 'url': |
|
|
|
|
break; |
|
|
|
|
case 'file': |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
importDataFromCsvStream(param: { |
|
|
|
|
idMap: Map<string, string>; |
|
|
|
|
dataStream: Readable; |
|
|
|
|
destProject: Project; |
|
|
|
|
destBase: Base; |
|
|
|
|
destModel: Model; |
|
|
|
|
debugLog?: (...args: any[]) => void; |
|
|
|
|
}): Promise<void> { |
|
|
|
|
const { idMap, dataStream, destBase, destProject, destModel } = param; |
|
|
|
|
|
|
|
|
|
const debugLog = param.debugLog || (() => {}); |
|
|
|
|
|
|
|
|
|
const headers: string[] = []; |
|
|
|
|
let chunk = []; |
|
|
|
|
|
|
|
|
|
return new Promise((resolve) => { |
|
|
|
|
papaparse.parse(dataStream, { |
|
|
|
|
newline: '\r\n', |
|
|
|
|
step: async (results, parser) => { |
|
|
|
|
if (!headers.length) { |
|
|
|
@ -1196,20 +1256,31 @@ export class ImportService {
|
|
|
|
|
const id = idMap.get(header); |
|
|
|
|
if (id) { |
|
|
|
|
const col = await Column.get({ |
|
|
|
|
base_id: baseId, |
|
|
|
|
base_id: destBase.id, |
|
|
|
|
colId: id, |
|
|
|
|
}); |
|
|
|
|
if (col) { |
|
|
|
|
if (col.colOptions?.type === 'bt') { |
|
|
|
|
const childCol = await Column.get({ |
|
|
|
|
base_id: baseId, |
|
|
|
|
base_id: destBase.id, |
|
|
|
|
colId: col.colOptions.fk_child_column_id, |
|
|
|
|
}); |
|
|
|
|
if (childCol) { |
|
|
|
|
headers.push(childCol.column_name); |
|
|
|
|
} else { |
|
|
|
|
headers.push(null); |
|
|
|
|
debugLog('child column not found', header); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
headers.push(col.column_name); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
debugLog(header); |
|
|
|
|
headers.push(null); |
|
|
|
|
debugLog('column not found', header); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
headers.push(null); |
|
|
|
|
debugLog('header not found', header); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
parser.resume(); |
|
|
|
@ -1217,18 +1288,19 @@ export class ImportService {
|
|
|
|
|
if (results.errors.length === 0) { |
|
|
|
|
const row = {}; |
|
|
|
|
for (let i = 0; i < headers.length; i++) { |
|
|
|
|
if (headers[i]) { |
|
|
|
|
if (results.data[i] !== '') { |
|
|
|
|
row[headers[i]] = results.data[i]; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
chunk.push(row); |
|
|
|
|
if (chunk.length > 100) { |
|
|
|
|
if (chunk.length > 1000) { |
|
|
|
|
parser.pause(); |
|
|
|
|
elapsedTime('before import chunk'); |
|
|
|
|
try { |
|
|
|
|
await this.bulkDataService.bulkDataInsert({ |
|
|
|
|
projectName: projectId, |
|
|
|
|
tableName: modelId, |
|
|
|
|
projectName: destProject.id, |
|
|
|
|
tableName: destModel.id, |
|
|
|
|
body: chunk, |
|
|
|
|
cookie: null, |
|
|
|
|
chunkSize: chunk.length + 1, |
|
|
|
@ -1236,11 +1308,9 @@ export class ImportService {
|
|
|
|
|
raw: true, |
|
|
|
|
}); |
|
|
|
|
} catch (e) { |
|
|
|
|
debugLog(`${model.title} import throwed an error!`); |
|
|
|
|
console.log(e); |
|
|
|
|
} |
|
|
|
|
chunk = []; |
|
|
|
|
elapsedTime('after import chunk'); |
|
|
|
|
parser.resume(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -1248,11 +1318,10 @@ export class ImportService {
|
|
|
|
|
}, |
|
|
|
|
complete: async () => { |
|
|
|
|
if (chunk.length > 0) { |
|
|
|
|
elapsedTime('before import chunk'); |
|
|
|
|
try { |
|
|
|
|
await this.bulkDataService.bulkDataInsert({ |
|
|
|
|
projectName: projectId, |
|
|
|
|
tableName: modelId, |
|
|
|
|
projectName: destProject.id, |
|
|
|
|
tableName: destModel.id, |
|
|
|
|
body: chunk, |
|
|
|
|
cookie: null, |
|
|
|
|
chunkSize: chunk.length + 1, |
|
|
|
@ -1260,11 +1329,9 @@ export class ImportService {
|
|
|
|
|
raw: true, |
|
|
|
|
}); |
|
|
|
|
} catch (e) { |
|
|
|
|
debugLog(chunk); |
|
|
|
|
console.log(e); |
|
|
|
|
} |
|
|
|
|
chunk = []; |
|
|
|
|
elapsedTime('after import chunk'); |
|
|
|
|
} |
|
|
|
|
resolve(null); |
|
|
|
|
}, |
|
|
|
@ -1272,14 +1339,40 @@ export class ImportService {
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// reset timer
|
|
|
|
|
elapsedTime(); |
|
|
|
|
// import links and return handled links
|
|
|
|
|
async importLinkFromCsvStream(param: { |
|
|
|
|
idMap: Map<string, string>; |
|
|
|
|
linkStream: Readable; |
|
|
|
|
destProject: Project; |
|
|
|
|
destBase: Base; |
|
|
|
|
handledLinks: string[]; |
|
|
|
|
debugLog?: (...args: any[]) => void; |
|
|
|
|
}): Promise<string[]> { |
|
|
|
|
const { idMap, linkStream, destBase, destProject, handledLinks } = param; |
|
|
|
|
|
|
|
|
|
const linkReadStream = await ( |
|
|
|
|
storageAdapter as any |
|
|
|
|
).fileReadByStream(linkFile); |
|
|
|
|
const debugLog = param.debugLog || (() => {}); |
|
|
|
|
|
|
|
|
|
const lChunks: Record<string, any[]> = {}; // fk_mm_model_id: { rowId, childId }[]
|
|
|
|
|
|
|
|
|
|
const lChunk: Record<string, any[]> = {}; // fk_mm_model_id: { rowId, childId }[]
|
|
|
|
|
const insertChunks = async () => { |
|
|
|
|
for (const [k, v] of Object.entries(lChunks)) { |
|
|
|
|
try { |
|
|
|
|
if (v.length === 0) continue; |
|
|
|
|
await this.bulkDataService.bulkDataInsert({ |
|
|
|
|
projectName: destProject.id, |
|
|
|
|
tableName: k, |
|
|
|
|
body: v, |
|
|
|
|
cookie: null, |
|
|
|
|
chunkSize: 1000, |
|
|
|
|
foreign_key_checks: false, |
|
|
|
|
raw: true, |
|
|
|
|
}); |
|
|
|
|
lChunks[k] = []; |
|
|
|
|
} catch (e) { |
|
|
|
|
console.log(e); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
let headersFound = false; |
|
|
|
|
|
|
|
|
@ -1290,8 +1383,8 @@ export class ImportService {
|
|
|
|
|
const mmColumns: Record<string, Column> = {}; |
|
|
|
|
const mmParentChild: any = {}; |
|
|
|
|
|
|
|
|
|
await new Promise((resolve) => { |
|
|
|
|
papaparse.parse(linkReadStream, { |
|
|
|
|
return new Promise((resolve) => { |
|
|
|
|
papaparse.parse(linkStream, { |
|
|
|
|
newline: '\r\n', |
|
|
|
|
step: async (results, parser) => { |
|
|
|
|
if (!headersFound) { |
|
|
|
@ -1307,12 +1400,6 @@ export class ImportService {
|
|
|
|
|
headersFound = true; |
|
|
|
|
} else { |
|
|
|
|
if (results.errors.length === 0) { |
|
|
|
|
if ( |
|
|
|
|
results.data[childIndex] === 'child' && |
|
|
|
|
results.data[parentIndex] === 'parent' && |
|
|
|
|
results.data[columnIndex] === 'column' |
|
|
|
|
) |
|
|
|
|
return; |
|
|
|
|
const child = results.data[childIndex]; |
|
|
|
|
const parent = results.data[parentIndex]; |
|
|
|
|
const columnId = results.data[columnIndex]; |
|
|
|
@ -1322,23 +1409,27 @@ export class ImportService {
|
|
|
|
|
const mmModelId = |
|
|
|
|
mmColumns[columnId].colOptions.fk_mm_model_id; |
|
|
|
|
const mm = mmParentChild[mmModelId]; |
|
|
|
|
lChunk[mmModelId].push({ |
|
|
|
|
lChunks[mmModelId].push({ |
|
|
|
|
[mm.parent]: parent, |
|
|
|
|
[mm.child]: child, |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
// get column for the first time
|
|
|
|
|
parser.pause(); |
|
|
|
|
|
|
|
|
|
await insertChunks(); |
|
|
|
|
|
|
|
|
|
const col = await Column.get({ |
|
|
|
|
base_id: destBase.id, |
|
|
|
|
colId: findWithIdentifier(idMap, columnId), |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
if (col) { |
|
|
|
|
const colOptions = |
|
|
|
|
await col.getColOptions<LinkToAnotherRecordColumn>(); |
|
|
|
|
|
|
|
|
|
const vChildCol = await colOptions.getMMChildColumn(); |
|
|
|
|
const vParentCol = |
|
|
|
|
await colOptions.getMMParentColumn(); |
|
|
|
|
const vParentCol = await colOptions.getMMParentColumn(); |
|
|
|
|
|
|
|
|
|
mmParentChild[col.colOptions.fk_mm_model_id] = { |
|
|
|
|
parent: vParentCol.column_name, |
|
|
|
@ -1352,14 +1443,17 @@ export class ImportService {
|
|
|
|
|
const mmModelId = col.colOptions.fk_mm_model_id; |
|
|
|
|
|
|
|
|
|
// create chunk
|
|
|
|
|
lChunk[mmModelId] = []; |
|
|
|
|
lChunks[mmModelId] = []; |
|
|
|
|
|
|
|
|
|
// push to chunk
|
|
|
|
|
const mm = mmParentChild[mmModelId]; |
|
|
|
|
lChunk[mmModelId].push({ |
|
|
|
|
lChunks[mmModelId].push({ |
|
|
|
|
[mm.parent]: parent, |
|
|
|
|
[mm.child]: child, |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
debugLog('column not found', columnId); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
parser.resume(); |
|
|
|
|
} |
|
|
|
@ -1368,35 +1462,10 @@ export class ImportService {
|
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
complete: async () => { |
|
|
|
|
for (const [k, v] of Object.entries(lChunk)) { |
|
|
|
|
try { |
|
|
|
|
await this.bulkDataService.bulkDataInsert({ |
|
|
|
|
projectName: projectId, |
|
|
|
|
tableName: k, |
|
|
|
|
body: v, |
|
|
|
|
cookie: null, |
|
|
|
|
chunkSize: 1000, |
|
|
|
|
foreign_key_checks: false, |
|
|
|
|
raw: true, |
|
|
|
|
}); |
|
|
|
|
} catch (e) { |
|
|
|
|
console.log(e); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
resolve(null); |
|
|
|
|
await insertChunks(); |
|
|
|
|
resolve(handledLinks); |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} catch (e) { |
|
|
|
|
throw new Error(e); |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
case 'url': |
|
|
|
|
break; |
|
|
|
|
case 'file': |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|