mirror of https://github.com/nocodb/nocodb
mertmit
2 years ago
11 changed files with 714 additions and 618 deletions
@ -1,21 +0,0 @@ |
|||||||
import { Test } from '@nestjs/testing'; |
|
||||||
import { ExportImportService } from './../services/export-import.service'; |
|
||||||
import { ExportImportController } from './export-import.controller'; |
|
||||||
import type { TestingModule } from '@nestjs/testing'; |
|
||||||
|
|
||||||
describe('ExportImportController', () => { |
|
||||||
let controller: ExportImportController; |
|
||||||
|
|
||||||
beforeEach(async () => { |
|
||||||
const module: TestingModule = await Test.createTestingModule({ |
|
||||||
controllers: [ExportImportController], |
|
||||||
providers: [ExportImportService], |
|
||||||
}).compile(); |
|
||||||
|
|
||||||
controller = module.get<ExportImportController>(ExportImportController); |
|
||||||
}); |
|
||||||
|
|
||||||
it('should be defined', () => { |
|
||||||
expect(controller).toBeDefined(); |
|
||||||
}); |
|
||||||
}); |
|
@ -1,51 +0,0 @@ |
|||||||
import { |
|
||||||
Body, |
|
||||||
Controller, |
|
||||||
HttpCode, |
|
||||||
Param, |
|
||||||
Patch, |
|
||||||
Post, |
|
||||||
Request, |
|
||||||
UseGuards, |
|
||||||
} from '@nestjs/common'; |
|
||||||
import { AuthGuard } from '@nestjs/passport'; |
|
||||||
import { GlobalGuard } from '../guards/global/global.guard'; |
|
||||||
import { |
|
||||||
Acl, |
|
||||||
ExtractProjectIdMiddleware, |
|
||||||
} from '../middlewares/extract-project-id/extract-project-id.middleware'; |
|
||||||
import { ExportImportService } from './../services/export-import.service'; |
|
||||||
|
|
||||||
@Controller() |
|
||||||
@UseGuards(ExtractProjectIdMiddleware, GlobalGuard) |
|
||||||
export class ExportImportController { |
|
||||||
constructor(private readonly exportImportService: ExportImportService) {} |
|
||||||
|
|
||||||
@Post('/api/v1/db/meta/export/:projectId/:baseId') |
|
||||||
@HttpCode(200) |
|
||||||
@Acl('exportBase') |
|
||||||
async exportBase(@Param('baseId') baseId: string, @Body() body: any) { |
|
||||||
return await this.exportImportService.exportBase({ |
|
||||||
baseId, |
|
||||||
path: body.path, |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
@Post('/api/v1/db/meta/import/:projectId/:baseId') |
|
||||||
@HttpCode(200) |
|
||||||
@Acl('importBase') |
|
||||||
async importBase( |
|
||||||
@Request() req, |
|
||||||
@Param('projectId') projectId: string, |
|
||||||
@Param('baseId') baseId: string, |
|
||||||
@Body() body: any, |
|
||||||
) { |
|
||||||
return await this.exportImportService.importBase({ |
|
||||||
user: (req as any).user, |
|
||||||
projectId: projectId, |
|
||||||
baseId: baseId, |
|
||||||
src: body.src, |
|
||||||
req, |
|
||||||
}); |
|
||||||
} |
|
||||||
} |
|
@ -0,0 +1,42 @@ |
|||||||
|
import { InjectQueue } from '@nestjs/bull'; |
||||||
|
import { |
||||||
|
Body, |
||||||
|
Controller, |
||||||
|
HttpCode, |
||||||
|
Param, |
||||||
|
Post, |
||||||
|
Request, |
||||||
|
UseGuards, |
||||||
|
} from '@nestjs/common'; |
||||||
|
import { Queue } from 'bull'; |
||||||
|
import { GlobalGuard } from 'src/guards/global/global.guard'; |
||||||
|
import { |
||||||
|
Acl, |
||||||
|
ExtractProjectIdMiddleware, |
||||||
|
} from 'src/middlewares/extract-project-id/extract-project-id.middleware'; |
||||||
|
|
||||||
|
@Controller() |
||||||
|
@UseGuards(ExtractProjectIdMiddleware, GlobalGuard) |
||||||
|
export class DuplicateController { |
||||||
|
constructor( |
||||||
|
@InjectQueue('duplicate') private readonly duplicateQueue: Queue, |
||||||
|
) {} |
||||||
|
|
||||||
|
@Post('/api/v1/db/meta/duplicate/:projectId/:baseId') |
||||||
|
@HttpCode(200) |
||||||
|
@Acl('duplicateBase') |
||||||
|
async duplicateBase( |
||||||
|
@Request() req, |
||||||
|
@Param('projectId') projectId: string, |
||||||
|
@Param('baseId') baseId?: string, |
||||||
|
) { |
||||||
|
await this.duplicateQueue.add('duplicate', { |
||||||
|
projectId, |
||||||
|
baseId, |
||||||
|
req: { |
||||||
|
user: req.user, |
||||||
|
clientIp: req.clientIp, |
||||||
|
}, |
||||||
|
}); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,102 @@ |
|||||||
|
import { |
||||||
|
OnQueueActive, |
||||||
|
OnQueueCompleted, |
||||||
|
OnQueueFailed, |
||||||
|
Process, |
||||||
|
Processor, |
||||||
|
} from '@nestjs/bull'; |
||||||
|
import { Base, Project } from 'src/models'; |
||||||
|
import { Job } from 'bull'; |
||||||
|
import { ProjectsService } from 'src/services/projects.service'; |
||||||
|
import boxen from 'boxen'; |
||||||
|
import { generateUniqueName } from 'src/helpers/exportImportHelpers'; |
||||||
|
import { ExportService } from './export.service'; |
||||||
|
import { ImportService } from './import.service'; |
||||||
|
|
||||||
|
@Processor('duplicate') |
||||||
|
export class DuplicateProcessor { |
||||||
|
constructor( |
||||||
|
private exportService: ExportService, |
||||||
|
private importService: ImportService, |
||||||
|
private projectsService: ProjectsService, |
||||||
|
) {} |
||||||
|
|
||||||
|
@OnQueueActive() |
||||||
|
onActive(job: Job) { |
||||||
|
console.log( |
||||||
|
`Processing job ${job.id} of type ${job.name} with data ${job.data}...`, |
||||||
|
); |
||||||
|
} |
||||||
|
|
||||||
|
@OnQueueFailed() |
||||||
|
onFailed(job: Job, error: Error) { |
||||||
|
console.error( |
||||||
|
boxen( |
||||||
|
`---- !! JOB FAILED !! ----\ntype: ${job.name}\nid:${job.id}\nerror:${error.name} (${error.message})\n\nstack: ${error.stack}`, |
||||||
|
{ |
||||||
|
padding: 1, |
||||||
|
borderStyle: 'double', |
||||||
|
borderColor: 'yellow', |
||||||
|
}, |
||||||
|
), |
||||||
|
); |
||||||
|
} |
||||||
|
|
||||||
|
@OnQueueCompleted() |
||||||
|
onCompleted(job: Job) { |
||||||
|
console.log(`Completed job ${job.id} of type ${job.name}!`); |
||||||
|
} |
||||||
|
|
||||||
|
@Process('duplicate') |
||||||
|
async duplicateBase(job: Job) { |
||||||
|
const param: { projectId: string; baseId?: string; req: any } = job.data; |
||||||
|
|
||||||
|
const user = (param.req as any).user; |
||||||
|
|
||||||
|
const project = await Project.get(param.projectId); |
||||||
|
|
||||||
|
if (!project) { |
||||||
|
throw new Error(`Base not found for id '${param.baseId}'`); |
||||||
|
} |
||||||
|
|
||||||
|
const base = param?.baseId |
||||||
|
? await Base.get(param.baseId) |
||||||
|
: (await project.getBases())[0]; |
||||||
|
|
||||||
|
if (!base) { |
||||||
|
throw new Error(`Base not found!`); |
||||||
|
} |
||||||
|
|
||||||
|
const exported = await this.exportService.exportBase({ |
||||||
|
path: `${job.name}_${job.id}`, |
||||||
|
baseId: base.id, |
||||||
|
}); |
||||||
|
|
||||||
|
if (!exported) { |
||||||
|
throw new Error(`Export failed for base '${base.id}'`); |
||||||
|
} |
||||||
|
|
||||||
|
const projects = await Project.list({}); |
||||||
|
|
||||||
|
const uniqueTitle = generateUniqueName( |
||||||
|
`${project.title} copy`, |
||||||
|
projects.map((p) => p.title), |
||||||
|
); |
||||||
|
|
||||||
|
const dupProject = await this.projectsService.projectCreate({ |
||||||
|
project: { title: uniqueTitle }, |
||||||
|
user: { id: user.id }, |
||||||
|
}); |
||||||
|
|
||||||
|
await this.importService.importBase({ |
||||||
|
user, |
||||||
|
projectId: dupProject.id, |
||||||
|
baseId: dupProject.bases[0].id, |
||||||
|
src: { |
||||||
|
type: 'local', |
||||||
|
path: exported.path, |
||||||
|
}, |
||||||
|
req: param.req, |
||||||
|
}); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,487 @@ |
|||||||
|
import { Readable } from 'stream'; |
||||||
|
import { UITypes, ViewTypes } from 'nocodb-sdk'; |
||||||
|
import { getViewAndModelByAliasOrId } from 'src/modules/datas/helpers'; |
||||||
|
import { unparse } from 'papaparse'; |
||||||
|
import { |
||||||
|
clearPrefix, |
||||||
|
generateBaseIdMap, |
||||||
|
} from 'src/helpers/exportImportHelpers'; |
||||||
|
import NcPluginMgrv2 from 'src/helpers/NcPluginMgrv2'; |
||||||
|
import { NcError } from 'src/helpers/catchError'; |
||||||
|
import { Base, Model, Project } from 'src/models'; |
||||||
|
import { DatasService } from 'src/services/datas.service'; |
||||||
|
import { Injectable } from '@nestjs/common'; |
||||||
|
import type { LinkToAnotherRecordColumn, View } from 'src/models'; |
||||||
|
import type { IStorageAdapterV2 } from 'nc-plugin'; |
||||||
|
|
||||||
|
@Injectable() |
||||||
|
export class ExportService { |
||||||
|
constructor(private datasService: DatasService) {} |
||||||
|
|
||||||
|
async serializeModels(param: { modelIds: string[] }) { |
||||||
|
const { modelIds } = param; |
||||||
|
|
||||||
|
const serializedModels = []; |
||||||
|
|
||||||
|
// db id to structured id
|
||||||
|
const idMap = new Map<string, string>(); |
||||||
|
|
||||||
|
const projects: Project[] = []; |
||||||
|
const bases: Base[] = []; |
||||||
|
const modelsMap = new Map<string, Model[]>(); |
||||||
|
|
||||||
|
for (const modelId of modelIds) { |
||||||
|
const model = await Model.get(modelId); |
||||||
|
|
||||||
|
if (!model) |
||||||
|
return NcError.badRequest(`Model not found for id '${modelId}'`); |
||||||
|
|
||||||
|
const fndProject = projects.find((p) => p.id === model.project_id); |
||||||
|
const project = fndProject || (await Project.get(model.project_id)); |
||||||
|
|
||||||
|
const fndBase = bases.find((b) => b.id === model.base_id); |
||||||
|
const base = fndBase || (await Base.get(model.base_id)); |
||||||
|
|
||||||
|
if (!fndProject) projects.push(project); |
||||||
|
if (!fndBase) bases.push(base); |
||||||
|
|
||||||
|
if (!modelsMap.has(base.id)) { |
||||||
|
modelsMap.set(base.id, await generateBaseIdMap(base, idMap)); |
||||||
|
} |
||||||
|
|
||||||
|
await model.getColumns(); |
||||||
|
await model.getViews(); |
||||||
|
|
||||||
|
for (const column of model.columns) { |
||||||
|
await column.getColOptions(); |
||||||
|
if (column.colOptions) { |
||||||
|
for (const [k, v] of Object.entries(column.colOptions)) { |
||||||
|
switch (k) { |
||||||
|
case 'fk_mm_child_column_id': |
||||||
|
case 'fk_mm_parent_column_id': |
||||||
|
case 'fk_mm_model_id': |
||||||
|
case 'fk_parent_column_id': |
||||||
|
case 'fk_child_column_id': |
||||||
|
case 'fk_related_model_id': |
||||||
|
case 'fk_relation_column_id': |
||||||
|
case 'fk_lookup_column_id': |
||||||
|
case 'fk_rollup_column_id': |
||||||
|
column.colOptions[k] = idMap.get(v as string); |
||||||
|
break; |
||||||
|
case 'options': |
||||||
|
for (const o of column.colOptions['options']) { |
||||||
|
delete o.id; |
||||||
|
delete o.fk_column_id; |
||||||
|
} |
||||||
|
break; |
||||||
|
case 'formula': |
||||||
|
column.colOptions[k] = column.colOptions[k].replace( |
||||||
|
/(?<=\{\{).*?(?=\}\})/gm, |
||||||
|
(match) => idMap.get(match), |
||||||
|
); |
||||||
|
break; |
||||||
|
case 'id': |
||||||
|
case 'created_at': |
||||||
|
case 'updated_at': |
||||||
|
case 'fk_column_id': |
||||||
|
delete column.colOptions[k]; |
||||||
|
break; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
for (const view of model.views) { |
||||||
|
idMap.set(view.id, `${idMap.get(model.id)}::${view.id}`); |
||||||
|
await view.getColumns(); |
||||||
|
await view.getFilters(); |
||||||
|
await view.getSorts(); |
||||||
|
if (view.filter) { |
||||||
|
const export_filters = []; |
||||||
|
for (const fl of view.filter.children) { |
||||||
|
const tempFl = { |
||||||
|
id: `${idMap.get(view.id)}::${fl.id}`, |
||||||
|
fk_column_id: idMap.get(fl.fk_column_id), |
||||||
|
fk_parent_id: fl.fk_parent_id, |
||||||
|
is_group: fl.is_group, |
||||||
|
logical_op: fl.logical_op, |
||||||
|
comparison_op: fl.comparison_op, |
||||||
|
comparison_sub_op: fl.comparison_sub_op, |
||||||
|
value: fl.value, |
||||||
|
}; |
||||||
|
if (tempFl.is_group) { |
||||||
|
delete tempFl.comparison_op; |
||||||
|
delete tempFl.comparison_sub_op; |
||||||
|
delete tempFl.value; |
||||||
|
} |
||||||
|
export_filters.push(tempFl); |
||||||
|
} |
||||||
|
view.filter.children = export_filters; |
||||||
|
} |
||||||
|
|
||||||
|
if (view.sorts) { |
||||||
|
const export_sorts = []; |
||||||
|
for (const sr of view.sorts) { |
||||||
|
const tempSr = { |
||||||
|
fk_column_id: idMap.get(sr.fk_column_id), |
||||||
|
direction: sr.direction, |
||||||
|
}; |
||||||
|
export_sorts.push(tempSr); |
||||||
|
} |
||||||
|
view.sorts = export_sorts; |
||||||
|
} |
||||||
|
|
||||||
|
if (view.view) { |
||||||
|
for (const [k, v] of Object.entries(view.view)) { |
||||||
|
switch (k) { |
||||||
|
case 'fk_column_id': |
||||||
|
case 'fk_cover_image_col_id': |
||||||
|
case 'fk_grp_col_id': |
||||||
|
view.view[k] = idMap.get(v as string); |
||||||
|
break; |
||||||
|
case 'meta': |
||||||
|
if (view.type === ViewTypes.KANBAN) { |
||||||
|
const meta = JSON.parse(view.view.meta as string) as Record< |
||||||
|
string, |
||||||
|
any |
||||||
|
>; |
||||||
|
for (const [k, v] of Object.entries(meta)) { |
||||||
|
const colId = idMap.get(k as string); |
||||||
|
for (const op of v) { |
||||||
|
op.fk_column_id = idMap.get(op.fk_column_id); |
||||||
|
delete op.id; |
||||||
|
} |
||||||
|
meta[colId] = v; |
||||||
|
delete meta[k]; |
||||||
|
} |
||||||
|
view.view.meta = meta; |
||||||
|
} |
||||||
|
break; |
||||||
|
case 'created_at': |
||||||
|
case 'updated_at': |
||||||
|
case 'fk_view_id': |
||||||
|
case 'project_id': |
||||||
|
case 'base_id': |
||||||
|
case 'uuid': |
||||||
|
delete view.view[k]; |
||||||
|
break; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
serializedModels.push({ |
||||||
|
entity: 'model', |
||||||
|
model: { |
||||||
|
id: idMap.get(model.id), |
||||||
|
prefix: project.prefix, |
||||||
|
title: model.title, |
||||||
|
table_name: clearPrefix(model.table_name, project.prefix), |
||||||
|
meta: model.meta, |
||||||
|
columns: model.columns.map((column) => ({ |
||||||
|
id: idMap.get(column.id), |
||||||
|
ai: column.ai, |
||||||
|
column_name: column.column_name, |
||||||
|
cc: column.cc, |
||||||
|
cdf: column.cdf, |
||||||
|
meta: column.meta, |
||||||
|
pk: column.pk, |
||||||
|
order: column.order, |
||||||
|
rqd: column.rqd, |
||||||
|
system: column.system, |
||||||
|
uidt: column.uidt, |
||||||
|
title: column.title, |
||||||
|
un: column.un, |
||||||
|
unique: column.unique, |
||||||
|
colOptions: column.colOptions, |
||||||
|
})), |
||||||
|
}, |
||||||
|
views: model.views.map((view) => ({ |
||||||
|
id: idMap.get(view.id), |
||||||
|
is_default: view.is_default, |
||||||
|
type: view.type, |
||||||
|
meta: view.meta, |
||||||
|
order: view.order, |
||||||
|
title: view.title, |
||||||
|
show: view.show, |
||||||
|
show_system_fields: view.show_system_fields, |
||||||
|
filter: view.filter, |
||||||
|
sorts: view.sorts, |
||||||
|
lock_type: view.lock_type, |
||||||
|
columns: view.columns.map((column) => { |
||||||
|
const { |
||||||
|
id, |
||||||
|
fk_view_id, |
||||||
|
fk_column_id, |
||||||
|
project_id, |
||||||
|
base_id, |
||||||
|
created_at, |
||||||
|
updated_at, |
||||||
|
uuid, |
||||||
|
...rest |
||||||
|
} = column as any; |
||||||
|
return { |
||||||
|
fk_column_id: idMap.get(fk_column_id), |
||||||
|
...rest, |
||||||
|
}; |
||||||
|
}), |
||||||
|
view: view.view, |
||||||
|
})), |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
return serializedModels; |
||||||
|
} |
||||||
|
|
||||||
|
async exportModelData(param: { |
||||||
|
storageAdapter: IStorageAdapterV2; |
||||||
|
path: string; |
||||||
|
projectId: string; |
||||||
|
modelId: string; |
||||||
|
viewId?: string; |
||||||
|
}) { |
||||||
|
const { model, view } = await getViewAndModelByAliasOrId({ |
||||||
|
projectName: param.projectId, |
||||||
|
tableName: param.modelId, |
||||||
|
viewName: param.viewId, |
||||||
|
}); |
||||||
|
|
||||||
|
await model.getColumns(); |
||||||
|
|
||||||
|
const hasLink = model.columns.some( |
||||||
|
(c) => |
||||||
|
c.uidt === UITypes.LinkToAnotherRecord && c.colOptions?.type === 'mm', |
||||||
|
); |
||||||
|
|
||||||
|
const pkMap = new Map<string, string>(); |
||||||
|
|
||||||
|
for (const column of model.columns.filter( |
||||||
|
(c) => |
||||||
|
c.uidt === UITypes.LinkToAnotherRecord && c.colOptions?.type !== 'hm', |
||||||
|
)) { |
||||||
|
const relatedTable = await ( |
||||||
|
(await column.getColOptions()) as LinkToAnotherRecordColumn |
||||||
|
).getRelatedTable(); |
||||||
|
|
||||||
|
await relatedTable.getColumns(); |
||||||
|
|
||||||
|
pkMap.set(column.id, relatedTable.primaryKey.title); |
||||||
|
} |
||||||
|
|
||||||
|
const readableStream = new Readable({ |
||||||
|
read() {}, |
||||||
|
}); |
||||||
|
|
||||||
|
const readableLinkStream = new Readable({ |
||||||
|
read() {}, |
||||||
|
}); |
||||||
|
|
||||||
|
readableStream.setEncoding('utf8'); |
||||||
|
|
||||||
|
readableLinkStream.setEncoding('utf8'); |
||||||
|
|
||||||
|
const storageAdapter = param.storageAdapter; |
||||||
|
|
||||||
|
const uploadPromise = storageAdapter.fileCreateByStream( |
||||||
|
`${param.path}/${model.id}.csv`, |
||||||
|
readableStream, |
||||||
|
); |
||||||
|
|
||||||
|
const uploadLinkPromise = hasLink |
||||||
|
? storageAdapter.fileCreateByStream( |
||||||
|
`${param.path}/${model.id}_links.csv`, |
||||||
|
readableLinkStream, |
||||||
|
) |
||||||
|
: Promise.resolve(); |
||||||
|
|
||||||
|
const limit = 200; |
||||||
|
const offset = 0; |
||||||
|
|
||||||
|
const primaryKey = model.columns.find((c) => c.pk); |
||||||
|
|
||||||
|
const formatData = (data: any) => { |
||||||
|
const linkData = []; |
||||||
|
for (const row of data) { |
||||||
|
const pkValue = primaryKey ? row[primaryKey.title] : undefined; |
||||||
|
const linkRow = {}; |
||||||
|
for (const [k, v] of Object.entries(row)) { |
||||||
|
const col = model.columns.find((c) => c.title === k); |
||||||
|
if (col) { |
||||||
|
if (col.pk) linkRow['pk'] = pkValue; |
||||||
|
const colId = `${col.project_id}::${col.base_id}::${col.fk_model_id}::${col.id}`; |
||||||
|
switch (col.uidt) { |
||||||
|
case UITypes.LinkToAnotherRecord: |
||||||
|
{ |
||||||
|
if (col.system || col.colOptions.type === 'hm') break; |
||||||
|
|
||||||
|
const pkList = []; |
||||||
|
const links = Array.isArray(v) ? v : [v]; |
||||||
|
|
||||||
|
for (const link of links) { |
||||||
|
if (link) { |
||||||
|
for (const [k, val] of Object.entries(link)) { |
||||||
|
if (k === pkMap.get(col.id)) { |
||||||
|
pkList.push(val); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
if (col.colOptions.type === 'mm') { |
||||||
|
linkRow[colId] = pkList.join(','); |
||||||
|
} else { |
||||||
|
row[colId] = pkList[0]; |
||||||
|
} |
||||||
|
} |
||||||
|
break; |
||||||
|
case UITypes.Attachment: |
||||||
|
try { |
||||||
|
row[colId] = JSON.stringify(v); |
||||||
|
} catch (e) { |
||||||
|
row[colId] = v; |
||||||
|
} |
||||||
|
break; |
||||||
|
case UITypes.ForeignKey: |
||||||
|
case UITypes.Formula: |
||||||
|
case UITypes.Lookup: |
||||||
|
case UITypes.Rollup: |
||||||
|
case UITypes.Rating: |
||||||
|
case UITypes.Barcode: |
||||||
|
// skip these types
|
||||||
|
break; |
||||||
|
default: |
||||||
|
row[colId] = v; |
||||||
|
break; |
||||||
|
} |
||||||
|
delete row[k]; |
||||||
|
} |
||||||
|
} |
||||||
|
linkData.push(linkRow); |
||||||
|
} |
||||||
|
return { data, linkData }; |
||||||
|
}; |
||||||
|
|
||||||
|
try { |
||||||
|
await this.recursiveRead( |
||||||
|
formatData, |
||||||
|
readableStream, |
||||||
|
readableLinkStream, |
||||||
|
model, |
||||||
|
view, |
||||||
|
offset, |
||||||
|
limit, |
||||||
|
true, |
||||||
|
); |
||||||
|
await uploadPromise; |
||||||
|
await uploadLinkPromise; |
||||||
|
} catch (e) { |
||||||
|
await storageAdapter.fileDelete(`${param.path}/${model.id}.csv`); |
||||||
|
await storageAdapter.fileDelete(`${param.path}/${model.id}_links.csv`); |
||||||
|
console.error(e); |
||||||
|
throw e; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
async recursiveRead( |
||||||
|
formatter: (data: any) => { data: any; linkData: any }, |
||||||
|
stream: Readable, |
||||||
|
linkStream: Readable, |
||||||
|
model: Model, |
||||||
|
view: View, |
||||||
|
offset: number, |
||||||
|
limit: number, |
||||||
|
header = false, |
||||||
|
): Promise<void> { |
||||||
|
return new Promise((resolve, reject) => { |
||||||
|
this.datasService |
||||||
|
.getDataList({ model, view, query: { limit, offset } }) |
||||||
|
.then((result) => { |
||||||
|
try { |
||||||
|
if (!header) { |
||||||
|
stream.push('\r\n'); |
||||||
|
linkStream.push('\r\n'); |
||||||
|
} |
||||||
|
const { data, linkData } = formatter(result.list); |
||||||
|
stream.push(unparse(data, { header })); |
||||||
|
linkStream.push(unparse(linkData, { header })); |
||||||
|
if (result.pageInfo.isLastPage) { |
||||||
|
stream.push(null); |
||||||
|
linkStream.push(null); |
||||||
|
resolve(); |
||||||
|
} else { |
||||||
|
this.recursiveRead( |
||||||
|
formatter, |
||||||
|
stream, |
||||||
|
linkStream, |
||||||
|
model, |
||||||
|
view, |
||||||
|
offset + limit, |
||||||
|
limit, |
||||||
|
).then(resolve); |
||||||
|
} |
||||||
|
} catch (e) { |
||||||
|
reject(e); |
||||||
|
} |
||||||
|
}); |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
async exportBase(param: { path: string; baseId: string }) { |
||||||
|
const base = await Base.get(param.baseId); |
||||||
|
|
||||||
|
if (!base) |
||||||
|
throw NcError.badRequest(`Base not found for id '${param.baseId}'`); |
||||||
|
|
||||||
|
const project = await Project.get(base.project_id); |
||||||
|
|
||||||
|
const models = (await base.getModels()).filter( |
||||||
|
(m) => !m.mm && m.type === 'table', |
||||||
|
); |
||||||
|
|
||||||
|
const exportedModels = await this.serializeModels({ |
||||||
|
modelIds: models.map((m) => m.id), |
||||||
|
}); |
||||||
|
|
||||||
|
const exportData = { |
||||||
|
id: `${project.id}::${base.id}`, |
||||||
|
entity: 'base', |
||||||
|
models: exportedModels, |
||||||
|
}; |
||||||
|
|
||||||
|
const storageAdapter = await NcPluginMgrv2.storageAdapter(); |
||||||
|
|
||||||
|
const destPath = `export/${project.id}/${base.id}/${param.path}`; |
||||||
|
|
||||||
|
try { |
||||||
|
const readableStream = new Readable({ |
||||||
|
read() {}, |
||||||
|
}); |
||||||
|
|
||||||
|
readableStream.setEncoding('utf8'); |
||||||
|
|
||||||
|
readableStream.push(JSON.stringify(exportData)); |
||||||
|
|
||||||
|
readableStream.push(null); |
||||||
|
|
||||||
|
await storageAdapter.fileCreateByStream( |
||||||
|
`${destPath}/schema.json`, |
||||||
|
readableStream, |
||||||
|
); |
||||||
|
|
||||||
|
for (const model of models) { |
||||||
|
await this.exportModelData({ |
||||||
|
storageAdapter, |
||||||
|
path: `${destPath}/data`, |
||||||
|
projectId: project.id, |
||||||
|
modelId: model.id, |
||||||
|
}); |
||||||
|
} |
||||||
|
} catch (e) { |
||||||
|
throw NcError.badRequest(e); |
||||||
|
} |
||||||
|
|
||||||
|
return { |
||||||
|
path: destPath, |
||||||
|
}; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,23 @@ |
|||||||
|
import { Module } from '@nestjs/common'; |
||||||
|
import { BullModule } from '@nestjs/bull'; |
||||||
|
import { GlobalModule } from '../global/global.module'; |
||||||
|
import { DatasModule } from '../datas/datas.module'; |
||||||
|
import { MetasModule } from '../metas/metas.module'; |
||||||
|
import { ExportService } from './export-import/export.service'; |
||||||
|
import { ImportService } from './export-import/import.service'; |
||||||
|
import { DuplicateController } from './export-import/duplicate.controller'; |
||||||
|
import { DuplicateProcessor } from './export-import/duplicate.processor'; |
||||||
|
|
||||||
|
@Module({ |
||||||
|
imports: [ |
||||||
|
GlobalModule, |
||||||
|
DatasModule, |
||||||
|
MetasModule, |
||||||
|
BullModule.registerQueue({ |
||||||
|
name: 'duplicate', |
||||||
|
}), |
||||||
|
], |
||||||
|
controllers: [DuplicateController], |
||||||
|
providers: [DuplicateProcessor, ExportService, ImportService], |
||||||
|
}) |
||||||
|
export class JobsModule {} |
@ -1,19 +0,0 @@ |
|||||||
import { Test } from '@nestjs/testing'; |
|
||||||
import { ExportImportService } from './export-import.service'; |
|
||||||
import type { TestingModule } from '@nestjs/testing'; |
|
||||||
|
|
||||||
describe('ExportImportService', () => { |
|
||||||
let service: ExportImportService; |
|
||||||
|
|
||||||
beforeEach(async () => { |
|
||||||
const module: TestingModule = await Test.createTestingModule({ |
|
||||||
providers: [ExportImportService], |
|
||||||
}).compile(); |
|
||||||
|
|
||||||
service = module.get<ExportImportService>(ExportImportService); |
|
||||||
}); |
|
||||||
|
|
||||||
it('should be defined', () => { |
|
||||||
expect(service).toBeDefined(); |
|
||||||
}); |
|
||||||
}); |
|
Loading…
Reference in new issue