311 lines
10 KiB
TypeScript
311 lines
10 KiB
TypeScript
import { Body, Controller, Delete, Get, Param, Post, Put, Res } from '@nestjs/common';
|
|
import { CastService } from './cast.service';
|
|
import { Response } from 'express';
|
|
import { GenericResponse } from '../common/GenericResponse.model';
|
|
import Cast from './cast.entity';
|
|
import { ApiTags, ApiOperation, ApiResponse, ApiParam, ApiBody } from '@nestjs/swagger';
|
|
|
|
@ApiTags('cast')
|
|
@Controller('cast')
|
|
export class CastController {
|
|
constructor(private castService: CastService) {}
|
|
|
|
@Get("/all")
|
|
@ApiOperation({ summary: 'Get all casts' })
|
|
@ApiResponse({
|
|
status: 200,
|
|
description: 'Successfully retrieved all casts',
|
|
})
|
|
@ApiResponse({
|
|
status: 404,
|
|
description: 'No casts found',
|
|
example: {
|
|
"notification": {
|
|
"exception": true,
|
|
"exceptionSeverity": "HIGH",
|
|
"exceptionMessage": "ERR.NOT_FOUND",
|
|
"stackTrace": "No casts found"
|
|
},
|
|
"data": null
|
|
}
|
|
})
|
|
async getAllCasts(@Res() res: Response) {
|
|
const response = await this.castService.findAll() || [];
|
|
if (!response) {
|
|
const errorResponse = new GenericResponse({
|
|
exception: true,
|
|
exceptionSeverity: 'HIGH',
|
|
exceptionMessage: 'ERR.NOT_FOUND',
|
|
stackTrace: 'No casts found'
|
|
}, null);
|
|
return res.status(404).send(errorResponse);
|
|
}
|
|
const httpResponse = new GenericResponse(null, response);
|
|
res.send(httpResponse);
|
|
}
|
|
|
|
@Get(':id')
|
|
@ApiOperation({ summary: 'Get cast by ID' })
|
|
@ApiParam({ name: 'id', type: Number, description: 'Cast ID' })
|
|
@ApiResponse({
|
|
status: 400,
|
|
description: 'ID is required',
|
|
example: {
|
|
"notification": {
|
|
"exception": true,
|
|
"exceptionSeverity": "HIGH",
|
|
"exceptionMessage": "ERR.NO_ID_REQ",
|
|
"stackTrace": "Request"
|
|
},
|
|
"data": null
|
|
}
|
|
})
|
|
@ApiResponse({
|
|
status: 404,
|
|
description: 'Cast not found',
|
|
example: {
|
|
"notification": {
|
|
"exception": true,
|
|
"exceptionSeverity": "HIGH",
|
|
"exceptionMessage": "ERR.NOT_FOUND",
|
|
"stackTrace": "Cast not found"
|
|
},
|
|
"data": null
|
|
}
|
|
})
|
|
@ApiResponse({
|
|
status: 200,
|
|
description: 'Successfully retrieved cast by ID',
|
|
})
|
|
async findById(@Param('id') id: number, @Res() res: Response) {
|
|
if (!id) {
|
|
const response = new GenericResponse({
|
|
exception: true,
|
|
exceptionSeverity: 'HIGH',
|
|
exceptionMessage: 'ERR.NO_ID_REQ',
|
|
stackTrace: 'Request'
|
|
}, null);
|
|
return res.status(400).send(response);
|
|
}
|
|
const response = await this.castService.findByPk(id) || {};
|
|
if (!response) {
|
|
const errorResponse = new GenericResponse({
|
|
exception: true,
|
|
exceptionSeverity: 'HIGH',
|
|
exceptionMessage: 'ERR.NOT_FOUND',
|
|
stackTrace: `Cast with ID ${id} not found`
|
|
}, null);
|
|
return res.status(404).send(errorResponse);
|
|
}
|
|
const httpResponse = new GenericResponse(null, response);
|
|
res.status(200).send(httpResponse);
|
|
}
|
|
|
|
@Post('/filter')
|
|
@ApiOperation({ summary: 'Filter casts based on criteria' })
|
|
@ApiBody({ type: Cast, description: 'Filter criteria for casts' })
|
|
@ApiResponse({
|
|
status: 400,
|
|
description: 'Invalid filter criteria',
|
|
example: {
|
|
"notification": {
|
|
"exception": true,
|
|
"exceptionSeverity": "HIGH",
|
|
"exceptionMessage": "ERR.INVALID_CRITERIA",
|
|
"stackTrace": "Request"
|
|
},
|
|
"data": null
|
|
}
|
|
})
|
|
@ApiResponse({
|
|
status: 404,
|
|
description: 'No casts found based on filter criteria',
|
|
example: {
|
|
"notification": {
|
|
"exception": true,
|
|
"exceptionSeverity": "HIGH",
|
|
"exceptionMessage": "ERR.NOT_FOUND",
|
|
"stackTrace": "No casts found based on the filter criteria"
|
|
},
|
|
"data": null
|
|
}
|
|
})
|
|
@ApiResponse({
|
|
status: 200,
|
|
description: 'Successfully filtered casts',
|
|
})
|
|
async filter(@Body() cast: Cast, @Res() res: Response) {
|
|
if (!cast) {
|
|
const response = new GenericResponse({
|
|
exception: true,
|
|
exceptionSeverity: 'HIGH',
|
|
exceptionMessage: 'ERR.INVALID_CRITERIA',
|
|
stackTrace: 'Request'
|
|
}, null);
|
|
return res.status(400).send(response);
|
|
}
|
|
const response = await this.castService.filter(cast) || [];
|
|
if (!response) {
|
|
const errorResponse = new GenericResponse({
|
|
exception: true,
|
|
exceptionSeverity: 'HIGH',
|
|
exceptionMessage: 'ERR.NOT_FOUND',
|
|
stackTrace: 'No casts found based on the filter criteria'
|
|
}, null);
|
|
return res.status(404).send(errorResponse);
|
|
}
|
|
const httpResponse = new GenericResponse(null, response);
|
|
res.status(200).send(httpResponse);
|
|
}
|
|
|
|
@Post()
|
|
@ApiOperation({ summary: 'Insert a new cast' })
|
|
@ApiBody({ type: Cast, description: 'Cast data to insert' })
|
|
@ApiResponse({
|
|
status: 400,
|
|
description: 'Invalid cast data',
|
|
example: {
|
|
"notification": {
|
|
"exception": true,
|
|
"exceptionSeverity": "HIGH",
|
|
"exceptionMessage": "ERR.INVALID_DATA",
|
|
"stackTrace": "Request"
|
|
},
|
|
"data": null
|
|
}
|
|
})
|
|
@ApiResponse({
|
|
status: 201,
|
|
description: 'Successfully created a cast',
|
|
})
|
|
async insert(@Body() cast: Cast, @Res() res: Response) {
|
|
if (!cast) {
|
|
const response = new GenericResponse({
|
|
exception: true,
|
|
exceptionSeverity: 'HIGH',
|
|
exceptionMessage: 'ERR.INVALID_DATA',
|
|
stackTrace: 'Request'
|
|
}, null);
|
|
return res.status(400).send(response);
|
|
}
|
|
delete cast.id; // Ensure no ID is passed in the creation
|
|
const response = await this.castService.upsert(cast, true);
|
|
const httpResponse = new GenericResponse(null, response);
|
|
res.status(201).send(httpResponse);
|
|
}
|
|
|
|
@Put()
|
|
@ApiOperation({ summary: 'Update an existing cast' })
|
|
@ApiBody({ type: Cast, description: 'Cast data to update' })
|
|
@ApiResponse({
|
|
status: 400,
|
|
description: 'Invalid cast data or ID missing',
|
|
example: {
|
|
"notification": {
|
|
"exception": true,
|
|
"exceptionSeverity": "HIGH",
|
|
"exceptionMessage": "ERR.INVALID_DATA",
|
|
"stackTrace": "Request"
|
|
},
|
|
"data": null
|
|
}
|
|
})
|
|
@ApiResponse({
|
|
status: 404,
|
|
description: 'Cast not found',
|
|
example: {
|
|
"notification": {
|
|
"exception": true,
|
|
"exceptionSeverity": "HIGH",
|
|
"exceptionMessage": "ERR.NOT_FOUND",
|
|
"stackTrace": "Cast not found"
|
|
},
|
|
"data": null
|
|
}
|
|
})
|
|
@ApiResponse({
|
|
status: 200,
|
|
description: 'Successfully updated cast',
|
|
})
|
|
async update(@Body() cast: Cast, @Res() res: Response) {
|
|
if (!cast || !cast.id) {
|
|
const response = new GenericResponse({
|
|
exception: true,
|
|
exceptionSeverity: 'HIGH',
|
|
exceptionMessage: 'ERR.NO_ID_REQ',
|
|
stackTrace: 'Request'
|
|
}, null);
|
|
return res.status(400).send(response);
|
|
}
|
|
const response = await this.castService.upsert(cast, false);
|
|
if (!response) {
|
|
const errorResponse = new GenericResponse({
|
|
exception: true,
|
|
exceptionSeverity: 'HIGH',
|
|
exceptionMessage: 'ERR.NOT_FOUND',
|
|
stackTrace: `Cast with ID ${cast.id} not found`
|
|
}, null);
|
|
return res.status(404).send(errorResponse);
|
|
}
|
|
const httpResponse = new GenericResponse(null, response);
|
|
res.status(200).send(httpResponse);
|
|
}
|
|
|
|
@Delete(':id')
|
|
@ApiOperation({ summary: 'Delete a cast by ID' })
|
|
@ApiParam({ name: 'id', type: Number, description: 'Cast ID to delete' })
|
|
@ApiResponse({
|
|
status: 400,
|
|
description: 'ID parameter is required',
|
|
example: {
|
|
"notification": {
|
|
"exception": true,
|
|
"exceptionSeverity": "HIGH",
|
|
"exceptionMessage": "ERR.NO_ID_REQ",
|
|
"stackTrace": "Request"
|
|
},
|
|
"data": null
|
|
}
|
|
})
|
|
@ApiResponse({
|
|
status: 404,
|
|
description: 'Cast not found',
|
|
example: {
|
|
"notification": {
|
|
"exception": true,
|
|
"exceptionSeverity": "HIGH",
|
|
"exceptionMessage": "ERR.NOT_FOUND",
|
|
"stackTrace": "Cast not found"
|
|
},
|
|
"data": null
|
|
}
|
|
})
|
|
@ApiResponse({
|
|
status: 200,
|
|
description: 'Successfully deleted cast',
|
|
})
|
|
async deleteById(@Param('id') id: number, @Res() res: Response) {
|
|
if (!id) {
|
|
const response = new GenericResponse({
|
|
exception: true,
|
|
exceptionSeverity: 'HIGH',
|
|
exceptionMessage: 'ERR.NO_ID_REQ',
|
|
stackTrace: 'Request'
|
|
}, null);
|
|
return res.status(400).send(response);
|
|
}
|
|
const response = await this.castService.remove(id) || {};
|
|
if (!response) {
|
|
const errorResponse = new GenericResponse({
|
|
exception: true,
|
|
exceptionSeverity: 'HIGH',
|
|
exceptionMessage: 'ERR.NOT_FOUND',
|
|
stackTrace: `Cast with ID ${id} not found`
|
|
}, null);
|
|
return res.status(404).send(errorResponse);
|
|
}
|
|
const httpResponse = new GenericResponse(null, response);
|
|
res.status(200).send(httpResponse);
|
|
}
|
|
}
|