|
| 1 | +import { |
| 2 | + Body, |
| 3 | + Controller, |
| 4 | + Delete, ForbiddenException, |
| 5 | + Get, |
| 6 | + Param, |
| 7 | + Post, |
| 8 | + Query, |
| 9 | +} from '@nestjs/common'; |
| 10 | +import { |
| 11 | + ApiCreatedResponse, |
| 12 | + ApiForbiddenResponse, |
| 13 | + ApiOkResponse, |
| 14 | + ApiOperation, |
| 15 | + ApiQuery, |
| 16 | + ApiTags, |
| 17 | +} from '@nestjs/swagger'; |
| 18 | +import {Types} from 'mongoose'; |
| 19 | +import {NotFound, ObjectIdPipe} from '@mean-stream/nestx'; |
| 20 | +import {Validated} from '../util/validated.decorator'; |
| 21 | +import {Throttled} from '../util/throttled.decorator'; |
| 22 | +import {Auth, AuthUser} from '../auth/auth.decorator'; |
| 23 | +import {Job} from './job.schema'; |
| 24 | +import {User} from '../user/user.schema'; |
| 25 | +import {CreateJobDto} from './job.dto'; |
| 26 | +import {JobService} from './job.service'; |
| 27 | +import {EmpireService} from "../empire/empire.service"; |
| 28 | +import {JobType} from "./job-type.enum"; |
| 29 | + |
| 30 | +@Controller('games/:game/empires/:empire/jobs') |
| 31 | +@ApiTags('Jobs') |
| 32 | +@Validated() |
| 33 | +@Throttled() |
| 34 | +export class JobController { |
| 35 | + constructor( |
| 36 | + private readonly jobService: JobService, |
| 37 | + private readonly empireService: EmpireService, |
| 38 | + ) { |
| 39 | + } |
| 40 | + |
| 41 | + @Get() |
| 42 | + @Auth() |
| 43 | + @ApiOperation({description: 'Get the job list with optional filters for system and type.'}) |
| 44 | + @ApiOkResponse({type: [Job]}) |
| 45 | + @ApiForbiddenResponse({description: 'You can only access jobs for your own empire.'}) |
| 46 | + @NotFound() |
| 47 | + @ApiQuery({ |
| 48 | + name: 'system', |
| 49 | + description: 'Filter jobs by system', |
| 50 | + required: false, |
| 51 | + type: String, |
| 52 | + example: '60d6f7eb8b4b8a001d6f7eb1', |
| 53 | + }) |
| 54 | + @ApiQuery({ |
| 55 | + name: 'type', |
| 56 | + description: 'Filter jobs by type (`building`, `district`, `upgrade`, `technology`).', |
| 57 | + required: false, |
| 58 | + enum: JobType, |
| 59 | + }) |
| 60 | + async getJobs( |
| 61 | + @Param('game', ObjectIdPipe) game: Types.ObjectId, |
| 62 | + @Param('empire', ObjectIdPipe) empire: Types.ObjectId, |
| 63 | + @AuthUser() user: User, |
| 64 | + @Query('system', ObjectIdPipe) system?: Types.ObjectId, |
| 65 | + @Query('type') type?: string, |
| 66 | + ): Promise<Job[]> { |
| 67 | + const userEmpire = await this.empireService.findOne({game, user: user._id}); |
| 68 | + if (!userEmpire || !empire.equals(userEmpire._id)) { |
| 69 | + throw new ForbiddenException('You can only access jobs for your own empire.'); |
| 70 | + } |
| 71 | + // TODO: Return jobs with given filters |
| 72 | + return Array.of(new Job()); |
| 73 | + } |
| 74 | + |
| 75 | + @Post() |
| 76 | + @Auth() |
| 77 | + @ApiOperation({description: 'Create a new job for your empire.'}) |
| 78 | + @ApiCreatedResponse({type: Job}) |
| 79 | + @ApiForbiddenResponse({description: 'You can only create jobs for your own empire.'}) |
| 80 | + @NotFound() |
| 81 | + async createJob( |
| 82 | + @Param('game', ObjectIdPipe) game: Types.ObjectId, |
| 83 | + @Param('empire', ObjectIdPipe) empire: Types.ObjectId, |
| 84 | + @AuthUser() user: User, |
| 85 | + @Body() createJobDto: CreateJobDto, |
| 86 | + ): Promise<Job> { |
| 87 | + const userEmpire = await this.empireService.findOne({game, user: user._id}); |
| 88 | + if (!userEmpire || !empire.equals(userEmpire._id)) { |
| 89 | + throw new ForbiddenException('You can only create jobs for your own empire.'); |
| 90 | + } |
| 91 | + // TODO: Create job |
| 92 | + return new Job(); |
| 93 | + } |
| 94 | + |
| 95 | + @Delete(':id') |
| 96 | + @Auth() |
| 97 | + @ApiOperation({description: 'Delete a job from your empire.'}) |
| 98 | + @ApiOkResponse({type: Job}) |
| 99 | + @NotFound('Job not found.') |
| 100 | + @ApiForbiddenResponse({description: 'You can only delete jobs from your own empire.'}) |
| 101 | + async deleteJob( |
| 102 | + @Param('game', ObjectIdPipe) game: Types.ObjectId, |
| 103 | + @Param('empire', ObjectIdPipe) empire: Types.ObjectId, |
| 104 | + @Param('id', ObjectIdPipe) id: Types.ObjectId, |
| 105 | + @AuthUser() user: User, |
| 106 | + ): Promise<Job | null> { |
| 107 | + const userEmpire = await this.empireService.findOne({game, user: user._id}); |
| 108 | + if (!userEmpire || !empire.equals(userEmpire._id)) { |
| 109 | + throw new ForbiddenException('You can only delete jobs for your own empire.'); |
| 110 | + } |
| 111 | + // TODO: Delete job |
| 112 | + return null; |
| 113 | + } |
| 114 | +} |
0 commit comments