import { Body, Controller, Delete, Example, Get, Patch, Path, Post, Request, Route, Security, Tags, } from "tsoa"; import { AppDataSource } from "../database/data-source"; import HttpSuccess from "../interfaces/http-success"; import HttpStatus from "../interfaces/http-status"; import HttpError from "../interfaces/http-error"; import { ProfileNopaidHistory } from "../entities/ProfileNopaidHistory"; import { RequestWithUser } from "../middlewares/user"; import { ProfileEmployee } from "../entities/ProfileEmployee"; import { CreateProfileEmployeeNopaid, ProfileNopaid, UpdateProfileNopaid, } from "../entities/ProfileNopaid"; import permission from "../interfaces/permission"; @Route("api/v1/org/profile-employee/nopaid") @Tags("ProfileNopaid") @Security("bearerAuth") export class ProfileNopaidEmployeeController extends Controller { private profileRepository = AppDataSource.getRepository(ProfileEmployee); private nopaidRepository = AppDataSource.getRepository(ProfileNopaid); private nopaidHistoryRepository = AppDataSource.getRepository(ProfileNopaidHistory); @Get("user") public async getNopaidUser(@Request() request: { user: Record }) { const profile = await this.profileRepository.findOneBy({ keycloak: request.user.sub }); if (!profile) { throw new HttpError(HttpStatus.BAD_REQUEST, "ไม่พบ profile ดังกล่าว"); } const lists = await this.nopaidRepository.find({ where: { profileEmployeeId: profile.id }, }); return new HttpSuccess(lists); } @Get("{profileId}") public async getNopaid(@Path() profileId: string) { const lists = await this.nopaidRepository.find({ where: { profileEmployeeId: profileId }, }); return new HttpSuccess(lists); } @Get("history/{nopaidId}") public async nopaidHistory(@Path() nopaidId: string) { const record = await this.nopaidHistoryRepository.find({ where: { profileNopaidId: nopaidId }, order: { createdAt: "DESC" }, }); return new HttpSuccess(record); } @Post() public async newNopaid( @Request() req: RequestWithUser, @Body() body: CreateProfileEmployeeNopaid, ) { await new permission().PermissionCreate(req,"SYS_REGISTRY_EMP"); if (!body.profileEmployeeId) { throw new HttpError(HttpStatus.BAD_REQUEST, "กรุณากรอก profileId"); } const profile = await this.profileRepository.findOneBy({ id: body.profileEmployeeId }); if (!profile) { throw new HttpError(HttpStatus.BAD_REQUEST, "ไม่พบ profile ดังกล่าว"); } const data = new ProfileNopaid(); const meta = { createdUserId: req.user.sub, createdFullName: req.user.name, lastUpdateUserId: req.user.sub, lastUpdateFullName: req.user.name, }; Object.assign(data, { ...body, ...meta }); await this.nopaidRepository.save(data); return new HttpSuccess(); } @Patch("{nopaidId}") public async editNopaid( @Request() req: RequestWithUser, @Body() body: UpdateProfileNopaid, @Path() nopaidId: string, ) { await new permission().PermissionUpdate(req,"SYS_REGISTRY_EMP"); const record = await this.nopaidRepository.findOneBy({ id: nopaidId }); if (!record) throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล"); const history = new ProfileNopaidHistory(); Object.assign(history, { ...record, id: undefined }); Object.assign(record, body); history.profileNopaidId = nopaidId; record.lastUpdateFullName = req.user.name; history.lastUpdateFullName = req.user.name; await Promise.all([ this.nopaidRepository.save(record), this.nopaidHistoryRepository.save(history), ]); return new HttpSuccess(); } @Delete("{nopaidId}") public async deleteNopaid(@Path() nopaidId: string, @Request() req: RequestWithUser) { await new permission().PermissionDelete(req,"SYS_REGISTRY_EMP"); await this.nopaidHistoryRepository.delete({ profileNopaidId: nopaidId, }); const result = await this.nopaidRepository.delete({ id: nopaidId }); if (result.affected == undefined || result.affected <= 0) { throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล"); } return new HttpSuccess(); } }