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

173 lines
4.8 KiB
TypeScript
Raw Normal View History

2024-02-02 17:38:31 +07:00
import {
Controller,
Post,
Put,
Delete,
Route,
Security,
Tags,
Body,
Path,
Request,
SuccessResponse,
Response,
Get,
} from "tsoa";
import { AppDataSource } from "../database/data-source";
import HttpSuccess from "../interfaces/http-success";
import HttpStatusCode from "../interfaces/http-status";
import HttpError from "../interfaces/http-error";
import { CreateReligion, Religion } from "../entities/Religion";
2024-02-02 18:01:26 +07:00
import { Not } from "typeorm";
2024-02-02 17:38:31 +07:00
@Route("api/v1/org/religion")
@Tags("Religion")
@Security("bearerAuth")
@Response(
HttpStatusCode.INTERNAL_SERVER_ERROR,
"เกิดข้อผิดพลาด ไม่สามารถแสดงรายการได้ กรุณาลองใหม่ในภายหลัง",
)
@SuccessResponse(HttpStatusCode.OK, "สำเร็จ")
export class ReligionController extends Controller {
private religionRepository = AppDataSource.getRepository(Religion);
/**
* API
*
* @summary ORG_059 - (ADMIN) #65
*
*/
@Post()
async createReligion(
@Body()
requestBody: CreateReligion,
@Request() request: { user: Record<string, any> },
) {
const checkName = await this.religionRepository.findOne({
where: { name: requestBody.name },
});
if (checkName) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ชื่อนี้มีอยู่ในระบบแล้ว");
}
try {
const religion = Object.assign(new Religion(), requestBody);
religion.createdUserId = request.user.sub;
religion.createdFullName = request.user.name;
religion.lastUpdateUserId = request.user.sub;
religion.lastUpdateFullName = request.user.name;
await this.religionRepository.save(religion);
return new HttpSuccess();
} catch (error) {
return error;
}
}
/**
* API
*
* @summary ORG_059 - (ADMIN) #65
*
* @param {string} id Id
*/
@Put("{id}")
async updateReligion(
@Path() id: string,
@Body()
requestBody: CreateReligion,
@Request() request: { user: Record<string, any> },
) {
const religion = await this.religionRepository.findOne({ where: { id: id } });
if (!religion) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลไอดีนี้ : " + id);
}
const checkName = await this.religionRepository.findOne({
2024-02-02 18:01:26 +07:00
where: { id:Not(id),name: requestBody.name },
2024-02-02 17:38:31 +07:00
});
if (checkName) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ชื่อนี้มีอยู่ในระบบแล้ว");
}
try {
religion.lastUpdateUserId = request.user.sub;
religion.lastUpdateFullName = request.user.name;
this.religionRepository.merge(religion, requestBody);
await this.religionRepository.save(religion);
return new HttpSuccess();
} catch (error) {
return error;
}
}
/**
* API
*
* @summary ORG_059 - (ADMIN) #65
*
* @param {string} id Id
*/
@Delete("{id}")
async deleteReligion(@Path() id: string) {
const delReligion = await this.religionRepository.findOne({
where: { id },
});
if (!delReligion) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลตำแหน่งตามไอดีนี้ : " + id);
}
try {
await this.religionRepository.delete({ id: id });
return new HttpSuccess();
} catch (error) {
return error;
}
}
/**
* API
*
* @summary ORG_059 - (ADMIN) #65
*
* @param {string} id Id
*/
@Get("{id}")
async detailReligion(@Path() id: string) {
const religion = await this.religionRepository.findOne({
where: { id },
select: ["id", "name"],
});
if (!religion) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล");
}
try {
return new HttpSuccess(religion);
} catch (error) {
return error;
}
}
/**
* API
*
* @summary ORG_059 - (ADMIN) #65
*
*/
@Get()
async listReligion() {
const religion = await this.religionRepository.find({
2024-02-05 12:04:42 +07:00
select: ["id", "name" , "createdAt" , "lastUpdatedAt" , "createdFullName" , "lastUpdateFullName"],
order:{ createdAt:"ASC" }
2024-02-02 17:38:31 +07:00
});
if (!religion) {
return new HttpSuccess([]);
}
try {
return new HttpSuccess(religion);
} catch (error) {
return error;
}
}
}