From a61359e809566a81bba37bba7a4a4fe80fd4da6f Mon Sep 17 00:00:00 2001 From: Wing-Kam Wong Date: Tue, 11 Apr 2023 13:25:41 +0800 Subject: [PATCH] fix: use oldDatasService instead --- .../datas/old-datas/old-datas.controller.ts | 45 +++---------------- 1 file changed, 7 insertions(+), 38 deletions(-) diff --git a/packages/nocodb-nest/src/modules/datas/old-datas/old-datas.controller.ts b/packages/nocodb-nest/src/modules/datas/old-datas/old-datas.controller.ts index dae3591a87..a08b54d77c 100644 --- a/packages/nocodb-nest/src/modules/datas/old-datas/old-datas.controller.ts +++ b/packages/nocodb-nest/src/modules/datas/old-datas/old-datas.controller.ts @@ -16,23 +16,17 @@ import { } from '../../../middlewares/extract-project-id/extract-project-id.middleware'; import { AuthGuard } from '@nestjs/passport'; import { Project } from 'src/models'; -import { DatasService } from '../datas.service'; +import { OldDatasService } from './old-datas.service'; @Controller() @UseGuards(ExtractProjectIdMiddleware, AuthGuard('jwt')) export class OldDatasController { - constructor(private readonly datasService: DatasService) {} + constructor(private readonly oldDatasService: OldDatasService) {} @Get('/nc/:projectId/api/v1/:tableName') @Acl('dataList') - async dataList(@Request() req) { - const { model, view } = - await this.datasService.getViewAndModelFromRequestByAliasOrId(req); - return await this.datasService.getDataList({ - model, - view, - query: req.query, - }); + async dataList(@Request() req, @Response() res) { + res.json(await this.oldDatasService.getDataList(req)); } @Get('/nc/:projectId/api/v1/:tableName/count') @@ -42,37 +36,12 @@ export class OldDatasController { @Response() res, @Param('tableName') tableName: string, ) { - const { model, view } = - await this.datasService.getViewAndModelFromRequestByAliasOrId(req); - const project = await Project.get(model.project_id); - const countResult = await this.datasService.dataCount({ - query: req.query, - projectName: project.title, - tableName: tableName, - viewName: view.title, - }); - res.json(countResult); + res.json(await this.oldDatasService.getDataCount(req)); } @Post('/nc/:projectId/api/v1/:tableName') @Acl('dataInsert') - async dataInsert( - @Request() req, - @Response() res, - @Param('tableName') tableName: string, - @Body() body: any, - ) { - const { model, view } = - await this.datasService.getViewAndModelFromRequestByAliasOrId(req); - const project = await Project.get(model.project_id); - return res.json( - await this.datasService.dataInsert({ - projectName: project.title, - tableName: tableName, - viewName: view.title, - body: body, - cookie: req, - }), - ); + async dataInsert(@Request() req, @Response() res) { + res.json(await this.oldDatasService.dataInsert(req)); } }