121 lines
3.5 KiB
TypeScript
121 lines
3.5 KiB
TypeScript
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 { ProfileOtherHistory } from "../entities/ProfileOtherHistory";
|
|
import { RequestWithUser } from "../middlewares/user";
|
|
import { ProfileEmployee } from "../entities/ProfileEmployee";
|
|
import {
|
|
CreateProfileEmployeeOther,
|
|
ProfileOther,
|
|
UpdateProfileOther,
|
|
} from "../entities/ProfileOther";
|
|
|
|
@Route("api/v1/org/profile-employee/other")
|
|
@Tags("ProfileOther")
|
|
@Security("bearerAuth")
|
|
export class ProfileOtherEmployeeController extends Controller {
|
|
private profileRepository = AppDataSource.getRepository(ProfileEmployee);
|
|
private otherRepository = AppDataSource.getRepository(ProfileOther);
|
|
private otherHistoryRepository = AppDataSource.getRepository(ProfileOtherHistory);
|
|
|
|
@Get("{profileId}")
|
|
public async getOther(@Path() profileId: string) {
|
|
const lists = await this.otherRepository.find({
|
|
where: { profileEmployeeId: profileId },
|
|
});
|
|
return new HttpSuccess(lists);
|
|
}
|
|
|
|
@Get("history/{otherId}")
|
|
public async otherHistory(@Path() otherId: string) {
|
|
const record = await this.otherHistoryRepository.find({
|
|
where: { profileOtherId: otherId },
|
|
order: { createdAt: "DESC" },
|
|
});
|
|
return new HttpSuccess(record);
|
|
}
|
|
|
|
@Post()
|
|
public async newOther(@Request() req: RequestWithUser, @Body() body: CreateProfileEmployeeOther) {
|
|
if (!body.profileEmployeeId) {
|
|
throw new HttpError(HttpStatus.BAD_REQUEST, "กรุณากรอก profileId");
|
|
}
|
|
|
|
const profile = await this.profileRepository.findOneBy({ id: body.profileEmployeeId });
|
|
|
|
if (!profile) {
|
|
throw new HttpError(HttpStatus.BAD_REQUEST, "ไม่พบ profile ดังกล่าว");
|
|
}
|
|
|
|
const data = new ProfileOther();
|
|
|
|
const meta = {
|
|
createdUserId: req.user.sub,
|
|
createdFullName: req.user.name,
|
|
lastUpdateUserId: req.user.sub,
|
|
lastUpdateFullName: req.user.name,
|
|
};
|
|
|
|
Object.assign(data, { ...body, ...meta });
|
|
|
|
await this.otherRepository.save(data);
|
|
|
|
return new HttpSuccess();
|
|
}
|
|
|
|
@Patch("{otherId}")
|
|
public async editOther(
|
|
@Request() req: RequestWithUser,
|
|
@Body() body: UpdateProfileOther,
|
|
@Path() otherId: string,
|
|
) {
|
|
const record = await this.otherRepository.findOneBy({ id: otherId });
|
|
|
|
if (!record) throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
|
|
|
|
const history = new ProfileOtherHistory();
|
|
|
|
Object.assign(history, { ...record, id: undefined });
|
|
Object.assign(record, body);
|
|
history.profileOtherId = otherId;
|
|
record.lastUpdateFullName = req.user.name;
|
|
history.lastUpdateFullName = req.user.name;
|
|
|
|
await Promise.all([
|
|
this.otherRepository.save(record),
|
|
this.otherHistoryRepository.save(history),
|
|
]);
|
|
|
|
return new HttpSuccess();
|
|
}
|
|
|
|
@Delete("{otherId}")
|
|
public async deleteOther(@Path() otherId: string) {
|
|
await this.otherHistoryRepository.delete({
|
|
profileOtherId: otherId,
|
|
});
|
|
|
|
const result = await this.otherRepository.delete({ id: otherId });
|
|
|
|
if (result.affected == undefined || result.affected <= 0) {
|
|
throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
|
|
}
|
|
|
|
return new HttpSuccess();
|
|
}
|
|
}
|