200 lines
7 KiB
TypeScript
200 lines
7 KiB
TypeScript
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 {
|
|
CreateProfileEmployeeAssessment,
|
|
ProfileAssessment,
|
|
UpdateProfileAssessment,
|
|
} from "../entities/ProfileAssessment";
|
|
import { ProfileAssessmentHistory } from "../entities/ProfileAssessmentHistory";
|
|
import { ProfileEmployee } from "../entities/ProfileEmployee";
|
|
import { RequestWithUser } from "../middlewares/user";
|
|
import permission from "../interfaces/permission";
|
|
import { setLogDataDiff } from "../interfaces/utils";
|
|
@Route("api/v1/org/profile-temp/assessments")
|
|
@Tags("ProfileEmployeeAssessments")
|
|
@Security("bearerAuth")
|
|
export class ProfileAssessmentsEmployeeTempController extends Controller {
|
|
private profileEmployeeRepo = AppDataSource.getRepository(ProfileEmployee);
|
|
private profileAssessmentsRepository = AppDataSource.getRepository(ProfileAssessment);
|
|
private profileAssessmentsHistoryRepository =
|
|
AppDataSource.getRepository(ProfileAssessmentHistory);
|
|
|
|
@Get("user")
|
|
public async detailProfileAssessmentsUser(@Request() request: { user: Record<string, any> }) {
|
|
const profile = await this.profileEmployeeRepo.findOneBy({ keycloak: request.user.sub });
|
|
if (!profile) {
|
|
throw new HttpError(HttpStatus.BAD_REQUEST, "ไม่พบ profile ดังกล่าว");
|
|
}
|
|
const getProfileAssessments = await this.profileAssessmentsRepository.find({
|
|
where: { profileEmployeeId: profile.id },
|
|
order: { createdAt: "ASC" },
|
|
});
|
|
if (!getProfileAssessments) {
|
|
throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
|
|
}
|
|
return new HttpSuccess(getProfileAssessments);
|
|
}
|
|
|
|
@Get("{profileEmployeeId}")
|
|
public async detailProfileAssessments(
|
|
@Path() profileEmployeeId: string,
|
|
@Request() req: RequestWithUser,
|
|
) {
|
|
let _workflow = await new permission().Workflow(req, profileEmployeeId, "SYS_REGISTRY_TEMP");
|
|
if (_workflow == false) await new permission().PermissionGet(req, "SYS_REGISTRY_TEMP");
|
|
const getProfileAssessments = await this.profileAssessmentsRepository.find({
|
|
where: {
|
|
profileEmployeeId: profileEmployeeId,
|
|
},
|
|
order: { createdAt: "ASC" },
|
|
});
|
|
if (!getProfileAssessments) {
|
|
throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
|
|
}
|
|
return new HttpSuccess(getProfileAssessments);
|
|
}
|
|
|
|
@Get("admin/history/{assessmentId}")
|
|
public async getProfileAdminAssessmentsHistory(
|
|
@Path() assessmentId: string,
|
|
@Request() req: RequestWithUser,
|
|
) {
|
|
let _workflow = await new permission().Workflow(req, assessmentId, "SYS_REGISTRY_TEMP");
|
|
if (_workflow == false) await new permission().PermissionGet(req, "SYS_REGISTRY_TEMP");
|
|
const record = await this.profileAssessmentsHistoryRepository.find({
|
|
where: {
|
|
profileAssessmentId: assessmentId,
|
|
},
|
|
order: { createdAt: "DESC" },
|
|
});
|
|
|
|
if (!record) {
|
|
throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
|
|
}
|
|
|
|
return new HttpSuccess(record);
|
|
}
|
|
|
|
@Get("history/{assessmentId}")
|
|
public async getProfileAssessmentsHistory(@Path() assessmentId: string) {
|
|
const record = await this.profileAssessmentsHistoryRepository.find({
|
|
where: {
|
|
profileAssessmentId: assessmentId,
|
|
},
|
|
order: { createdAt: "DESC" },
|
|
});
|
|
|
|
if (!record) {
|
|
throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
|
|
}
|
|
|
|
return new HttpSuccess(record);
|
|
}
|
|
|
|
@Post()
|
|
public async profileAssessment(
|
|
@Request() req: RequestWithUser,
|
|
@Body() body: CreateProfileEmployeeAssessment,
|
|
) {
|
|
await new permission().PermissionUpdate(req, "SYS_REGISTRY_TEMP");
|
|
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 ดังกล่าว");
|
|
}
|
|
const before = null;
|
|
const data = new ProfileAssessment();
|
|
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 ProfileAssessmentHistory();
|
|
Object.assign(history, { ...data, id: undefined });
|
|
|
|
await this.profileAssessmentsRepository.save(data, { data: req });
|
|
setLogDataDiff(req, { before, after: data });
|
|
history.profileAssessmentId = data.id;
|
|
await this.profileAssessmentsHistoryRepository.save(history, { data: req });
|
|
//setLogDataDiff(req, { before, after: history });
|
|
|
|
return new HttpSuccess(data.id);
|
|
}
|
|
|
|
@Patch("{assessmentId}")
|
|
public async editProfileAssessment(
|
|
@Body() body: UpdateProfileAssessment,
|
|
@Request() req: RequestWithUser,
|
|
@Path() assessmentId: string,
|
|
) {
|
|
await new permission().PermissionUpdate(req, "SYS_REGISTRY_TEMP");
|
|
const record = await this.profileAssessmentsRepository.findOneBy({ id: assessmentId });
|
|
if (!record) throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
|
|
const before = structuredClone(record);
|
|
// const before_null = null;
|
|
const history = new ProfileAssessmentHistory();
|
|
|
|
Object.assign(record, body);
|
|
Object.assign(history, { ...record, id: undefined });
|
|
|
|
history.profileAssessmentId = assessmentId;
|
|
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.profileAssessmentsRepository.save(record, { data: req }),
|
|
setLogDataDiff(req, { before, after: record }),
|
|
this.profileAssessmentsHistoryRepository.save(history, { data: req }),
|
|
// setLogDataDiff(req, { before: before_null, after: history }),
|
|
]);
|
|
|
|
return new HttpSuccess();
|
|
}
|
|
|
|
@Delete("{assessmentId}")
|
|
public async deleteProfileAssessment(
|
|
@Path() assessmentId: string,
|
|
@Request() req: RequestWithUser,
|
|
) {
|
|
await new permission().PermissionDelete(req, "SYS_REGISTRY_TEMP");
|
|
await this.profileAssessmentsHistoryRepository.delete({
|
|
profileAssessmentId: assessmentId,
|
|
});
|
|
|
|
const result = await this.profileAssessmentsRepository.delete({ id: assessmentId });
|
|
|
|
if (result.affected == undefined || result.affected <= 0)
|
|
throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
|
|
|
|
return new HttpSuccess();
|
|
}
|
|
}
|