Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 9x 1x 2x 1x 2x 1x 3x 1x 2x | import {
Controller,
Get,
Post,
Patch,
Body,
Param,
UseGuards,
HttpCode,
HttpStatus,
} from '@nestjs/common';
import {
ApiTags,
ApiOperation,
ApiBearerAuth,
ApiResponse,
ApiBody,
} from '@nestjs/swagger';
import { TenantsService } from './tenants.service';
import { CreateTenantDto, UpdateTenantDto } from './dto';
import { JwtAuthGuard } from '../auth/guards/jwt-auth.guard';
import { PermissionsGuard, RequirePermissions } from '../rbac/guards/permissions.guard';
import { CurrentUser } from '../auth/decorators/current-user.decorator';
import { RequestUser } from '../auth/strategies/jwt.strategy';
import { Public } from '../auth/decorators/public.decorator';
@ApiTags('tenants')
@Controller('tenants')
@UseGuards(JwtAuthGuard)
@ApiBearerAuth()
export class TenantsController {
constructor(private readonly tenantsService: TenantsService) {}
@Post()
@Public()
@HttpCode(HttpStatus.CREATED)
@ApiOperation({ summary: 'Create a new tenant' })
@ApiBody({ type: CreateTenantDto })
@ApiResponse({ status: 201, description: 'Tenant created successfully' })
@ApiResponse({ status: 400, description: 'Invalid input data' })
@ApiResponse({ status: 409, description: 'Tenant with this slug already exists' })
async create(@Body() createTenantDto: CreateTenantDto) {
return this.tenantsService.create(createTenantDto);
}
@Get('current')
@ApiOperation({ summary: 'Get current user tenant' })
@ApiResponse({ status: 200, description: 'Returns the current tenant' })
@ApiResponse({ status: 404, description: 'Tenant not found' })
async getCurrent(@CurrentUser() user: RequestUser) {
return this.tenantsService.findOne(user.tenant_id);
}
@Patch('current')
@UseGuards(PermissionsGuard)
@RequirePermissions('tenants:write')
@ApiOperation({ summary: 'Update current tenant' })
@ApiBody({ type: UpdateTenantDto })
@ApiResponse({ status: 200, description: 'Tenant updated successfully' })
@ApiResponse({ status: 403, description: 'Insufficient permissions' })
@ApiResponse({ status: 404, description: 'Tenant not found' })
async updateCurrent(
@CurrentUser() user: RequestUser,
@Body() updateTenantDto: UpdateTenantDto,
) {
return this.tenantsService.update(user.tenant_id, updateTenantDto);
}
@Get(':id')
@ApiOperation({ summary: 'Get tenant by ID' })
@ApiResponse({ status: 200, description: 'Returns the tenant' })
@ApiResponse({ status: 404, description: 'Tenant not found' })
async findOne(@Param('id') id: string) {
return this.tenantsService.findOne(id);
}
}
|