import { Controller, Post, Delete, Route, Security, Tags, Body, Path, Request, Get, Patch, } from "tsoa"; import HttpSuccess from "../interfaces/http-success"; import HttpError from "../interfaces/http-error"; import HttpStatus from "../interfaces/http-status"; import { ProfileEducation, CreateProfileEducation, UpdateProfileEducation, } from "../entities/ProfileEducation"; import { RequestWithUser } from "../middlewares/user"; import { Profile } from "../entities/Profile"; import { ProfileEducationHistory } from "../entities/ProfileEducationHistory"; import { AppDataSource } from "../database/data-source"; import permission from "../interfaces/permission"; @Route("api/v1/org/profile/educations") @Tags("ProfileEducations") @Security("bearerAuth") export class ProfileEducationsController extends Controller { private profileRepo = AppDataSource.getRepository(Profile); private profileEducationRepo = AppDataSource.getRepository(ProfileEducation); private profileEducationHistoryRepo = AppDataSource.getRepository(ProfileEducationHistory); @Get("user") public async detailProfileEducationUser(@Request() request: { user: Record }) { const profile = await this.profileRepo.findOneBy({ keycloak: request.user.sub }); if (!profile) { throw new HttpError(HttpStatus.BAD_REQUEST, "ไม่พบ profile ดังกล่าว"); } const getProfileEducation = await this.profileEducationRepo.find({ where: { profileId: profile.id }, order: { createdAt: "ASC" }, }); if (!getProfileEducation) { throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล"); } return new HttpSuccess(getProfileEducation); } @Get("{profileId}") public async detailProfileEducation(@Path() profileId: string, @Request() req: RequestWithUser) { await new permission().PermissionOrgUserGet(req, "SYS_REGISTRY_OFFICER", profileId); const getProfileEducation = await this.profileEducationRepo.find({ where: { profileId: profileId }, order: { createdAt: "ASC" }, }); if (!getProfileEducation) { throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล"); } return new HttpSuccess(getProfileEducation); } @Get("history/{educationId}") public async getProfileEducationHistory( @Path() educationId: string, @Request() req: RequestWithUser, ) { // const _record = await this.profileEducationRepo.findOneBy({ id: educationId }); // if (_record) { // await new permission().PermissionOrgUserGet(req, "SYS_REGISTRY_OFFICER", _record.profileId); // } const record = await this.profileEducationHistoryRepo.find({ where: { profileEducationId: educationId, }, order: { createdAt: "DESC" }, }); if (!record) { throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล"); } return new HttpSuccess(record); } @Post() public async newProfileEducation( @Request() req: RequestWithUser, @Body() body: CreateProfileEducation, ) { if (!body.profileId) { throw new HttpError(HttpStatus.BAD_REQUEST, "กรุณากรอก profileId"); } const profile = await this.profileRepo.findOneBy({ id: body.profileId }); if (!profile) { throw new HttpError(HttpStatus.BAD_REQUEST, "ไม่พบ profile ดังกล่าว"); } await new permission().PermissionOrgUserUpdate(req, "SYS_REGISTRY_OFFICER", profile.id); const data = new ProfileEducation(); 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 ProfileEducationHistory(); Object.assign(history, { ...data, id: undefined }); await this.profileEducationRepo.save(data); history.profileEducationId = data.id; await this.profileEducationHistoryRepo.save(history); return new HttpSuccess(); } @Patch("{educationId}") public async editProfileEducation( @Body() body: UpdateProfileEducation, @Request() req: RequestWithUser, @Path() educationId: string, ) { const record = await this.profileEducationRepo.findOneBy({ id: educationId }); if (!record) throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล"); await new permission().PermissionOrgUserUpdate(req, "SYS_REGISTRY_OFFICER", record.profileId); const history = new ProfileEducationHistory(); Object.assign(record, body); Object.assign(history, { ...record, id: undefined }); history.profileEducationId = educationId; 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.profileEducationRepo.save(record), this.profileEducationHistoryRepo.save(history), ]); return new HttpSuccess(); } @Delete("{educationId}") public async deleteProfileEducation( @Path() educationId: string, @Request() req: RequestWithUser, ) { const record = await this.profileEducationRepo.findOneBy({ id: educationId }); if (record) { await new permission().PermissionOrgUserDelete(req, "SYS_REGISTRY_OFFICER", record.profileId); } await this.profileEducationHistoryRepo.delete({ profileEducationId: educationId, }); const result = await this.profileEducationRepo.delete({ id: educationId }); if (result.affected == undefined || result.affected <= 0) throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล"); return new HttpSuccess(); } }