Newer
Older
import {
Controller,
Post,
UseGuards,
Body,
Get,
Param,
UsePipes,
Put,
import { GameService } from './game.service';
import { GameDTO, FlagboxEventDTO, GameStateDTO } from './game.dto';
import { ValidationPipe } from '../shared/validation.pipe';
import { Roles, GameStates } from '../shared/guard.decorator';
@Controller('game')
export class GameController {
async newGame(@User('id') person, @Body() body: GameDTO) {
return this.gameservice.createNewGame(person, body);
}
@UsePipes(new ValidationPipe())
async editGame(@Param('id') id: string, @Body() body: GameDTO) {
@Delete('delete/:id')
@Roles('admin')
@GameStates('CREATED')
async deleteGame(@Param('id') id: string) {
return this.gameservice.deleteGame(id);
}
@Put('edit-state/:id')
@Roles('admin')
@UsePipes(new ValidationPipe())
async updateGameState(@Param('id') id: string, @Body() body: GameStateDTO) {
return this.gameservice.updateGameStatus(body);
}
async listGames(state) {
return this.gameservice.listGames(state);
}
@Get('listgames/:state')
async listGamesState(@Param('state') state: string) {
return this.gameservice.listGames(state);
// ClassSerializerInterceptor removes excluded columns set in Entities
@UseInterceptors(ClassSerializerInterceptor)
@Get(':id')
async returnGameInfo(@Param('id') id: string) {
return this.gameservice.returnGameInfo(id);
}
@Get('get-factions/:id')
@Roles('admin')
async returnGameFactions(@Param('id') id: GameEntity) {
return this.gameservice.listFactions(id);
}
@Get('flag/:id')
async flagboxQuery(@Param('id') id: string) {
async flagboxEvent(@Param('id') id: string, @Body() data: FlagboxEventDTO) {
return this.gameservice.flagboxEvent(id, data);