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

176 lines
6.2 KiB
TypeScript
Raw Normal View History

2024-03-13 15:33:02 +07:00
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 { ProfileDutyHistory } from "../entities/ProfileDutyHistory";
import { RequestWithUser } from "../middlewares/user";
import { Profile } from "../entities/Profile";
import { CreateProfileDuty, ProfileDuty, UpdateProfileDuty } from "../entities/ProfileDuty";
import permission from "../interfaces/permission";
import { setLogDataDiff } from "../interfaces/utils";
2024-03-13 15:33:02 +07:00
@Route("api/v1/org/profile/duty")
@Tags("ProfileDuty")
@Security("bearerAuth")
export class ProfileDutyController extends Controller {
private profileRepository = AppDataSource.getRepository(Profile);
private dutyRepository = AppDataSource.getRepository(ProfileDuty);
private dutyHistoryRepository = AppDataSource.getRepository(ProfileDutyHistory);
2024-05-23 16:44:37 +07:00
@Get("user")
public async getDutyUser(@Request() request: { user: Record<string, any> }) {
const profile = await this.profileRepository.findOneBy({ keycloak: request.user.sub });
if (!profile) {
throw new HttpError(HttpStatus.BAD_REQUEST, "ไม่พบ profile ดังกล่าว");
}
const lists = await this.dutyRepository.find({
where: { profileId: profile.id },
2024-08-30 18:02:34 +07:00
order: { createdAt: "ASC" },
2024-05-23 16:44:37 +07:00
});
return new HttpSuccess(lists);
}
2024-03-13 15:33:02 +07:00
@Get("{profileId}")
public async getDuty(@Path() profileId: string, @Request() req: RequestWithUser) {
2024-10-22 08:20:45 +07:00
let _workflow = await new permission().Workflow(req, profileId, "SYS_REGISTRY_OFFICER");
if (_workflow == false)
await new permission().PermissionOrgUserGet(req, "SYS_REGISTRY_OFFICER", profileId);
2024-03-13 15:33:02 +07:00
const lists = await this.dutyRepository.find({
where: { profileId: profileId },
2024-08-30 18:02:34 +07:00
order: { createdAt: "ASC" },
2024-03-13 15:33:02 +07:00
});
return new HttpSuccess(lists);
}
@Get("admin/history/{dutyId}")
public async dutyAdminHistory(@Path() dutyId: string, @Request() req: RequestWithUser) {
const _record = await this.dutyRepository.findOneBy({ id: dutyId });
if (_record) {
2024-10-22 08:20:45 +07:00
let _workflow = await new permission().Workflow(req, dutyId, "SYS_REGISTRY_OFFICER");
if (_workflow == false)
await new permission().PermissionOrgUserGet(req, "SYS_REGISTRY_OFFICER", _record.profileId);
}
2024-03-13 15:33:02 +07:00
const record = await this.dutyHistoryRepository.find({
where: { profileDutyId: dutyId },
order: { createdAt: "DESC" },
});
return new HttpSuccess(record);
}
@Get("history/{dutyId}")
public async dutyHistory(@Path() dutyId: string) {
const record = await this.dutyHistoryRepository.find({
2024-03-13 15:33:02 +07:00
where: { profileDutyId: dutyId },
order: { createdAt: "DESC" },
});
return new HttpSuccess(record);
}
@Post()
public async newDuty(@Request() req: RequestWithUser, @Body() body: CreateProfileDuty) {
if (!body.profileId) {
throw new HttpError(HttpStatus.BAD_REQUEST, "กรุณากรอก profileId");
}
2024-03-13 15:33:02 +07:00
const profile = await this.profileRepository.findOneBy({ id: body.profileId });
if (!profile) {
throw new HttpError(HttpStatus.BAD_REQUEST, "ไม่พบ profile ดังกล่าว");
}
2024-08-27 14:19:04 +07:00
await new permission().PermissionOrgUserUpdate(req, "SYS_REGISTRY_OFFICER", profile.id);
const before = null;
2024-03-13 15:33:02 +07:00
const data = new ProfileDuty();
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 15:33:02 +07:00
};
Object.assign(data, { ...body, ...meta });
const history = new ProfileDutyHistory();
2024-08-13 20:01:53 +07:00
Object.assign(history, { ...data, id: undefined });
2024-03-13 15:33:02 +07:00
await this.dutyRepository.save(data, { data: req });
setLogDataDiff(req, { before, after: data });
2024-08-13 20:01:53 +07:00
history.profileDutyId = data.id;
await this.dutyHistoryRepository.save(history, { data: req });
//setLogDataDiff(req, { before, after: history });
2025-01-29 10:15:19 +07:00
return new HttpSuccess(data.id);
2024-03-13 15:33:02 +07:00
}
@Patch("{dutyId}")
public async editDuty(
@Request() req: RequestWithUser,
@Body() body: UpdateProfileDuty,
@Path() dutyId: string,
) {
const record = await this.dutyRepository.findOneBy({ id: dutyId });
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 15:33:02 +07:00
const history = new ProfileDutyHistory();
Object.assign(record, body);
2024-09-01 22:44:23 +07:00
Object.assign(history, { ...record, id: undefined });
2024-03-13 15:33:02 +07:00
history.profileDutyId = dutyId;
record.lastUpdateUserId = req.user.sub;
2024-03-13 15:33:02 +07:00
record.lastUpdateFullName = req.user.name;
2024-08-30 18:02:34 +07:00
record.lastUpdatedAt = new Date();
history.lastUpdateUserId = req.user.sub;
2024-03-13 15:33:02 +07:00
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 15:33:02 +07:00
this.dutyRepository.save(record, { data: req });
setLogDataDiff(req, { before, after: record });
if (!(Object.keys(body).length === 1 && body.isUpload)) {
this.dutyHistoryRepository.save(history, { data: req });
// setLogDataDiff(req, { before, after: history });
}
2024-03-13 15:33:02 +07:00
return new HttpSuccess();
}
@Delete("{dutyId}")
public async deleteDuty(@Path() dutyId: string, @Request() req: RequestWithUser) {
const _record = await this.dutyRepository.findOneBy({ id: dutyId });
if (_record) {
await new permission().PermissionOrgUserDelete(
req,
"SYS_REGISTRY_OFFICER",
_record.profileId,
);
}
2024-03-13 15:33:02 +07:00
await this.dutyHistoryRepository.delete({
profileDutyId: dutyId,
});
const result = await this.dutyRepository.delete({ id: dutyId });
if (result.affected == undefined || result.affected <= 0) {
2024-03-13 15:33:02 +07:00
throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
}
return new HttpSuccess();
}
}