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

210 lines
6.6 KiB
TypeScript
Raw Normal View History

2024-05-14 10:29:05 +07:00
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,
UpdateProfileEducation,
CreateProfileEducationEmployee,
} from "../entities/ProfileEducation";
import { RequestWithUser } from "../middlewares/user";
import { ProfileEducationHistory } from "../entities/ProfileEducationHistory";
import { AppDataSource } from "../database/data-source";
import { ProfileEmployee } from "../entities/ProfileEmployee";
import permission from "../interfaces/permission";
2024-05-14 10:29:05 +07:00
@Route("api/v1/org/profile-employee/educations")
@Tags("ProfileEducationsEmployee")
@Security("bearerAuth")
export class ProfileEducationsEmployeeController extends Controller {
private profileEmployeeRepo = AppDataSource.getRepository(ProfileEmployee);
private profileEducationRepo = AppDataSource.getRepository(ProfileEducation);
private profileEducationHistoryRepo = AppDataSource.getRepository(ProfileEducationHistory);
@Get("user")
public async detailProfileEducationUser(@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 getProfileEducation = await this.profileEducationRepo.find({
where: { profileEmployeeId: profile.id },
2024-08-30 18:02:34 +07:00
order: { createdAt: "ASC" },
});
if (!getProfileEducation) {
throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
}
return new HttpSuccess(getProfileEducation);
}
2024-05-14 10:29:05 +07:00
@Get("{profileEmployeeId}")
2024-08-30 18:02:34 +07:00
public async detailProfileEducation(
@Path() profileEmployeeId: string,
@Request() req: RequestWithUser,
) {
await new permission().PermissionOrgUserGet(req, "SYS_REGISTRY_EMP", profileEmployeeId);
2024-05-20 11:12:23 +07:00
const getProfileEducation = await this.profileEducationRepo.find({
where: { profileEmployeeId: profileEmployeeId },
2024-08-30 18:02:34 +07:00
order: { createdAt: "ASC" },
});
2024-05-14 10:29:05 +07:00
if (!getProfileEducation) {
throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
}
return new HttpSuccess(getProfileEducation);
}
2024-09-09 18:10:01 +07:00
@Get("admin/history/{educationId}")
public async getProfileAdminEducationHistory(
2024-08-30 18:02:34 +07:00
@Path() educationId: string,
@Request() req: RequestWithUser,
) {
const _record = await this.profileEducationRepo.findOneBy({ id: educationId });
if (_record) {
2024-08-30 18:02:34 +07:00
await new permission().PermissionOrgUserGet(
req,
"SYS_REGISTRY_EMP",
_record.profileEmployeeId,
);
}
2024-08-30 18:02:34 +07:00
const record = await this.profileEducationHistoryRepo.find({
where: {
profileEducationId: educationId,
},
order: { createdAt: "DESC" },
2024-05-14 10:29:05 +07:00
});
if (!record) {
throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
}
return new HttpSuccess(record);
}
2024-09-09 18:10:01 +07:00
@Get("history/{educationId}")
public async getProfileEducationHistory(
@Path() educationId: string,
) {
const record = await this.profileEducationHistoryRepo.find({
where: {
profileEducationId: educationId,
},
order: { createdAt: "DESC" },
});
if (!record) {
throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
}
return new HttpSuccess(record);
}
2024-05-14 10:29:05 +07:00
@Post()
public async newProfileEducation(
@Request() req: RequestWithUser,
@Body() body: CreateProfileEducationEmployee,
) {
if (!body.profileEmployeeId) {
throw new HttpError(HttpStatus.BAD_REQUEST, "กรุณากรอก profileEmployeeId");
}
2024-08-30 18:02:34 +07:00
2024-05-14 10:29:05 +07:00
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);
2024-05-14 10:29:05 +07:00
const data = new ProfileEducation();
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-05-14 10:29:05 +07:00
};
Object.assign(data, { ...body, ...meta });
const history = new ProfileEducationHistory();
2024-08-13 20:01:53 +07:00
Object.assign(history, { ...data, id: undefined });
2024-05-14 10:29:05 +07:00
2024-08-13 20:01:53 +07:00
await this.profileEducationRepo.save(data);
history.profileEducationId = data.id;
await this.profileEducationHistoryRepo.save(history);
2024-05-14 10:29:05 +07:00
return new HttpSuccess();
}
@Patch("{educationId}")
public async editProfileEducation(
@Body() body: UpdateProfileEducation,
2024-05-14 10:29:05 +07:00
@Request() req: RequestWithUser,
@Path() educationId: string,
) {
const record = await this.profileEducationRepo.findOneBy({ id: educationId });
if (!record) throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
2024-08-30 18:02:34 +07:00
await new permission().PermissionOrgUserUpdate(
req,
"SYS_REGISTRY_EMP",
record.profileEmployeeId,
);
2024-05-14 10:29:05 +07:00
const history = new ProfileEducationHistory();
Object.assign(record, body);
2024-09-01 22:44:23 +07:00
Object.assign(history, { ...record, id: undefined });
2024-05-14 10:29:05 +07:00
history.profileEducationId = educationId;
record.lastUpdateUserId = req.user.sub;
2024-05-14 10:29:05 +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-05-14 10:29:05 +07:00
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) {
2024-08-30 18:02:34 +07:00
await new permission().PermissionOrgUserDelete(
req,
"SYS_REGISTRY_EMP",
_record.profileEmployeeId,
);
}
2024-05-14 10:29:05 +07:00
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();
}
}