parent
c53e94d205
commit
a437ada3b3
@ -6,6 +6,7 @@ import { RunnerTeamHasRunnersError, RunnerTeamIdsNotMatchingError, RunnerTeamNot
|
|||||||
import { CreateRunnerTeam } from '../models/creation/CreateRunnerTeam';
|
import { CreateRunnerTeam } from '../models/creation/CreateRunnerTeam';
|
||||||
import { Runner } from '../models/entities/Runner';
|
import { Runner } from '../models/entities/Runner';
|
||||||
import { RunnerTeam } from '../models/entities/RunnerTeam';
|
import { RunnerTeam } from '../models/entities/RunnerTeam';
|
||||||
|
import { ResponseRunnerTeam } from '../models/responses/ResponseRunnerTeam';
|
||||||
import { RunnerController } from './RunnerController';
|
import { RunnerController } from './RunnerController';
|
||||||
|
|
||||||
|
|
||||||
@ -22,23 +23,29 @@ export class RunnerTeamController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Get()
|
@Get()
|
||||||
@ResponseSchema(RunnerTeam, { isArray: true })
|
@ResponseSchema(ResponseRunnerTeam, { isArray: true })
|
||||||
@OpenAPI({ description: 'Lists all runnerTeams.' })
|
@OpenAPI({ description: 'Lists all runnerTeams.' })
|
||||||
getAll() {
|
async getAll() {
|
||||||
return this.runnerTeamRepository.find({ relations: ['parentGroup', 'contact'] });
|
let responseTeams: ResponseRunnerTeam[] = new Array<ResponseRunnerTeam>();
|
||||||
|
const runners = await this.runnerTeamRepository.find({ relations: ['parentGroup', 'contact'] });
|
||||||
|
console.log(runners);
|
||||||
|
runners.forEach(runner => {
|
||||||
|
responseTeams.push(new ResponseRunnerTeam(runner));
|
||||||
|
});
|
||||||
|
return responseTeams;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get('/:id')
|
@Get('/:id')
|
||||||
@ResponseSchema(RunnerTeam)
|
@ResponseSchema(ResponseRunnerTeam)
|
||||||
@ResponseSchema(RunnerTeamNotFoundError, { statusCode: 404 })
|
@ResponseSchema(RunnerTeamNotFoundError, { statusCode: 404 })
|
||||||
@OnUndefined(RunnerTeamNotFoundError)
|
@OnUndefined(RunnerTeamNotFoundError)
|
||||||
@OpenAPI({ description: 'Returns a runnerTeam of a specified id (if it exists)' })
|
@OpenAPI({ description: 'Returns a runnerTeam of a specified id (if it exists)' })
|
||||||
getOne(@Param('id') id: number) {
|
async getOne(@Param('id') id: number) {
|
||||||
return this.runnerTeamRepository.findOne({ id: id }, { relations: ['parentGroup', 'contact'] });
|
return new ResponseRunnerTeam(await this.runnerTeamRepository.findOne({ id: id }, { relations: ['parentGroup', 'contact'] }));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Post()
|
@Post()
|
||||||
@ResponseSchema(RunnerTeam)
|
@ResponseSchema(ResponseRunnerTeam)
|
||||||
@OpenAPI({ description: 'Create a new runnerTeam object (id will be generated automagicly).' })
|
@OpenAPI({ description: 'Create a new runnerTeam object (id will be generated automagicly).' })
|
||||||
async post(@Body({ validate: true }) createRunnerTeam: CreateRunnerTeam) {
|
async post(@Body({ validate: true }) createRunnerTeam: CreateRunnerTeam) {
|
||||||
let runnerTeam;
|
let runnerTeam;
|
||||||
@ -48,11 +55,14 @@ export class RunnerTeamController {
|
|||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.runnerTeamRepository.save(runnerTeam);
|
runnerTeam = await this.runnerTeamRepository.save(runnerTeam);
|
||||||
|
runnerTeam = await this.runnerTeamRepository.findOne(runnerTeam, { relations: ['parentGroup', 'contact'] });
|
||||||
|
|
||||||
|
return new ResponseRunnerTeam(runnerTeam);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Put('/:id')
|
@Put('/:id')
|
||||||
@ResponseSchema(RunnerTeam)
|
@ResponseSchema(ResponseRunnerTeam)
|
||||||
@ResponseSchema(RunnerTeamNotFoundError, { statusCode: 404 })
|
@ResponseSchema(RunnerTeamNotFoundError, { statusCode: 404 })
|
||||||
@ResponseSchema(RunnerTeamIdsNotMatchingError, { statusCode: 406 })
|
@ResponseSchema(RunnerTeamIdsNotMatchingError, { statusCode: 406 })
|
||||||
@OpenAPI({ description: "Update a runnerTeam object (id can't be changed)." })
|
@OpenAPI({ description: "Update a runnerTeam object (id can't be changed)." })
|
||||||
@ -68,11 +78,13 @@ export class RunnerTeamController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
await this.runnerTeamRepository.update(oldRunnerTeam, runnerTeam);
|
await this.runnerTeamRepository.update(oldRunnerTeam, runnerTeam);
|
||||||
return runnerTeam;
|
|
||||||
|
runnerTeam = await this.runnerTeamRepository.findOne(runnerTeam, { relations: ['parentGroup', 'contact'] });
|
||||||
|
return new ResponseRunnerTeam(runnerTeam);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Delete('/:id')
|
@Delete('/:id')
|
||||||
@ResponseSchema(RunnerTeam)
|
@ResponseSchema(ResponseRunnerTeam)
|
||||||
@ResponseSchema(RunnerTeamNotFoundError, { statusCode: 404 })
|
@ResponseSchema(RunnerTeamNotFoundError, { statusCode: 404 })
|
||||||
@ResponseSchema(RunnerTeamHasRunnersError, { statusCode: 406 })
|
@ResponseSchema(RunnerTeamHasRunnersError, { statusCode: 406 })
|
||||||
@OpenAPI({ description: 'Delete a specified runnerTeam (if it exists).' })
|
@OpenAPI({ description: 'Delete a specified runnerTeam (if it exists).' })
|
||||||
@ -95,6 +107,6 @@ export class RunnerTeamController {
|
|||||||
});
|
});
|
||||||
|
|
||||||
await this.runnerTeamRepository.delete(runnerTeam);
|
await this.runnerTeamRepository.delete(runnerTeam);
|
||||||
return runnerTeam;
|
return new ResponseRunnerTeam(runnerTeam);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
55
src/models/responses/ResponseRunnerGroup.ts
Normal file
55
src/models/responses/ResponseRunnerGroup.ts
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
import {
|
||||||
|
IsInt,
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
IsNotEmpty,
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
IsObject,
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
IsOptional,
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
IsString
|
||||||
|
} from "class-validator";
|
||||||
|
import { GroupContact } from '../entities/GroupContact';
|
||||||
|
import { RunnerGroup } from '../entities/RunnerGroup';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Defines a track of given length.
|
||||||
|
*/
|
||||||
|
export abstract class ResponseRunnerGroup {
|
||||||
|
/**
|
||||||
|
* Autogenerated unique id (primary key).
|
||||||
|
*/
|
||||||
|
@IsInt()
|
||||||
|
@IsNotEmpty()
|
||||||
|
id: number;;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The groups's name.
|
||||||
|
*/
|
||||||
|
@IsString()
|
||||||
|
@IsNotEmpty()
|
||||||
|
name: string;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The group's contact.
|
||||||
|
* Optional.
|
||||||
|
*/
|
||||||
|
@IsObject()
|
||||||
|
@IsOptional()
|
||||||
|
contact?: GroupContact;
|
||||||
|
|
||||||
|
public constructor(group: RunnerGroup) {
|
||||||
|
this.id = group.id;
|
||||||
|
this.name = group.name;
|
||||||
|
this.contact = group.contact;
|
||||||
|
}
|
||||||
|
}
|
26
src/models/responses/ResponseRunnerTeam.ts
Normal file
26
src/models/responses/ResponseRunnerTeam.ts
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
import {
|
||||||
|
IsNotEmpty,
|
||||||
|
IsObject
|
||||||
|
} from "class-validator";
|
||||||
|
import { RunnerOrganisation } from '../entities/RunnerOrganisation';
|
||||||
|
import { RunnerTeam } from '../entities/RunnerTeam';
|
||||||
|
import { ResponseRunnerGroup } from './ResponseRunnerGroup';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Defines RunnerTeam's response class.
|
||||||
|
*/
|
||||||
|
export class ResponseRunnerTeam extends ResponseRunnerGroup {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The team's parent group (organisation).
|
||||||
|
* Optional.
|
||||||
|
*/
|
||||||
|
@IsObject()
|
||||||
|
@IsNotEmpty()
|
||||||
|
parentGroup: RunnerOrganisation;
|
||||||
|
|
||||||
|
public constructor(team: RunnerTeam) {
|
||||||
|
super(team);
|
||||||
|
this.parentGroup = team.parentGroup;
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user