import { Controller, Get, Post, Body, Patch, Param, Delete, Query, UseGuards, Request, } from '@nestjs/common'; import { ConfigService } from './config.service'; import { CreateConfigDto } from './dto/create-config.dto'; import { UpdateConfigDto } from './dto/update-config.dto'; import { JwtAuthGuard } from '../auth/guards/jwt-auth.guard'; @Controller('config') @UseGuards(JwtAuthGuard) export class ConfigController { constructor(private readonly configService: ConfigService) {} @Post() create(@Body() createConfigDto: CreateConfigDto, @Request() req) { const tenantId = req.tenantId || req.user?.tenantId; if (!tenantId) { throw new Error('无法确定租户信息'); } return this.configService.create(createConfigDto, tenantId); } @Get() findAll( @Query('page') page?: string, @Query('pageSize') pageSize?: string, @Request() req?: any, ) { const tenantId = req?.tenantId || req?.user?.tenantId; return this.configService.findAll( page ? parseInt(page) : 1, pageSize ? parseInt(pageSize) : 10, tenantId, ); } @Get('key/:key') findByKey(@Param('key') key: string, @Request() req) { const tenantId = req.tenantId || req.user?.tenantId; return this.configService.findByKey(key, tenantId); } @Get(':id') findOne(@Param('id') id: string, @Request() req) { const tenantId = req.tenantId || req.user?.tenantId; return this.configService.findOne(+id, tenantId); } @Patch(':id') update( @Param('id') id: string, @Body() updateConfigDto: UpdateConfigDto, @Request() req, ) { const tenantId = req.tenantId || req.user?.tenantId; return this.configService.update(+id, updateConfigDto, tenantId); } @Delete(':id') remove(@Param('id') id: string, @Request() req) { const tenantId = req.tenantId || req.user?.tenantId; return this.configService.remove(+id, tenantId); } }