Utilisation du plugin swagger pour de la meilleure documentation, et meilleure prise en charge d'erreurs

This commit is contained in:
Emmy D'Anello 2024-12-08 18:18:11 +01:00
parent 83d3a573ca
commit 77b33144f6
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
15 changed files with 249 additions and 107 deletions

View File

@ -3,6 +3,14 @@
"collection": "@nestjs/schematics", "collection": "@nestjs/schematics",
"sourceRoot": "src", "sourceRoot": "src",
"compilerOptions": { "compilerOptions": {
"deleteOutDir": true "deleteOutDir": true,
"plugins": [
{
"name": "@nestjs/swagger",
"options": {
"introspectComments": true
}
}
]
} }
} }

View File

@ -1,6 +1,6 @@
import { Body, Controller, Post } from '@nestjs/common' import { Body, Controller, Post } from '@nestjs/common'
import { AuthService } from './auth.service' import { AuthService } from './auth.service'
import { ApiOkResponse, ApiTags } from '@nestjs/swagger' import { ApiTags } from '@nestjs/swagger'
import { AuthEntity } from './entity/auth.entity' import { AuthEntity } from './entity/auth.entity'
import { LoginDto } from './dto/login.dto' import { LoginDto } from './dto/login.dto'
@ -9,9 +9,13 @@ import { LoginDto } from './dto/login.dto'
export class AuthController { export class AuthController {
constructor(private readonly authService: AuthService) {} constructor(private readonly authService: AuthService) {}
/**
* Se connecter par nom et mot de passe pour récupérer un jeton de connexion.
*
* @throws {401} Mot de passe incorrect.
*/
@Post('login') @Post('login')
@ApiOkResponse({ type: AuthEntity }) async login(@Body() { name, password }: LoginDto): Promise<AuthEntity> {
login(@Body() { name, password }: LoginDto) { return await this.authService.login(name, password)
return this.authService.login(name, password)
} }
} }

View File

@ -1,14 +1,9 @@
import { ApiProperty } from '@nestjs/swagger' import { IsNotEmpty } from 'class-validator'
import { IsNotEmpty, IsString } from 'class-validator'
export class LoginDto { export class LoginDto {
@IsString()
@IsNotEmpty() @IsNotEmpty()
@ApiProperty()
name: string name: string
@IsString()
@IsNotEmpty() @IsNotEmpty()
@ApiProperty()
password: string password: string
} }

View File

@ -1,6 +1,6 @@
import { ApiProperty } from '@nestjs/swagger'
export class AuthEntity { export class AuthEntity {
@ApiProperty() /**
* Jeton d'accès à l'API, valable 12h.
*/
accessToken: string accessToken: string
} }

View File

@ -1,7 +1,7 @@
import { Controller, Get, Post, Body, Patch, Param, Delete, ParseIntPipe, HttpCode, UseGuards, Req, Query, NotFoundException } from '@nestjs/common' import { Controller, Get, Post, Body, Patch, Param, Delete, ParseIntPipe, HttpCode, UseGuards, Req, Query, NotFoundException } from '@nestjs/common'
import { ChallengeActionsService } from './challenge-actions.service' import { ChallengeActionsService } from './challenge-actions.service'
import { AuthenticatedRequest, JwtAuthGuard } from 'src/auth/jwt-auth.guard' import { AuthenticatedRequest, JwtAuthGuard } from 'src/auth/jwt-auth.guard'
import { ApiBearerAuth, ApiConflictResponse, ApiCreatedResponse, ApiNotFoundResponse, ApiOkResponse, ApiUnauthorizedResponse } from '@nestjs/swagger' import { ApiBearerAuth, ApiNoContentResponse } from '@nestjs/swagger'
import { ChallengeActionEntity } from './entities/challenge-action.entity' import { ChallengeActionEntity } from './entities/challenge-action.entity'
import { CreateChallengeActionDto } from './dto/create-challenge-action.dto' import { CreateChallengeActionDto } from './dto/create-challenge-action.dto'
import { ApiOkResponsePaginated, paginateOutput } from 'src/common/utils/pagination.utils' import { ApiOkResponsePaginated, paginateOutput } from 'src/common/utils/pagination.utils'
@ -15,33 +15,44 @@ import { EndChallengeActionDto } from './dto/end-challenge-action.dto'
export class ChallengeActionsController { export class ChallengeActionsController {
constructor(private readonly challengeActionsService: ChallengeActionsService) {} constructor(private readonly challengeActionsService: ChallengeActionsService) {}
/**
* Création d'une action de défi
*
* @throws {400} Erreurs dans le formulaire de création
* @throws {401} Non authentifiée
*/
@Post() @Post()
@HttpCode(201) @HttpCode(201)
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiCreatedResponse({ type: ChallengeActionEntity, description: "Objet créé avec succès" })
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
async create(@Req() request: AuthenticatedRequest, @Body() createChallengeActionDto: CreateChallengeActionDto): Promise<ChallengeActionEntity> { async create(@Req() request: AuthenticatedRequest, @Body() createChallengeActionDto: CreateChallengeActionDto): Promise<ChallengeActionEntity> {
const challenge = await this.challengeActionsService.create(request.user, createChallengeActionDto) const challenge = await this.challengeActionsService.create(request.user, createChallengeActionDto)
return new ChallengeActionEntity(challenge) return new ChallengeActionEntity(challenge)
} }
/**
* Recherche d'actions de défi
*
* @throws {401} Non authentifiée
*/
@Get() @Get()
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponsePaginated(ChallengeActionEntity) @ApiOkResponsePaginated(ChallengeActionEntity)
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
async findAll(@Query() queryPagination: QueryPaginationDto, @Query() filterChallengeActions: FilterChallengeActionsDto): Promise<PaginateOutputDto<ChallengeActionEntity>> { async findAll(@Query() queryPagination: QueryPaginationDto, @Query() filterChallengeActions: FilterChallengeActionsDto): Promise<PaginateOutputDto<ChallengeActionEntity>> {
const [challengeActions, total] = await this.challengeActionsService.findAll(queryPagination, filterChallengeActions) const [challengeActions, total] = await this.challengeActionsService.findAll(queryPagination, filterChallengeActions)
return paginateOutput<ChallengeActionEntity>(challengeActions.map(challengeAction => new ChallengeActionEntity(challengeAction)), total, queryPagination) return paginateOutput<ChallengeActionEntity>(challengeActions.map(challengeAction => new ChallengeActionEntity(challengeAction)), total, queryPagination)
} }
/**
* Recherche d'une action de défi par identifiant
*
* @throws {401} Non authentifiée
* @throws {404} Action de défi non trouvée
*/
@Get(':id') @Get(':id')
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponse({ type: ChallengeActionEntity })
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
@ApiNotFoundResponse({ description: "Objet non trouvé" })
async findOne(@Param('id', ParseIntPipe) id: number): Promise<ChallengeActionEntity> { async findOne(@Param('id', ParseIntPipe) id: number): Promise<ChallengeActionEntity> {
const challenge = await this.challengeActionsService.findOne(id) const challenge = await this.challengeActionsService.findOne(id)
if (!challenge) if (!challenge)
@ -49,34 +60,44 @@ export class ChallengeActionsController {
return new ChallengeActionEntity(challenge) return new ChallengeActionEntity(challenge)
} }
/**
* Modification d'une action de défi par identifiant
*
* @throws {400} Erreurs dans le formulaire de modification
* @throws {401} Non authentifiée
* @throws {404} Action de défi non trouvée
*/
@Patch(':id') @Patch(':id')
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponse({ type: ChallengeActionEntity }) async update(@Param('id', ParseIntPipe) id: number, @Body() updateChallengeActionDto: UpdateChallengeActionDto): Promise<ChallengeActionEntity> {
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
@ApiNotFoundResponse({ description: "Objet non trouvé" })
async update(@Param('id', ParseIntPipe) id: number, @Body() updateChallengeActionDto: UpdateChallengeActionDto) {
return await this.challengeActionsService.update(id, updateChallengeActionDto) return await this.challengeActionsService.update(id, updateChallengeActionDto)
} }
/**
* Suppression d'une action de défi par identifiant
*
* @throws {401} Non authentifiée
* @throws {404} Action de défi non trouvée
*/
@Delete(':id') @Delete(':id')
@HttpCode(204) @HttpCode(204)
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponse({ type: ChallengeActionEntity }) @ApiNoContentResponse({ description: "Action de défi supprimée avec succès" })
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" }) async remove(@Param('id', ParseIntPipe) id: number): Promise<void> {
@ApiNotFoundResponse({ description: "Objet non trouvé" })
async remove(@Param('id', ParseIntPipe) id: number) {
await this.challengeActionsService.remove(id) await this.challengeActionsService.remove(id)
} }
/**
* Terminer l'action de défi en cours
*
* @throws {401} Non authentifiée
* @throws {409} Aucun défi à terminer n'est en cours
*/
@Post('/end-current') @Post('/end-current')
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponse({ type: ChallengeActionEntity })
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
@ApiNotFoundResponse({ description: "Objet non trouvé" })
@ApiConflictResponse({ description: "Aucun défi à terminer n'est en cours" })
async endCurrent(@Req() request: AuthenticatedRequest, @Body() { success }: EndChallengeActionDto): Promise<ChallengeActionEntity> { async endCurrent(@Req() request: AuthenticatedRequest, @Body() { success }: EndChallengeActionDto): Promise<ChallengeActionEntity> {
const challengeAction = await this.challengeActionsService.endCurrentChallenge(request.user, success) const challengeAction = await this.challengeActionsService.endCurrentChallenge(request.user, success)
return new ChallengeActionEntity(challengeAction) return new ChallengeActionEntity(challengeAction)

View File

@ -1,4 +1,4 @@
import { BadRequestException, Injectable, UnprocessableEntityException } from '@nestjs/common' import { BadRequestException, Injectable, NotFoundException, UnprocessableEntityException } from '@nestjs/common'
import { CreateChallengeActionDto } from './dto/create-challenge-action.dto' import { CreateChallengeActionDto } from './dto/create-challenge-action.dto'
import { UpdateChallengeActionDto } from './dto/update-challenge-action.dto' import { UpdateChallengeActionDto } from './dto/update-challenge-action.dto'
import { ChallengeAction, Player } from '@prisma/client' import { ChallengeAction, Player } from '@prisma/client'
@ -35,6 +35,8 @@ export class ChallengeActionsService {
} }
async update(id: number, updateChallengeActionDto: UpdateChallengeActionDto): Promise<ChallengeAction> { async update(id: number, updateChallengeActionDto: UpdateChallengeActionDto): Promise<ChallengeAction> {
if (!this.findOne(id))
throw new NotFoundException(`Aucune action de défi trouvée avec l'identifiant ${id}`)
return await this.prisma.challengeAction.update({ return await this.prisma.challengeAction.update({
where: { id }, where: { id },
data: updateChallengeActionDto, data: updateChallengeActionDto,
@ -42,6 +44,8 @@ export class ChallengeActionsService {
} }
async remove(id: number): Promise<ChallengeAction> { async remove(id: number): Promise<ChallengeAction> {
if (!this.findOne(id))
throw new NotFoundException(`Aucune action de défi trouvée avec l'identifiant ${id}`)
return await this.prisma.challengeAction.delete({ return await this.prisma.challengeAction.delete({
where: { id }, where: { id },
}) })

View File

@ -3,7 +3,7 @@ import { ChallengesService } from './challenges.service'
import { CreateChallengeDto } from './dto/create-challenge.dto' import { CreateChallengeDto } from './dto/create-challenge.dto'
import { UpdateChallengeDto } from './dto/update-challenge.dto' import { UpdateChallengeDto } from './dto/update-challenge.dto'
import { AuthenticatedRequest, JwtAuthGuard } from 'src/auth/jwt-auth.guard' import { AuthenticatedRequest, JwtAuthGuard } from 'src/auth/jwt-auth.guard'
import { ApiBearerAuth, ApiConflictResponse, ApiCreatedResponse, ApiNotFoundResponse, ApiOkResponse, ApiUnauthorizedResponse } from '@nestjs/swagger' import { ApiBearerAuth, ApiNoContentResponse } from '@nestjs/swagger'
import { ChallengeEntity } from './entities/challenge.entity' import { ChallengeEntity } from './entities/challenge.entity'
import { ApiOkResponsePaginated, paginateOutput } from 'src/common/utils/pagination.utils' import { ApiOkResponsePaginated, paginateOutput } from 'src/common/utils/pagination.utils'
import { QueryPaginationDto } from 'src/common/dto/pagination-query.dto' import { QueryPaginationDto } from 'src/common/dto/pagination-query.dto'
@ -13,33 +13,44 @@ import { PaginateOutputDto } from 'src/common/dto/pagination-output.dto'
export class ChallengesController { export class ChallengesController {
constructor(private readonly challengesService: ChallengesService) {} constructor(private readonly challengesService: ChallengesService) {}
/**
* Création d'un défi
*
* @throws {400} Erreurs dans le formulaire de création
* @throws {401} Non authentifiée
*/
@Post() @Post()
@HttpCode(201) @HttpCode(201)
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiCreatedResponse({ type: ChallengeEntity, description: "Objet créé avec succès" })
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
async create(@Body() createChallengeDto: CreateChallengeDto): Promise<ChallengeEntity> { async create(@Body() createChallengeDto: CreateChallengeDto): Promise<ChallengeEntity> {
const challenge = await this.challengesService.create(createChallengeDto) const challenge = await this.challengesService.create(createChallengeDto)
return new ChallengeEntity(challenge) return new ChallengeEntity(challenge)
} }
/**
* Recherche de défis
*
* @throws {401} Non authentifiée
*/
@Get() @Get()
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponsePaginated(ChallengeEntity) @ApiOkResponsePaginated(ChallengeEntity)
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
async findAll(@Query() queryPagination?: QueryPaginationDto): Promise<PaginateOutputDto<ChallengeEntity>> { async findAll(@Query() queryPagination?: QueryPaginationDto): Promise<PaginateOutputDto<ChallengeEntity>> {
const [challenges, total] = await this.challengesService.findAll(queryPagination) const [challenges, total] = await this.challengesService.findAll(queryPagination)
return paginateOutput<ChallengeEntity>(challenges.map(challenge => new ChallengeEntity(challenge)), total, queryPagination) return paginateOutput<ChallengeEntity>(challenges.map(challenge => new ChallengeEntity(challenge)), total, queryPagination)
} }
/**
* Recherche d'un défi par identifiant
*
* @throws {401} Non authentifiée
* @throws {404} Défi non trouvé
*/
@Get(':id') @Get(':id')
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponse({ type: ChallengeEntity })
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
@ApiNotFoundResponse({ description: "Objet non trouvé" })
async findOne(@Param('id', ParseIntPipe) id: number): Promise<ChallengeEntity> { async findOne(@Param('id', ParseIntPipe) id: number): Promise<ChallengeEntity> {
const challenge = await this.challengesService.findOne(id) const challenge = await this.challengesService.findOne(id)
if (!challenge) if (!challenge)
@ -47,34 +58,47 @@ export class ChallengesController {
return new ChallengeEntity(challenge) return new ChallengeEntity(challenge)
} }
/**
* Modification d'un défi par identifiant
*
* @throws {400} Erreurs dans le formulaire de modification
* @throws {401} Non authentifiée
* @throws {404} Défi non trouvé
*/
@Patch(':id') @Patch(':id')
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponse({ type: ChallengeEntity })
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
@ApiNotFoundResponse({ description: "Objet non trouvé" })
async update(@Param('id', ParseIntPipe) id: number, @Body() updateChallengeDto: UpdateChallengeDto) { async update(@Param('id', ParseIntPipe) id: number, @Body() updateChallengeDto: UpdateChallengeDto) {
return await this.challengesService.update(id, updateChallengeDto) return await this.challengesService.update(id, updateChallengeDto)
} }
/**
* Suppression d'un défi par identifiant
*
* @throws {401} Non authentifiée
* @throws {404} Défi non trouvé
*/
@Delete(':id') @Delete(':id')
@HttpCode(204) @HttpCode(204)
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponse({ type: ChallengeEntity }) @ApiNoContentResponse({ description: "Le défi a bien été supprimé" })
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
@ApiNotFoundResponse({ description: "Objet non trouvé" })
async remove(@Param('id', ParseIntPipe) id: number) { async remove(@Param('id', ParseIntPipe) id: number) {
await this.challengesService.remove(id) await this.challengesService.remove(id)
} }
/**
* Tirage d'un nouveau défi aléatoire
*
* @remarks Aucun défi ne doit être en cours.
*
* @throws {401} Non authentifiée
* @throws {404} Plus aucun défi n'est disponible
* @throws {409} Un défi est déjà en cours d'accomplissement
*/
@Post('/draw-random') @Post('/draw-random')
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponse({ type: ChallengeEntity })
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
@ApiNotFoundResponse({ description: "Objet non trouvé" })
@ApiConflictResponse({ description: "Un défi est déjà en cours d'accomplissement" })
async drawRandom(@Req() request: AuthenticatedRequest): Promise<ChallengeEntity> { async drawRandom(@Req() request: AuthenticatedRequest): Promise<ChallengeEntity> {
const challenge = await this.challengesService.drawRandom(request.user) const challenge = await this.challengesService.drawRandom(request.user)
return new ChallengeEntity(challenge) return new ChallengeEntity(challenge)

View File

@ -38,6 +38,8 @@ export class ChallengesService {
} }
async update(id: number, updateChallengeDto: UpdateChallengeDto): Promise<Challenge> { async update(id: number, updateChallengeDto: UpdateChallengeDto): Promise<Challenge> {
if (!this.findOne(id))
throw new NotFoundException(`Aucun défi n'existe avec l'identifiant ${id}`)
return await this.prisma.challenge.update({ return await this.prisma.challenge.update({
where: { id }, where: { id },
data: updateChallengeDto, data: updateChallengeDto,
@ -48,6 +50,8 @@ export class ChallengesService {
} }
async remove(id: number): Promise<Challenge> { async remove(id: number): Promise<Challenge> {
if (!this.findOne(id))
throw new NotFoundException(`Aucun défi n'existe avec l'identifiant ${id}`)
return await this.prisma.challenge.delete({ return await this.prisma.challenge.delete({
where: { id }, where: { id },
include: { include: {

View File

@ -1,8 +1,8 @@
import { Controller, Get, Post, Body, Patch, Param, Delete, ParseIntPipe, UseGuards, HttpCode, Req, NotFoundException, Query } from '@nestjs/common' import { Controller, Get, Post, Body, Param, Delete, ParseIntPipe, UseGuards, HttpCode, Req, NotFoundException, Query } from '@nestjs/common'
import { GeolocationsService } from './geolocations.service' import { GeolocationsService } from './geolocations.service'
import { CreateGeolocationDto } from './dto/create-geolocation.dto' import { CreateGeolocationDto } from './dto/create-geolocation.dto'
import { AuthenticatedRequest, JwtAuthGuard } from 'src/auth/jwt-auth.guard' import { AuthenticatedRequest, JwtAuthGuard } from 'src/auth/jwt-auth.guard'
import { ApiBearerAuth, ApiCreatedResponse, ApiNoContentResponse, ApiNotFoundResponse, ApiOkResponse, ApiUnauthorizedResponse } from '@nestjs/swagger' import { ApiBearerAuth, ApiNoContentResponse } from '@nestjs/swagger'
import { GeolocationEntity } from './entities/geolocation.entity' import { GeolocationEntity } from './entities/geolocation.entity'
import { ApiOkResponsePaginated, paginateOutput } from 'src/common/utils/pagination.utils' import { ApiOkResponsePaginated, paginateOutput } from 'src/common/utils/pagination.utils'
import { QueryPaginationDto } from 'src/common/dto/pagination-query.dto' import { QueryPaginationDto } from 'src/common/dto/pagination-query.dto'
@ -13,33 +13,44 @@ import { PlayerFilterDto } from 'src/common/dto/player_filter.dto'
export class GeolocationsController { export class GeolocationsController {
constructor(private readonly geolocationsService: GeolocationsService) {} constructor(private readonly geolocationsService: GeolocationsService) {}
/**
* Ajout d'une géolocalisation pour joueurse connectée
*
* @throws {400} Erreurs dans le formulaire de création
* @throws {401} Non authentifiée
*/
@Post() @Post()
@HttpCode(201) @HttpCode(201)
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiCreatedResponse({ type: GeolocationEntity, description: "Objet créé avec succès" })
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
async create(@Req() request: AuthenticatedRequest, @Body() createGeolocationDto: CreateGeolocationDto): Promise<GeolocationEntity> { async create(@Req() request: AuthenticatedRequest, @Body() createGeolocationDto: CreateGeolocationDto): Promise<GeolocationEntity> {
const geolocation = await this.geolocationsService.create(request.user, createGeolocationDto) const geolocation = await this.geolocationsService.create(request.user, createGeolocationDto)
return new GeolocationEntity(geolocation) return new GeolocationEntity(geolocation)
} }
/**
* Recherche de géolocalisations
*
* @throws {401} Non authentifiée
*/
@Get() @Get()
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponsePaginated(GeolocationEntity) @ApiOkResponsePaginated(GeolocationEntity)
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
async findAll(@Query() queryPagination?: QueryPaginationDto, @Query() playerFilter?: PlayerFilterDto): Promise<PaginateOutputDto<GeolocationEntity>> { async findAll(@Query() queryPagination?: QueryPaginationDto, @Query() playerFilter?: PlayerFilterDto): Promise<PaginateOutputDto<GeolocationEntity>> {
const [geolocations, total] = await this.geolocationsService.findAll(queryPagination, playerFilter) const [geolocations, total] = await this.geolocationsService.findAll(queryPagination, playerFilter)
return paginateOutput<GeolocationEntity>(geolocations.map(geolocation => new GeolocationEntity(geolocation)), total, queryPagination) return paginateOutput<GeolocationEntity>(geolocations.map(geolocation => new GeolocationEntity(geolocation)), total, queryPagination)
} }
/**
* Recherche d'une géolocalisation par identifiant
*
* @throws {401} Non authentifiée
* @throws {404} Géolocalisation non trouvée
*/
@Get(':id') @Get(':id')
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponse({ type: GeolocationEntity })
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
@ApiNotFoundResponse({ description: "Objet non trouvé" })
async findOne(@Param('id', ParseIntPipe) id: number): Promise<GeolocationEntity> { async findOne(@Param('id', ParseIntPipe) id: number): Promise<GeolocationEntity> {
const geolocation = await this.geolocationsService.findOne(id) const geolocation = await this.geolocationsService.findOne(id)
if (!geolocation) if (!geolocation)
@ -47,12 +58,15 @@ export class GeolocationsController {
return new GeolocationEntity(geolocation) return new GeolocationEntity(geolocation)
} }
/**
* Récupération de la dernière posititon
*
* @throws {401} Non authentifiée
* @throws {404} Aucune localisation envoyée
*/
@Get('/last-location/:playerId') @Get('/last-location/:playerId')
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponse({ type: GeolocationEntity })
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
@ApiNotFoundResponse({ description: "Aucune localisation trouvée" })
async findLastLocation(@Param('playerId', ParseIntPipe) playerId: number): Promise<GeolocationEntity> { async findLastLocation(@Param('playerId', ParseIntPipe) playerId: number): Promise<GeolocationEntity> {
const geolocation = await this.geolocationsService.findLastLocation(playerId) const geolocation = await this.geolocationsService.findLastLocation(playerId)
if (!geolocation) if (!geolocation)
@ -60,13 +74,17 @@ export class GeolocationsController {
return new GeolocationEntity(geolocation) return new GeolocationEntity(geolocation)
} }
/**
* Suppression d'une localisation
*
* @throws {401} Non authentifiée
* @throws {404} Géolocalisation non trouvée
*/
@Delete(':id') @Delete(':id')
@HttpCode(204) @HttpCode(204)
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiNoContentResponse({ description: "Objet supprimé avec succès" }) @ApiNoContentResponse({ description: "La géolocalisation a bien été supprimée" })
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
@ApiNotFoundResponse({ description: "Objet non trouvé" })
async remove(@Param('id', ParseIntPipe) id: number): Promise<void> { async remove(@Param('id', ParseIntPipe) id: number): Promise<void> {
await this.geolocationsService.remove(+id) await this.geolocationsService.remove(+id)
} }

View File

@ -1,4 +1,4 @@
import { Injectable } from '@nestjs/common' import { Injectable, NotFoundException } from '@nestjs/common'
import { CreateGeolocationDto } from './dto/create-geolocation.dto' import { CreateGeolocationDto } from './dto/create-geolocation.dto'
import { PrismaService } from 'src/prisma/prisma.service' import { PrismaService } from 'src/prisma/prisma.service'
import { Geolocation, Player, Prisma } from '@prisma/client' import { Geolocation, Player, Prisma } from '@prisma/client'
@ -43,6 +43,8 @@ export class GeolocationsService {
async remove(id: number): Promise<Geolocation> { async remove(id: number): Promise<Geolocation> {
if (!this.findOne(id))
throw new NotFoundException(`Aucune géolocalisation n'existe avec l'identifiant ${id}`)
return await this.prisma.geolocation.delete({ where: { id } }) return await this.prisma.geolocation.delete({ where: { id } })
} }
} }

View File

@ -3,7 +3,7 @@ import { MoneyUpdatesService } from './money-updates.service'
import { CreateMoneyUpdateDto } from './dto/create-money-update.dto' import { CreateMoneyUpdateDto } from './dto/create-money-update.dto'
import { UpdateMoneyUpdateDto } from './dto/update-money-update.dto' import { UpdateMoneyUpdateDto } from './dto/update-money-update.dto'
import { AuthenticatedRequest, JwtAuthGuard } from 'src/auth/jwt-auth.guard' import { AuthenticatedRequest, JwtAuthGuard } from 'src/auth/jwt-auth.guard'
import { ApiBearerAuth, ApiCreatedResponse, ApiNotFoundResponse, ApiOkResponse, ApiUnauthorizedResponse } from '@nestjs/swagger' import { ApiBearerAuth, ApiNoContentResponse } from '@nestjs/swagger'
import { MoneyUpdateEntity } from './entities/money-update.entity' import { MoneyUpdateEntity } from './entities/money-update.entity'
import { ApiOkResponsePaginated, paginateOutput } from 'src/common/utils/pagination.utils' import { ApiOkResponsePaginated, paginateOutput } from 'src/common/utils/pagination.utils'
import { QueryPaginationDto } from 'src/common/dto/pagination-query.dto' import { QueryPaginationDto } from 'src/common/dto/pagination-query.dto'
@ -14,33 +14,44 @@ import { PaginateOutputDto } from 'src/common/dto/pagination-output.dto'
export class MoneyUpdatesController { export class MoneyUpdatesController {
constructor(private readonly moneyUpdatesService: MoneyUpdatesService) {} constructor(private readonly moneyUpdatesService: MoneyUpdatesService) {}
/**
* Création d'une modification de solde
*
* @throws {400} Erreurs dans le formulaire de création
* @throws {401} Non authentifiée
*/
@Post() @Post()
@HttpCode(201) @HttpCode(201)
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiCreatedResponse({ type: MoneyUpdateEntity, description: "Objet créé avec succès" })
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
async create(@Req() request: AuthenticatedRequest, @Body() createMoneyUpdateDto: CreateMoneyUpdateDto): Promise<MoneyUpdateEntity> { async create(@Req() request: AuthenticatedRequest, @Body() createMoneyUpdateDto: CreateMoneyUpdateDto): Promise<MoneyUpdateEntity> {
const moneyUpdate = await this.moneyUpdatesService.create(request.user, createMoneyUpdateDto) const moneyUpdate = await this.moneyUpdatesService.create(request.user, createMoneyUpdateDto)
return new MoneyUpdateEntity(moneyUpdate) return new MoneyUpdateEntity(moneyUpdate)
} }
/**
* Recherche de modifications de solde
*
* @throws {401} Non authentifiée
*/
@Get() @Get()
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponsePaginated(MoneyUpdateEntity) @ApiOkResponsePaginated(MoneyUpdateEntity)
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
async findAll(@Query() queryPagination: QueryPaginationDto, @Query() playerFilter: PlayerFilterDto): Promise<PaginateOutputDto<MoneyUpdateEntity>> { async findAll(@Query() queryPagination: QueryPaginationDto, @Query() playerFilter: PlayerFilterDto): Promise<PaginateOutputDto<MoneyUpdateEntity>> {
const [trains, total] = await this.moneyUpdatesService.findAll(queryPagination, playerFilter) const [trains, total] = await this.moneyUpdatesService.findAll(queryPagination, playerFilter)
return paginateOutput<MoneyUpdateEntity>(trains.map(train => new MoneyUpdateEntity(train)), total, queryPagination) return paginateOutput<MoneyUpdateEntity>(trains.map(train => new MoneyUpdateEntity(train)), total, queryPagination)
} }
/**
* Recherche d'une modification de solde
*
* @throws {401} Non authentifiée
* @throws {404} Modification de solde non trouvée
*/
@Get(':id') @Get(':id')
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponse({ type: MoneyUpdateEntity })
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
@ApiNotFoundResponse({ description: "Objet non trouvé" })
async findOne(@Param('id', ParseIntPipe) id: number): Promise<MoneyUpdateEntity> { async findOne(@Param('id', ParseIntPipe) id: number): Promise<MoneyUpdateEntity> {
const train = await this.moneyUpdatesService.findOne(id) const train = await this.moneyUpdatesService.findOne(id)
if (!train) if (!train)
@ -48,23 +59,31 @@ export class MoneyUpdatesController {
return new MoneyUpdateEntity(train) return new MoneyUpdateEntity(train)
} }
/**
* Modification d'une modification de solde
*
* @throws {400} Erreurs dans le formulaire de modification
* @throws {401} Non authentifiée
* @throws {404} Modification de solde non trouvée
*/
@Patch(':id') @Patch(':id')
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponse({ type: MoneyUpdateEntity })
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
@ApiNotFoundResponse({ description: "Objet non trouvé" })
async update(@Param('id', ParseIntPipe) id: number, @Body() updateMoneyUpdateDto: UpdateMoneyUpdateDto) { async update(@Param('id', ParseIntPipe) id: number, @Body() updateMoneyUpdateDto: UpdateMoneyUpdateDto) {
return await this.moneyUpdatesService.update(id, updateMoneyUpdateDto) return await this.moneyUpdatesService.update(id, updateMoneyUpdateDto)
} }
/**
* Suppression d'une modification de solde
*
* @throws {401} Non authentifiée
* @throws {404} Modification de solde non trouvée
*/
@Delete(':id') @Delete(':id')
@HttpCode(204) @HttpCode(204)
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiNoContentResponse({ description: "La modification de solde a bien été supprimée" })
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponse({ type: MoneyUpdateEntity })
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
@ApiNotFoundResponse({ description: "Objet non trouvé" })
async remove(@Param('id', ParseIntPipe) id: number) { async remove(@Param('id', ParseIntPipe) id: number) {
await this.moneyUpdatesService.remove(id) await this.moneyUpdatesService.remove(id)
} }

View File

@ -1,4 +1,4 @@
import { Injectable } from '@nestjs/common' import { Injectable, NotFoundException } from '@nestjs/common'
import { CreateMoneyUpdateDto } from './dto/create-money-update.dto' import { CreateMoneyUpdateDto } from './dto/create-money-update.dto'
import { UpdateMoneyUpdateDto } from './dto/update-money-update.dto' import { UpdateMoneyUpdateDto } from './dto/update-money-update.dto'
import { PrismaService } from 'src/prisma/prisma.service' import { PrismaService } from 'src/prisma/prisma.service'
@ -39,6 +39,8 @@ export class MoneyUpdatesService {
} }
async update(id: number, updateMoneyUpdateDto: UpdateMoneyUpdateDto): Promise<MoneyUpdate> { async update(id: number, updateMoneyUpdateDto: UpdateMoneyUpdateDto): Promise<MoneyUpdate> {
if (!this.findOne(id))
throw new NotFoundException(`Aucune modification de solde n'existe avec l'identifiant ${id}`)
return await this.prisma.moneyUpdate.update({ return await this.prisma.moneyUpdate.update({
where: { id }, where: { id },
data: updateMoneyUpdateDto, data: updateMoneyUpdateDto,
@ -46,6 +48,8 @@ export class MoneyUpdatesService {
} }
async remove(id: number): Promise<MoneyUpdate> { async remove(id: number): Promise<MoneyUpdate> {
if (!this.findOne(id))
throw new NotFoundException(`Aucune modification de solde n'existe avec l'identifiant ${id}`)
return await this.prisma.moneyUpdate.delete({ return await this.prisma.moneyUpdate.delete({
where: { id }, where: { id },
}) })

View File

@ -1,6 +1,6 @@
import { Body, Controller, Get, HttpCode, NotFoundException, Param, ParseIntPipe, Patch, Query, Req, UseGuards } from '@nestjs/common' import { Body, Controller, Get, HttpCode, NotFoundException, Param, ParseIntPipe, Patch, Query, Req, UseGuards } from '@nestjs/common'
import { PlayersService } from './players.service' import { PlayersService } from './players.service'
import { ApiBadRequestResponse, ApiBearerAuth, ApiNoContentResponse, ApiNotFoundResponse, ApiOkResponse, ApiUnauthorizedResponse } from '@nestjs/swagger' import { ApiBearerAuth, ApiNoContentResponse } from '@nestjs/swagger'
import { PlayerEntity } from './entities/player.entity' import { PlayerEntity } from './entities/player.entity'
import { AuthenticatedRequest, JwtAuthGuard } from 'src/auth/jwt-auth.guard' import { AuthenticatedRequest, JwtAuthGuard } from 'src/auth/jwt-auth.guard'
import { UpdatePasswordDto } from './dto/player_password.dto' import { UpdatePasswordDto } from './dto/player_password.dto'
@ -12,37 +12,48 @@ import { PaginateOutputDto } from 'src/common/dto/pagination-output.dto'
export class PlayersController { export class PlayersController {
constructor(private readonly playersService: PlayersService) {} constructor(private readonly playersService: PlayersService) {}
/**
* Récupération de toustes les joueurses
*
* @throws {401} Non authentifiée
*/
@Get() @Get()
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponsePaginated(PlayerEntity) @ApiOkResponsePaginated(PlayerEntity)
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
async findAll(@Query() queryPagination?: QueryPaginationDto): Promise<PaginateOutputDto<PlayerEntity>> { async findAll(@Query() queryPagination?: QueryPaginationDto): Promise<PaginateOutputDto<PlayerEntity>> {
const [players, total] = await this.playersService.findAll(queryPagination) const [players, total] = await this.playersService.findAll(queryPagination)
return paginateOutput<PlayerEntity>(players.map(player => new PlayerEntity(player)), total, queryPagination) return paginateOutput<PlayerEntity>(players.map(player => new PlayerEntity(player)), total, queryPagination)
} }
/**
* Récupération d'une joueurse par son identifiant
*
* @throws {401} Non authentifiée
* @throws {404} Joueurse non trouvée
*/
@Get(':id') @Get(':id')
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponse({ type: PlayerEntity }) async findOne(@Param('id', ParseIntPipe) id: number): Promise<PlayerEntity> {
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
@ApiNotFoundResponse({ description: "Joueur⋅se non trouvé⋅e" })
async findOne(@Param('id', ParseIntPipe) id: number) {
const player = await this.playersService.findOne(id) const player = await this.playersService.findOne(id)
if (!player) if (!player)
throw new NotFoundException(`Læ joueur⋅se avec l'identifiant ${id} n'existe pas`) throw new NotFoundException(`Læ joueur⋅se avec l'identifiant ${id} n'existe pas`)
return new PlayerEntity(player) return new PlayerEntity(player)
} }
/**
* Modification du mot de passe
*
* @throws {400} Mot de passe invalide
* @throws {401} Non authentifiée
*/
@Patch('/update-password') @Patch('/update-password')
@HttpCode(204) @HttpCode(204)
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiNoContentResponse({description: "Le mot de passe a bien été modifié."}) @ApiNoContentResponse({ description: "Le mot de passe a bien été modifié." })
@ApiBadRequestResponse({description: "Erreur dans la saisie du nouveau mot de passe."}) async updatePassword(@Req() request: AuthenticatedRequest, @Body() body: UpdatePasswordDto): Promise<void> {
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
async updatePassword(@Req() request: AuthenticatedRequest, @Body() body: UpdatePasswordDto) {
await this.playersService.updatePassword(request.user, body) await this.playersService.updatePassword(request.user, body)
} }
} }

View File

@ -1,10 +1,10 @@
import { Controller, Get, Post, Body, Patch, Param, Delete, HttpCode, UseGuards, Query, ParseIntPipe, NotFoundException, Req } from '@nestjs/common' import { Controller, Get, Post, Body, Patch, Param, Delete, HttpCode, UseGuards, Query, NotFoundException, Req } from '@nestjs/common'
import { TrainsService } from './trains.service' import { TrainsService } from './trains.service'
import { CreateTrainDto } from './dto/create-train.dto' import { CreateTrainDto } from './dto/create-train.dto'
import { UpdateTrainDto } from './dto/update-train.dto' import { UpdateTrainDto } from './dto/update-train.dto'
import { TrainEntity } from './entities/train.entity' import { TrainEntity } from './entities/train.entity'
import { AuthenticatedRequest, JwtAuthGuard } from 'src/auth/jwt-auth.guard' import { AuthenticatedRequest, JwtAuthGuard } from 'src/auth/jwt-auth.guard'
import { ApiBearerAuth, ApiCreatedResponse, ApiNotFoundResponse, ApiOkResponse, ApiUnauthorizedResponse, ApiUnprocessableEntityResponse } from '@nestjs/swagger' import { ApiBearerAuth, ApiCreatedResponse, ApiNoContentResponse, ApiUnauthorizedResponse } from '@nestjs/swagger'
import { ApiOkResponsePaginated, paginateOutput } from 'src/common/utils/pagination.utils' import { ApiOkResponsePaginated, paginateOutput } from 'src/common/utils/pagination.utils'
import { QueryPaginationDto } from 'src/common/dto/pagination-query.dto' import { QueryPaginationDto } from 'src/common/dto/pagination-query.dto'
import { PaginateOutputDto } from 'src/common/dto/pagination-output.dto' import { PaginateOutputDto } from 'src/common/dto/pagination-output.dto'
@ -15,33 +15,46 @@ import { PlayerFilterDto } from 'src/common/dto/player_filter.dto'
export class TrainsController { export class TrainsController {
constructor(private readonly trainsService: TrainsService) {} constructor(private readonly trainsService: TrainsService) {}
/**
* Création d'un trajet en train manuellement
*
* @throws {400} Erreurs dans le formulaire de création
* @throws {401} Non authentifiée
*/
@Post() @Post()
@HttpCode(201) @HttpCode(201)
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiCreatedResponse({ type: TrainEntity, description: "Objet créé avec succès" }) @ApiCreatedResponse({ type: TrainEntity, description: "Trajet en train créé avec succès" })
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" }) @ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
async create(@Body() createTrainDto: CreateTrainDto): Promise<TrainEntity> { async create(@Body() createTrainDto: CreateTrainDto): Promise<TrainEntity> {
const train = await this.trainsService.create(createTrainDto) const train = await this.trainsService.create(createTrainDto)
return new TrainEntity(train) return new TrainEntity(train)
} }
/**
* Recherche de trajets en train
*
* @throws {401} Non authentifiée
*/
@Get() @Get()
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponsePaginated(TrainEntity) @ApiOkResponsePaginated(TrainEntity)
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
async findAll(@Query() queryPagination: QueryPaginationDto, @Query() playerFilter: PlayerFilterDto): Promise<PaginateOutputDto<TrainEntity>> { async findAll(@Query() queryPagination: QueryPaginationDto, @Query() playerFilter: PlayerFilterDto): Promise<PaginateOutputDto<TrainEntity>> {
const [trains, total] = await this.trainsService.findAll(queryPagination, playerFilter) const [trains, total] = await this.trainsService.findAll(queryPagination, playerFilter)
return paginateOutput<TrainEntity>(trains.map(train => new TrainEntity(train)), total, queryPagination) return paginateOutput<TrainEntity>(trains.map(train => new TrainEntity(train)), total, queryPagination)
} }
/**
* Recherche d'un trajet en train
*
* @throws {401} Non authentifiée
* @throws {404} Trajet en train non trouvé
*/
@Get(':id') @Get(':id')
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponse({ type: TrainEntity })
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
@ApiNotFoundResponse({ description: "Objet non trouvé" })
async findOne(@Param('id') id: string): Promise<TrainEntity> { async findOne(@Param('id') id: string): Promise<TrainEntity> {
const train = await this.trainsService.findOne(id) const train = await this.trainsService.findOne(id)
if (!train) if (!train)
@ -49,34 +62,45 @@ export class TrainsController {
return new TrainEntity(train) return new TrainEntity(train)
} }
/**
* Modification d'un trajet en train manuellement
*
* @throws {400} Erreurs dans le formulaire de création
* @throws {401} Non authentifiée
* @throws {404} Trajet en train non trouvé
*/
@Patch(':id') @Patch(':id')
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponse({ type: TrainEntity })
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
@ApiNotFoundResponse({ description: "Objet non trouvé" })
async update(@Param('id') id: string, @Body() updateTrainDto: UpdateTrainDto) { async update(@Param('id') id: string, @Body() updateTrainDto: UpdateTrainDto) {
return await this.trainsService.update(id, updateTrainDto) return await this.trainsService.update(id, updateTrainDto)
} }
/**
* Suppression d'un trajet en train
*
* @throws {401} Non authentifiée
* @throws {404} Trajet en train non trouvé
*/
@Delete(':id') @Delete(':id')
@HttpCode(204) @HttpCode(204)
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiOkResponse({ type: TrainEntity }) @ApiNoContentResponse({ description: "Le trajet en train a bien été supprimé" })
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
@ApiNotFoundResponse({ description: "Objet non trouvé" })
async remove(@Param('id') id: string) { async remove(@Param('id') id: string) {
await this.trainsService.remove(id) await this.trainsService.remove(id)
} }
/**
* Importation d'un trajet en train à partir de Rail Planner
*
* @throws {401} Non authentifiée
* @throws {422} Le voyage Interrail à importer contient plusieurs trajets ou plusieurs trains
*/
@Post("/import") @Post("/import")
@HttpCode(201) @HttpCode(201)
@UseGuards(JwtAuthGuard) @UseGuards(JwtAuthGuard)
@ApiBearerAuth() @ApiBearerAuth()
@ApiCreatedResponse({ type: TrainEntity, description: "Train importé avec succès" })
@ApiUnauthorizedResponse({ description: "Non authentifié⋅e" })
@ApiUnprocessableEntityResponse({ description: "Le voyage Interrail à importer contient plusieurs trajets ou plusieurs trains" })
async import(@Req() request: AuthenticatedRequest, @Body() importTrainDto: ImportTrainDto): Promise<TrainEntity> { async import(@Req() request: AuthenticatedRequest, @Body() importTrainDto: ImportTrainDto): Promise<TrainEntity> {
const train = await this.trainsService.import(request.user, importTrainDto) const train = await this.trainsService.import(request.user, importTrainDto)
return new TrainEntity(train) return new TrainEntity(train)

View File

@ -1,4 +1,4 @@
import { Injectable, UnprocessableEntityException } from '@nestjs/common' import { Injectable, NotFoundException, UnprocessableEntityException } from '@nestjs/common'
import { CreateTrainDto } from './dto/create-train.dto' import { CreateTrainDto } from './dto/create-train.dto'
import { UpdateTrainDto } from './dto/update-train.dto' import { UpdateTrainDto } from './dto/update-train.dto'
import { PrismaService } from 'src/prisma/prisma.service' import { PrismaService } from 'src/prisma/prisma.service'
@ -37,6 +37,8 @@ export class TrainsService {
} }
async update(id: string, updateTrainDto: UpdateTrainDto): Promise<TrainTrip> { async update(id: string, updateTrainDto: UpdateTrainDto): Promise<TrainTrip> {
if (!this.findOne(id))
throw new NotFoundException(`Le train à modifier n'existe pas avec l'identifiant ${id}`)
return await this.prisma.trainTrip.update({ return await this.prisma.trainTrip.update({
where: { id }, where: { id },
data: updateTrainDto, data: updateTrainDto,
@ -44,6 +46,8 @@ export class TrainsService {
} }
async remove(id: string): Promise<TrainTrip> { async remove(id: string): Promise<TrainTrip> {
if (!this.findOne(id))
throw new NotFoundException(`Le train à supprimer n'existe pas avec l'identifiant ${id}`)
return await this.prisma.trainTrip.delete({ return await this.prisma.trainTrip.delete({
where: { id }, where: { id },
}) })