import { Body, Controller, Delete, 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 { ProfileDisciplineHistory } from "../entities/ProfileDisciplineHistory"; import { RequestWithUser } from "../middlewares/user"; import { CreateProfileEmployeeDiscipline, ProfileDiscipline, UpdateProfileDiscipline, } from "../entities/ProfileDiscipline"; import { ProfileEmployee } from "../entities/ProfileEmployee"; import permission from "../interfaces/permission"; import { setLogDataDiff } from "../interfaces/utils"; @Route("api/v1/org/profile-temp/discipline") @Tags("ProfileDisciplineEmployee") @Security("bearerAuth") export class ProfileDisciplineEmployeeTempController extends Controller { private profileRepository = AppDataSource.getRepository(ProfileEmployee); private disciplineRepository = AppDataSource.getRepository(ProfileDiscipline); private disciplineHistoryRepository = AppDataSource.getRepository(ProfileDisciplineHistory); @Get("user") public async getDisciplineUser(@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.disciplineRepository.find({ where: { profileEmployeeId: profile.id }, order: { createdAt: "ASC" }, }); return new HttpSuccess(lists); } @Get("{profileId}") public async getDiscipline(@Path() profileId: string, @Request() req: RequestWithUser) { let _workflow = await new permission().Workflow(req, profileId, "SYS_REGISTRY_TEMP"); if (_workflow == false) await new permission().PermissionGet(req, "SYS_REGISTRY_TEMP"); const lists = await this.disciplineRepository.find({ where: { profileEmployeeId: profileId }, order: { createdAt: "ASC" }, }); return new HttpSuccess(lists); } @Get("admin/{profileId}") public async getDisciplineAdmin(@Path() profileId: string, @Request() req: RequestWithUser) { let _workflow = await new permission().Workflow(req, profileId, "SYS_WAGE"); if (_workflow == false) await new permission().PermissionGet(req, "SYS_WAGE"); const lists = await this.disciplineRepository.find({ where: { profileEmployeeId: profileId }, order: { createdAt: "ASC" }, }); return new HttpSuccess(lists); } @Get("admin/history/{disciplineId}") public async disciplineAdminHistory( @Path() disciplineId: string, @Request() req: RequestWithUser, ) { let _workflow = await new permission().Workflow(req, disciplineId, "SYS_REGISTRY_TEMP"); if (_workflow == false) await new permission().PermissionGet(req, "SYS_REGISTRY_TEMP"); const record = await this.disciplineHistoryRepository.find({ where: { profileDisciplineId: disciplineId }, order: { createdAt: "DESC" }, }); return new HttpSuccess(record); } @Get("history/{disciplineId}") public async disciplineHistory(@Path() disciplineId: string) { const record = await this.disciplineHistoryRepository.find({ where: { profileDisciplineId: disciplineId }, order: { createdAt: "DESC" }, }); return new HttpSuccess(record); } @Post() public async newDiscipline( @Request() req: RequestWithUser, @Body() body: CreateProfileEmployeeDiscipline, ) { await new permission().PermissionUpdate(req, "SYS_REGISTRY_TEMP"); 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 before = null; const data = new ProfileDiscipline(); const meta = { createdUserId: req.user.sub, createdFullName: req.user.name, lastUpdateUserId: req.user.sub, lastUpdateFullName: req.user.name, createdAt: new Date(), lastUpdatedAt: new Date(), }; Object.assign(data, { ...body, ...meta }); const history = new ProfileDisciplineHistory(); Object.assign(history, { ...data, id: undefined }); await this.disciplineRepository.save(data, { data: req }); setLogDataDiff(req, { before, after: data }); history.profileDisciplineId = data.id; await this.disciplineHistoryRepository.save(history, { data: req }); //setLogDataDiff(req, { before, after: history }); return new HttpSuccess(); } @Patch("{disciplineId}") public async editDiscipline( @Request() req: RequestWithUser, @Body() body: UpdateProfileDiscipline, @Path() disciplineId: string, ) { await new permission().PermissionUpdate(req, "SYS_REGISTRY_TEMP"); const record = await this.disciplineRepository.findOneBy({ id: disciplineId }); if (!record) throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล"); const before = structuredClone(record); // const before_null = null; const history = new ProfileDisciplineHistory(); Object.assign(record, body); Object.assign(history, { ...record, id: undefined }); history.profileDisciplineId = disciplineId; record.lastUpdateUserId = req.user.sub; record.lastUpdateFullName = req.user.name; record.lastUpdatedAt = new Date(); history.lastUpdateUserId = req.user.sub; history.lastUpdateFullName = req.user.name; history.createdUserId = req.user.sub; history.createdFullName = req.user.name; history.createdAt = new Date(); history.lastUpdatedAt = new Date(); await Promise.all([ this.disciplineRepository.save(record, { data: req }), setLogDataDiff(req, { before, after: record }), this.disciplineHistoryRepository.save(history, { data: req }), // setLogDataDiff(req, { before: before_null, after: history }), ]); return new HttpSuccess(); } @Delete("{disciplineId}") public async deleteDiscipline(@Path() disciplineId: string, @Request() req: RequestWithUser) { await new permission().PermissionDelete(req, "SYS_REGISTRY_TEMP"); await this.disciplineHistoryRepository.delete({ profileDisciplineId: disciplineId, }); const result = await this.disciplineRepository.delete({ id: disciplineId }); if (result.affected == undefined || result.affected <= 0) { throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล"); } return new HttpSuccess(); } }