import { Body, Controller, Delete, Example, Get, Patch, Path, Post, Request, Route, Security, Tags, } from "tsoa"; import { AppDataSource } from "../database/data-source"; import { CreateProfileEmployeeInsignia, ProfileInsignia, UpdateProfileInsignia, } from "../entities/ProfileInsignia"; import HttpSuccess from "../interfaces/http-success"; import HttpStatus from "../interfaces/http-status"; import HttpError from "../interfaces/http-error"; import { ProfileInsigniaHistory } from "../entities/ProfileInsigniaHistory"; import { RequestWithUser } from "../middlewares/user"; import { ProfileEmployee } from "../entities/ProfileEmployee"; import { Insignia } from "../entities/Insignia"; import permission from "../interfaces/permission"; @Route("api/v1/org/profile-employee/insignia") @Tags("ProfileEmployeeInsignia") @Security("bearerAuth") export class ProfileInsigniaEmployeeController extends Controller { private profileEmployeeRepo = AppDataSource.getRepository(ProfileEmployee); private insigniaRepo = AppDataSource.getRepository(ProfileInsignia); private insigniaHistoryRepo = AppDataSource.getRepository(ProfileInsigniaHistory); private insigniaMetaRepo = AppDataSource.getRepository(Insignia); @Get("user") public async getInsigniaUser(@Request() request: { user: Record }) { const profile = await this.profileEmployeeRepo.findOneBy({ keycloak: request.user.sub }); if (!profile) { throw new HttpError(HttpStatus.BAD_REQUEST, "ไม่พบ profile ดังกล่าว"); } const record = await this.insigniaRepo.find({ relations: { insignia: { insigniaType: true, }, }, where: { profileEmployeeId: profile.id }, }); return new HttpSuccess(record); } @Get("{profileEmployeeId}") @Example({ status: 200, message: "สำเร็จ", result: [ { id: "c9d4dd52-25f5-491a-852d-28bfe00d66cb", createdAt: "2024-03-12T03:05:09.393Z", createdUserId: "59134ef9-9e62-41d0-aac5-339be727f2b0", lastUpdatedAt: "2024-03-12T03:05:09.393Z", lastUpdateUserId: "59134ef9-9e62-41d0-aac5-339be727f2b0", createdFullName: "สาวิตรี ศรีสมัย", lastUpdateFullName: "สาวิตรี ศรีสมัย", profileEmployeeId: "1526d9d3-d8b1-43ab-81b5-a84dfbe99201", year: 0, no: "string", volume: "string", section: "string", page: "string", receiveDate: "2024-03-12T10:05:02.000Z", insigniaId: "string", insigniaType: "string", dateAnnounce: "2024-03-12T10:05:02.000Z", issue: "string", volumeNo: "string", refCommandDate: "2024-03-12T10:05:02.000Z", refCommandNo: "string", note: "string", }, ], }) public async getInsignia(@Path() profileEmployeeId: string, @Request() req: RequestWithUser) { await new permission().PermissionOrgUserList(req, "SYS_REGISTRY_EMP", profileEmployeeId); const record = await this.insigniaRepo.find({ relations: { insignia: { insigniaType: true, }, }, where: { profileEmployeeId }, }); return new HttpSuccess(record); } @Get("history/{InsigniaId}") @Example({ status: 200, message: "สำเร็จ", result: [ { id: "c363d13c-88bd-4954-adf5-70d3f5ca9c30", createdAt: "2024-03-12T03:06:31.062Z", createdUserId: "00000000-0000-0000-0000-000000000000", lastUpdatedAt: "2024-03-12T03:06:31.062Z", lastUpdateUserId: "00000000-0000-0000-0000-000000000000", createdFullName: "string", lastUpdateFullName: "สาวิตรี ศรีสมัย", year: 0, no: "no", volume: "volume", section: "section", page: "page", receiveDate: "2024-03-12T10:05:44.000Z", insigniaId: "insigniaId", insigniaType: "insigniaType", dateAnnounce: "2024-03-12T10:05:44.000Z", issue: "string", volumeNo: "volumeNo", refCommandDate: "2024-03-12T10:05:44.000Z", refCommandNo: "refCommandNo", note: "string", profileInsigniaId: "c9d4dd52-25f5-491a-852d-28bfe00d66cb", }, { id: "c9d4dd52-25f5-491a-852d-28bfe00d66cb", createdAt: "2024-03-12T03:05:09.393Z", createdUserId: "59134ef9-9e62-41d0-aac5-339be727f2b0", lastUpdatedAt: "2024-03-12T03:09:04.905Z", lastUpdateUserId: "59134ef9-9e62-41d0-aac5-339be727f2b0", createdFullName: "สาวิตรี ศรีสมัย", lastUpdateFullName: "สาวิตรี ศรีสมัย", year: 0, no: "string", volume: "string", section: "string", page: "string", receiveDate: "2024-03-12T10:05:02.000Z", insigniaId: "string", insigniaType: "string", dateAnnounce: "2024-03-12T10:05:02.000Z", issue: "string", volumeNo: "string", refCommandDate: "2024-03-12T10:05:02.000Z", refCommandNo: "string", note: "string", profileInsigniaId: "c9d4dd52-25f5-491a-852d-28bfe00d66cb", }, ], }) public async getInsigniaHistory(@Path() InsigniaId: string, @Request() req: RequestWithUser) { const _record = await this.insigniaRepo.findOneBy({ id: InsigniaId }); if (_record) { await new permission().PermissionOrgUserList(req, "SYS_REGISTRY_EMP", _record.profileEmployeeId); } const record = await this.insigniaHistoryRepo.find({ relations: { insignia: { insigniaType: true, }, }, where: { profileInsigniaId: InsigniaId, }, }); return new HttpSuccess(record); } @Post() public async newInsignia( @Request() req: RequestWithUser, @Body() body: CreateProfileEmployeeInsignia, ) { if (!body.profileEmployeeId) { throw new HttpError(HttpStatus.BAD_REQUEST, "กรุณากรอก profileEmployeeId"); } const profile = await this.profileEmployeeRepo.findOneBy({ id: body.profileEmployeeId }); if (!profile) { throw new HttpError(HttpStatus.BAD_REQUEST, "ไม่พบ profile ดังกล่าว"); } await new permission().PermissionOrgUserUpdate(req, "SYS_REGISTRY_EMP", profile.id) const insignia = await this.insigniaMetaRepo.findOne({ where: { id: body.insigniaId }, }); if (!insignia) { throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูลเครื่องราชฯ นี้"); } const data = new ProfileInsignia(); const meta = { createdUserId: req.user.sub, createdFullName: req.user.name, lastUpdateUserId: req.user.sub, lastUpdateFullName: req.user.name, }; Object.assign(data, { ...body, ...meta }); const history = new ProfileInsigniaHistory(); Object.assign(history, { ...data, id: undefined }); await this.insigniaRepo.save(data); history.profileInsigniaId = data.id; await this.insigniaHistoryRepo.save(history); return new HttpSuccess(); } @Patch("{insigniaId}") public async editInsignia( @Request() req: RequestWithUser, @Body() body: UpdateProfileInsignia, @Path() insigniaId: string, ) { const record = await this.insigniaRepo.findOneBy({ id: insigniaId }); if (!record) throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล"); await new permission().PermissionOrgUserUpdate(req, "SYS_REGISTRY_EMP", record.profileEmployeeId) const insignia = await this.insigniaMetaRepo.findOne({ where: { id: body.insigniaId }, }); if (!insignia) { throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูลเครื่องราชฯ นี้"); } const history = new ProfileInsigniaHistory(); Object.assign(record, body); Object.assign(history, body); history.profileInsigniaId = insigniaId; record.lastUpdateUserId = req.user.sub; record.lastUpdateFullName = req.user.name; history.lastUpdateUserId = req.user.sub; history.lastUpdateFullName = req.user.name; history.createdUserId = req.user.sub; history.createdFullName = req.user.name; await Promise.all([this.insigniaRepo.save(record), this.insigniaHistoryRepo.save(history)]); return new HttpSuccess(); } @Delete("{insigniaId}") public async deleteInsignia(@Path() insigniaId: string, @Request() req: RequestWithUser) { const _record = await this.insigniaRepo.findOneBy({ id: insigniaId }); if (_record) { await new permission().PermissionOrgUserDelete(req, "SYS_REGISTRY_EMP", _record.profileEmployeeId); } await this.insigniaHistoryRepo.delete({ profileInsigniaId: insigniaId, }); const result = await this.insigniaRepo.delete({ id: insigniaId }); if (result.affected == undefined || result.affected <= 0) { throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล"); } return new HttpSuccess(); } }