hrms-api-org/src/controllers/ProfileAssessmentsController.ts

210 lines
7 KiB
TypeScript
Raw Normal View History

2024-03-13 11:10:29 +07:00
import {
Controller,
Post,
Delete,
Route,
Security,
Tags,
Body,
Path,
Request,
Get,
Patch,
} from "tsoa";
import HttpError from "../interfaces/http-error";
import HttpStatus from "../interfaces/http-status";
import HttpSuccess from "../interfaces/http-success";
import { AppDataSource } from "../database/data-source";
import {
CreateProfileAssessment,
ProfileAssessment,
UpdateProfileAssessment,
} from "../entities/ProfileAssessment";
2024-03-13 11:10:29 +07:00
import { ProfileAssessmentHistory } from "../entities/ProfileAssessmentHistory";
import { Profile } from "../entities/Profile";
import { RequestWithUser } from "../middlewares/user";
import permission from "../interfaces/permission";
import { setLogDataDiff } from "../interfaces/utils";
2024-03-13 11:10:29 +07:00
@Route("api/v1/org/profile/assessments")
@Tags("ProfileAssessments")
@Security("bearerAuth")
export class ProfileAssessmentsController extends Controller {
private profileRepo = AppDataSource.getRepository(Profile);
private profileAssessmentsRepository = AppDataSource.getRepository(ProfileAssessment);
private profileAssessmentsHistoryRepository =
AppDataSource.getRepository(ProfileAssessmentHistory);
2024-05-23 16:44:37 +07:00
@Get("user")
public async detailProfileAssessmentsUser(@Request() request: { user: Record<string, any> }) {
const profile = await this.profileRepo.findOneBy({ keycloak: request.user.sub });
if (!profile) {
throw new HttpError(HttpStatus.BAD_REQUEST, "ไม่พบ profile ดังกล่าว");
}
const getProfileAssessments = await this.profileAssessmentsRepository.find({
where: { profileId: profile.id },
2024-08-30 18:02:34 +07:00
order: { createdAt: "ASC" },
2024-05-23 16:44:37 +07:00
});
if (!getProfileAssessments) {
throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
}
return new HttpSuccess(getProfileAssessments);
}
2024-03-13 11:10:29 +07:00
@Get("{profileId}")
public async detailProfileAssessments(
@Path() profileId: string,
@Request() req: RequestWithUser,
) {
await new permission().PermissionOrgUserGet(req, "SYS_REGISTRY_OFFICER", profileId);
2024-08-30 18:02:34 +07:00
const getProfileAssessments = await this.profileAssessmentsRepository.find({
where: { profileId: profileId },
order: { createdAt: "ASC" },
});
2024-03-13 11:10:29 +07:00
if (!getProfileAssessments) {
throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
}
return new HttpSuccess(getProfileAssessments);
}
@Get("admin/history/{assessmentId}")
public async getProfileAssessmentsAdminHistory(
@Path() assessmentId: string,
@Request() req: RequestWithUser,
) {
const _record = await this.profileAssessmentsRepository.findOne({
where: {
id: assessmentId,
},
});
if (_record) {
await new permission().PermissionOrgUserGet(req, "SYS_REGISTRY_OFFICER", _record.profileId);
}
2024-10-07 14:53:27 +07:00
const record = await this.profileAssessmentsHistoryRepository.find({
where: {
profileAssessmentId: assessmentId,
},
order: { createdAt: "DESC" },
});
if (!record) {
throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
}
return new HttpSuccess(record);
}
2024-03-13 11:10:29 +07:00
@Get("history/{assessmentId}")
2024-10-07 14:53:27 +07:00
public async getProfileAssessmentsHistory(@Path() assessmentId: string) {
2024-08-30 18:02:34 +07:00
const record = await this.profileAssessmentsHistoryRepository.find({
where: {
2024-08-30 18:02:34 +07:00
profileAssessmentId: assessmentId,
},
2024-08-30 18:02:34 +07:00
order: { createdAt: "DESC" },
2024-03-13 11:10:29 +07:00
});
if (!record) {
throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
}
return new HttpSuccess(record);
}
@Post()
public async profileAssessment(
@Request() req: RequestWithUser,
@Body() body: CreateProfileAssessment,
) {
if (!body.profileId) {
throw new HttpError(HttpStatus.BAD_REQUEST, "กรุณากรอก profileId");
}
2024-03-13 11:10:29 +07:00
const profile = await this.profileRepo.findOneBy({ id: body.profileId });
if (!profile) {
throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
}
await new permission().PermissionOrgUserCreate(req, "SYS_REGISTRY_OFFICER", profile.id);
const before = null;
2024-03-13 11:10:29 +07:00
const data = new ProfileAssessment();
const meta = {
createdUserId: req.user.sub,
createdFullName: req.user.name,
lastUpdateUserId: req.user.sub,
lastUpdateFullName: req.user.name,
2024-08-30 18:02:34 +07:00
createdAt: new Date(),
lastUpdatedAt: new Date(),
2024-03-13 11:10:29 +07:00
};
Object.assign(data, { ...body, ...meta });
const history = new ProfileAssessmentHistory();
2024-08-13 20:01:53 +07:00
Object.assign(history, { ...data, id: undefined });
2024-03-13 11:10:29 +07:00
await this.profileAssessmentsRepository.save(data, { data: req });
2024-10-07 14:53:27 +07:00
setLogDataDiff(req, { before, after: data });
2024-08-13 20:01:53 +07:00
history.profileAssessmentId = data.id;
await this.profileAssessmentsHistoryRepository.save(history, { data: req });
2024-10-07 14:53:27 +07:00
setLogDataDiff(req, { before, after: history });
2024-03-13 11:10:29 +07:00
2024-03-14 10:07:22 +07:00
return new HttpSuccess();
2024-03-13 11:10:29 +07:00
}
@Patch("{assessmentId}")
public async editProfileAssessment(
@Body() body: UpdateProfileAssessment,
2024-03-13 11:10:29 +07:00
@Request() req: RequestWithUser,
@Path() assessmentId: string,
) {
const record = await this.profileAssessmentsRepository.findOneBy({ id: assessmentId });
if (!record) throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
await new permission().PermissionOrgUserUpdate(req, "SYS_REGISTRY_OFFICER", record.profileId);
const before = structuredClone(record);
const before_null = null;
2024-03-13 11:10:29 +07:00
const history = new ProfileAssessmentHistory();
Object.assign(record, body);
2024-09-01 22:44:23 +07:00
Object.assign(history, { ...record, id: undefined });
2024-03-13 11:10:29 +07:00
history.profileAssessmentId = assessmentId;
record.lastUpdateUserId = req.user.sub;
2024-03-13 11:10:29 +07:00
record.lastUpdateFullName = req.user.name;
2024-08-30 18:02:34 +07:00
record.lastUpdatedAt = new Date();
history.lastUpdateUserId = req.user.sub;
history.lastUpdateFullName = req.user.name;
history.createdUserId = req.user.sub;
history.createdFullName = req.user.name;
2024-08-30 18:02:34 +07:00
history.createdAt = new Date();
history.lastUpdatedAt = new Date();
2024-03-13 11:10:29 +07:00
await Promise.all([
this.profileAssessmentsRepository.save(record, { data: req }),
setLogDataDiff(req, { before, after: record }),
this.profileAssessmentsHistoryRepository.save(history, { data: req }),
setLogDataDiff(req, { before, after: history }),
2024-03-13 11:10:29 +07:00
]);
2024-03-14 10:07:22 +07:00
return new HttpSuccess();
2024-03-13 11:10:29 +07:00
}
@Delete("{assessmentId}")
2024-08-13 10:25:58 +07:00
public async deleteProfileAssessment(
@Path() assessmentId: string,
@Request() req: RequestWithUser,
) {
const _record = await this.profileAssessmentsRepository.findOneBy({ id: assessmentId });
if (_record) {
await new permission().PermissionOrgUserDelete(
req,
"SYS_REGISTRY_OFFICER",
_record.profileId,
);
}
2024-03-13 11:10:29 +07:00
await this.profileAssessmentsHistoryRepository.delete({
profileAssessmentId: assessmentId,
});
const result = await this.profileAssessmentsRepository.delete({ id: assessmentId });
if (result.affected == undefined || result.affected <= 0)
2024-03-13 11:10:29 +07:00
throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
2024-03-14 10:07:22 +07:00
return new HttpSuccess();
2024-03-13 11:10:29 +07:00
}
}