2024-08-27 09:21:22 +07:00
|
|
|
import {
|
|
|
|
|
Body,
|
|
|
|
|
Controller,
|
|
|
|
|
Delete,
|
|
|
|
|
Example,
|
|
|
|
|
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 { ProfileDevelopmentHistory } from "../entities/ProfileDevelopmentHistory";
|
|
|
|
|
import { RequestWithUser } from "../middlewares/user";
|
|
|
|
|
import { Profile } from "../entities/Profile";
|
2024-08-27 13:21:13 +07:00
|
|
|
import {
|
|
|
|
|
CreateProfileDevelopment,
|
|
|
|
|
ProfileDevelopment,
|
|
|
|
|
UpdateProfileDevelopment,
|
|
|
|
|
} from "../entities/ProfileDevelopment";
|
2024-08-27 09:21:22 +07:00
|
|
|
import permission from "../interfaces/permission";
|
|
|
|
|
@Route("api/v1/org/profile/development")
|
|
|
|
|
@Tags("ProfileDevelopment")
|
|
|
|
|
@Security("bearerAuth")
|
|
|
|
|
export class ProfileDevelopmentController extends Controller {
|
|
|
|
|
private profileRepository = AppDataSource.getRepository(Profile);
|
|
|
|
|
private developmentRepository = AppDataSource.getRepository(ProfileDevelopment);
|
|
|
|
|
private developmentHistoryRepository = AppDataSource.getRepository(ProfileDevelopmentHistory);
|
|
|
|
|
|
|
|
|
|
@Get("user")
|
|
|
|
|
public async getDevelopmentUser(@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.developmentRepository.find({
|
|
|
|
|
where: { profileId: profile.id },
|
|
|
|
|
});
|
2024-08-27 17:30:19 +07:00
|
|
|
return new HttpSuccess(lists);
|
2024-08-27 09:21:22 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Get("{profileId}")
|
|
|
|
|
@Example({
|
|
|
|
|
status: 200,
|
|
|
|
|
message: "สำเร็จ",
|
|
|
|
|
result: [
|
|
|
|
|
{
|
|
|
|
|
id: "debfa8a7-83fb-4801-a940-8ae74e7638d3",
|
|
|
|
|
isActive: true,
|
|
|
|
|
date: "2024-03-12T10:09:47.000Z",
|
|
|
|
|
reference: "string",
|
|
|
|
|
detail: "string",
|
|
|
|
|
refCommandNo: "string",
|
|
|
|
|
refCommandDate: "2024-03-12T10:09:47.000Z",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
})
|
|
|
|
|
public async getDevelopment(@Path() profileId: string, @Request() req: RequestWithUser) {
|
|
|
|
|
await new permission().PermissionOrgUserGet(req, "SYS_REGISTRY_OFFICER", profileId);
|
|
|
|
|
const lists = await this.developmentRepository.find({
|
|
|
|
|
where: { profileId: profileId },
|
|
|
|
|
});
|
2024-08-27 17:30:19 +07:00
|
|
|
return new HttpSuccess(lists);
|
2024-08-27 09:21:22 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Get("history/{developmentId}")
|
|
|
|
|
@Example({
|
|
|
|
|
status: 200,
|
|
|
|
|
message: "สำเร็จ",
|
|
|
|
|
result: [
|
|
|
|
|
{
|
|
|
|
|
id: "debfa8a7-83fb-4801-a940-8ae74e7638d3",
|
|
|
|
|
isActive: true,
|
|
|
|
|
date: "2024-03-12T10:09:47.000Z",
|
|
|
|
|
detail: "string",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "debfa8a7-83fb-4801-a940-8ae74e7638d3",
|
|
|
|
|
isActive: true,
|
|
|
|
|
date: "2024-03-12T10:09:47.000Z",
|
|
|
|
|
detail: "string",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
})
|
|
|
|
|
public async developmentHistory(@Path() developmentId: string, @Request() req: RequestWithUser) {
|
|
|
|
|
const _record = await this.developmentRepository.findOneBy({ id: developmentId });
|
|
|
|
|
if (_record) {
|
|
|
|
|
await new permission().PermissionOrgUserList(req, "SYS_REGISTRY_OFFICER", _record.profileId);
|
|
|
|
|
}
|
|
|
|
|
const record = await this.developmentHistoryRepository.find({
|
|
|
|
|
where: { profileDevelopmentId: developmentId },
|
|
|
|
|
order: { createdAt: "DESC" },
|
|
|
|
|
});
|
2024-08-27 17:30:19 +07:00
|
|
|
return new HttpSuccess(record);
|
2024-08-27 09:21:22 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Post()
|
2024-08-27 13:21:13 +07:00
|
|
|
public async newDevelopment(
|
|
|
|
|
@Request() req: RequestWithUser,
|
|
|
|
|
@Body() body: CreateProfileDevelopment,
|
|
|
|
|
) {
|
2024-08-27 09:21:22 +07:00
|
|
|
if (!body.profileId) {
|
|
|
|
|
throw new HttpError(HttpStatus.BAD_REQUEST, "กรุณากรอก profileId");
|
|
|
|
|
}
|
2024-08-27 13:21:13 +07:00
|
|
|
|
2024-08-27 09:21:22 +07:00
|
|
|
const profile = await this.profileRepository.findOneBy({ id: body.profileId });
|
|
|
|
|
if (!profile) {
|
|
|
|
|
throw new HttpError(HttpStatus.BAD_REQUEST, "ไม่พบ profile ดังกล่าว");
|
|
|
|
|
}
|
|
|
|
|
await new permission().PermissionOrgUserCreate(req, "SYS_REGISTRY_OFFICER", profile.id);
|
|
|
|
|
|
|
|
|
|
const data = new ProfileDevelopment();
|
|
|
|
|
|
|
|
|
|
const meta = {
|
|
|
|
|
createdUserId: req.user.sub,
|
|
|
|
|
createdFullName: req.user.name,
|
|
|
|
|
lastUpdateUserId: req.user.sub,
|
|
|
|
|
lastUpdateFullName: req.user.name,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Object.assign(data, { ...body, ...meta });
|
|
|
|
|
const history = new ProfileDevelopmentHistory();
|
|
|
|
|
Object.assign(history, { ...data, id: undefined });
|
|
|
|
|
|
|
|
|
|
await this.developmentRepository.save(data);
|
|
|
|
|
history.profileDevelopmentId = data.id;
|
|
|
|
|
await this.developmentHistoryRepository.save(history);
|
|
|
|
|
|
|
|
|
|
return new HttpSuccess();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Patch("{developmentId}")
|
|
|
|
|
public async editDevelopment(
|
|
|
|
|
@Request() req: RequestWithUser,
|
|
|
|
|
@Body() body: UpdateProfileDevelopment,
|
|
|
|
|
@Path() developmentId: string,
|
|
|
|
|
) {
|
2024-08-27 13:21:13 +07:00
|
|
|
const record = await this.developmentRepository.findOne({
|
|
|
|
|
where: { id: developmentId },
|
|
|
|
|
});
|
2024-08-27 09:21:22 +07:00
|
|
|
if (!record) throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
|
|
|
|
|
await new permission().PermissionOrgUserUpdate(req, "SYS_REGISTRY_OFFICER", record.profileId);
|
|
|
|
|
|
|
|
|
|
const history = new ProfileDevelopmentHistory();
|
|
|
|
|
|
|
|
|
|
Object.assign(record, body);
|
|
|
|
|
Object.assign(history, body);
|
|
|
|
|
|
|
|
|
|
history.profileDevelopmentId = developmentId;
|
|
|
|
|
record.lastUpdateUserId = req.user.sub;
|
|
|
|
|
record.lastUpdateFullName = req.user.name;
|
|
|
|
|
history.lastUpdateUserId = req.user.sub;
|
|
|
|
|
history.lastUpdateFullName = req.user.name;
|
|
|
|
|
history.createdUserId = req.user.sub;
|
|
|
|
|
history.createdFullName = req.user.name;
|
|
|
|
|
|
|
|
|
|
await Promise.all([
|
|
|
|
|
this.developmentRepository.save(record),
|
|
|
|
|
this.developmentHistoryRepository.save(history),
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
return new HttpSuccess();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Delete("{developmentId}")
|
|
|
|
|
public async deleteDevelopment(@Path() developmentId: string, @Request() req: RequestWithUser) {
|
2024-08-27 13:21:13 +07:00
|
|
|
const _record = await this.developmentRepository.findOneBy({ id: developmentId });
|
|
|
|
|
if (_record) {
|
|
|
|
|
await new permission().PermissionOrgUserDelete(
|
|
|
|
|
req,
|
|
|
|
|
"SYS_REGISTRY_OFFICER",
|
|
|
|
|
_record.profileId,
|
|
|
|
|
);
|
|
|
|
|
}
|
2024-08-27 09:21:22 +07:00
|
|
|
await this.developmentHistoryRepository.delete({
|
|
|
|
|
profileDevelopmentId: developmentId,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const result = await this.developmentRepository.delete({ id: developmentId });
|
|
|
|
|
|
|
|
|
|
if (result.affected == undefined || result.affected <= 0) {
|
|
|
|
|
throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return new HttpSuccess();
|
|
|
|
|
}
|
|
|
|
|
}
|